2023-02-02 04:57:48 +08:00
|
|
|
/*
|
|
|
|
Copyright 2023 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 { render, fireEvent } from "@testing-library/react";
|
|
|
|
import { MatrixEvent, Room } from "matrix-js-sdk/src/matrix";
|
|
|
|
|
|
|
|
import DMRoomMap from "../../../../src/utils/DMRoomMap";
|
|
|
|
import RoomSummaryCard from "../../../../src/components/views/right_panel/RoomSummaryCard";
|
|
|
|
import ShareDialog from "../../../../src/components/views/dialogs/ShareDialog";
|
|
|
|
import ExportDialog from "../../../../src/components/views/dialogs/ExportDialog";
|
|
|
|
import MatrixClientContext from "../../../../src/contexts/MatrixClientContext";
|
|
|
|
import defaultDispatcher from "../../../../src/dispatcher/dispatcher";
|
|
|
|
import * as settingsHooks from "../../../../src/hooks/useSettings";
|
|
|
|
import Modal from "../../../../src/Modal";
|
|
|
|
import RightPanelStore from "../../../../src/stores/right-panel/RightPanelStore";
|
|
|
|
import { RightPanelPhases } from "../../../../src/stores/right-panel/RightPanelStorePhases";
|
|
|
|
import { getMockClientWithEventEmitter, mockClientMethodsUser } from "../../../test-utils";
|
2023-03-13 04:22:30 +08:00
|
|
|
import { PollHistoryDialog } from "../../../../src/components/views/dialogs/PollHistoryDialog";
|
2023-02-28 04:39:55 +08:00
|
|
|
import { RoomPermalinkCreator } from "../../../../src/utils/permalinks/Permalinks";
|
2023-02-02 04:57:48 +08:00
|
|
|
|
2023-05-25 16:42:09 +08:00
|
|
|
// Fake random strings to give a predictable snapshot for checkbox IDs
|
|
|
|
jest.mock("matrix-js-sdk/src/randomstring", () => ({
|
|
|
|
randomString: () => "abdefghi",
|
|
|
|
}));
|
|
|
|
|
2023-02-02 04:57:48 +08:00
|
|
|
describe("<RoomSummaryCard />", () => {
|
|
|
|
const userId = "@alice:domain.org";
|
|
|
|
const mockClient = getMockClientWithEventEmitter({
|
|
|
|
...mockClientMethodsUser(userId),
|
|
|
|
isRoomEncrypted: jest.fn(),
|
|
|
|
getRoom: jest.fn(),
|
|
|
|
});
|
|
|
|
const roomId = "!room:domain.org";
|
|
|
|
const room = new Room(roomId, mockClient, userId);
|
|
|
|
const roomCreateEvent = new MatrixEvent({
|
|
|
|
type: "m.room.create",
|
|
|
|
room_id: roomId,
|
|
|
|
sender: userId,
|
|
|
|
content: {
|
|
|
|
creator: userId,
|
|
|
|
room_version: "5",
|
|
|
|
},
|
|
|
|
state_key: "",
|
|
|
|
});
|
|
|
|
room.currentState.setStateEvents([roomCreateEvent]);
|
|
|
|
const defaultProps = {
|
|
|
|
room,
|
|
|
|
onClose: jest.fn(),
|
2023-02-28 04:39:55 +08:00
|
|
|
permalinkCreator: new RoomPermalinkCreator(room),
|
2023-02-02 04:57:48 +08:00
|
|
|
};
|
|
|
|
const getComponent = (props = {}) =>
|
|
|
|
render(<RoomSummaryCard {...defaultProps} {...props} />, {
|
|
|
|
wrapper: ({ children }) => (
|
|
|
|
<MatrixClientContext.Provider value={mockClient}>{children}</MatrixClientContext.Provider>
|
|
|
|
),
|
|
|
|
});
|
|
|
|
|
|
|
|
const modalSpy = jest.spyOn(Modal, "createDialog");
|
|
|
|
const dispatchSpy = jest.spyOn(defaultDispatcher, "dispatch");
|
|
|
|
const rightPanelCardSpy = jest.spyOn(RightPanelStore.instance, "pushCard");
|
|
|
|
const featureEnabledSpy = jest.spyOn(settingsHooks, "useFeatureEnabled");
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
jest.clearAllMocks();
|
2023-05-23 23:24:12 +08:00
|
|
|
DMRoomMap.makeShared(mockClient);
|
2023-02-02 04:57:48 +08:00
|
|
|
|
|
|
|
mockClient.getRoom.mockReturnValue(room);
|
|
|
|
jest.spyOn(room, "isElementVideoRoom").mockRestore();
|
|
|
|
jest.spyOn(room, "isCallRoom").mockRestore();
|
|
|
|
featureEnabledSpy.mockReset().mockReturnValue(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("renders the room summary", () => {
|
|
|
|
const { container } = getComponent();
|
|
|
|
expect(container).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("opens room members list on button click", () => {
|
|
|
|
const { getByText } = getComponent();
|
|
|
|
|
|
|
|
fireEvent.click(getByText("People"));
|
|
|
|
|
|
|
|
expect(rightPanelCardSpy).toHaveBeenCalledWith({ phase: RightPanelPhases.RoomMemberList }, true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("opens room file panel on button click", () => {
|
|
|
|
const { getByText } = getComponent();
|
|
|
|
|
|
|
|
fireEvent.click(getByText("Files"));
|
|
|
|
|
|
|
|
expect(rightPanelCardSpy).toHaveBeenCalledWith({ phase: RightPanelPhases.FilePanel }, true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("opens room export dialog on button click", () => {
|
|
|
|
const { getByText } = getComponent();
|
|
|
|
|
|
|
|
fireEvent.click(getByText("Export chat"));
|
|
|
|
|
|
|
|
expect(modalSpy).toHaveBeenCalledWith(ExportDialog, { room });
|
|
|
|
});
|
|
|
|
|
|
|
|
it("opens share room dialog on button click", () => {
|
|
|
|
const { getByText } = getComponent();
|
|
|
|
|
|
|
|
fireEvent.click(getByText("Share room"));
|
|
|
|
|
|
|
|
expect(modalSpy).toHaveBeenCalledWith(ShareDialog, { target: room });
|
|
|
|
});
|
|
|
|
|
|
|
|
it("opens room settings on button click", () => {
|
|
|
|
const { getByText } = getComponent();
|
|
|
|
|
|
|
|
fireEvent.click(getByText("Room settings"));
|
|
|
|
|
|
|
|
expect(dispatchSpy).toHaveBeenCalledWith({ action: "open_room_settings" });
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("pinning", () => {
|
|
|
|
it("renders pins options when pinning feature is enabled", () => {
|
|
|
|
featureEnabledSpy.mockImplementation((feature) => feature === "feature_pinning");
|
|
|
|
const { getByText } = getComponent();
|
|
|
|
|
|
|
|
expect(getByText("Pinned")).toBeInTheDocument();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("poll history", () => {
|
2023-03-16 04:54:12 +08:00
|
|
|
it("renders poll history option", () => {
|
2023-02-02 04:57:48 +08:00
|
|
|
const { getByText } = getComponent();
|
|
|
|
|
2023-03-29 06:13:51 +08:00
|
|
|
expect(getByText("Poll history")).toBeInTheDocument();
|
2023-02-02 04:57:48 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("opens poll history dialog on button click", () => {
|
|
|
|
const { getByText } = getComponent();
|
|
|
|
|
2023-03-29 06:13:51 +08:00
|
|
|
fireEvent.click(getByText("Poll history"));
|
2023-02-02 04:57:48 +08:00
|
|
|
|
2023-02-28 04:39:55 +08:00
|
|
|
expect(modalSpy).toHaveBeenCalledWith(PollHistoryDialog, {
|
|
|
|
room,
|
|
|
|
matrixClient: mockClient,
|
|
|
|
permalinkCreator: defaultProps.permalinkCreator,
|
|
|
|
});
|
2023-02-02 04:57:48 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("video rooms", () => {
|
|
|
|
it("does not render irrelevant options for element video room", () => {
|
|
|
|
jest.spyOn(room, "isElementVideoRoom").mockReturnValue(true);
|
|
|
|
featureEnabledSpy.mockImplementation(
|
|
|
|
(feature) => feature === "feature_video_rooms" || feature === "feature_pinning",
|
|
|
|
);
|
|
|
|
const { queryByText } = getComponent();
|
|
|
|
|
|
|
|
// options not rendered
|
|
|
|
expect(queryByText("Files")).not.toBeInTheDocument();
|
|
|
|
expect(queryByText("Pinned")).not.toBeInTheDocument();
|
|
|
|
expect(queryByText("Export chat")).not.toBeInTheDocument();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("does not render irrelevant options for element call room", () => {
|
|
|
|
jest.spyOn(room, "isCallRoom").mockReturnValue(true);
|
|
|
|
featureEnabledSpy.mockImplementation(
|
|
|
|
(feature) =>
|
|
|
|
feature === "feature_element_call_video_rooms" ||
|
|
|
|
feature === "feature_video_rooms" ||
|
|
|
|
feature === "feature_pinning",
|
|
|
|
);
|
|
|
|
const { queryByText } = getComponent();
|
|
|
|
|
|
|
|
// options not rendered
|
|
|
|
expect(queryByText("Files")).not.toBeInTheDocument();
|
|
|
|
expect(queryByText("Pinned")).not.toBeInTheDocument();
|
|
|
|
expect(queryByText("Export chat")).not.toBeInTheDocument();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|