2022-05-06 11:09:28 +02:00
|
|
|
/*
|
2023-08-01 09:32:53 +02:00
|
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
2022-05-06 11:09:28 +02:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
import React from "react";
|
2023-08-30 19:55:02 +02:00
|
|
|
import { CallType, MatrixCall } from "matrix-js-sdk/src/webrtc/call";
|
2023-09-01 11:45:50 +02:00
|
|
|
import { EventType, JoinRule, MatrixClient, MatrixEvent, PendingEventOrdering, Room } from "matrix-js-sdk/src/matrix";
|
2023-09-12 09:35:07 +02:00
|
|
|
import {
|
2023-11-01 13:03:10 +01:00
|
|
|
createEvent,
|
2023-09-12 09:35:07 +02:00
|
|
|
fireEvent,
|
|
|
|
getAllByLabelText,
|
|
|
|
getByLabelText,
|
2023-09-20 13:51:15 +02:00
|
|
|
getByRole,
|
2023-09-12 09:35:07 +02:00
|
|
|
getByText,
|
|
|
|
render,
|
|
|
|
screen,
|
|
|
|
waitFor,
|
|
|
|
} from "@testing-library/react";
|
2023-11-01 13:03:10 +01:00
|
|
|
import { ViewRoomOpts } from "@matrix-org/react-sdk-module-api/lib/lifecycles/RoomViewLifecycle";
|
2023-09-12 09:35:07 +02:00
|
|
|
|
|
|
|
import { filterConsole, mkEvent, stubClient, withClientContextRenderOptions } from "../../../test-utils";
|
2023-08-01 09:32:53 +02:00
|
|
|
import RoomHeader from "../../../../src/components/views/rooms/RoomHeader";
|
2023-08-02 12:54:06 +02:00
|
|
|
import DMRoomMap from "../../../../src/utils/DMRoomMap";
|
|
|
|
import { MatrixClientPeg } from "../../../../src/MatrixClientPeg";
|
|
|
|
import RightPanelStore from "../../../../src/stores/right-panel/RightPanelStore";
|
|
|
|
import { RightPanelPhases } from "../../../../src/stores/right-panel/RightPanelStorePhases";
|
2023-08-23 16:13:40 +02:00
|
|
|
import LegacyCallHandler from "../../../../src/LegacyCallHandler";
|
|
|
|
import SettingsStore from "../../../../src/settings/SettingsStore";
|
|
|
|
import SdkConfig from "../../../../src/SdkConfig";
|
|
|
|
import dispatcher from "../../../../src/dispatcher/dispatcher";
|
|
|
|
import { CallStore } from "../../../../src/stores/CallStore";
|
|
|
|
import { Call, ElementCall } from "../../../../src/models/Call";
|
2023-08-31 13:06:14 +02:00
|
|
|
import * as ShieldUtils from "../../../../src/utils/ShieldUtils";
|
2023-09-12 09:35:07 +02:00
|
|
|
import { Container, WidgetLayoutStore } from "../../../../src/stores/widgets/WidgetLayoutStore";
|
2023-08-31 13:06:14 +02:00
|
|
|
|
|
|
|
jest.mock("../../../../src/utils/ShieldUtils");
|
2023-06-09 14:33:54 +02:00
|
|
|
|
2023-08-30 19:55:02 +02:00
|
|
|
describe("RoomHeader", () => {
|
2023-09-12 09:35:07 +02:00
|
|
|
filterConsole("[getType] Room !1:example.org does not have an m.room.create event");
|
|
|
|
|
2022-09-25 16:57:25 +02:00
|
|
|
let room: Room;
|
|
|
|
|
2023-08-01 09:32:53 +02:00
|
|
|
const ROOM_ID = "!1:example.org";
|
2022-09-25 16:57:25 +02:00
|
|
|
|
2023-08-02 12:54:06 +02:00
|
|
|
let setCardSpy: jest.SpyInstance | undefined;
|
|
|
|
|
2023-08-01 09:32:53 +02:00
|
|
|
beforeEach(async () => {
|
2022-09-25 16:57:25 +02:00
|
|
|
stubClient();
|
2023-08-02 12:54:06 +02:00
|
|
|
room = new Room(ROOM_ID, MatrixClientPeg.get()!, "@alice:example.org", {
|
|
|
|
pendingEventOrdering: PendingEventOrdering.Detached,
|
|
|
|
});
|
|
|
|
DMRoomMap.setShared({
|
|
|
|
getUserIdForRoomId: jest.fn(),
|
|
|
|
} as unknown as DMRoomMap);
|
|
|
|
|
|
|
|
setCardSpy = jest.spyOn(RightPanelStore.instance, "setCard");
|
2023-02-28 09:58:23 +01:00
|
|
|
});
|
|
|
|
|
2023-08-23 16:13:40 +02:00
|
|
|
afterEach(() => {
|
2023-09-07 18:34:52 +02:00
|
|
|
jest.restoreAllMocks();
|
2023-08-23 16:13:40 +02:00
|
|
|
});
|
|
|
|
|
2023-08-01 09:32:53 +02:00
|
|
|
it("renders the room header", () => {
|
2023-08-30 19:55:02 +02:00
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
2023-08-01 09:32:53 +02:00
|
|
|
expect(container).toHaveTextContent(ROOM_ID);
|
2023-02-28 09:58:23 +01:00
|
|
|
});
|
2023-08-01 15:47:09 +02:00
|
|
|
|
2023-08-02 12:54:06 +02:00
|
|
|
it("renders the room topic", async () => {
|
2023-09-20 13:51:15 +02:00
|
|
|
const TOPIC = "Hello World! http://element.io";
|
2023-08-02 12:54:06 +02:00
|
|
|
|
|
|
|
const roomTopic = new MatrixEvent({
|
|
|
|
type: EventType.RoomTopic,
|
|
|
|
event_id: "$00002",
|
|
|
|
room_id: room.roomId,
|
|
|
|
sender: "@alice:example.com",
|
|
|
|
origin_server_ts: 1,
|
|
|
|
content: { topic: TOPIC },
|
|
|
|
state_key: "",
|
|
|
|
});
|
|
|
|
await room.addLiveEvents([roomTopic]);
|
|
|
|
|
2023-08-30 19:55:02 +02:00
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
2023-08-02 12:54:06 +02:00
|
|
|
expect(container).toHaveTextContent(TOPIC);
|
2023-09-20 13:51:15 +02:00
|
|
|
expect(getByRole(container, "link")).toHaveTextContent("http://element.io");
|
2023-08-02 12:54:06 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
it("opens the room summary", async () => {
|
2023-08-30 19:55:02 +02:00
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
2023-08-02 12:54:06 +02:00
|
|
|
|
2023-09-12 09:35:07 +02:00
|
|
|
fireEvent.click(getByText(container, ROOM_ID));
|
2023-08-02 12:54:06 +02:00
|
|
|
expect(setCardSpy).toHaveBeenCalledWith({ phase: RightPanelPhases.RoomSummary });
|
|
|
|
});
|
2023-08-23 16:13:40 +02:00
|
|
|
|
2023-08-30 19:55:02 +02:00
|
|
|
it("does not show the face pile for DMs", () => {
|
|
|
|
const client = MatrixClientPeg.get()!;
|
|
|
|
|
|
|
|
jest.spyOn(client, "getAccountData").mockReturnValue(
|
|
|
|
mkEvent({
|
|
|
|
event: true,
|
|
|
|
type: EventType.Direct,
|
|
|
|
user: client.getSafeUserId(),
|
|
|
|
content: {
|
|
|
|
"user@example.com": [room.roomId],
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
room.getJoinedMembers = jest.fn().mockReturnValue([
|
|
|
|
{
|
|
|
|
userId: "@me:example.org",
|
|
|
|
name: "Member",
|
|
|
|
rawDisplayName: "Member",
|
|
|
|
roomId: room.roomId,
|
|
|
|
membership: "join",
|
|
|
|
getAvatarUrl: () => "mxc://avatar.url/image.png",
|
|
|
|
getMxcAvatarUrl: () => "mxc://avatar.url/image.png",
|
|
|
|
},
|
|
|
|
]);
|
|
|
|
|
|
|
|
const { asFragment } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(asFragment()).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("shows a face pile for rooms", async () => {
|
|
|
|
const members = [
|
|
|
|
{
|
|
|
|
userId: "@me:example.org",
|
|
|
|
name: "Member",
|
|
|
|
rawDisplayName: "Member",
|
|
|
|
roomId: room.roomId,
|
|
|
|
membership: "join",
|
|
|
|
getAvatarUrl: () => "mxc://avatar.url/image.png",
|
|
|
|
getMxcAvatarUrl: () => "mxc://avatar.url/image.png",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
userId: "@you:example.org",
|
|
|
|
name: "Member",
|
|
|
|
rawDisplayName: "Member",
|
|
|
|
roomId: room.roomId,
|
|
|
|
membership: "join",
|
|
|
|
getAvatarUrl: () => "mxc://avatar.url/image.png",
|
|
|
|
getMxcAvatarUrl: () => "mxc://avatar.url/image.png",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
userId: "@them:example.org",
|
|
|
|
name: "Member",
|
|
|
|
rawDisplayName: "Member",
|
|
|
|
roomId: room.roomId,
|
|
|
|
membership: "join",
|
|
|
|
getAvatarUrl: () => "mxc://avatar.url/image.png",
|
|
|
|
getMxcAvatarUrl: () => "mxc://avatar.url/image.png",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
userId: "@bot:example.org",
|
|
|
|
name: "Bot user",
|
|
|
|
rawDisplayName: "Bot user",
|
|
|
|
roomId: room.roomId,
|
|
|
|
membership: "join",
|
|
|
|
getAvatarUrl: () => "mxc://avatar.url/image.png",
|
|
|
|
getMxcAvatarUrl: () => "mxc://avatar.url/image.png",
|
|
|
|
},
|
|
|
|
];
|
|
|
|
room.currentState.setJoinedMemberCount(members.length);
|
|
|
|
room.getJoinedMembers = jest.fn().mockReturnValue(members);
|
|
|
|
|
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(container).toHaveTextContent("4");
|
|
|
|
|
|
|
|
const facePile = getByLabelText(container, "4 members");
|
|
|
|
expect(facePile).toHaveTextContent("4");
|
|
|
|
|
2023-09-12 09:35:07 +02:00
|
|
|
fireEvent.click(facePile);
|
2023-08-30 19:55:02 +02:00
|
|
|
|
|
|
|
expect(setCardSpy).toHaveBeenCalledWith({ phase: RightPanelPhases.RoomMemberList });
|
|
|
|
});
|
|
|
|
|
2023-08-23 16:13:40 +02:00
|
|
|
it("opens the thread panel", async () => {
|
2023-08-30 19:55:02 +02:00
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
2023-08-23 16:13:40 +02:00
|
|
|
|
2023-09-12 09:35:07 +02:00
|
|
|
fireEvent.click(getByLabelText(container, "Threads"));
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(setCardSpy).toHaveBeenCalledWith({ phase: RightPanelPhases.ThreadPanel });
|
|
|
|
});
|
|
|
|
|
|
|
|
it("opens the notifications panel", async () => {
|
2023-08-31 22:57:45 +02:00
|
|
|
jest.spyOn(SettingsStore, "getValue").mockImplementation((name: string) => {
|
|
|
|
if (name === "feature_notifications") return true;
|
|
|
|
});
|
|
|
|
|
2023-08-30 19:55:02 +02:00
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
2023-08-23 16:13:40 +02:00
|
|
|
|
2023-09-12 09:35:07 +02:00
|
|
|
fireEvent.click(getByLabelText(container, "Notifications"));
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(setCardSpy).toHaveBeenCalledWith({ phase: RightPanelPhases.NotificationPanel });
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("groups call disabled", () => {
|
|
|
|
it("you can't call if you're alone", () => {
|
|
|
|
mockRoomMembers(room, 1);
|
2023-08-30 19:55:02 +02:00
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
2023-09-11 18:55:32 +02:00
|
|
|
for (const button of getAllByLabelText(container, "There's no one here to call")) {
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(button).toBeDisabled();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it("you can call when you're two in the room", async () => {
|
|
|
|
mockRoomMembers(room, 2);
|
2023-08-30 19:55:02 +02:00
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
2023-09-11 18:55:32 +02:00
|
|
|
const voiceButton = getByLabelText(container, "Voice call");
|
|
|
|
const videoButton = getByLabelText(container, "Video call");
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(voiceButton).not.toBeDisabled();
|
|
|
|
expect(videoButton).not.toBeDisabled();
|
|
|
|
|
|
|
|
const placeCallSpy = jest.spyOn(LegacyCallHandler.instance, "placeCall");
|
|
|
|
|
2023-09-12 09:35:07 +02:00
|
|
|
fireEvent.click(voiceButton);
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(placeCallSpy).toHaveBeenLastCalledWith(room.roomId, CallType.Voice);
|
|
|
|
|
2023-09-12 09:35:07 +02:00
|
|
|
fireEvent.click(videoButton);
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(placeCallSpy).toHaveBeenLastCalledWith(room.roomId, CallType.Video);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("you can't call if there's already a call", () => {
|
|
|
|
mockRoomMembers(room, 2);
|
|
|
|
jest.spyOn(LegacyCallHandler.instance, "getCallForRoom").mockReturnValue(
|
|
|
|
// The JS-SDK does not export the class `MatrixCall` only the type
|
|
|
|
{} as MatrixCall,
|
|
|
|
);
|
2023-08-30 19:55:02 +02:00
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
2023-09-11 18:55:32 +02:00
|
|
|
for (const button of getAllByLabelText(container, "Ongoing call")) {
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(button).toBeDisabled();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it("can calls in large rooms if able to edit widgets", () => {
|
|
|
|
mockRoomMembers(room, 10);
|
|
|
|
jest.spyOn(room.currentState, "mayClientSendStateEvent").mockReturnValue(true);
|
2023-08-30 19:55:02 +02:00
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
2023-08-23 16:13:40 +02:00
|
|
|
|
2023-09-11 18:55:32 +02:00
|
|
|
expect(getByLabelText(container, "Voice call")).not.toBeDisabled();
|
|
|
|
expect(getByLabelText(container, "Video call")).not.toBeDisabled();
|
2023-08-23 16:13:40 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
it("disable calls in large rooms by default", () => {
|
|
|
|
mockRoomMembers(room, 10);
|
|
|
|
jest.spyOn(room.currentState, "mayClientSendStateEvent").mockReturnValue(false);
|
2023-08-30 19:55:02 +02:00
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
2023-09-12 09:35:07 +02:00
|
|
|
expect(
|
|
|
|
getByLabelText(container, "You do not have permission to start voice calls", { selector: "button" }),
|
|
|
|
).toBeDisabled();
|
|
|
|
expect(
|
|
|
|
getByLabelText(container, "You do not have permission to start video calls", { selector: "button" }),
|
|
|
|
).toBeDisabled();
|
2023-08-23 16:13:40 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("group call enabled", () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
jest.spyOn(SettingsStore, "getValue").mockImplementation((feature) => feature === "feature_group_calls");
|
|
|
|
});
|
|
|
|
|
|
|
|
it("renders only the video call element", async () => {
|
2023-09-12 09:35:07 +02:00
|
|
|
mockRoomMembers(room, 3);
|
2023-08-23 16:13:40 +02:00
|
|
|
jest.spyOn(SdkConfig, "get").mockReturnValue({ use_exclusively: true });
|
|
|
|
// allow element calls
|
|
|
|
jest.spyOn(room.currentState, "mayClientSendStateEvent").mockReturnValue(true);
|
|
|
|
|
2023-08-30 19:55:02 +02:00
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
2023-08-23 16:13:40 +02:00
|
|
|
|
|
|
|
expect(screen.queryByTitle("Voice call")).toBeNull();
|
|
|
|
|
2023-09-11 18:55:32 +02:00
|
|
|
const videoCallButton = getByLabelText(container, "Video call");
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(videoCallButton).not.toBeDisabled();
|
|
|
|
|
|
|
|
const dispatcherSpy = jest.spyOn(dispatcher, "dispatch");
|
|
|
|
|
2023-09-12 09:35:07 +02:00
|
|
|
fireEvent.click(getByLabelText(container, "Video call"));
|
2023-08-23 16:13:40 +02:00
|
|
|
|
|
|
|
expect(dispatcherSpy).toHaveBeenCalledWith(expect.objectContaining({ view_call: true }));
|
|
|
|
});
|
|
|
|
|
2023-09-12 09:35:07 +02:00
|
|
|
it("can't call if there's an ongoing (pinned) call", () => {
|
2023-08-23 16:13:40 +02:00
|
|
|
jest.spyOn(SdkConfig, "get").mockReturnValue({ use_exclusively: true });
|
|
|
|
// allow element calls
|
|
|
|
jest.spyOn(room.currentState, "mayClientSendStateEvent").mockReturnValue(true);
|
2023-09-12 09:35:07 +02:00
|
|
|
jest.spyOn(WidgetLayoutStore.instance, "isInContainer").mockReturnValue(true);
|
2023-08-23 16:13:40 +02:00
|
|
|
|
2023-09-12 09:35:07 +02:00
|
|
|
jest.spyOn(CallStore.instance, "getCall").mockReturnValue({ widget: {} } as Call);
|
2023-08-23 16:13:40 +02:00
|
|
|
|
2023-08-30 19:55:02 +02:00
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
2023-09-11 18:55:32 +02:00
|
|
|
expect(getByLabelText(container, "Ongoing call")).toBeDisabled();
|
2023-08-23 16:13:40 +02:00
|
|
|
});
|
|
|
|
|
2023-09-12 09:35:07 +02:00
|
|
|
it("clicking on ongoing (unpinned) call re-pins it", () => {
|
|
|
|
jest.spyOn(SdkConfig, "get").mockReturnValue({ use_exclusively: true });
|
|
|
|
// allow element calls
|
|
|
|
jest.spyOn(room.currentState, "mayClientSendStateEvent").mockReturnValue(true);
|
|
|
|
jest.spyOn(WidgetLayoutStore.instance, "isInContainer").mockReturnValue(false);
|
|
|
|
const spy = jest.spyOn(WidgetLayoutStore.instance, "moveToContainer");
|
|
|
|
|
|
|
|
const widget = {};
|
|
|
|
jest.spyOn(CallStore.instance, "getCall").mockReturnValue({ widget } as Call);
|
|
|
|
|
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
|
|
|
expect(getByLabelText(container, "Video call")).not.toBeDisabled();
|
|
|
|
fireEvent.click(getByLabelText(container, "Video call"));
|
|
|
|
expect(spy).toHaveBeenCalledWith(room, widget, Container.Top);
|
|
|
|
});
|
|
|
|
|
2023-08-23 16:13:40 +02:00
|
|
|
it("disables calling if there's a jitsi call", () => {
|
|
|
|
mockRoomMembers(room, 2);
|
|
|
|
jest.spyOn(LegacyCallHandler.instance, "getCallForRoom").mockReturnValue(
|
|
|
|
// The JS-SDK does not export the class `MatrixCall` only the type
|
|
|
|
{} as MatrixCall,
|
|
|
|
);
|
2023-08-30 19:55:02 +02:00
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
2023-09-11 18:55:32 +02:00
|
|
|
for (const button of getAllByLabelText(container, "Ongoing call")) {
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(button).toBeDisabled();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it("can't call if you have no friends", () => {
|
|
|
|
mockRoomMembers(room, 1);
|
2023-08-30 19:55:02 +02:00
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
2023-09-11 18:55:32 +02:00
|
|
|
for (const button of getAllByLabelText(container, "There's no one here to call")) {
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(button).toBeDisabled();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
it("calls using legacy or jitsi", async () => {
|
|
|
|
mockRoomMembers(room, 2);
|
2023-08-30 19:55:02 +02:00
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
2023-08-23 16:13:40 +02:00
|
|
|
|
2023-09-11 18:55:32 +02:00
|
|
|
const voiceButton = getByLabelText(container, "Voice call");
|
|
|
|
const videoButton = getByLabelText(container, "Video call");
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(voiceButton).not.toBeDisabled();
|
|
|
|
expect(videoButton).not.toBeDisabled();
|
|
|
|
|
|
|
|
const placeCallSpy = jest.spyOn(LegacyCallHandler.instance, "placeCall");
|
2023-09-12 09:35:07 +02:00
|
|
|
fireEvent.click(voiceButton);
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(placeCallSpy).toHaveBeenLastCalledWith(room.roomId, CallType.Voice);
|
|
|
|
|
2023-09-12 09:35:07 +02:00
|
|
|
fireEvent.click(videoButton);
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(placeCallSpy).toHaveBeenLastCalledWith(room.roomId, CallType.Video);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("calls using legacy or jitsi for large rooms", async () => {
|
|
|
|
mockRoomMembers(room, 3);
|
|
|
|
|
|
|
|
jest.spyOn(room.currentState, "mayClientSendStateEvent").mockImplementation((key) => {
|
|
|
|
if (key === "im.vector.modular.widgets") return true;
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2023-08-30 19:55:02 +02:00
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
2023-08-23 16:13:40 +02:00
|
|
|
|
2023-09-11 18:55:32 +02:00
|
|
|
const voiceButton = getByLabelText(container, "Voice call");
|
|
|
|
const videoButton = getByLabelText(container, "Video call");
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(voiceButton).not.toBeDisabled();
|
|
|
|
expect(videoButton).not.toBeDisabled();
|
|
|
|
|
|
|
|
const placeCallSpy = jest.spyOn(LegacyCallHandler.instance, "placeCall");
|
2023-09-12 09:35:07 +02:00
|
|
|
fireEvent.click(voiceButton);
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(placeCallSpy).toHaveBeenLastCalledWith(room.roomId, CallType.Voice);
|
|
|
|
|
2023-09-12 09:35:07 +02:00
|
|
|
fireEvent.click(videoButton);
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(placeCallSpy).toHaveBeenLastCalledWith(room.roomId, CallType.Video);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("calls using element calls for large rooms", async () => {
|
|
|
|
mockRoomMembers(room, 3);
|
|
|
|
|
|
|
|
jest.spyOn(room.currentState, "mayClientSendStateEvent").mockImplementation((key) => {
|
|
|
|
if (key === "im.vector.modular.widgets") return true;
|
|
|
|
if (key === ElementCall.CALL_EVENT_TYPE.name) return true;
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2023-08-30 19:55:02 +02:00
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
2023-08-23 16:13:40 +02:00
|
|
|
|
2023-09-11 18:55:32 +02:00
|
|
|
const voiceButton = getByLabelText(container, "Voice call");
|
|
|
|
const videoButton = getByLabelText(container, "Video call");
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(voiceButton).not.toBeDisabled();
|
|
|
|
expect(videoButton).not.toBeDisabled();
|
|
|
|
|
|
|
|
const dispatcherSpy = jest.spyOn(dispatcher, "dispatch");
|
2023-09-12 09:35:07 +02:00
|
|
|
fireEvent.click(videoButton);
|
2023-08-23 16:13:40 +02:00
|
|
|
expect(dispatcherSpy).toHaveBeenCalledWith(expect.objectContaining({ view_call: true }));
|
|
|
|
});
|
|
|
|
});
|
2023-08-31 13:06:14 +02:00
|
|
|
|
2023-09-01 11:45:50 +02:00
|
|
|
describe("public room", () => {
|
|
|
|
it("shows a globe", () => {
|
|
|
|
const joinRuleEvent = new MatrixEvent({
|
|
|
|
type: EventType.RoomJoinRules,
|
|
|
|
content: { join_rule: JoinRule.Public },
|
|
|
|
sender: MatrixClientPeg.get()!.getSafeUserId(),
|
|
|
|
state_key: "",
|
|
|
|
room_id: room.roomId,
|
|
|
|
});
|
|
|
|
room.addLiveEvents([joinRuleEvent]);
|
|
|
|
|
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(getByLabelText(container, "Public room")).toBeInTheDocument();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-08-31 13:06:14 +02:00
|
|
|
describe("dm", () => {
|
|
|
|
let client: MatrixClient;
|
|
|
|
beforeEach(() => {
|
|
|
|
client = MatrixClientPeg.get()!;
|
|
|
|
|
|
|
|
// Make the mocked room a DM
|
|
|
|
jest.spyOn(client, "getAccountData").mockImplementation((eventType: string): MatrixEvent | undefined => {
|
|
|
|
if (eventType === EventType.Direct) {
|
|
|
|
return mkEvent({
|
|
|
|
event: true,
|
|
|
|
content: {
|
|
|
|
[client.getUserId()!]: [room.roomId],
|
|
|
|
},
|
|
|
|
type: EventType.Direct,
|
|
|
|
user: client.getSafeUserId(),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return undefined;
|
|
|
|
});
|
|
|
|
jest.spyOn(client, "isCryptoEnabled").mockReturnValue(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it.each([
|
|
|
|
[ShieldUtils.E2EStatus.Verified, "Verified"],
|
|
|
|
[ShieldUtils.E2EStatus.Warning, "Untrusted"],
|
|
|
|
])("shows the %s icon", async (value: ShieldUtils.E2EStatus, expectedLabel: string) => {
|
|
|
|
jest.spyOn(ShieldUtils, "shieldStatusForRoom").mockResolvedValue(value);
|
|
|
|
|
|
|
|
const { container } = render(
|
|
|
|
<RoomHeader room={room} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
|
|
|
|
|
|
|
await waitFor(() => expect(getByLabelText(container, expectedLabel)).toBeInTheDocument());
|
|
|
|
});
|
|
|
|
});
|
2023-11-01 13:03:10 +01:00
|
|
|
|
|
|
|
it("renders additionalButtons", async () => {
|
|
|
|
const additionalButtons: ViewRoomOpts["buttons"] = [
|
|
|
|
{
|
2023-11-09 12:23:30 +01:00
|
|
|
icon: () => <>test-icon</>,
|
2023-11-01 13:03:10 +01:00
|
|
|
id: "test-id",
|
|
|
|
label: () => "test-label",
|
|
|
|
onClick: () => {},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
render(
|
|
|
|
<RoomHeader room={room} additionalButtons={additionalButtons} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
|
|
|
expect(screen.getByRole("button", { name: "test-label" })).toBeInTheDocument();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("calls onClick-callback on additionalButtons", () => {
|
|
|
|
const callback = jest.fn();
|
|
|
|
const additionalButtons: ViewRoomOpts["buttons"] = [
|
|
|
|
{
|
2023-11-09 12:23:30 +01:00
|
|
|
icon: () => <>test-icon</>,
|
2023-11-01 13:03:10 +01:00
|
|
|
id: "test-id",
|
|
|
|
label: () => "test-label",
|
|
|
|
onClick: callback,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
render(
|
|
|
|
<RoomHeader room={room} additionalButtons={additionalButtons} />,
|
|
|
|
withClientContextRenderOptions(MatrixClientPeg.get()!),
|
|
|
|
);
|
|
|
|
|
|
|
|
const button = screen.getByRole("button", { name: "test-label" });
|
|
|
|
const event = createEvent.click(button);
|
|
|
|
event.stopPropagation = jest.fn();
|
|
|
|
fireEvent(button, event);
|
|
|
|
|
|
|
|
expect(callback).toHaveBeenCalled();
|
|
|
|
expect(event.stopPropagation).toHaveBeenCalled();
|
|
|
|
});
|
2022-09-25 16:57:25 +02:00
|
|
|
});
|
2023-08-23 16:13:40 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param count the number of users to create
|
|
|
|
*/
|
|
|
|
function mockRoomMembers(room: Room, count: number) {
|
|
|
|
const members = Array(count)
|
|
|
|
.fill(0)
|
|
|
|
.map((_, index) => ({
|
|
|
|
userId: `@user-${index}:example.org`,
|
|
|
|
name: `Member ${index}`,
|
|
|
|
rawDisplayName: `Member ${index}`,
|
|
|
|
roomId: room.roomId,
|
|
|
|
membership: "join",
|
|
|
|
getAvatarUrl: () => `mxc://avatar.url/user-${index}.png`,
|
|
|
|
getMxcAvatarUrl: () => `mxc://avatar.url/user-${index}.png`,
|
|
|
|
}));
|
|
|
|
|
|
|
|
room.currentState.setJoinedMemberCount(members.length);
|
|
|
|
room.getJoinedMembers = jest.fn().mockReturnValue(members);
|
|
|
|
}
|