# Description - Create a command to generate an embed for the user to be able to buy more effects - This embed will contain the details about the effect as well as 2 buttons; Confirm and Cancel - The confirm button will call the button event to: - Remove the currency from the user - Give the user the effect to their inventory - The cancel button will just disable the buttons, so the user can't accidentally use it if they don't want to. #381 ## Type of change Please delete options that are not relevant. - [x] New feature (non-breaking change which adds functionality) # How Has This Been Tested? - Have created unit tests and tested locally # Checklist - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that provde my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules Reviewed-on: #424 Reviewed-by: VylpesTester <tester@vylpes.com> Co-authored-by: Ethan Lane <ethan@vylpes.com> Co-committed-by: Ethan Lane <ethan@vylpes.com>
68 lines
2.2 KiB
TypeScript
68 lines
2.2 KiB
TypeScript
import { ButtonInteraction } from "discord.js";
|
|
import Effects from "../../src/buttonEvents/Effects";
|
|
import GenerateButtonInteractionMock from "../__functions__/discord.js/GenerateButtonInteractionMock";
|
|
import { ButtonInteraction as ButtonInteractionType } from "../__types__/discord.js";
|
|
import List from "../../src/buttonEvents/Effects/List";
|
|
import Use from "../../src/buttonEvents/Effects/Use";
|
|
import AppLogger from "../../src/client/appLogger";
|
|
|
|
jest.mock("../../src/client/appLogger");
|
|
jest.mock("../../src/buttonEvents/Effects/List");
|
|
jest.mock("../../src/buttonEvents/Effects/Use");
|
|
|
|
let interaction: ButtonInteractionType;
|
|
|
|
beforeEach(() => {
|
|
jest.resetAllMocks();
|
|
|
|
interaction = GenerateButtonInteractionMock();
|
|
interaction.customId = "effects";
|
|
});
|
|
|
|
test("GIVEN action is list, EXPECT list function to be called", async () => {
|
|
// Arrange
|
|
interaction.customId = "effects list";
|
|
|
|
// Act
|
|
const effects = new Effects();
|
|
await effects.execute(interaction as unknown as ButtonInteraction);
|
|
|
|
// Assert
|
|
expect(List).toHaveBeenCalledTimes(1);
|
|
expect(List).toHaveBeenCalledWith(interaction);
|
|
|
|
expect(Use.Execute).not.toHaveBeenCalled();
|
|
});
|
|
|
|
test("GIVEN action is use, EXPECT use function to be called", async () => {
|
|
// Arrange
|
|
interaction.customId = "effects use";
|
|
|
|
// Act
|
|
const effects = new Effects();
|
|
await effects.execute(interaction as unknown as ButtonInteraction);
|
|
|
|
// Assert
|
|
expect(Use.Execute).toHaveBeenCalledTimes(1);
|
|
expect(Use.Execute).toHaveBeenCalledWith(interaction);
|
|
|
|
expect(List).not.toHaveBeenCalled();
|
|
});
|
|
|
|
test.todo("GIVEN action is buy, EXPECT buy function to be called");
|
|
|
|
test("GIVEN action is invalid, EXPECT nothing to be called", async () => {
|
|
// Arrange
|
|
interaction.customId = "effects invalid";
|
|
|
|
// Act
|
|
const effects = new Effects();
|
|
await effects.execute(interaction as unknown as ButtonInteraction);
|
|
|
|
// Assert
|
|
expect(List).not.toHaveBeenCalled();
|
|
expect(Use.Execute).not.toHaveBeenCalled();
|
|
|
|
expect(AppLogger.LogError).toHaveBeenCalledTimes(1);
|
|
expect(AppLogger.LogError).toHaveBeenCalledWith("Buttons/Effects", "Unknown action, invalid");
|
|
});
|