hardlounge/test/client/js/helpers/ircmessageparser/findChannels.ts

155 lines
2.8 KiB
TypeScript
Raw Normal View History

import {expect} from "chai";
import findChannels from "../../../../../client/js/helpers/ircmessageparser/findChannels";
2017-03-18 04:18:47 -04:00
describe("findChannels", () => {
it("should find single letter channel", () => {
const input = "#a";
2019-07-17 05:33:59 -04:00
const expected = [
{
channel: "#a",
start: 0,
end: 2,
},
];
2017-03-18 04:18:47 -04:00
const actual = findChannels(input, ["#"], ["@", "+"]);
2017-03-18 04:18:47 -04:00
expect(actual).to.deep.equal(expected);
});
it("should find utf8 channels", () => {
const input = "#äöü";
2019-07-17 05:33:59 -04:00
const expected = [
{
channel: "#äöü",
start: 0,
end: 4,
},
];
2017-03-18 04:18:47 -04:00
const actual = findChannels(input, ["#"], ["@", "+"]);
2017-03-18 04:18:47 -04:00
expect(actual).to.deep.equal(expected);
});
it("should find inline channel", () => {
const input = "inline #channel text";
2019-07-17 05:33:59 -04:00
const expected = [
{
channel: "#channel",
start: 7,
end: 15,
},
];
2017-03-18 04:18:47 -04:00
const actual = findChannels(input, ["#"], ["@", "+"]);
2017-03-18 04:18:47 -04:00
expect(actual).to.deep.equal(expected);
});
it("should stop at \\0x07", () => {
const input = "#chan\x07nel";
2019-07-17 05:33:59 -04:00
const expected = [
{
channel: "#chan",
start: 0,
end: 5,
},
];
2017-03-18 04:18:47 -04:00
const actual = findChannels(input, ["#"], ["@", "+"]);
2017-03-18 04:18:47 -04:00
expect(actual).to.deep.equal(expected);
});
it("should allow classics pranks", () => {
const input = "#1,000";
2019-07-17 05:33:59 -04:00
const expected = [
{
channel: "#1,000",
start: 0,
end: 6,
},
];
2017-03-18 04:18:47 -04:00
const actual = findChannels(input, ["#"], ["@", "+"]);
2017-03-18 04:18:47 -04:00
expect(actual).to.deep.equal(expected);
});
2017-08-25 11:58:16 -04:00
it("should work with whois responses", () => {
2017-03-18 04:18:47 -04:00
const input = "@#a";
2019-07-17 05:33:59 -04:00
const expected = [
{
channel: "#a",
start: 1,
end: 3,
},
];
2017-03-18 04:18:47 -04:00
const actual = findChannels(input, ["#"], ["@", "+"]);
2017-03-18 04:18:47 -04:00
expect(actual).to.deep.equal(expected);
});
it("should work with IRCv3.1 multi-prefix", () => {
const input = "!@%+#a";
2019-07-17 05:33:59 -04:00
const expected = [
{
channel: "#a",
start: 4,
end: 6,
},
];
2017-03-18 04:18:47 -04:00
const actual = findChannels(input, ["#"], ["!", "@", "%", "+"]);
2017-03-18 04:18:47 -04:00
expect(actual).to.deep.equal(expected);
});
it("should work with custom channelPrefixes", () => {
const input = "@a";
2019-07-17 05:33:59 -04:00
const expected = [
{
channel: "@a",
start: 0,
end: 2,
},
];
2017-03-18 04:18:47 -04:00
const actual = findChannels(input, ["@"], ["#", "+"]);
2017-03-18 04:18:47 -04:00
expect(actual).to.deep.equal(expected);
});
it("should work with - in usermodes", () => {
const input = "-#a some -text";
const expected = [
{
channel: "#a",
start: 1,
end: 3,
},
];
const actual = findChannels(input, ["#"], ["#", "+", "-"]);
expect(actual).to.deep.equal(expected);
});
2017-03-18 04:18:47 -04:00
it("should handle multiple channelPrefix correctly", () => {
const input = "##test";
2019-07-17 05:33:59 -04:00
const expected = [
{
channel: "##test",
start: 0,
end: 6,
},
];
2017-03-18 04:18:47 -04:00
const actual = findChannels(input, ["#"], ["@", "+"]);
2017-03-18 04:18:47 -04:00
expect(actual).to.deep.equal(expected);
});
});