Revision control

Copy as Markdown

Other Tools

/* Any copyright is dedicated to the Public Domain.
var { ircAccount } = ChromeUtils.importESModule(
);
var input = [
undefined,
"test",
"\\test",
"te\\st",
"test\\",
"\\\\test",
"te\\\\st",
"test\\\\",
"\\\\\\test",
"te\\\\\\st",
"test\\\\\\",
"\x01test",
"te\x01st",
"test\x01",
"\\\\\x01test",
"\\\\atest",
];
var expectedOutputParams = [
"ACTION",
"ACTION test",
"ACTION \\\\test",
"ACTION te\\\\st",
"ACTION test\\\\",
"ACTION \\\\\\\\test",
"ACTION te\\\\\\\\st",
"ACTION test\\\\\\\\",
"ACTION \\\\\\\\\\\\test",
"ACTION te\\\\\\\\\\\\st",
"ACTION test\\\\\\\\\\\\",
"ACTION \\atest",
"ACTION te\\ast",
"ACTION test\\a",
"ACTION \\\\\\\\\\atest",
"ACTION \\\\\\\\atest",
];
var outputParams = [];
ircAccount.prototype.sendMessage = function (aCommand, aParams) {
equal("PRIVMSG", aCommand);
outputParams.push(aParams[1]);
};
function run_test() {
input.map(aStr =>
ircAccount.prototype.sendCTCPMessage("", false, "ACTION", aStr)
);
// Ensure both arrays have the same length.
equal(expectedOutputParams.length, outputParams.length);
// Ensure the values in the arrays are equal.
for (let i = 0; i < outputParams.length; ++i) {
equal("\x01" + expectedOutputParams[i] + "\x01", outputParams[i]);
}
}