2022-12-22 18:37:07 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-12-22 18:37:07 +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-22 18:37:07 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
import { mocked } from "jest-mock";
|
2023-08-09 15:18:41 +08:00
|
|
|
import { MatrixClient, MatrixEvent, Room } from "matrix-js-sdk/src/matrix";
|
2022-12-22 18:37:07 +08:00
|
|
|
|
|
|
|
import {
|
|
|
|
retrieveStartedInfoEvent,
|
|
|
|
VoiceBroadcastInfoEventType,
|
|
|
|
VoiceBroadcastInfoState,
|
2024-10-15 21:57:26 +08:00
|
|
|
} from "../../../../src/voice-broadcast";
|
|
|
|
import { mkEvent, stubClient } from "../../../test-utils";
|
2022-12-22 18:37:07 +08:00
|
|
|
import { mkVoiceBroadcastInfoStateEvent } from "./test-utils";
|
|
|
|
|
|
|
|
describe("retrieveStartedInfoEvent", () => {
|
|
|
|
let client: MatrixClient;
|
|
|
|
let room: Room;
|
|
|
|
|
|
|
|
const mkStartEvent = () => {
|
|
|
|
return mkVoiceBroadcastInfoStateEvent(
|
|
|
|
room.roomId,
|
|
|
|
VoiceBroadcastInfoState.Started,
|
|
|
|
client.getUserId()!,
|
|
|
|
client.deviceId!,
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const mkStopEvent = (startEvent: MatrixEvent) => {
|
|
|
|
return mkVoiceBroadcastInfoStateEvent(
|
|
|
|
room.roomId,
|
|
|
|
VoiceBroadcastInfoState.Stopped,
|
|
|
|
client.getUserId()!,
|
|
|
|
client.deviceId!,
|
|
|
|
startEvent,
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
client = stubClient();
|
|
|
|
room = new Room("!room:example.com", client, client.getUserId()!);
|
|
|
|
mocked(client.getRoom).mockImplementation((roomId: string): Room | null => {
|
|
|
|
if (roomId === room.roomId) return room;
|
|
|
|
return null;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it("when passing a started event, it should return the event", async () => {
|
|
|
|
const event = mkStartEvent();
|
|
|
|
expect(await retrieveStartedInfoEvent(event, client)).toBe(event);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("when passing an event without relation, it should return null", async () => {
|
|
|
|
const event = mkEvent({
|
|
|
|
event: true,
|
|
|
|
type: VoiceBroadcastInfoEventType,
|
|
|
|
user: client.getUserId()!,
|
|
|
|
content: {},
|
|
|
|
});
|
|
|
|
expect(await retrieveStartedInfoEvent(event, client)).toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("when the room contains the event, it should return it", async () => {
|
|
|
|
const startEvent = mkStartEvent();
|
|
|
|
const stopEvent = mkStopEvent(startEvent);
|
|
|
|
room.addLiveEvents([startEvent]);
|
|
|
|
expect(await retrieveStartedInfoEvent(stopEvent, client)).toBe(startEvent);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("when the room not contains the event, it should fetch it", async () => {
|
|
|
|
const startEvent = mkStartEvent();
|
|
|
|
const stopEvent = mkStopEvent(startEvent);
|
|
|
|
mocked(client.fetchRoomEvent).mockResolvedValue(startEvent.event);
|
|
|
|
expect((await retrieveStartedInfoEvent(stopEvent, client))?.getId()).toBe(startEvent.getId());
|
|
|
|
expect(client.fetchRoomEvent).toHaveBeenCalledWith(room.roomId, startEvent.getId());
|
|
|
|
});
|
|
|
|
});
|