2017-08-15 09:58:28 +00:00
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const expect = require("chai").expect;
|
|
|
|
const Helper = require("../../src/helper");
|
|
|
|
|
|
|
|
describe("Clean IRC messages", function() {
|
|
|
|
it("should remove all formatting", function() {
|
|
|
|
const testCases = [{
|
|
|
|
input: "\x0303",
|
2017-11-15 06:35:15 +00:00
|
|
|
expected: "",
|
2017-08-15 09:58:28 +00:00
|
|
|
}, {
|
|
|
|
input: "\x02bold",
|
2017-11-15 06:35:15 +00:00
|
|
|
expected: "bold",
|
2017-08-15 09:58:28 +00:00
|
|
|
}, {
|
|
|
|
input: "\x038yellowText",
|
2017-11-15 06:35:15 +00:00
|
|
|
expected: "yellowText",
|
2017-08-15 09:58:28 +00:00
|
|
|
}, {
|
|
|
|
input: "\x030,0white,white",
|
2017-11-15 06:35:15 +00:00
|
|
|
expected: "white,white",
|
2017-08-15 09:58:28 +00:00
|
|
|
}, {
|
|
|
|
input: "\x034,8yellowBGredText",
|
2017-11-15 06:35:15 +00:00
|
|
|
expected: "yellowBGredText",
|
2017-08-15 09:58:28 +00:00
|
|
|
}, {
|
|
|
|
input: "\x1ditalic",
|
2017-11-15 06:35:15 +00:00
|
|
|
expected: "italic",
|
2017-08-15 09:58:28 +00:00
|
|
|
}, {
|
|
|
|
input: "\x1funderline",
|
2017-11-15 06:35:15 +00:00
|
|
|
expected: "underline",
|
2017-08-15 09:58:28 +00:00
|
|
|
}, {
|
|
|
|
input: "\x02bold\x038yellow\x02nonBold\x03default",
|
2017-11-15 06:35:15 +00:00
|
|
|
expected: "boldyellownonBolddefault",
|
2017-08-15 09:58:28 +00:00
|
|
|
}, {
|
|
|
|
input: "\x02bold\x02 \x02bold\x02",
|
2017-11-15 06:35:15 +00:00
|
|
|
expected: "bold bold",
|
2017-08-15 09:58:28 +00:00
|
|
|
}, {
|
|
|
|
input: "\x02irc\x0f://\x1dfreenode.net\x0f/\x034,8thelounge",
|
2017-11-15 06:35:15 +00:00
|
|
|
expected: "irc://freenode.net/thelounge",
|
2017-08-15 09:58:28 +00:00
|
|
|
}, {
|
|
|
|
input: "\x02#\x038,9thelounge",
|
2017-11-15 06:35:15 +00:00
|
|
|
expected: "#thelounge",
|
2017-08-15 09:58:28 +00:00
|
|
|
}];
|
|
|
|
|
|
|
|
const actual = testCases.map((testCase) => Helper.cleanIrcMessage(testCase.input));
|
|
|
|
const expected = testCases.map((testCase) => testCase.expected);
|
|
|
|
|
|
|
|
expect(actual).to.deep.equal(expected);
|
|
|
|
});
|
|
|
|
});
|