mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-03 17:30:07 +00:00
* update biome to v2 * Run biome check --write * Update biome.jsonc Co-authored-by: Link <lts20050703@gmail.com> * Fix config error * Bump biome version * Update website/yarn.lock * Update biome to 2.1.3 --------- Co-authored-by: Link <lts20050703@gmail.com>
82 lines
2.8 KiB
TypeScript
82 lines
2.8 KiB
TypeScript
import { use as chaiUse, expect } from 'chai'
|
|
import chaiAsPromised from 'chai-as-promised'
|
|
import { describe, it } from 'mocha'
|
|
import { e2eCache, rest } from './utils.js'
|
|
|
|
chaiUse(chaiAsPromised)
|
|
|
|
describe('Webhook helpers', async () => {
|
|
it('Manage webhooks', async () => {
|
|
const webhook = await rest.createWebhook(e2eCache.channel.id, {
|
|
name: 'idk',
|
|
})
|
|
expect(webhook).to.exist
|
|
expect(webhook.name).to.equal('idk')
|
|
expect(webhook.token).to.exist
|
|
|
|
const fetched = await rest.getWebhook(webhook.id)
|
|
expect(fetched).to.exist
|
|
expect(webhook.id).to.equal(fetched.id)
|
|
|
|
const fetched2 = await rest.getWebhookWithToken(webhook.id, webhook.token!)
|
|
expect(webhook.id).to.equal(fetched2.id)
|
|
|
|
const edited = await rest.editWebhook(webhook.id, {
|
|
name: 'edited',
|
|
})
|
|
expect(webhook.name).to.not.equal(edited.name)
|
|
|
|
const edited2 = await rest.editWebhookWithToken(webhook.id, webhook.token!, {
|
|
name: 'editedtoken',
|
|
})
|
|
expect(edited.name).to.not.equal(edited2.name)
|
|
|
|
await rest.createWebhook(e2eCache.channel.id, { name: 'idkk' })
|
|
const hooks = await rest.getChannelWebhooks(e2eCache.channel.id)
|
|
expect(hooks.length).to.greaterThan(1)
|
|
|
|
const guildHooks = await rest.getGuildWebhooks(e2eCache.guild.id)
|
|
expect(guildHooks.length).to.greaterThan(1)
|
|
|
|
await rest.deleteWebhook(webhook.id)
|
|
// Fetch the webhook to validate it was deleted
|
|
await expect(rest.getWebhook(webhook.id)).to.eventually.rejected
|
|
|
|
const hookToDelete = await rest.createWebhook(e2eCache.channel.id, {
|
|
name: 'delme',
|
|
})
|
|
expect(hookToDelete?.id).to.exist
|
|
expect(hookToDelete.token).to.exist
|
|
|
|
await rest.deleteWebhookWithToken(hookToDelete.id, hookToDelete.token!)
|
|
// Fetch the webhook to validate it was deleted
|
|
await expect(rest.getWebhook(hookToDelete.id)).to.eventually.rejected
|
|
})
|
|
|
|
it('Manage webhook messages', async () => {
|
|
const webhook = await rest.createWebhook(e2eCache.channel.id, {
|
|
name: 'idk',
|
|
})
|
|
expect(webhook).to.exist
|
|
|
|
const message = await rest.executeWebhook(webhook.id, webhook.token!, {
|
|
content: 'discordeno is best lib',
|
|
wait: true,
|
|
})
|
|
expect(message?.id).to.exist
|
|
|
|
const message2 = await rest.getWebhookMessage(webhook.id, webhook.token!, message!.id)
|
|
expect(message2).to.exist
|
|
expect(message2.content).to.equal(message?.content)
|
|
|
|
const edited3 = await rest.editWebhookMessage(webhook.id, webhook.token!, message!.id, {
|
|
content: 'different',
|
|
})
|
|
expect(edited3).to.exist
|
|
expect(edited3.content).to.not.equal(message2.content)
|
|
|
|
await rest.deleteWebhookMessage(webhook.id, webhook.token!, message!.id)
|
|
await expect(rest.getWebhookMessage(webhook.id, webhook.token!, message!.id)).to.eventually.rejected
|
|
})
|
|
})
|