Files
discordeno/testss/channels/threads/getActiveThreads.test.ts
2022-05-11 13:14:09 +00:00

30 lines
1.1 KiB
TypeScript

import { assertEquals, assertExists, assertNotEquals } from "../../deps.ts";
import { loadBot } from "../../mod.ts";
import { CACHED_COMMUNITY_GUILD_ID } from "../../utils.ts";
Deno.test("[thread] Get active threads", async (t) => {
const bot = loadBot();
const channel = await bot.helpers.createChannel(CACHED_COMMUNITY_GUILD_ID, { name: "threads" });
const message = await bot.helpers.sendMessage(channel.id, { content: "thread message" });
const thread = await bot.helpers.startThreadWithMessage(channel.id, message.id, {
reason: "idk",
rateLimitPerUser: 5,
name: "tread carefully",
autoArchiveDuration: 60,
});
const threadMessage = await bot.helpers.sendMessage(thread.id, { content: "message in a bottle" });
assertExists(threadMessage.id);
const edited = await bot.helpers.editChannel(thread.id, {
archived: true,
});
assertNotEquals(thread.archived, edited.archived);
const activeThreads = await bot.helpers.getActiveThreads(CACHED_COMMUNITY_GUILD_ID);
assertEquals(Boolean(activeThreads.threads.size), true);
assertEquals(Boolean(activeThreads.members.size), true);
await bot.helpers.deleteChannel(channel.id);
});