2022-09-16 23:12:27 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-09-16 23:12:27 +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-09-16 23:12:27 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
|
|
|
import { mocked, Mocked } from "jest-mock";
|
2024-10-15 00:11:58 +08:00
|
|
|
import { render, screen, act } from "jest-matrix-react";
|
2024-03-18 22:40:52 +08:00
|
|
|
import { PendingEventOrdering, Room, RoomStateEvent, RoomType } from "matrix-js-sdk/src/matrix";
|
|
|
|
import { KnownMembership } from "matrix-js-sdk/src/types";
|
2022-09-16 23:12:27 +08:00
|
|
|
|
2023-08-09 15:18:41 +08:00
|
|
|
import type { MatrixClient, RoomMember } from "matrix-js-sdk/src/matrix";
|
2022-09-16 23:12:27 +08:00
|
|
|
import { stubClient, wrapInMatrixClientContext, mkRoomMember } from "../../../test-utils";
|
|
|
|
import { MatrixClientPeg } from "../../../../src/MatrixClientPeg";
|
|
|
|
import DMRoomMap from "../../../../src/utils/DMRoomMap";
|
|
|
|
import SettingsStore from "../../../../src/settings/SettingsStore";
|
|
|
|
import _RoomPreviewCard from "../../../../src/components/views/rooms/RoomPreviewCard";
|
|
|
|
|
|
|
|
const RoomPreviewCard = wrapInMatrixClientContext(_RoomPreviewCard);
|
|
|
|
|
|
|
|
describe("RoomPreviewCard", () => {
|
|
|
|
let client: Mocked<MatrixClient>;
|
|
|
|
let room: Room;
|
|
|
|
let alice: RoomMember;
|
|
|
|
let enabledFeatures: string[];
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
stubClient();
|
2023-06-06 01:12:23 +08:00
|
|
|
client = mocked(MatrixClientPeg.safeGet());
|
2022-09-16 23:12:27 +08:00
|
|
|
client.getUserId.mockReturnValue("@alice:example.org");
|
2023-05-23 23:24:12 +08:00
|
|
|
DMRoomMap.makeShared(client);
|
2022-09-16 23:12:27 +08:00
|
|
|
|
|
|
|
room = new Room("!1:example.org", client, "@alice:example.org", {
|
|
|
|
pendingEventOrdering: PendingEventOrdering.Detached,
|
|
|
|
});
|
|
|
|
alice = mkRoomMember(room.roomId, "@alice:example.org");
|
|
|
|
jest.spyOn(room, "getMember").mockImplementation((userId) => (userId === alice.userId ? alice : null));
|
|
|
|
|
|
|
|
client.getRoom.mockImplementation((roomId) => (roomId === room.roomId ? room : null));
|
|
|
|
client.getRooms.mockReturnValue([room]);
|
|
|
|
client.reEmitter.reEmit(room, [RoomStateEvent.Events]);
|
|
|
|
|
|
|
|
enabledFeatures = [];
|
|
|
|
jest.spyOn(SettingsStore, "getValue").mockImplementation((settingName) =>
|
|
|
|
enabledFeatures.includes(settingName) ? true : undefined,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
client.reEmitter.stopReEmitting(room, [RoomStateEvent.Events]);
|
|
|
|
jest.restoreAllMocks();
|
|
|
|
});
|
|
|
|
|
|
|
|
const renderPreview = async (): Promise<void> => {
|
|
|
|
render(<RoomPreviewCard room={room} onJoinButtonClicked={() => {}} onRejectButtonClicked={() => {}} />);
|
|
|
|
await act(() => Promise.resolve()); // Allow effects to settle
|
|
|
|
};
|
|
|
|
|
|
|
|
it("shows a beta pill on Jitsi video room invites", async () => {
|
|
|
|
jest.spyOn(room, "getType").mockReturnValue(RoomType.ElementVideo);
|
2024-03-12 22:52:54 +08:00
|
|
|
jest.spyOn(room, "getMyMembership").mockReturnValue(KnownMembership.Invite);
|
2022-09-16 23:12:27 +08:00
|
|
|
enabledFeatures = ["feature_video_rooms"];
|
|
|
|
|
|
|
|
await renderPreview();
|
|
|
|
screen.getByRole("button", { name: /beta/i });
|
|
|
|
});
|
|
|
|
|
|
|
|
it("shows a beta pill on Element video room invites", async () => {
|
|
|
|
jest.spyOn(room, "getType").mockReturnValue(RoomType.UnstableCall);
|
2024-03-12 22:52:54 +08:00
|
|
|
jest.spyOn(room, "getMyMembership").mockReturnValue(KnownMembership.Invite);
|
2022-09-16 23:12:27 +08:00
|
|
|
enabledFeatures = ["feature_video_rooms", "feature_element_call_video_rooms"];
|
|
|
|
|
|
|
|
await renderPreview();
|
|
|
|
screen.getByRole("button", { name: /beta/i });
|
|
|
|
});
|
|
|
|
|
|
|
|
it("doesn't show a beta pill on normal invites", async () => {
|
2024-03-12 22:52:54 +08:00
|
|
|
jest.spyOn(room, "getMyMembership").mockReturnValue(KnownMembership.Invite);
|
2022-09-16 23:12:27 +08:00
|
|
|
|
|
|
|
await renderPreview();
|
|
|
|
expect(screen.queryByRole("button", { name: /beta/i })).toBeNull();
|
|
|
|
});
|
|
|
|
});
|