2022-12-29 18:03:24 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-12-29 18:03:24 +08:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-12-29 18:03:24 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
import { getEventDisplayInfo } from "../../src/utils/EventRenderingUtils";
|
|
|
|
import { VoiceBroadcastInfoState } from "../../src/voice-broadcast";
|
|
|
|
import { mkVoiceBroadcastInfoStateEvent } from "../voice-broadcast/utils/test-utils";
|
2023-05-23 23:24:12 +08:00
|
|
|
import { createTestClient } from "../test-utils";
|
2022-12-29 18:03:24 +08:00
|
|
|
|
|
|
|
describe("getEventDisplayInfo", () => {
|
|
|
|
const mkBroadcastInfoEvent = (state: VoiceBroadcastInfoState) => {
|
|
|
|
return mkVoiceBroadcastInfoStateEvent("!room:example.com", state, "@user:example.com", "ASD123");
|
|
|
|
};
|
|
|
|
|
|
|
|
it("should return the expected value for a broadcast started event", () => {
|
2023-05-23 23:24:12 +08:00
|
|
|
expect(getEventDisplayInfo(createTestClient(), mkBroadcastInfoEvent(VoiceBroadcastInfoState.Started), false))
|
2022-12-29 18:03:24 +08:00
|
|
|
.toMatchInlineSnapshot(`
|
|
|
|
{
|
|
|
|
"hasRenderer": true,
|
|
|
|
"isBubbleMessage": false,
|
|
|
|
"isInfoMessage": false,
|
|
|
|
"isLeftAlignedBubbleMessage": false,
|
|
|
|
"isSeeingThroughMessageHiddenForModeration": false,
|
2023-01-05 19:33:28 +08:00
|
|
|
"noBubbleEvent": true,
|
2022-12-29 18:03:24 +08:00
|
|
|
}
|
|
|
|
`);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should return the expected value for a broadcast stopped event", () => {
|
2023-05-23 23:24:12 +08:00
|
|
|
expect(getEventDisplayInfo(createTestClient(), mkBroadcastInfoEvent(VoiceBroadcastInfoState.Stopped), false))
|
2022-12-29 18:03:24 +08:00
|
|
|
.toMatchInlineSnapshot(`
|
|
|
|
{
|
|
|
|
"hasRenderer": true,
|
|
|
|
"isBubbleMessage": false,
|
|
|
|
"isInfoMessage": true,
|
|
|
|
"isLeftAlignedBubbleMessage": false,
|
|
|
|
"isSeeingThroughMessageHiddenForModeration": false,
|
2023-01-05 19:33:28 +08:00
|
|
|
"noBubbleEvent": true,
|
2022-12-29 18:03:24 +08:00
|
|
|
}
|
|
|
|
`);
|
|
|
|
});
|
|
|
|
});
|