mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 06:34:21 +00:00
dd05ee3a65
Co-authored-by: Eric Nemchik <eric@nemchik.com> Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
import {expect} from "chai";
|
|
import Network from "../../server/models/network";
|
|
import TextFileMessageStorage from "../../server/plugins/messageStorage/text";
|
|
|
|
describe("TextFileMessageStorage", function () {
|
|
it("should combine network name and uuid into a safe name", function () {
|
|
expect(
|
|
TextFileMessageStorage.getNetworkFolderName({
|
|
name: "Freenode",
|
|
uuid: "f9042ec9-4016-45e0-a8a8-d378fb252628",
|
|
} as Network)
|
|
).to.equal("freenode-4016-45e0-a8a8-d378fb252628");
|
|
});
|
|
|
|
it("network name should be cleaned up and lowercased", function () {
|
|
expect(
|
|
TextFileMessageStorage.getNetworkFolderName({
|
|
name: '@ TeSt ../..\\<>:"/\\|?*',
|
|
uuid: "f9042ec9-4016-45e0-a8a8-d378fb252628",
|
|
} as Network)
|
|
).to.equal("@-test-.._..--45e0-a8a8-d378fb252628");
|
|
});
|
|
|
|
it("folder name may contain two dashes if on boundary", function () {
|
|
expect(
|
|
TextFileMessageStorage.getNetworkFolderName({
|
|
name: "Freenod",
|
|
uuid: "f9042ec9-4016-45e0-a8a8-d378fb252628",
|
|
} as Network)
|
|
).to.equal("freenod--4016-45e0-a8a8-d378fb252628");
|
|
});
|
|
|
|
it("should limit network name length", function () {
|
|
expect(
|
|
TextFileMessageStorage.getNetworkFolderName({
|
|
name: "This network name is longer than the uuid itself but it should be limited",
|
|
uuid: "f9042ec9-4016-45e0-a8a8-d378fb252628",
|
|
} as Network)
|
|
).to.equal("this-network-name-is-lo-d378fb252628");
|
|
});
|
|
});
|