2022-09-16 17:12:27 +02:00
|
|
|
/*
|
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
|
|
|
import { mocked, Mocked } from "jest-mock";
|
|
|
|
import { render, screen, act } from "@testing-library/react";
|
2023-08-09 09:18:41 +02:00
|
|
|
import { PendingEventOrdering, Room, RoomStateEvent, RoomType } from "matrix-js-sdk/src/matrix";
|
2022-09-16 17:12:27 +02:00
|
|
|
|
2023-08-09 09:18:41 +02:00
|
|
|
import type { MatrixClient, RoomMember } from "matrix-js-sdk/src/matrix";
|
2022-09-16 17:12:27 +02: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-05 19:12:23 +02:00
|
|
|
client = mocked(MatrixClientPeg.safeGet());
|
2022-09-16 17:12:27 +02:00
|
|
|
client.getUserId.mockReturnValue("@alice:example.org");
|
2023-05-23 17:24:12 +02:00
|
|
|
DMRoomMap.makeShared(client);
|
2022-09-16 17:12:27 +02:00
|
|
|
|
|
|
|
room = new Room("!1:example.org", client, "@alice:example.org", {
|
|
|
|
pendingEventOrdering: PendingEventOrdering.Detached,
|
|
|
|
});
|
|
|
|
alice = mkRoomMember(room.roomId, "@alice:example.org");
|
2022-12-12 12:24:14 +01:00
|
|
|
jest.spyOn(room, "getMember").mockImplementation((userId) => (userId === alice.userId ? alice : null));
|
2022-09-16 17:12:27 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
client.getRoom.mockImplementation((roomId) => (roomId === room.roomId ? room : null));
|
2022-09-16 17:12:27 +02:00
|
|
|
client.getRooms.mockReturnValue([room]);
|
|
|
|
client.reEmitter.reEmit(room, [RoomStateEvent.Events]);
|
|
|
|
|
|
|
|
enabledFeatures = [];
|
2022-12-12 12:24:14 +01:00
|
|
|
jest.spyOn(SettingsStore, "getValue").mockImplementation((settingName) =>
|
2022-09-16 17:12:27 +02:00
|
|
|
enabledFeatures.includes(settingName) ? true : undefined,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
client.reEmitter.stopReEmitting(room, [RoomStateEvent.Events]);
|
|
|
|
jest.restoreAllMocks();
|
|
|
|
});
|
|
|
|
|
|
|
|
const renderPreview = async (): Promise<void> => {
|
2022-12-12 12:24:14 +01:00
|
|
|
render(<RoomPreviewCard room={room} onJoinButtonClicked={() => {}} onRejectButtonClicked={() => {}} />);
|
2022-09-16 17:12:27 +02:00
|
|
|
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-11 18:16:53 +01:00
|
|
|
jest.spyOn(room, "getMyMembership").mockReturnValue(Membership.Invite);
|
2022-09-16 17:12:27 +02: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-11 18:16:53 +01:00
|
|
|
jest.spyOn(room, "getMyMembership").mockReturnValue(Membership.Invite);
|
2022-09-16 17:12:27 +02: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-11 18:16:53 +01:00
|
|
|
jest.spyOn(room, "getMyMembership").mockReturnValue(Membership.Invite);
|
2022-09-16 17:12:27 +02:00
|
|
|
|
|
|
|
await renderPreview();
|
|
|
|
expect(screen.queryByRole("button", { name: /beta/i })).toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("shows instructions on Jitsi video rooms invites if video rooms are disabled", async () => {
|
|
|
|
jest.spyOn(room, "getType").mockReturnValue(RoomType.ElementVideo);
|
2024-03-11 18:16:53 +01:00
|
|
|
jest.spyOn(room, "getMyMembership").mockReturnValue(Membership.Invite);
|
2022-09-16 17:12:27 +02:00
|
|
|
|
|
|
|
await renderPreview();
|
|
|
|
screen.getByText(/enable video rooms in labs/i);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("shows instructions on Element video rooms invites if video rooms are disabled", async () => {
|
|
|
|
jest.spyOn(room, "getType").mockReturnValue(RoomType.UnstableCall);
|
2024-03-11 18:16:53 +01:00
|
|
|
jest.spyOn(room, "getMyMembership").mockReturnValue(Membership.Invite);
|
2022-09-16 17:12:27 +02:00
|
|
|
enabledFeatures = ["feature_element_call_video_rooms"];
|
|
|
|
|
|
|
|
await renderPreview();
|
|
|
|
screen.getByText(/enable video rooms in labs/i);
|
|
|
|
});
|
|
|
|
});
|