WIP: Create moons list command tests
All checks were successful
Test / build (push) Successful in 11s
All checks were successful
Test / build (push) Successful in 11s
This commit is contained in:
parent
5ed31d08d1
commit
952e7901ba
3 changed files with 274 additions and 14 deletions
|
@ -8,7 +8,7 @@
|
||||||
"clean": "rm -rf node_modules/ dist/",
|
"clean": "rm -rf node_modules/ dist/",
|
||||||
"build": "tsc",
|
"build": "tsc",
|
||||||
"start": "node ./dist/vylbot",
|
"start": "node ./dist/vylbot",
|
||||||
"test": "jest .",
|
"test": "jest",
|
||||||
"db:up": "typeorm migration:run -d dist/database/dataSources/appDataSource.js",
|
"db:up": "typeorm migration:run -d dist/database/dataSources/appDataSource.js",
|
||||||
"db:down": "typeorm migration:revert -d dist/database/dataSources/appDataSource.js",
|
"db:down": "typeorm migration:revert -d dist/database/dataSources/appDataSource.js",
|
||||||
"db:create": "typeorm migration:create ./src/database/migrations",
|
"db:create": "typeorm migration:create ./src/database/migrations",
|
||||||
|
|
|
@ -0,0 +1,40 @@
|
||||||
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
|
exports[`GIVEN happy flow EXPECT interaction to be replied 1`] = `
|
||||||
|
{
|
||||||
|
"components": [
|
||||||
|
{
|
||||||
|
"components": [
|
||||||
|
{
|
||||||
|
"custom_id": "moons list userId -1",
|
||||||
|
"disabled": true,
|
||||||
|
"emoji": undefined,
|
||||||
|
"label": "Previous",
|
||||||
|
"style": 1,
|
||||||
|
"type": 2,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"custom_id": "moons list userId 01",
|
||||||
|
"disabled": true,
|
||||||
|
"emoji": undefined,
|
||||||
|
"label": "Next",
|
||||||
|
"style": 1,
|
||||||
|
"type": 2,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
"type": 1,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
"embeds": [
|
||||||
|
{
|
||||||
|
"color": 3166394,
|
||||||
|
"description": "**1 -** Test Descriptio",
|
||||||
|
"footer": {
|
||||||
|
"icon_url": undefined,
|
||||||
|
"text": "Page 01 of 1 · 0 moons",
|
||||||
|
},
|
||||||
|
"title": "undefined's Moons",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}
|
||||||
|
`;
|
|
@ -1,29 +1,249 @@
|
||||||
|
import { ActionRowBuilder, APIEmbed, ButtonBuilder, CommandInteraction, EmbedBuilder, InteractionReplyOptions } from "discord.js";
|
||||||
|
import List from "../../../../src/commands/304276391837302787/moons/list";
|
||||||
|
import Moon from "../../../../src/database/entities/304276391837302787/Moon";
|
||||||
|
import UserSetting from "../../../../src/database/entities/UserSetting";
|
||||||
|
|
||||||
|
describe("GIVEN happy flow", () => {
|
||||||
|
let repliedWith: InteractionReplyOptions | undefined;
|
||||||
|
|
||||||
|
const interaction = {
|
||||||
|
reply: jest.fn((options) => {
|
||||||
|
repliedWith = options;
|
||||||
|
}),
|
||||||
|
options: {
|
||||||
|
get: jest.fn()
|
||||||
|
.mockReturnValueOnce(undefined) // User
|
||||||
|
.mockReturnValue({
|
||||||
|
value: "0",
|
||||||
|
}), // Page
|
||||||
|
},
|
||||||
|
user: {
|
||||||
|
id: "userId",
|
||||||
|
}
|
||||||
|
} as unknown as CommandInteraction;
|
||||||
|
|
||||||
|
beforeAll(async () => {
|
||||||
|
Moon.FetchPaginatedMoonsByUserId = jest.fn().mockResolvedValue([
|
||||||
|
[
|
||||||
|
{
|
||||||
|
MoonNumber: 1,
|
||||||
|
Description: "Test Description",
|
||||||
|
}
|
||||||
|
],
|
||||||
|
1,
|
||||||
|
]);
|
||||||
|
|
||||||
|
UserSetting.FetchOneByKey = jest.fn().mockResolvedValue({
|
||||||
|
Value: "0",
|
||||||
|
});
|
||||||
|
|
||||||
|
await List(interaction);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("EXPECT interaction to be replied", () => {
|
||||||
|
expect(interaction.reply).toHaveBeenCalledTimes(1);
|
||||||
|
expect(repliedWith).toMatchSnapshot();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
describe("GIVEN moons returned is empty", () => {
|
describe("GIVEN moons returned is empty", () => {
|
||||||
test.todo("EXPECT none description");
|
let repliedWith: InteractionReplyOptions | undefined;
|
||||||
|
|
||||||
|
const interaction = {
|
||||||
|
reply: jest.fn((options) => {
|
||||||
|
repliedWith = options;
|
||||||
|
}),
|
||||||
|
options: {
|
||||||
|
get: jest.fn()
|
||||||
|
.mockReturnValueOnce(undefined) // User
|
||||||
|
.mockReturnValue({
|
||||||
|
value: "0",
|
||||||
|
}), // Page
|
||||||
|
},
|
||||||
|
user: {
|
||||||
|
id: "userId",
|
||||||
|
}
|
||||||
|
} as unknown as CommandInteraction;
|
||||||
|
|
||||||
|
beforeAll(async () => {
|
||||||
|
Moon.FetchPaginatedMoonsByUserId = jest.fn().mockResolvedValue([
|
||||||
|
[],
|
||||||
|
0,
|
||||||
|
]);
|
||||||
|
|
||||||
|
UserSetting.FetchOneByKey = jest.fn().mockResolvedValue({
|
||||||
|
Value: "0",
|
||||||
|
});
|
||||||
|
|
||||||
|
await List(interaction);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("EXPECT none description", () => {
|
||||||
|
expect(repliedWith).toBeDefined();
|
||||||
|
|
||||||
|
expect(repliedWith!.embeds).toBeDefined();
|
||||||
|
expect(repliedWith!.embeds!.length).toBe(1);
|
||||||
|
|
||||||
|
const repliedWithEmbed = repliedWith!.embeds![0] as EmbedBuilder;
|
||||||
|
|
||||||
|
expect(repliedWithEmbed.data.description).toBe("*none*");
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("GIVEN it is the first page", () => {
|
describe("GIVEN it is the first page", () => {
|
||||||
test.todo("EXPECT Previous button to be disabled");
|
let repliedWith: InteractionReplyOptions | undefined;
|
||||||
|
|
||||||
|
const interaction = {
|
||||||
|
reply: jest.fn((options) => {
|
||||||
|
repliedWith = options;
|
||||||
|
}),
|
||||||
|
options: {
|
||||||
|
get: jest.fn()
|
||||||
|
.mockReturnValueOnce(undefined) // User
|
||||||
|
.mockReturnValue({
|
||||||
|
value: "0",
|
||||||
|
}), // Page
|
||||||
|
},
|
||||||
|
user: {
|
||||||
|
id: "userId",
|
||||||
|
}
|
||||||
|
} as unknown as CommandInteraction;
|
||||||
|
|
||||||
|
beforeAll(async () => {
|
||||||
|
Moon.FetchPaginatedMoonsByUserId = jest.fn().mockResolvedValue([
|
||||||
|
[
|
||||||
|
{
|
||||||
|
MoonNumber: 1,
|
||||||
|
Description: "Test Description",
|
||||||
|
}
|
||||||
|
],
|
||||||
|
1,
|
||||||
|
]);
|
||||||
|
|
||||||
|
UserSetting.FetchOneByKey = jest.fn().mockResolvedValue({
|
||||||
|
Value: "0",
|
||||||
|
});
|
||||||
|
|
||||||
|
await List(interaction);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("EXPECT Previous button to be disabled", () => {
|
||||||
|
expect(repliedWith).toBeDefined();
|
||||||
|
|
||||||
|
expect(repliedWith!.components).toBeDefined();
|
||||||
|
expect(repliedWith!.components!.length).toBe(1);
|
||||||
|
|
||||||
|
const repliedWithRow = repliedWith!.components![0] as ActionRowBuilder<ButtonBuilder>;
|
||||||
|
|
||||||
|
expect(repliedWithRow.components[0].data.disabled).toBe(true);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("GIVEN it is the last page", () => {
|
describe("GIVEN it is the last page", () => {
|
||||||
test.todo("EXPECT Next button to be disabled");
|
let repliedWith: InteractionReplyOptions | undefined;
|
||||||
|
|
||||||
|
const interaction = {
|
||||||
|
reply: jest.fn((options) => {
|
||||||
|
repliedWith = options;
|
||||||
|
}),
|
||||||
|
options: {
|
||||||
|
get: jest.fn()
|
||||||
|
.mockReturnValueOnce(undefined) // User
|
||||||
|
.mockReturnValue({
|
||||||
|
value: "0",
|
||||||
|
}), // Page
|
||||||
|
},
|
||||||
|
user: {
|
||||||
|
id: "userId",
|
||||||
|
}
|
||||||
|
} as unknown as CommandInteraction;
|
||||||
|
|
||||||
|
beforeAll(async () => {
|
||||||
|
Moon.FetchPaginatedMoonsByUserId = jest.fn().mockResolvedValue([
|
||||||
|
[
|
||||||
|
{
|
||||||
|
MoonNumber: 1,
|
||||||
|
Description: "Test Description",
|
||||||
|
}
|
||||||
|
],
|
||||||
|
1,
|
||||||
|
]);
|
||||||
|
|
||||||
|
UserSetting.FetchOneByKey = jest.fn().mockResolvedValue({
|
||||||
|
Value: "0",
|
||||||
|
});
|
||||||
|
|
||||||
|
await List(interaction);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("EXPECT Next button to be disabled", () => {
|
||||||
|
expect(repliedWith).toBeDefined();
|
||||||
|
|
||||||
|
expect(repliedWith!.components).toBeDefined();
|
||||||
|
expect(repliedWith!.components!.length).toBe(1);
|
||||||
|
|
||||||
|
const repliedWithRow = repliedWith!.components![0] as ActionRowBuilder<ButtonBuilder>;
|
||||||
|
|
||||||
|
expect(repliedWithRow.components[1].data.disabled).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
describe("GIVEN moon count is greater than the amount of moons in the database", () => {
|
describe("GIVEN moon count is greater than the amount of moons in the database", () => {
|
||||||
test.todo("EXPECT untracked counter to be shown");
|
beforeAll(async () => {
|
||||||
|
UserSetting.FetchOneByKey = jest.fn().mockResolvedValue({
|
||||||
|
Value: "2",
|
||||||
|
});
|
||||||
|
|
||||||
|
await List(interaction);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("EXPECT untracked counter to be shown", () => {
|
||||||
|
const repliedWithEmbed = repliedWith!.embeds![0] as EmbedBuilder;
|
||||||
|
|
||||||
|
expect(repliedWithEmbed.data.description).toContain("...plus 1 more untracked");
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe("GIVEN moon count is empty", () => {
|
describe("GIVEN moon count is empty", () => {
|
||||||
test.todo("EXPECT Next button to be disabled");
|
let repliedWith: InteractionReplyOptions | undefined;
|
||||||
|
|
||||||
describe("GIVEN moon count is greater than the amount of moons in the database", () => {
|
const interaction = {
|
||||||
test.todo("EXPECT untracked counter to be shown");
|
reply: jest.fn((options) => {
|
||||||
|
repliedWith = options;
|
||||||
|
}),
|
||||||
|
options: {
|
||||||
|
get: jest.fn()
|
||||||
|
.mockReturnValueOnce(undefined) // User
|
||||||
|
.mockReturnValue({
|
||||||
|
value: "0",
|
||||||
|
}), // Page
|
||||||
|
},
|
||||||
|
user: {
|
||||||
|
id: "userId",
|
||||||
|
}
|
||||||
|
} as unknown as CommandInteraction;
|
||||||
|
|
||||||
|
beforeAll(async () => {
|
||||||
|
Moon.FetchPaginatedMoonsByUserId = jest.fn().mockResolvedValue([
|
||||||
|
[],
|
||||||
|
0,
|
||||||
|
]);
|
||||||
|
|
||||||
|
UserSetting.FetchOneByKey = jest.fn().mockResolvedValue({
|
||||||
|
Value: "0",
|
||||||
|
});
|
||||||
|
|
||||||
|
await List(interaction);
|
||||||
|
});
|
||||||
|
|
||||||
|
test("EXPECT Next button to be disabled", () => {
|
||||||
|
expect(repliedWith).toBeDefined();
|
||||||
|
|
||||||
|
expect(repliedWith!.components).toBeDefined();
|
||||||
|
expect(repliedWith!.components!.length).toBe(1);
|
||||||
|
|
||||||
|
const repliedWithRow = repliedWith!.components![0] as ActionRowBuilder<ButtonBuilder>;
|
||||||
|
|
||||||
|
expect(repliedWithRow.components[1].data.disabled).toBe(true);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
test.todo("EXPECT interaction to be replied");
|
|
||||||
|
|
||||||
test.todo("EXPECT embed to be replied");
|
|
||||||
|
|
||||||
test.todo("EXPECT row to be replied");
|
|
||||||
|
|
Loading…
Reference in a new issue