2016-10-08 15:56:41 +00:00
|
|
|
"use strict";
|
|
|
|
|
2018-01-11 11:33:36 +00:00
|
|
|
const expect = require("chai").expect;
|
2016-10-08 15:56:41 +00:00
|
|
|
|
2018-01-11 11:33:36 +00:00
|
|
|
const Chan = require("../../src/models/chan");
|
|
|
|
const ModeCommand = require("../../src/plugins/inputs/mode");
|
2016-10-08 15:56:41 +00:00
|
|
|
|
2020-03-21 20:55:36 +00:00
|
|
|
describe("Commands", function () {
|
|
|
|
describe("/mode", function () {
|
2016-10-08 15:56:41 +00:00
|
|
|
const channel = new Chan({
|
2017-11-15 06:35:15 +00:00
|
|
|
name: "#thelounge",
|
2016-10-08 15:56:41 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const lobby = new Chan({
|
|
|
|
name: "Network Lobby",
|
2017-11-15 06:35:15 +00:00
|
|
|
type: Chan.Type.LOBBY,
|
2016-10-08 15:56:41 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const testableNetwork = {
|
|
|
|
lastCommand: null,
|
|
|
|
nick: "xPaw",
|
|
|
|
irc: {
|
2021-07-03 21:20:28 +00:00
|
|
|
network: {
|
|
|
|
supports(type) {
|
|
|
|
if (type.toUpperCase() === "MODES") {
|
|
|
|
return "4";
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
2018-03-05 00:59:16 +00:00
|
|
|
raw(...args) {
|
2017-11-22 06:39:32 +00:00
|
|
|
testableNetwork.lastCommand = args.join(" ");
|
2017-11-15 06:35:15 +00:00
|
|
|
},
|
|
|
|
},
|
2016-10-08 15:56:41 +00:00
|
|
|
};
|
|
|
|
|
2020-03-21 20:55:36 +00:00
|
|
|
it("should not mess with the given target", function () {
|
|
|
|
const test = function (expected, args) {
|
2016-10-08 15:56:41 +00:00
|
|
|
ModeCommand.input(testableNetwork, channel, "mode", Array.from(args));
|
|
|
|
expect(testableNetwork.lastCommand).to.equal(expected);
|
|
|
|
|
|
|
|
ModeCommand.input(testableNetwork, lobby, "mode", Array.from(args));
|
|
|
|
expect(testableNetwork.lastCommand).to.equal(expected);
|
|
|
|
};
|
|
|
|
|
|
|
|
test("MODE xPaw +i", ["xPaw", "+i"]);
|
|
|
|
test("MODE xPaw -w", ["xPaw", "-w"]);
|
|
|
|
test("MODE #thelounge +o xPaw", ["#thelounge", "+o", "xPaw"]);
|
|
|
|
test("MODE #thelounge -v xPaw", ["#thelounge", "-v", "xPaw"]);
|
|
|
|
test("MODE #thelounge +o-o xPaw Max-P", ["#thelounge", "+o-o", "xPaw", "Max-P"]);
|
|
|
|
test("MODE #thelounge", ["#thelounge"]);
|
|
|
|
});
|
|
|
|
|
2020-03-21 20:55:36 +00:00
|
|
|
it("should assume target if none given", function () {
|
2016-10-08 15:56:41 +00:00
|
|
|
ModeCommand.input(testableNetwork, channel, "mode", []);
|
|
|
|
expect(testableNetwork.lastCommand).to.equal("MODE #thelounge");
|
|
|
|
|
|
|
|
ModeCommand.input(testableNetwork, lobby, "mode", []);
|
|
|
|
expect(testableNetwork.lastCommand).to.equal("MODE xPaw");
|
|
|
|
|
|
|
|
ModeCommand.input(testableNetwork, channel, "mode", ["+b"]);
|
|
|
|
expect(testableNetwork.lastCommand).to.equal("MODE #thelounge +b");
|
|
|
|
|
|
|
|
ModeCommand.input(testableNetwork, lobby, "mode", ["+b"]);
|
|
|
|
expect(testableNetwork.lastCommand).to.equal("MODE xPaw +b");
|
|
|
|
|
|
|
|
ModeCommand.input(testableNetwork, channel, "mode", ["-o", "hey"]);
|
|
|
|
expect(testableNetwork.lastCommand).to.equal("MODE #thelounge -o hey");
|
|
|
|
|
|
|
|
ModeCommand.input(testableNetwork, lobby, "mode", ["-i", "idk"]);
|
|
|
|
expect(testableNetwork.lastCommand).to.equal("MODE xPaw -i idk");
|
|
|
|
});
|
|
|
|
|
2020-03-21 20:55:36 +00:00
|
|
|
it("should support shorthand commands", function () {
|
2016-10-08 15:56:41 +00:00
|
|
|
ModeCommand.input(testableNetwork, channel, "op", ["xPaw"]);
|
|
|
|
expect(testableNetwork.lastCommand).to.equal("MODE #thelounge +o xPaw");
|
|
|
|
|
|
|
|
ModeCommand.input(testableNetwork, channel, "deop", ["xPaw"]);
|
|
|
|
expect(testableNetwork.lastCommand).to.equal("MODE #thelounge -o xPaw");
|
|
|
|
|
|
|
|
ModeCommand.input(testableNetwork, channel, "hop", ["xPaw"]);
|
|
|
|
expect(testableNetwork.lastCommand).to.equal("MODE #thelounge +h xPaw");
|
|
|
|
|
|
|
|
ModeCommand.input(testableNetwork, channel, "dehop", ["xPaw"]);
|
|
|
|
expect(testableNetwork.lastCommand).to.equal("MODE #thelounge -h xPaw");
|
|
|
|
|
|
|
|
ModeCommand.input(testableNetwork, channel, "voice", ["xPaw"]);
|
|
|
|
expect(testableNetwork.lastCommand).to.equal("MODE #thelounge +v xPaw");
|
|
|
|
|
|
|
|
ModeCommand.input(testableNetwork, channel, "devoice", ["xPaw"]);
|
|
|
|
expect(testableNetwork.lastCommand).to.equal("MODE #thelounge -v xPaw");
|
|
|
|
|
2021-07-03 21:20:28 +00:00
|
|
|
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");
|
2016-10-08 15:56:41 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|