thelounge/test/models/msg.ts
2024-04-21 15:11:52 +02:00

60 lines
1.5 KiB
TypeScript

import {expect} from "chai";
import Msg from "../../server/models/msg";
import User from "../../server/models/user";
import {LinkPreview} from "../../shared/types/msg";
describe("Msg", function () {
["from", "target"].forEach((prop) => {
it(`should keep a copy of the original user in the \`${prop}\` property`, function () {
const prefixLookup = {modeToSymbol: {a: "&", o: "@"}};
const user = new User(
{
modes: ["o"],
nick: "foo",
},
prefixLookup as any
);
const msg = new Msg({[prop]: user});
// Mutating the user
user.setModes(["a"], prefixLookup as any);
user.nick = "bar";
// Message's `.from`/etc. should still refer to the original user
expect(msg[prop]).to.deep.equal({mode: "@", nick: "foo"});
});
});
describe("#findPreview(link)", function () {
const msg = new Msg({
previews: [
{
body: "",
head: "Example Domain",
link: "https://example.org/",
thumb: "",
type: "link",
shown: true,
},
{
body: "",
head: "The Lounge",
link: "https://thelounge.chat/",
thumb: "",
type: "link",
shown: true,
},
] as LinkPreview[],
});
it("should find a preview given an existing link", function () {
expect(msg.findPreview("https://thelounge.chat/")?.head).to.equal("The Lounge");
});
it("should not find a preview that does not exist", function () {
expect(msg.findPreview("https://github.com/thelounge/thelounge")).to.be.undefined;
});
});
});