2023-03-28 04:10:18 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2023-03-28 04:10:18 +08:00
|
|
|
Copyright 2023 Mikhail Aheichyk
|
|
|
|
Copyright 2023 Nordeck IT + Consulting GmbH.
|
2023-04-19 19:34:27 +08:00
|
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
2023-03-28 04:10:18 +08:00
|
|
|
|
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.
|
2023-03-28 04:10:18 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
import { render, screen } from "@testing-library/react";
|
|
|
|
import React, { ComponentProps } from "react";
|
|
|
|
import { mocked } from "jest-mock";
|
2024-03-18 22:40:52 +08:00
|
|
|
import { MatrixClient, PendingEventOrdering, Room } from "matrix-js-sdk/src/matrix";
|
|
|
|
import { KnownMembership } from "matrix-js-sdk/src/types";
|
2023-03-28 04:10:18 +08:00
|
|
|
|
|
|
|
import MatrixClientContext from "../../../../src/contexts/MatrixClientContext";
|
|
|
|
import RoomContextMenu from "../../../../src/components/views/context_menus/RoomContextMenu";
|
|
|
|
import { shouldShowComponent } from "../../../../src/customisations/helpers/UIComponents";
|
|
|
|
import { stubClient } from "../../../test-utils";
|
|
|
|
import { MatrixClientPeg } from "../../../../src/MatrixClientPeg";
|
|
|
|
import DMRoomMap from "../../../../src/utils/DMRoomMap";
|
2023-04-19 19:34:27 +08:00
|
|
|
import SettingsStore from "../../../../src/settings/SettingsStore";
|
2023-08-23 01:47:33 +08:00
|
|
|
import { EchoChamber } from "../../../../src/stores/local-echo/EchoChamber";
|
|
|
|
import { RoomNotifState } from "../../../../src/RoomNotifs";
|
2023-03-28 04:10:18 +08:00
|
|
|
|
|
|
|
jest.mock("../../../../src/customisations/helpers/UIComponents", () => ({
|
|
|
|
shouldShowComponent: jest.fn(),
|
|
|
|
}));
|
|
|
|
|
|
|
|
describe("RoomContextMenu", () => {
|
|
|
|
const ROOM_ID = "!123:matrix.org";
|
|
|
|
|
|
|
|
let room: Room;
|
|
|
|
let mockClient: MatrixClient;
|
|
|
|
|
|
|
|
let onFinished: () => void;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
jest.clearAllMocks();
|
|
|
|
|
|
|
|
stubClient();
|
2023-06-06 01:12:23 +08:00
|
|
|
mockClient = mocked(MatrixClientPeg.safeGet());
|
2023-03-28 04:10:18 +08:00
|
|
|
|
|
|
|
room = new Room(ROOM_ID, mockClient, mockClient.getUserId() ?? "", {
|
|
|
|
pendingEventOrdering: PendingEventOrdering.Detached,
|
|
|
|
});
|
|
|
|
|
|
|
|
const dmRoomMap = {
|
|
|
|
getUserIdForRoomId: jest.fn(),
|
|
|
|
} as unknown as DMRoomMap;
|
|
|
|
DMRoomMap.setShared(dmRoomMap);
|
|
|
|
|
|
|
|
onFinished = jest.fn();
|
|
|
|
});
|
|
|
|
|
2023-04-19 19:34:27 +08:00
|
|
|
function renderComponent(props: Partial<ComponentProps<typeof RoomContextMenu>> = {}) {
|
|
|
|
render(
|
2023-03-28 04:10:18 +08:00
|
|
|
<MatrixClientContext.Provider value={mockClient}>
|
|
|
|
<RoomContextMenu room={room} onFinished={onFinished} {...props} />
|
|
|
|
</MatrixClientContext.Provider>,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
it("does not render invite menu item when UIComponent customisations disable invite", () => {
|
|
|
|
jest.spyOn(room, "canInvite").mockReturnValue(true);
|
|
|
|
mocked(shouldShowComponent).mockReturnValue(false);
|
|
|
|
|
2023-04-19 19:34:27 +08:00
|
|
|
renderComponent();
|
2023-03-28 04:10:18 +08:00
|
|
|
|
|
|
|
expect(screen.queryByRole("menuitem", { name: "Invite" })).not.toBeInTheDocument();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("renders invite menu item when UIComponent customisations enable invite", () => {
|
|
|
|
jest.spyOn(room, "canInvite").mockReturnValue(true);
|
|
|
|
mocked(shouldShowComponent).mockReturnValue(true);
|
|
|
|
|
2023-04-19 19:34:27 +08:00
|
|
|
renderComponent();
|
2023-03-28 04:10:18 +08:00
|
|
|
|
|
|
|
expect(screen.getByRole("menuitem", { name: "Invite" })).toBeInTheDocument();
|
|
|
|
});
|
2023-04-19 19:34:27 +08:00
|
|
|
|
|
|
|
it("when developer mode is disabled, it should not render the developer tools option", () => {
|
|
|
|
renderComponent();
|
|
|
|
expect(screen.queryByText("Developer tools")).not.toBeInTheDocument();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("when developer mode is enabled", () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
jest.spyOn(SettingsStore, "getValue").mockImplementation((setting) => setting === "developerMode");
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should render the developer tools option", () => {
|
|
|
|
renderComponent();
|
|
|
|
expect(screen.getByText("Developer tools")).toBeInTheDocument();
|
|
|
|
});
|
|
|
|
});
|
2023-08-23 01:47:33 +08:00
|
|
|
|
|
|
|
it("should render notification option for joined rooms", () => {
|
|
|
|
const chamber = EchoChamber.forRoom(room);
|
|
|
|
chamber.notificationVolume = RoomNotifState.Mute;
|
2024-03-12 22:52:54 +08:00
|
|
|
jest.spyOn(room, "getMyMembership").mockReturnValue(KnownMembership.Join);
|
2023-08-23 01:47:33 +08:00
|
|
|
renderComponent();
|
|
|
|
|
|
|
|
expect(
|
|
|
|
screen.getByRole("menuitem", { name: "Notifications" }).querySelector(".mx_IconizedContextMenu_sublabel"),
|
|
|
|
).toHaveTextContent("Mute");
|
|
|
|
});
|
2023-03-28 04:10:18 +08:00
|
|
|
});
|