Fix tests for mode shorthand commands

This commit is contained in:
JeDaYoshi 2021-07-03 21:20:28 +00:00
parent 4dacaa46f3
commit e0e12c1960
No known key found for this signature in database
GPG key ID: 8060B288C274219D
2 changed files with 20 additions and 4 deletions

View file

@ -42,7 +42,7 @@ exports.input = function ({irc, nick}, chan, cmd, args) {
devoice: "-v",
}[cmd];
const limit = parseInt(irc.network.supports("modes")) || 1;
const limit = parseInt(irc.network.supports("MODES")) || 1;
for (let i = 0; i < target.length; i += limit) {
const targets = target.slice(i, i + limit);

View file

@ -20,6 +20,13 @@ describe("Commands", function () {
lastCommand: null,
nick: "xPaw",
irc: {
network: {
supports(type) {
if (type.toUpperCase() === "MODES") {
return "4";
}
},
},
raw(...args) {
testableNetwork.lastCommand = args.join(" ");
},
@ -82,9 +89,18 @@ describe("Commands", function () {
ModeCommand.input(testableNetwork, channel, "devoice", ["xPaw"]);
expect(testableNetwork.lastCommand).to.equal("MODE #thelounge -v xPaw");
// Multiple arguments are supported, sent as separate commands
ModeCommand.input(testableNetwork, channel, "devoice", ["xPaw", "Max-P"]);
expect(testableNetwork.lastCommand).to.equal("MODE #thelounge -v Max-P");
ModeCommand.input(testableNetwork, channel, "voice", ["xPaw", "Max-P"]);
expect(testableNetwork.lastCommand).to.equal("MODE #thelounge +vv xPaw Max-P");
// since the limit for modes on tests is 4, it should send two commands
ModeCommand.input(testableNetwork, channel, "devoice", [
"xPaw",
"Max-P",
"hey",
"idk",
"thelounge",
]);
expect(testableNetwork.lastCommand).to.equal("MODE #thelounge -v thelounge");
});
});
});