mirror of
https://github.com/vector-im/element-web.git
synced 2025-12-05 17:31:41 +01:00
* Update vector-im * Update snapshots Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Update tests Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Make BaseDialog's div keyboard focusable and fix test. * Update more e2e tests to use switch instead of checkbox * fix useParticipants incorrectly returning an array when a map is expected * Try again to fix calParticipants * try fix RoomHeader tests again by also mocking useParticipants * Revert "try fix RoomHeader tests again by also mocking useParticipants" This reverts commit f83093cc44586b881d0918e4e4dee60d3263d44b. * Try with no dependencies * try mocking useCall rather than just useParticipantCount * Mock the call store rather than the hook * Only mock the call object for tests that expect it. * Revert "Only mock the call object for tests that expect it." This reverts commit 043d812b1defe75eb7d9c56546317f176b4ba34e. * Revert "Mock the call store rather than the hook" This reverts commit 644be3155c434a309fcfd90a21370a732bb7bdd5. * Revert "try mocking useCall rather than just useParticipantCount" This reverts commit 92034aaff9b46fd135ee4dbcd93dd62ad5985e5e. * Revert "Try with no dependencies" This reverts commit fb502a68a08bd0227ace807fdaf394ed8719d92a. * Reapply "try fix RoomHeader tests again by also mocking useParticipants" This reverts commit e456782efd5ea860cb6679be3adf440788fe40a4. * Revert "try fix RoomHeader tests again by also mocking useParticipants" This reverts commit f83093cc44586b881d0918e4e4dee60d3263d44b. * Revert "Try again to fix calParticipants" This reverts commit c45ad3063f97cad6989ec3fe44dacf6f0904a4e1. * Revert "fix useParticipants incorrectly returning an array when a map is expected" This reverts commit e06d76e3f74d8f77e33247e9f4708bb39aebdce0. * bump compound-web * Update snapshots * Fix bad merge, we don't need the second call to escape. The comment a couple of lines up explains things. * Trigger build to fix licence/cla check --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: David Langley <davidl@element.io>
90 lines
3.5 KiB
TypeScript
90 lines
3.5 KiB
TypeScript
/*
|
|
* Copyright 2024 New Vector Ltd.
|
|
* Copyright 2024 The Matrix.org Foundation C.I.C.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
* Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import React from "react";
|
|
import { act, render, screen, waitFor } from "jest-matrix-react";
|
|
import { mocked } from "jest-mock";
|
|
|
|
import { LayoutSwitcher } from "../../../../../src/components/views/settings/LayoutSwitcher";
|
|
import MatrixClientContext from "../../../../../src/contexts/MatrixClientContext";
|
|
import { stubClient } from "../../../../test-utils";
|
|
import SettingsStore from "../../../../../src/settings/SettingsStore";
|
|
import { SettingLevel } from "../../../../../src/settings/SettingLevel";
|
|
import { Layout } from "../../../../../src/settings/enums/Layout";
|
|
|
|
describe("<LayoutSwitcher />", () => {
|
|
const matrixClient = stubClient();
|
|
const profileInfo = {
|
|
displayname: "Alice",
|
|
};
|
|
|
|
async function renderLayoutSwitcher() {
|
|
const renderResult = render(
|
|
<MatrixClientContext.Provider value={matrixClient}>
|
|
<LayoutSwitcher />
|
|
</MatrixClientContext.Provider>,
|
|
);
|
|
|
|
// Wait for the profile info to be displayed in the event tile preview
|
|
// Also avoid act warning
|
|
await waitFor(() => expect(screen.getAllByText(profileInfo.displayname).length).toBe(3));
|
|
return renderResult;
|
|
}
|
|
|
|
beforeEach(async () => {
|
|
await SettingsStore.setValue("layout", null, SettingLevel.DEVICE, Layout.Group);
|
|
mocked(matrixClient).getProfileInfo.mockResolvedValue(profileInfo);
|
|
});
|
|
|
|
it("should render", async () => {
|
|
const { asFragment } = await renderLayoutSwitcher();
|
|
expect(asFragment()).toMatchSnapshot();
|
|
});
|
|
|
|
describe("layout selection", () => {
|
|
it("should display the modern layout", async () => {
|
|
await renderLayoutSwitcher();
|
|
expect(screen.getByRole("radio", { name: "Modern" })).toBeChecked();
|
|
});
|
|
|
|
it("should change the layout when selected", async () => {
|
|
await renderLayoutSwitcher();
|
|
act(() => screen.getByRole("radio", { name: "Message bubbles" }).click());
|
|
|
|
expect(screen.getByRole("radio", { name: "Message bubbles" })).toBeChecked();
|
|
await waitFor(() => expect(SettingsStore.getValue("layout")).toBe(Layout.Bubble));
|
|
});
|
|
});
|
|
|
|
describe("compact layout", () => {
|
|
beforeEach(async () => {
|
|
await SettingsStore.setValue("useCompactLayout", null, SettingLevel.DEVICE, false);
|
|
});
|
|
|
|
it("should be enabled", async () => {
|
|
await SettingsStore.setValue("useCompactLayout", null, SettingLevel.DEVICE, true);
|
|
await renderLayoutSwitcher();
|
|
|
|
expect(screen.getByRole("switch", { name: "Show compact text and messages" })).toBeChecked();
|
|
});
|
|
|
|
it("should change the setting when toggled", async () => {
|
|
await renderLayoutSwitcher();
|
|
act(() => screen.getByRole("switch", { name: "Show compact text and messages" }).click());
|
|
|
|
await waitFor(() => expect(SettingsStore.getValue("useCompactLayout")).toBe(true));
|
|
});
|
|
|
|
it("should be disabled when the modern layout is not enabled", async () => {
|
|
await SettingsStore.setValue("layout", null, SettingLevel.DEVICE, Layout.Bubble);
|
|
await renderLayoutSwitcher();
|
|
expect(screen.getByRole("switch", { name: "Show compact text and messages" })).toBeDisabled();
|
|
});
|
|
});
|
|
});
|