Compare commits
2 commits
f745fdfbca
...
1f5a19f101
Author | SHA1 | Date | |
---|---|---|---|
1f5a19f101 | |||
ad0d2aef08 |
2 changed files with 178 additions and 5 deletions
|
@ -2,6 +2,8 @@ import {ButtonInteraction} from "discord.js";
|
||||||
import AppLogger from "../../client/appLogger";
|
import AppLogger from "../../client/appLogger";
|
||||||
import EffectHelper from "../../helpers/EffectHelper";
|
import EffectHelper from "../../helpers/EffectHelper";
|
||||||
import EmbedColours from "../../constants/EmbedColours";
|
import EmbedColours from "../../constants/EmbedColours";
|
||||||
|
import User from "../../database/entities/app/User";
|
||||||
|
import {EffectDetails} from "../../constants/EffectDetails";
|
||||||
|
|
||||||
export default class Buy {
|
export default class Buy {
|
||||||
public static async Execute(interaction: ButtonInteraction) {
|
public static async Execute(interaction: ButtonInteraction) {
|
||||||
|
@ -27,6 +29,13 @@ export default class Buy {
|
||||||
AppLogger.LogError("Buy Confirm", "Not enough parameters");
|
AppLogger.LogError("Buy Confirm", "Not enough parameters");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const effectDetail = EffectDetails.get(id);
|
||||||
|
|
||||||
|
if (!effectDetail) {
|
||||||
|
AppLogger.LogError("Buy Confirm", "Effect detail not found!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
const quantityNumber = Number(quantity);
|
const quantityNumber = Number(quantity);
|
||||||
|
|
||||||
|
@ -35,6 +44,25 @@ export default class Buy {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const totalCost = effectDetail.cost * quantityNumber;
|
||||||
|
|
||||||
|
const user = await User.FetchOneById(User, interaction.user.id);
|
||||||
|
|
||||||
|
if (!user) {
|
||||||
|
AppLogger.LogError("Buy Confirm", "Unable to find user");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (user.Currency < totalCost) {
|
||||||
|
interaction.reply(`You don't have enough currency to buy this! You have \`${user.Currency} Currency\` and need \`${totalCost} Currency\`!`);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
user.RemoveCurrency(totalCost);
|
||||||
|
await user.Save(User, user);
|
||||||
|
|
||||||
|
await EffectHelper.AddEffectToUserInventory(interaction.user.id, id, quantityNumber);
|
||||||
|
|
||||||
const generatedEmbed = await EffectHelper.GenerateEffectBuyEmbed(interaction.user.id, id, quantityNumber, true);
|
const generatedEmbed = await EffectHelper.GenerateEffectBuyEmbed(interaction.user.id, id, quantityNumber, true);
|
||||||
|
|
||||||
if (typeof generatedEmbed == "string") {
|
if (typeof generatedEmbed == "string") {
|
||||||
|
|
|
@ -4,6 +4,7 @@ import GenerateButtonInteractionMock from "../../__functions__/discord.js/Genera
|
||||||
import { ButtonInteraction as ButtonInteractionType } from "../../__types__/discord.js";
|
import { ButtonInteraction as ButtonInteractionType } from "../../__types__/discord.js";
|
||||||
import AppLogger from "../../../src/client/appLogger";
|
import AppLogger from "../../../src/client/appLogger";
|
||||||
import EffectHelper from "../../../src/helpers/EffectHelper";
|
import EffectHelper from "../../../src/helpers/EffectHelper";
|
||||||
|
import EmbedColours from "../../../src/constants/EmbedColours";
|
||||||
|
|
||||||
jest.mock("../../../src/client/appLogger");
|
jest.mock("../../../src/client/appLogger");
|
||||||
jest.mock("../../../src/helpers/EffectHelper");
|
jest.mock("../../../src/helpers/EffectHelper");
|
||||||
|
@ -13,6 +14,11 @@ let interaction: ButtonInteractionType;
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
jest.resetAllMocks();
|
jest.resetAllMocks();
|
||||||
|
|
||||||
|
jest.spyOn(Buy as any, "Confirm")
|
||||||
|
.mockRestore();
|
||||||
|
jest.spyOn(Buy as any, "Cancel")
|
||||||
|
.mockRestore();
|
||||||
|
|
||||||
interaction = GenerateButtonInteractionMock();
|
interaction = GenerateButtonInteractionMock();
|
||||||
interaction.customId = "effects buy";
|
interaction.customId = "effects buy";
|
||||||
|
|
||||||
|
@ -85,6 +91,8 @@ describe("Confirm", () => {
|
||||||
|
|
||||||
const embed = {
|
const embed = {
|
||||||
id: "embed",
|
id: "embed",
|
||||||
|
setColor: jest.fn(),
|
||||||
|
setFooter: jest.fn(),
|
||||||
};
|
};
|
||||||
const row = {
|
const row = {
|
||||||
id: "row",
|
id: "row",
|
||||||
|
@ -108,17 +116,154 @@ describe("Confirm", () => {
|
||||||
expect(EffectHelper.GenerateEffectBuyEmbed).toHaveBeenCalledTimes(1);
|
expect(EffectHelper.GenerateEffectBuyEmbed).toHaveBeenCalledTimes(1);
|
||||||
expect(EffectHelper.GenerateEffectBuyEmbed).toHaveBeenCalledWith("userId", "id", 1, true);
|
expect(EffectHelper.GenerateEffectBuyEmbed).toHaveBeenCalledWith("userId", "id", 1, true);
|
||||||
|
|
||||||
|
expect(embed.setColor).toHaveBeenCalledTimes(1);
|
||||||
|
expect(embed.setColor).toHaveBeenCalledWith(EmbedColours.Success);
|
||||||
|
|
||||||
|
expect(embed.setFooter).toHaveBeenCalledTimes(1);
|
||||||
|
expect(embed.setFooter).toHaveBeenCalledWith({ text: "Purchased" });
|
||||||
|
|
||||||
expect(interaction.reply).not.toHaveBeenCalled();
|
expect(interaction.reply).not.toHaveBeenCalled();
|
||||||
expect(AppLogger.LogError).not.toHaveBeenCalled();
|
expect(AppLogger.LogError).not.toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
|
|
||||||
test.todo("GIVEN id is not supplied, EXPECT error");
|
test("GIVEN id is not supplied, EXPECT error", async () => {
|
||||||
|
// Assert
|
||||||
|
const embed = {
|
||||||
|
id: "embed",
|
||||||
|
setColor: jest.fn(),
|
||||||
|
setFooter: jest.fn(),
|
||||||
|
};
|
||||||
|
const row = {
|
||||||
|
id: "row",
|
||||||
|
};
|
||||||
|
|
||||||
|
(EffectHelper.GenerateEffectBuyEmbed as jest.Mock).mockResolvedValue({
|
||||||
|
embed,
|
||||||
|
row,
|
||||||
|
});
|
||||||
|
|
||||||
test.todo("GIVEN quantity is not supplied, EXPECT error");
|
// Act
|
||||||
|
await Buy.Execute(interaction as unknown as ButtonInteraction);
|
||||||
|
|
||||||
test.todo("GIVEN quantity is not a number, EXPECT error");
|
// Assert
|
||||||
|
expect(AppLogger.LogError).toHaveBeenCalledTimes(1);
|
||||||
|
expect(AppLogger.LogError).toHaveBeenCalledWith("Buy Confirm", "Not enough parameters");
|
||||||
|
|
||||||
test.todo("GIVEN quantity is 0, EXPECT error");
|
expect(EffectHelper.GenerateEffectBuyEmbed).not.toHaveBeenCalled();
|
||||||
|
expect(interaction.reply).not.toHaveBeenCalled();
|
||||||
|
expect(interaction.update).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
test.todo("GIVEN GenerateEffectBuyEmbed returns with a string, EXPECT error replied");
|
test("GIVEN quantity is not supplied, EXPECT error", async () => {
|
||||||
|
// Assert
|
||||||
|
interaction.customId += " id";
|
||||||
|
|
||||||
|
const embed = {
|
||||||
|
id: "embed",
|
||||||
|
setColor: jest.fn(),
|
||||||
|
setFooter: jest.fn(),
|
||||||
|
};
|
||||||
|
const row = {
|
||||||
|
id: "row",
|
||||||
|
};
|
||||||
|
|
||||||
|
(EffectHelper.GenerateEffectBuyEmbed as jest.Mock).mockResolvedValue({
|
||||||
|
embed,
|
||||||
|
row,
|
||||||
|
});
|
||||||
|
|
||||||
|
// Act
|
||||||
|
await Buy.Execute(interaction as unknown as ButtonInteraction);
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(AppLogger.LogError).toHaveBeenCalledTimes(1);
|
||||||
|
expect(AppLogger.LogError).toHaveBeenCalledWith("Buy Confirm", "Not enough parameters");
|
||||||
|
|
||||||
|
expect(EffectHelper.GenerateEffectBuyEmbed).not.toHaveBeenCalled();
|
||||||
|
expect(interaction.reply).not.toHaveBeenCalled();
|
||||||
|
expect(interaction.update).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
test("GIVEN quantity is not a number, EXPECT error", async () => {
|
||||||
|
// Assert
|
||||||
|
interaction.customId += " id invalid";
|
||||||
|
|
||||||
|
const embed = {
|
||||||
|
id: "embed",
|
||||||
|
setColor: jest.fn(),
|
||||||
|
setFooter: jest.fn(),
|
||||||
|
};
|
||||||
|
const row = {
|
||||||
|
id: "row",
|
||||||
|
};
|
||||||
|
|
||||||
|
(EffectHelper.GenerateEffectBuyEmbed as jest.Mock).mockResolvedValue({
|
||||||
|
embed,
|
||||||
|
row,
|
||||||
|
});
|
||||||
|
|
||||||
|
// Act
|
||||||
|
await Buy.Execute(interaction as unknown as ButtonInteraction);
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(AppLogger.LogError).toHaveBeenCalledTimes(1);
|
||||||
|
expect(AppLogger.LogError).toHaveBeenCalledWith("Buy Confirm", "Invalid number");
|
||||||
|
|
||||||
|
expect(EffectHelper.GenerateEffectBuyEmbed).not.toHaveBeenCalled();
|
||||||
|
expect(interaction.reply).not.toHaveBeenCalled();
|
||||||
|
expect(interaction.update).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
test("GIVEN quantity is 0, EXPECT error", async () => {
|
||||||
|
// Assert
|
||||||
|
interaction.customId += " id 0";
|
||||||
|
|
||||||
|
const embed = {
|
||||||
|
id: "embed",
|
||||||
|
setColor: jest.fn(),
|
||||||
|
setFooter: jest.fn(),
|
||||||
|
};
|
||||||
|
const row = {
|
||||||
|
id: "row",
|
||||||
|
};
|
||||||
|
|
||||||
|
(EffectHelper.GenerateEffectBuyEmbed as jest.Mock).mockResolvedValue({
|
||||||
|
embed,
|
||||||
|
row,
|
||||||
|
});
|
||||||
|
|
||||||
|
// Act
|
||||||
|
await Buy.Execute(interaction as unknown as ButtonInteraction);
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(AppLogger.LogError).toHaveBeenCalledTimes(1);
|
||||||
|
expect(AppLogger.LogError).toHaveBeenCalledWith("Buy Confirm", "Invalid number");
|
||||||
|
|
||||||
|
expect(EffectHelper.GenerateEffectBuyEmbed).not.toHaveBeenCalled();
|
||||||
|
expect(interaction.reply).not.toHaveBeenCalled();
|
||||||
|
expect(interaction.update).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
test.todo("GIVEN user is not found, EXPECT error");
|
||||||
|
|
||||||
|
test.todo("GIVEN user does not have enough currency, EXPECT error");
|
||||||
|
|
||||||
|
test("GIVEN GenerateEffectBuyEmbed returns with a string, EXPECT error replied", async () => {
|
||||||
|
// Assert
|
||||||
|
interaction.customId += " id 1";
|
||||||
|
|
||||||
|
(EffectHelper.GenerateEffectBuyEmbed as jest.Mock).mockResolvedValue("Test error");
|
||||||
|
|
||||||
|
// Act
|
||||||
|
await Buy.Execute(interaction as unknown as ButtonInteraction);
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(interaction.reply).toHaveBeenCalledTimes(1);
|
||||||
|
expect(interaction.reply).toHaveBeenCalledWith("Test error");
|
||||||
|
|
||||||
|
expect(EffectHelper.GenerateEffectBuyEmbed).toHaveBeenCalledTimes(1);
|
||||||
|
|
||||||
|
expect(interaction.update).not.toHaveBeenCalled();
|
||||||
|
expect(AppLogger.LogError).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue