WIP: Planning more tests
All checks were successful
Test / build (push) Successful in 10s

This commit is contained in:
Ethan Lane 2024-10-31 16:56:36 +00:00
parent 974e298214
commit 43751e5b02
5 changed files with 91 additions and 42 deletions

View file

@ -24,11 +24,7 @@ export default async function AddMoon(interaction: CommandInteraction) {
const allMoons = await Moon.FetchMoonCountByUserId(interaction.user.id);
let moonNumber = allMoons + 1;
if (allMoons < moonCount) {
moonNumber = moonCount + 1;
}
const moonNumber = allMoons + 1;
const moon = new Moon(moonNumber, description, interaction.user.id);

View file

@ -1,49 +1,43 @@
describe("GIVEN interation.guild is null", () => {
test.todo("EXPECT nothing to happen");
describe("GIVEN interaction.guild is null", () => {
test.todo("EXPECT function to return");
});
describe("GIVEN userId is not supplied", () => {
test.todo("EXPECT nothing to happen");
describe("GIVEN userId parameter is undefined", () => {
test.todo("EXPECT function to return");
});
describe("GIVEN page is not supplied", () => {
test.todo("EXPECT nothing to happen");
describe("GIVEN page parameter is undefined", () => {
test.todo("EXPECT function to return");
});
describe("GIVEN moons entity is undefined", () => {
test.todo("EXPECT interaction replied");
describe("GIVEN no moons for the user is returned", () => {
test.todo("EXPECT error replied");
});
describe("GIVEN moons array is empty", () => {
test.todo("EXPECT embed description to say none");
});
describe("GIVEN moons array is not empty", () => {
test.todo("EXPECT embed description to specify moon details");
});
describe("GIVEN moon difference is greater than 0", () => {
describe("GIVEN it is not the last page", () => {
test.todo("EXPECT untracked moons message to not be displayed");
});
describe("GIVEN it is the last page", () => {
test.todo("EXPECT untracked moons to be displayed");
});
describe("GIVEN moons array is empty", () => {
test.todo("EXPECT untracked moons to be displayed");
});
});
describe("GIVEN it is the first page", () => {
test.todo("EXPECT previous button to be disabled");
});
describe("GIVEN it is the last page", () => {
test.todo("EXPECT next button to be disabled");
describe("GIVEN no moons on current page", () => {
test.todo("EXPECT description to say so");
});
describe("GIVEN happy flow", () => {
test.todo("EXPECT interaction to be updated");
test.todo("EXPECT moons to be fetched");
test.todo("EXPECT embed to be updated");
test.todo("EXPECT row to be updated");
describe("GIVEN it is the first page", () => {
test.todo("EXPECT Previous button to be disabled");
});
describe("GIVEN it is the last page", () => {
test.todo("EXPECT Next button to be disabled");
describe("GIVEN there are more moons in the counter than in the database", () => {
test.todo("EXPECT untracked counter to be present");
});
});
describe("GIVEN no moons on the current page", () => {
test.todo("EXPECT Next button to be disabled");
});
});

View file

@ -0,0 +1,19 @@
describe("GIVEN description is null", () => {
test.todo("EXPECT error replied");
});
describe("GIVEN description is greater than 255 characters", () => {
test.todo("EXPECT error replied");
});
describe("GIVEN moon count setting exists", () => {
test.todo("EXPECT existing entity to be updated");
});
describe("GIVEN moon count setting does not exist", () => {
test.todo("EXPECT new entity to be created");
});
test.todo("EXPECT setting to be saved");
test.todo("EXPECT embed to be replied");

View file

@ -0,0 +1,29 @@
describe("GIVEN moons returned is empty", () => {
test.todo("EXPECT none description");
});
describe("GIVEN it is the first page", () => {
test.todo("EXPECT Previous button to be disabled");
});
describe("GIVEN it is the last page", () => {
test.todo("EXPECT Next button to be disabled");
describe("GIVEN moon count is greater than the amount of moons in the database", () => {
test.todo("EXPECT untracked counter to be shown");
});
});
describe("GIVEN moon count is empty", () => {
test.todo("EXPECT Next button to be disabled");
describe("GIVEN moon count is greater than the amount of moons in the database", () => {
test.todo("EXPECT untracked counter to be shown");
});
});
test.todo("EXPECT interaction to be replied");
test.todo("EXPECT embed to be replied");
test.todo("EXPECT row to be replied");

View file

@ -0,0 +1,11 @@
describe("constructor", () => {
test.todo("EXPECT settings to be configured");
});
describe("UpdateValue", () => {
test.todo("EXPECT value to be updated");
});
describe("FetchOneByKey", () => {
test.todo("EXPECT single entity returned");
});