Fix bunny tests
All checks were successful
Test / build (push) Successful in 16s

This commit is contained in:
Ethan Lane 2024-05-01 18:36:31 +01:00
parent 74cdd04d27
commit 60972e5782
2 changed files with 23 additions and 6 deletions

View file

@ -26,6 +26,7 @@ export default class Bunny extends Command {
];
const random = Math.floor(Math.random() * subreddits.length);
const selectedSubreddit = subreddits[random];
const result = await randomBunny(selectedSubreddit, 'hot');

View file

@ -28,9 +28,10 @@ describe('execute', () => {
const interaction = {
isChatInputCommand: jest.fn().mockReturnValue(true),
reply: jest.fn().mockImplementation((options) => {
editReply: jest.fn().mockImplementation((options) => {
repliedWith = options;
}),
deferReply: jest.fn(),
} as unknown as CommandInteraction;
jest.spyOn(randomBunny, "default").mockResolvedValue({
@ -46,6 +47,11 @@ describe('execute', () => {
Subreddit: "rabbits",
SubredditSubscribers: 1,
},
Error: undefined,
Query: {
subreddit: "rabbits",
sortBy: "hot",
},
});
Math.floor = jest.fn().mockReturnValue(0);
@ -56,7 +62,9 @@ describe('execute', () => {
expect(randomBunny.default).toHaveBeenCalledTimes(1);
expect(randomBunny.default).toHaveBeenCalledWith("rabbits", "hot");
expect(interaction.reply).toHaveBeenCalledTimes(1);
expect(interaction.editReply).toHaveBeenCalledTimes(1);
expect(interaction.deferReply).toHaveBeenCalledTimes(1);
expect(repliedWith).toBeDefined();
expect(repliedWith!.embeds).toBeDefined();
expect(repliedWith!.embeds.length).toBe(1);
@ -88,12 +96,18 @@ describe('execute', () => {
test("GIVEN a result from random-bunny is failure, EXPECT error", async () => {
const interaction = {
isChatInputCommand: jest.fn().mockReturnValue(true),
reply: jest.fn(),
editReply: jest.fn(),
deferReply: jest.fn(),
} as unknown as CommandInteraction;
jest.spyOn(randomBunny, "default").mockResolvedValue({
IsSuccess: false,
Result: undefined
Result: undefined,
Error: undefined,
Query: {
subreddit: "rabbits",
sortBy: "hot",
},
});
Math.floor = jest.fn().mockReturnValue(0);
@ -103,7 +117,9 @@ describe('execute', () => {
expect(randomBunny.default).toHaveBeenCalledTimes(1);
expect(interaction.reply).toHaveBeenCalledTimes(1);
expect(interaction.reply).toHaveBeenCalledWith("There was an error running this command.");
expect(interaction.editReply).toHaveBeenCalledTimes(1);
expect(interaction.editReply).toHaveBeenCalledWith("There was an error running this command.");
expect(interaction.deferReply).toHaveBeenCalledTimes(1);
});
});