89 lines
3.4 KiB
JavaScript
89 lines
3.4 KiB
JavaScript
// @ts-check
|
|
|
|
const {channelToKState, _convertNameAndTopic} = require("./create-room")
|
|
const {kstateStripConditionals} = require("../../matrix/kstate")
|
|
const {test} = require("supertape")
|
|
const testData = require("../../test/data")
|
|
|
|
const passthrough = require("../../passthrough")
|
|
const {db} = passthrough
|
|
|
|
test("channel2room: discoverable privacy room", async t => {
|
|
db.prepare("UPDATE guild_space SET privacy_level = 2").run()
|
|
t.deepEqual(
|
|
kstateStripConditionals(await channelToKState(testData.channel.general, testData.guild.general).then(x => x.channelKState)),
|
|
Object.assign({}, testData.room.general, {
|
|
"m.room.guest_access/": {guest_access: "forbidden"},
|
|
"m.room.join_rules/": {join_rule: "public"},
|
|
"m.room.history_visibility/": {history_visibility: "world_readable"}
|
|
})
|
|
)
|
|
})
|
|
|
|
test("channel2room: linkable privacy room", async t => {
|
|
db.prepare("UPDATE guild_space SET privacy_level = 1").run()
|
|
t.deepEqual(
|
|
kstateStripConditionals(await channelToKState(testData.channel.general, testData.guild.general).then(x => x.channelKState)),
|
|
Object.assign({}, testData.room.general, {
|
|
"m.room.guest_access/": {guest_access: "forbidden"},
|
|
"m.room.join_rules/": {join_rule: "public"}
|
|
})
|
|
)
|
|
})
|
|
|
|
test("channel2room: invite-only privacy room", async t => {
|
|
db.prepare("UPDATE guild_space SET privacy_level = 0").run()
|
|
t.deepEqual(
|
|
kstateStripConditionals(await channelToKState(testData.channel.general, testData.guild.general).then(x => x.channelKState)),
|
|
testData.room.general
|
|
)
|
|
})
|
|
|
|
test("convertNameAndTopic: custom name and topic", t => {
|
|
t.deepEqual(
|
|
_convertNameAndTopic({id: "123", name: "the-twilight-zone", topic: "Spooky stuff here. :ghost:", type: 0}, {id: "456"}, "hauntings"),
|
|
["hauntings", "#the-twilight-zone | Spooky stuff here. :ghost:\n\nChannel ID: 123\nGuild ID: 456"]
|
|
)
|
|
})
|
|
|
|
test("convertNameAndTopic: custom name, no topic", t => {
|
|
t.deepEqual(
|
|
_convertNameAndTopic({id: "123", name: "the-twilight-zone", type: 0}, {id: "456"}, "hauntings"),
|
|
["hauntings", "#the-twilight-zone\n\nChannel ID: 123\nGuild ID: 456"]
|
|
)
|
|
})
|
|
|
|
test("convertNameAndTopic: original name and topic", t => {
|
|
t.deepEqual(
|
|
_convertNameAndTopic({id: "123", name: "the-twilight-zone", topic: "Spooky stuff here. :ghost:", type: 0}, {id: "456"}, null),
|
|
["the-twilight-zone", "Spooky stuff here. :ghost:\n\nChannel ID: 123\nGuild ID: 456"]
|
|
)
|
|
})
|
|
|
|
test("convertNameAndTopic: original name, no topic", t => {
|
|
t.deepEqual(
|
|
_convertNameAndTopic({id: "123", name: "the-twilight-zone", type: 0}, {id: "456"}, null),
|
|
["the-twilight-zone", "Channel ID: 123\nGuild ID: 456"]
|
|
)
|
|
})
|
|
|
|
test("convertNameAndTopic: public thread icon", t => {
|
|
t.deepEqual(
|
|
_convertNameAndTopic({id: "123", name: "the-twilight-zone", topic: "Spooky stuff here. :ghost:", type: 11}, {id: "456"}, null),
|
|
["[⛓️] the-twilight-zone", "Spooky stuff here. :ghost:\n\nChannel ID: 123\nGuild ID: 456"]
|
|
)
|
|
})
|
|
|
|
test("convertNameAndTopic: private thread icon", t => {
|
|
t.deepEqual(
|
|
_convertNameAndTopic({id: "123", name: "the-twilight-zone", topic: "Spooky stuff here. :ghost:", type: 12}, {id: "456"}, null),
|
|
["[🔒⛓️] the-twilight-zone", "Spooky stuff here. :ghost:\n\nChannel ID: 123\nGuild ID: 456"]
|
|
)
|
|
})
|
|
|
|
test("convertNameAndTopic: voice channel icon", t => {
|
|
t.deepEqual(
|
|
_convertNameAndTopic({id: "123", name: "the-twilight-zone", topic: "Spooky stuff here. :ghost:", type: 2}, {id: "456"}, null),
|
|
["[🔊] the-twilight-zone", "Spooky stuff here. :ghost:\n\nChannel ID: 123\nGuild ID: 456"]
|
|
)
|
|
})
|