mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-25 18:08:14 +08:00
3c8010b719
* New user profile UI in User Settings Using new Edit In Place component. * Show avatar upload error * Fix avatar upload error * Wire up errors & feedback for display name setting * Implement avatar upload / remove progress toast * Add 768px breakpoint * Fix display of no avatar in avatar setting controls There was supposed to be a person icon but it was invisible, and also would have been inappropriate for room avatars anyway. This makes it match the designs by being the same as whatever the default avatar is. * Fix room profile display * Update to released compund-web with required components / fixes * Require compound-web 4.4.0 because we do need it * Update snapshots Because of course all the auto-generated IDs of unrelated things have changed. * Fix duplicate import * Fix CSS comment * Update snapshot * Run all the tests so the ids stay the same * Start of a test for ProfileSettings * More tests * Test that a toast appears * Test ToastRack * Update snapshots * Add the usernamee control * Fix playwright tests * New compound version for editinplace fixes * Fix useId to not just generate a constant ID * Use the label in the username component * Fix widths of test boxes * Update screenshots * Put ^ back on compound-web version * Split CSS for room & user profile settings and name the components correspondingly * Fix playwright test * Update room settings screenshot * Use original screenshot instead * Add required props in test * Fix test * Also here * Update screenshots * Remove user icon ...which is unused now, as far as I can see. * Fix styling of unrelated buttons Needed to be added in other places otherwise the specificity changes. Also put the old screenshots back. * Add copyright year * Fix copyright year * Switch to useMatrixClientContext * Fix other test
192 lines
7.8 KiB
TypeScript
192 lines
7.8 KiB
TypeScript
/*
|
|
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 { fireEvent, render, screen } from "@testing-library/react";
|
|
import {
|
|
EventTimeline,
|
|
EventType,
|
|
JoinRule,
|
|
MatrixEvent,
|
|
Room,
|
|
RoomStateEvent,
|
|
Visibility,
|
|
} from "matrix-js-sdk/src/matrix";
|
|
|
|
import { getMockClientWithEventEmitter, mockClientMethodsUser } from "../../../test-utils";
|
|
import RoomSettingsDialog from "../../../../src/components/views/dialogs/RoomSettingsDialog";
|
|
import MatrixClientContext from "../../../../src/contexts/MatrixClientContext";
|
|
import SettingsStore from "../../../../src/settings/SettingsStore";
|
|
import { UIFeature } from "../../../../src/settings/UIFeature";
|
|
import DMRoomMap from "../../../../src/utils/DMRoomMap";
|
|
|
|
describe("<RoomSettingsDialog />", () => {
|
|
const userId = "@alice:server.org";
|
|
const mockClient = getMockClientWithEventEmitter({
|
|
...mockClientMethodsUser(userId),
|
|
isRoomEncrypted: jest.fn().mockReturnValue(false),
|
|
getRoom: jest.fn(),
|
|
getDomain: jest.fn().mockReturnValue("server.org"),
|
|
getLocalAliases: jest.fn().mockResolvedValue({ aliases: [] }),
|
|
getRoomDirectoryVisibility: jest.fn().mockResolvedValue({ visibility: Visibility.Private }),
|
|
getOrCreateFilter: jest.fn(),
|
|
});
|
|
|
|
const roomId = "!room:server.org";
|
|
const room = new Room(roomId, mockClient, userId);
|
|
room.name = "Test Room";
|
|
const room2 = new Room("!room2:server.org", mockClient, userId);
|
|
room2.name = "Another Room";
|
|
|
|
jest.spyOn(SettingsStore, "getValue");
|
|
|
|
beforeEach(() => {
|
|
jest.clearAllMocks();
|
|
|
|
mockClient.getRoom.mockImplementation((roomId) => {
|
|
if (roomId === room.roomId) return room;
|
|
if (roomId === room2.roomId) return room2;
|
|
return null;
|
|
});
|
|
|
|
jest.spyOn(SettingsStore, "getValue").mockReset().mockReturnValue(false);
|
|
|
|
const dmRoomMap = {
|
|
getUserIdForRoomId: jest.fn(),
|
|
} as unknown as DMRoomMap;
|
|
jest.spyOn(DMRoomMap, "shared").mockReturnValue(dmRoomMap);
|
|
});
|
|
|
|
const getComponent = (onFinished = jest.fn(), propRoomId = roomId) =>
|
|
render(<RoomSettingsDialog roomId={propRoomId} onFinished={onFinished} />, {
|
|
wrapper: ({ children }) => (
|
|
<MatrixClientContext.Provider value={mockClient}>{children}</MatrixClientContext.Provider>
|
|
),
|
|
});
|
|
|
|
it("catches errors when room is not found", () => {
|
|
getComponent(undefined, "!room-that-does-not-exist");
|
|
expect(screen.getByText("Something went wrong!")).toBeInTheDocument();
|
|
});
|
|
|
|
it("updates when roomId prop changes", () => {
|
|
const { rerender, getByText } = getComponent(undefined, roomId);
|
|
|
|
expect(getByText(`Room Settings - ${room.name}`)).toBeInTheDocument();
|
|
|
|
rerender(<RoomSettingsDialog roomId={room2.roomId} onFinished={jest.fn()} />);
|
|
|
|
expect(getByText(`Room Settings - ${room2.name}`)).toBeInTheDocument();
|
|
});
|
|
|
|
describe("Settings tabs", () => {
|
|
it("renders default tabs correctly", () => {
|
|
const { container } = getComponent();
|
|
expect(container.querySelectorAll(".mx_TabbedView_tabLabel")).toMatchSnapshot();
|
|
});
|
|
|
|
describe("people settings tab", () => {
|
|
it("does not render when disabled and room join rule is not knock", () => {
|
|
jest.spyOn(room, "getJoinRule").mockReturnValue(JoinRule.Invite);
|
|
getComponent();
|
|
expect(screen.queryByTestId("settings-tab-ROOM_PEOPLE_TAB")).not.toBeInTheDocument();
|
|
});
|
|
|
|
it("does not render when disabled and room join rule is knock", () => {
|
|
jest.spyOn(room, "getJoinRule").mockReturnValue(JoinRule.Knock);
|
|
getComponent();
|
|
expect(screen.queryByTestId("settings-tab-ROOM_PEOPLE_TAB")).not.toBeInTheDocument();
|
|
});
|
|
|
|
it("does not render when enabled and room join rule is not knock", () => {
|
|
jest.spyOn(SettingsStore, "getValue").mockImplementation(
|
|
(setting) => setting === "feature_ask_to_join",
|
|
);
|
|
jest.spyOn(room, "getJoinRule").mockReturnValue(JoinRule.Invite);
|
|
getComponent();
|
|
expect(screen.queryByTestId("settings-tab-ROOM_PEOPLE_TAB")).not.toBeInTheDocument();
|
|
});
|
|
|
|
it("renders when enabled and room join rule is knock", () => {
|
|
jest.spyOn(SettingsStore, "getValue").mockImplementation(
|
|
(setting) => setting === "feature_ask_to_join",
|
|
);
|
|
jest.spyOn(room, "getJoinRule").mockReturnValue(JoinRule.Knock);
|
|
getComponent();
|
|
expect(screen.getByTestId("settings-tab-ROOM_PEOPLE_TAB")).toBeInTheDocument();
|
|
});
|
|
|
|
it("re-renders on room join rule changes", () => {
|
|
jest.spyOn(SettingsStore, "getValue").mockImplementation(
|
|
(setting) => setting === "feature_ask_to_join",
|
|
);
|
|
jest.spyOn(room, "getJoinRule").mockReturnValue(JoinRule.Knock);
|
|
getComponent();
|
|
jest.spyOn(room, "getJoinRule").mockReturnValue(JoinRule.Invite);
|
|
mockClient.emit(
|
|
RoomStateEvent.Events,
|
|
new MatrixEvent({ content: {}, type: EventType.RoomJoinRules }),
|
|
room.getLiveTimeline().getState(EventTimeline.FORWARDS)!,
|
|
null,
|
|
);
|
|
expect(screen.queryByTestId("settings-tab-ROOM_PEOPLE_TAB")).not.toBeInTheDocument();
|
|
});
|
|
});
|
|
|
|
it("renders voip settings tab when enabled", () => {
|
|
jest.spyOn(SettingsStore, "getValue").mockImplementation(
|
|
(settingName) => settingName === "feature_group_calls",
|
|
);
|
|
getComponent();
|
|
expect(screen.getByTestId("settings-tab-ROOM_VOIP_TAB")).toBeInTheDocument();
|
|
});
|
|
|
|
it("renders bridges settings tab when enabled", () => {
|
|
jest.spyOn(SettingsStore, "getValue").mockImplementation(
|
|
(settingName) => settingName === "feature_bridge_state",
|
|
);
|
|
getComponent();
|
|
expect(screen.getByTestId("settings-tab-ROOM_BRIDGES_TAB")).toBeInTheDocument();
|
|
});
|
|
|
|
it("renders advanced settings tab when enabled", () => {
|
|
jest.spyOn(SettingsStore, "getValue").mockImplementation(
|
|
(settingName) => settingName === UIFeature.AdvancedSettings,
|
|
);
|
|
getComponent();
|
|
expect(screen.getByTestId("settings-tab-ROOM_ADVANCED_TAB")).toBeInTheDocument();
|
|
});
|
|
});
|
|
|
|
describe("poll history", () => {
|
|
beforeEach(() => {
|
|
mockClient.getOrCreateFilter.mockResolvedValue("filterId");
|
|
});
|
|
it("renders poll history tab", () => {
|
|
getComponent();
|
|
expect(screen.getByTestId("settings-tab-ROOM_POLL_HISTORY_TAB")).toBeInTheDocument();
|
|
});
|
|
|
|
it("displays poll history when tab clicked", () => {
|
|
const { container } = getComponent();
|
|
|
|
fireEvent.click(screen.getByText("Poll history"));
|
|
|
|
expect(container.querySelector(".mx_SettingsTab")).toMatchSnapshot();
|
|
});
|
|
});
|
|
});
|