Add warn command tests
This commit is contained in:
parent
610086d26a
commit
aadf4ab402
2 changed files with 508 additions and 6 deletions
|
@ -1,4 +1,5 @@
|
||||||
import { ICommandContext } from "../contracts/ICommandContext";
|
import { ICommandContext } from "../contracts/ICommandContext";
|
||||||
|
import ICommandReturnContext from "../contracts/ICommandReturnContext";
|
||||||
import ErrorEmbed from "../helpers/embeds/ErrorEmbed";
|
import ErrorEmbed from "../helpers/embeds/ErrorEmbed";
|
||||||
import LogEmbed from "../helpers/embeds/LogEmbed";
|
import LogEmbed from "../helpers/embeds/LogEmbed";
|
||||||
import PublicEmbed from "../helpers/embeds/PublicEmbed";
|
import PublicEmbed from "../helpers/embeds/PublicEmbed";
|
||||||
|
@ -14,21 +15,29 @@ export default class Warn extends Command {
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
public override execute(context: ICommandContext) {
|
public override execute(context: ICommandContext): ICommandReturnContext {
|
||||||
const user = context.message.mentions.users.first();
|
const user = context.message.mentions.users.first();
|
||||||
|
|
||||||
if (!user) {
|
if (!user) {
|
||||||
const errorEmbed = new ErrorEmbed(context, "Please specify a valid user");
|
const errorEmbed = new ErrorEmbed(context, "User does not exist");
|
||||||
errorEmbed.SendToCurrentChannel();
|
errorEmbed.SendToCurrentChannel();
|
||||||
return;
|
|
||||||
|
return {
|
||||||
|
commandContext: context,
|
||||||
|
embeds: [errorEmbed]
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const member = context.message.guild?.member(user);
|
const member = context.message.guild?.member(user);
|
||||||
|
|
||||||
if (!member) {
|
if (!member) {
|
||||||
const errorEmbed = new ErrorEmbed(context, "Please specify a valid user");
|
const errorEmbed = new ErrorEmbed(context, "User is not in this server");
|
||||||
errorEmbed.SendToCurrentChannel();
|
errorEmbed.SendToCurrentChannel();
|
||||||
return;
|
|
||||||
|
return {
|
||||||
|
commandContext: context,
|
||||||
|
embeds: [errorEmbed]
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const reasonArgs = context.args;
|
const reasonArgs = context.args;
|
||||||
|
@ -37,7 +46,10 @@ export default class Warn extends Command {
|
||||||
const reason = reasonArgs.join(" ");
|
const reason = reasonArgs.join(" ");
|
||||||
|
|
||||||
if (!context.message.guild?.available) {
|
if (!context.message.guild?.available) {
|
||||||
return;
|
return {
|
||||||
|
commandContext: context,
|
||||||
|
embeds: []
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const logEmbed = new LogEmbed(context, "Member Warned");
|
const logEmbed = new LogEmbed(context, "Member Warned");
|
||||||
|
@ -50,5 +62,10 @@ export default class Warn extends Command {
|
||||||
|
|
||||||
logEmbed.SendToModLogsChannel();
|
logEmbed.SendToModLogsChannel();
|
||||||
publicEmbed.SendToCurrentChannel();
|
publicEmbed.SendToCurrentChannel();
|
||||||
|
|
||||||
|
return {
|
||||||
|
commandContext: context,
|
||||||
|
embeds: [logEmbed, publicEmbed]
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
485
tests/commands/warn.test.ts
Normal file
485
tests/commands/warn.test.ts
Normal file
|
@ -0,0 +1,485 @@
|
||||||
|
import { GuildMember, Message, TextChannel, User } from "discord.js";
|
||||||
|
import Warn from "../../src/commands/warn";
|
||||||
|
import { ICommandContext } from "../../src/contracts/ICommandContext";
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
process.env = {};
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Constructor', () => {
|
||||||
|
test('Expect values to be set', () => {
|
||||||
|
process.env.ROLES_MODERATOR = 'Moderator';
|
||||||
|
|
||||||
|
const warn = new Warn();
|
||||||
|
|
||||||
|
expect(warn._category).toBe('Moderation');
|
||||||
|
expect(warn._roles.length).toBe(1);
|
||||||
|
expect(warn._roles[0]).toBe('Moderator');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Execute', () => {
|
||||||
|
test('Given user has permission, expect user to be warnned', async () => {
|
||||||
|
process.env = {
|
||||||
|
ROLES_MODERATOR: 'Moderator',
|
||||||
|
CHANNELS_LOGS_MOD: 'mod-logs'
|
||||||
|
};
|
||||||
|
|
||||||
|
const mentionedUser = {
|
||||||
|
displayAvatarURL: jest.fn(),
|
||||||
|
tag: 'USERTAG'
|
||||||
|
} as unknown as User;
|
||||||
|
const mentionedMember = {
|
||||||
|
warnnable: true,
|
||||||
|
warn: jest.fn()
|
||||||
|
} as unknown as GuildMember;
|
||||||
|
const logChannel = {
|
||||||
|
name: 'mod-logs',
|
||||||
|
send: jest.fn()
|
||||||
|
} as unknown as TextChannel;
|
||||||
|
|
||||||
|
const messageChannelSend = jest.fn();
|
||||||
|
const messageMentionsUsersFirst = jest.fn()
|
||||||
|
.mockReturnValue(mentionedUser);
|
||||||
|
const messageGuildMember = jest.fn()
|
||||||
|
.mockReturnValue(mentionedMember);
|
||||||
|
const messageGuildChannelsCacheFind = jest.fn()
|
||||||
|
.mockImplementation((callback): TextChannel | undefined => {
|
||||||
|
const result = callback(logChannel);
|
||||||
|
|
||||||
|
if (!result) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
return logChannel;
|
||||||
|
});
|
||||||
|
|
||||||
|
const message = {
|
||||||
|
channel: {
|
||||||
|
send: messageChannelSend
|
||||||
|
},
|
||||||
|
mentions: {
|
||||||
|
users: {
|
||||||
|
first: messageMentionsUsersFirst
|
||||||
|
}
|
||||||
|
},
|
||||||
|
guild: {
|
||||||
|
member: messageGuildMember ,
|
||||||
|
channels: {
|
||||||
|
cache: {
|
||||||
|
find: messageGuildChannelsCacheFind
|
||||||
|
}
|
||||||
|
},
|
||||||
|
available: true
|
||||||
|
},
|
||||||
|
author: {
|
||||||
|
tag: 'AUTHORTAG'
|
||||||
|
}
|
||||||
|
} as unknown as Message;
|
||||||
|
|
||||||
|
const context: ICommandContext = {
|
||||||
|
name: 'warn',
|
||||||
|
args: ['warn', 'Test', 'Reason'],
|
||||||
|
message: message
|
||||||
|
};
|
||||||
|
|
||||||
|
const warn = new Warn();
|
||||||
|
|
||||||
|
const result = await warn.execute(context);
|
||||||
|
|
||||||
|
expect(messageChannelSend).toBeCalledTimes(1);
|
||||||
|
expect(logChannel.send).toBeCalledTimes(1);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('Given user has permissions, expect embeds to be correct', async () => {
|
||||||
|
process.env = {
|
||||||
|
ROLES_MODERATOR: 'Moderator',
|
||||||
|
CHANNELS_LOGS_MOD: 'mod-logs'
|
||||||
|
};
|
||||||
|
|
||||||
|
const mentionedUser = {
|
||||||
|
displayAvatarURL: jest.fn(),
|
||||||
|
tag: 'USERTAG'
|
||||||
|
} as unknown as User;
|
||||||
|
const mentionedMember = {
|
||||||
|
warnnable: true,
|
||||||
|
warn: jest.fn()
|
||||||
|
} as unknown as GuildMember;
|
||||||
|
const logChannel = {
|
||||||
|
name: 'mod-logs',
|
||||||
|
send: jest.fn()
|
||||||
|
} as unknown as TextChannel;
|
||||||
|
|
||||||
|
const messageChannelSend = jest.fn();
|
||||||
|
const messageMentionsUsersFirst = jest.fn()
|
||||||
|
.mockReturnValue(mentionedUser);
|
||||||
|
const messageGuildMember = jest.fn()
|
||||||
|
.mockReturnValue(mentionedMember);
|
||||||
|
const messageGuildChannelsCacheFind = jest.fn()
|
||||||
|
.mockImplementation((callback): TextChannel | undefined => {
|
||||||
|
const result = callback(logChannel);
|
||||||
|
|
||||||
|
if (!result) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
return logChannel;
|
||||||
|
});
|
||||||
|
|
||||||
|
const message = {
|
||||||
|
channel: {
|
||||||
|
send: messageChannelSend
|
||||||
|
},
|
||||||
|
mentions: {
|
||||||
|
users: {
|
||||||
|
first: messageMentionsUsersFirst
|
||||||
|
}
|
||||||
|
},
|
||||||
|
guild: {
|
||||||
|
member: messageGuildMember ,
|
||||||
|
channels: {
|
||||||
|
cache: {
|
||||||
|
find: messageGuildChannelsCacheFind
|
||||||
|
}
|
||||||
|
},
|
||||||
|
available: true
|
||||||
|
},
|
||||||
|
author: {
|
||||||
|
tag: 'AUTHORTAG'
|
||||||
|
}
|
||||||
|
} as unknown as Message;
|
||||||
|
|
||||||
|
const context: ICommandContext = {
|
||||||
|
name: 'warn',
|
||||||
|
args: ['warn', 'Test', 'Reason'],
|
||||||
|
message: message
|
||||||
|
};
|
||||||
|
|
||||||
|
const warn = new Warn();
|
||||||
|
|
||||||
|
const result = await warn.execute(context);
|
||||||
|
|
||||||
|
expect(result.embeds.length).toBe(2);
|
||||||
|
|
||||||
|
const logEmbed = result.embeds[0];
|
||||||
|
const publicEmbed = result.embeds[1];
|
||||||
|
|
||||||
|
expect(logEmbed.title).toBe('Member Warned');
|
||||||
|
expect(publicEmbed.title).toBe("");
|
||||||
|
expect(publicEmbed.description).toBe('[object Object] has been warned');
|
||||||
|
expect(logEmbed.fields.length).toBe(3);
|
||||||
|
expect(publicEmbed.fields.length).toBe(1);
|
||||||
|
expect(publicEmbed.fields[0].name).toBe('Reason');
|
||||||
|
expect(publicEmbed.fields[0].value).toBe('Test Reason');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('Given user has permission, expect logEmbed fields to be correct', async () => {
|
||||||
|
process.env = {
|
||||||
|
ROLES_MODERATOR: 'Moderator',
|
||||||
|
CHANNELS_LOGS_MOD: 'mod-logs'
|
||||||
|
};
|
||||||
|
|
||||||
|
const mentionedUser = {
|
||||||
|
displayAvatarURL: jest.fn().mockReturnValue('URL'),
|
||||||
|
tag: 'USERTAG'
|
||||||
|
} as unknown as User;
|
||||||
|
const mentionedMember = {
|
||||||
|
warnnable: true,
|
||||||
|
warn: jest.fn()
|
||||||
|
} as unknown as GuildMember;
|
||||||
|
const logChannel = {
|
||||||
|
name: 'mod-logs',
|
||||||
|
send: jest.fn()
|
||||||
|
} as unknown as TextChannel;
|
||||||
|
|
||||||
|
const messageChannelSend = jest.fn();
|
||||||
|
const messageMentionsUsersFirst = jest.fn()
|
||||||
|
.mockReturnValue(mentionedUser);
|
||||||
|
const messageGuildMember = jest.fn()
|
||||||
|
.mockReturnValue(mentionedMember);
|
||||||
|
const messageGuildChannelsCacheFind = jest.fn()
|
||||||
|
.mockImplementation((callback): TextChannel | undefined => {
|
||||||
|
const result = callback(logChannel);
|
||||||
|
|
||||||
|
if (!result) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
return logChannel;
|
||||||
|
});
|
||||||
|
|
||||||
|
const message = {
|
||||||
|
channel: {
|
||||||
|
send: messageChannelSend
|
||||||
|
},
|
||||||
|
mentions: {
|
||||||
|
users: {
|
||||||
|
first: messageMentionsUsersFirst
|
||||||
|
}
|
||||||
|
},
|
||||||
|
guild: {
|
||||||
|
member: messageGuildMember ,
|
||||||
|
channels: {
|
||||||
|
cache: {
|
||||||
|
find: messageGuildChannelsCacheFind
|
||||||
|
}
|
||||||
|
},
|
||||||
|
available: true
|
||||||
|
},
|
||||||
|
author: {
|
||||||
|
tag: 'AUTHORTAG'
|
||||||
|
}
|
||||||
|
} as unknown as Message;
|
||||||
|
|
||||||
|
const context: ICommandContext = {
|
||||||
|
name: 'warn',
|
||||||
|
args: ['warn', 'Test', 'Reason'],
|
||||||
|
message: message
|
||||||
|
};
|
||||||
|
|
||||||
|
const warn = new Warn();
|
||||||
|
|
||||||
|
const result = await warn.execute(context);
|
||||||
|
|
||||||
|
const logEmbed = result.embeds[0];
|
||||||
|
|
||||||
|
const fieldUser = logEmbed.fields[0];
|
||||||
|
const fieldModerator = logEmbed.fields[1];
|
||||||
|
const fieldReason = logEmbed.fields[2];
|
||||||
|
|
||||||
|
expect(fieldUser.name).toBe("User");
|
||||||
|
expect(fieldUser.value).toBe("[object Object] `USERTAG`");
|
||||||
|
expect(logEmbed.thumbnail?.url).toBe("URL");
|
||||||
|
|
||||||
|
expect(fieldModerator.name).toBe('Moderator');
|
||||||
|
expect(fieldModerator.value).toBe('[object Object] `AUTHORTAG`');
|
||||||
|
|
||||||
|
expect(fieldReason.name).toBe('Reason');
|
||||||
|
expect(fieldReason.value).toBe('Test Reason');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('Given user is not mentioned, expect error embed to be sent', async () => {
|
||||||
|
process.env = {
|
||||||
|
ROLES_MODERATOR: 'Moderator',
|
||||||
|
CHANNELS_LOGS_MOD: 'mod-logs'
|
||||||
|
};
|
||||||
|
|
||||||
|
const mentionedMember = {
|
||||||
|
warnnable: true,
|
||||||
|
warn: jest.fn()
|
||||||
|
} as unknown as GuildMember;
|
||||||
|
const logChannel = {
|
||||||
|
name: 'mod-logs',
|
||||||
|
send: jest.fn()
|
||||||
|
} as unknown as TextChannel;
|
||||||
|
|
||||||
|
const messageChannelSend = jest.fn();
|
||||||
|
const messageMentionsUsersFirst = jest.fn()
|
||||||
|
.mockReturnValue(null);
|
||||||
|
const messageGuildMember = jest.fn()
|
||||||
|
.mockReturnValue(mentionedMember);
|
||||||
|
const messageGuildChannelsCacheFind = jest.fn()
|
||||||
|
.mockImplementation((callback): TextChannel | undefined => {
|
||||||
|
const result = callback(logChannel);
|
||||||
|
|
||||||
|
if (!result) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
return logChannel;
|
||||||
|
});
|
||||||
|
|
||||||
|
const message = {
|
||||||
|
channel: {
|
||||||
|
send: messageChannelSend
|
||||||
|
},
|
||||||
|
mentions: {
|
||||||
|
users: {
|
||||||
|
first: messageMentionsUsersFirst
|
||||||
|
}
|
||||||
|
},
|
||||||
|
guild: {
|
||||||
|
member: messageGuildMember ,
|
||||||
|
channels: {
|
||||||
|
cache: {
|
||||||
|
find: messageGuildChannelsCacheFind
|
||||||
|
}
|
||||||
|
},
|
||||||
|
available: true
|
||||||
|
},
|
||||||
|
author: {
|
||||||
|
tag: 'AUTHORTAG'
|
||||||
|
}
|
||||||
|
} as unknown as Message;
|
||||||
|
|
||||||
|
const context: ICommandContext = {
|
||||||
|
name: 'warn',
|
||||||
|
args: ['warn', 'Test', 'Reason'],
|
||||||
|
message: message
|
||||||
|
};
|
||||||
|
|
||||||
|
const warn = new Warn();
|
||||||
|
|
||||||
|
const result = await warn.execute(context);
|
||||||
|
|
||||||
|
expect(messageChannelSend).toBeCalledTimes(1);
|
||||||
|
expect(logChannel.send).not.toBeCalled();
|
||||||
|
|
||||||
|
expect(result.embeds.length).toBe(1);
|
||||||
|
|
||||||
|
const embedError = result.embeds[0];
|
||||||
|
|
||||||
|
expect(embedError.description).toBe('User does not exist');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('Given member is not in server, expect error embed to be sent', async () => {
|
||||||
|
process.env = {
|
||||||
|
ROLES_MODERATOR: 'Moderator',
|
||||||
|
CHANNELS_LOGS_MOD: 'mod-logs'
|
||||||
|
};
|
||||||
|
|
||||||
|
const mentionedUser = {
|
||||||
|
displayAvatarURL: jest.fn(),
|
||||||
|
tag: 'USERTAG'
|
||||||
|
} as unknown as User;
|
||||||
|
const mentionedMember = {
|
||||||
|
warnnable: true,
|
||||||
|
warn: jest.fn()
|
||||||
|
} as unknown as GuildMember;
|
||||||
|
const logChannel = {
|
||||||
|
name: 'mod-logs',
|
||||||
|
send: jest.fn()
|
||||||
|
} as unknown as TextChannel;
|
||||||
|
|
||||||
|
const messageChannelSend = jest.fn();
|
||||||
|
const messageMentionsUsersFirst = jest.fn()
|
||||||
|
.mockReturnValue(mentionedUser);
|
||||||
|
const messageGuildMember = jest.fn()
|
||||||
|
.mockReturnValue(null);
|
||||||
|
const messageGuildChannelsCacheFind = jest.fn()
|
||||||
|
.mockImplementation((callback): TextChannel | undefined => {
|
||||||
|
const result = callback(logChannel);
|
||||||
|
|
||||||
|
if (!result) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
return logChannel;
|
||||||
|
});
|
||||||
|
|
||||||
|
const message = {
|
||||||
|
channel: {
|
||||||
|
send: messageChannelSend
|
||||||
|
},
|
||||||
|
mentions: {
|
||||||
|
users: {
|
||||||
|
first: messageMentionsUsersFirst
|
||||||
|
}
|
||||||
|
},
|
||||||
|
guild: {
|
||||||
|
member: messageGuildMember ,
|
||||||
|
channels: {
|
||||||
|
cache: {
|
||||||
|
find: messageGuildChannelsCacheFind
|
||||||
|
}
|
||||||
|
},
|
||||||
|
available: true
|
||||||
|
},
|
||||||
|
author: {
|
||||||
|
tag: 'AUTHORTAG'
|
||||||
|
}
|
||||||
|
} as unknown as Message;
|
||||||
|
|
||||||
|
const context: ICommandContext = {
|
||||||
|
name: 'warn',
|
||||||
|
args: ['warn', 'Test', 'Reason'],
|
||||||
|
message: message
|
||||||
|
};
|
||||||
|
|
||||||
|
const warn = new Warn();
|
||||||
|
|
||||||
|
const result = await warn.execute(context);
|
||||||
|
|
||||||
|
expect(messageChannelSend).toBeCalledTimes(1);
|
||||||
|
expect(logChannel.send).not.toBeCalled();
|
||||||
|
|
||||||
|
expect(result.embeds.length).toBe(1);
|
||||||
|
|
||||||
|
const embedError = result.embeds[0];
|
||||||
|
|
||||||
|
expect(embedError.description).toBe('User is not in this server');
|
||||||
|
});
|
||||||
|
|
||||||
|
test('Given guild is unavailable, expect return and do nothing', async () => {
|
||||||
|
process.env = {
|
||||||
|
ROLES_MODERATOR: 'Moderator',
|
||||||
|
CHANNELS_LOGS_MOD: 'mod-logs'
|
||||||
|
};
|
||||||
|
|
||||||
|
const mentionedUser = {
|
||||||
|
displayAvatarURL: jest.fn(),
|
||||||
|
tag: 'USERTAG'
|
||||||
|
} as unknown as User;
|
||||||
|
const mentionedMember = {
|
||||||
|
warnnable: true,
|
||||||
|
warn: jest.fn()
|
||||||
|
} as unknown as GuildMember;
|
||||||
|
const logChannel = {
|
||||||
|
name: 'mod-logs',
|
||||||
|
send: jest.fn()
|
||||||
|
} as unknown as TextChannel;
|
||||||
|
|
||||||
|
const messageChannelSend = jest.fn();
|
||||||
|
const messageMentionsUsersFirst = jest.fn()
|
||||||
|
.mockReturnValue(mentionedUser);
|
||||||
|
const messageGuildMember = jest.fn()
|
||||||
|
.mockReturnValue(mentionedMember);
|
||||||
|
const messageGuildChannelsCacheFind = jest.fn()
|
||||||
|
.mockImplementation((callback): TextChannel | undefined => {
|
||||||
|
const result = callback(logChannel);
|
||||||
|
|
||||||
|
if (!result) {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
|
return logChannel;
|
||||||
|
});
|
||||||
|
|
||||||
|
const message = {
|
||||||
|
channel: {
|
||||||
|
send: messageChannelSend
|
||||||
|
},
|
||||||
|
mentions: {
|
||||||
|
users: {
|
||||||
|
first: messageMentionsUsersFirst
|
||||||
|
}
|
||||||
|
},
|
||||||
|
guild: {
|
||||||
|
member: messageGuildMember ,
|
||||||
|
channels: {
|
||||||
|
cache: {
|
||||||
|
find: messageGuildChannelsCacheFind
|
||||||
|
}
|
||||||
|
},
|
||||||
|
available: false
|
||||||
|
},
|
||||||
|
author: {
|
||||||
|
tag: 'AUTHORTAG'
|
||||||
|
}
|
||||||
|
} as unknown as Message;
|
||||||
|
|
||||||
|
const context: ICommandContext = {
|
||||||
|
name: 'warn',
|
||||||
|
args: ['warn', 'Test', 'Reason'],
|
||||||
|
message: message
|
||||||
|
};
|
||||||
|
|
||||||
|
const warn = new Warn();
|
||||||
|
|
||||||
|
const result = await warn.execute(context);
|
||||||
|
|
||||||
|
expect(messageChannelSend).not.toBeCalled();
|
||||||
|
expect(logChannel.send).not.toBeCalled();
|
||||||
|
expect(result.embeds.length).toBe(0);
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in a new issue