Files
ThreadNet-Web/test/unit-tests/utils/EventRenderingUtils-test.ts
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
1.8 KiB
TypeScript
Raw Normal View History

2022-12-29 11:03:24 +01:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
2022-12-29 11:03:24 +01:00
Copyright 2022 The Matrix.org Foundation C.I.C.
2024-09-09 14:57:16 +01: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 11:03:24 +01:00
*/
2024-10-15 14:57:26 +01:00
import { getEventDisplayInfo } from "../../../src/utils/EventRenderingUtils";
import { VoiceBroadcastInfoState } from "../../../src/voice-broadcast";
2022-12-29 11:03:24 +01:00
import { mkVoiceBroadcastInfoStateEvent } from "../voice-broadcast/utils/test-utils";
2024-10-15 14:57:26 +01:00
import { createTestClient } from "../../test-utils";
2022-12-29 11:03:24 +01: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", () => {
expect(getEventDisplayInfo(createTestClient(), mkBroadcastInfoEvent(VoiceBroadcastInfoState.Started), false))
2022-12-29 11:03:24 +01:00
.toMatchInlineSnapshot(`
{
"hasRenderer": true,
"isBubbleMessage": false,
"isInfoMessage": false,
"isLeftAlignedBubbleMessage": false,
"isSeeingThroughMessageHiddenForModeration": false,
2023-01-05 12:33:28 +01:00
"noBubbleEvent": true,
2022-12-29 11:03:24 +01:00
}
`);
});
it("should return the expected value for a broadcast stopped event", () => {
expect(getEventDisplayInfo(createTestClient(), mkBroadcastInfoEvent(VoiceBroadcastInfoState.Stopped), false))
2022-12-29 11:03:24 +01:00
.toMatchInlineSnapshot(`
{
"hasRenderer": true,
"isBubbleMessage": false,
"isInfoMessage": true,
"isLeftAlignedBubbleMessage": false,
"isSeeingThroughMessageHiddenForModeration": false,
2023-01-05 12:33:28 +01:00
"noBubbleEvent": true,
2022-12-29 11:03:24 +01:00
}
`);
});
});