2022-10-11 12:10:55 +03:00
|
|
|
/*
|
2024-09-09 16:57:16 +03:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-10-11 12:10:55 +03:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 16:57:16 +03:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-10-11 12:10:55 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
2024-06-24 12:14:42 +03:00
|
|
|
import { render, screen } from "@testing-library/react";
|
2022-10-11 12:10:55 +03:00
|
|
|
|
|
|
|
import LabsUserSettingsTab from "../../../../../../src/components/views/settings/tabs/user/LabsUserSettingsTab";
|
|
|
|
import SettingsStore from "../../../../../../src/settings/SettingsStore";
|
|
|
|
import SdkConfig from "../../../../../../src/SdkConfig";
|
|
|
|
|
2023-03-15 11:37:41 +03:00
|
|
|
describe("<LabsUserSettingsTab />", () => {
|
2022-10-11 12:10:55 +03:00
|
|
|
const defaultProps = {
|
|
|
|
closeSettingsFn: jest.fn(),
|
|
|
|
};
|
|
|
|
const getComponent = () => <LabsUserSettingsTab {...defaultProps} />;
|
|
|
|
|
|
|
|
const settingsValueSpy = jest.spyOn(SettingsStore, "getValue");
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
jest.clearAllMocks();
|
|
|
|
settingsValueSpy.mockReturnValue(false);
|
2024-01-18 14:18:55 +03:00
|
|
|
SdkConfig.reset();
|
|
|
|
SdkConfig.add({ brand: "BrandedClient" });
|
|
|
|
localStorage.clear();
|
2022-10-11 12:10:55 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it("renders settings marked as beta as beta cards", () => {
|
2023-05-16 04:22:45 +03:00
|
|
|
render(getComponent());
|
|
|
|
expect(screen.getByText("Upcoming features").parentElement!).toMatchSnapshot();
|
2022-10-11 12:10:55 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it("does not render non-beta labs settings when disabled in config", () => {
|
2024-01-18 14:18:55 +03:00
|
|
|
const sdkConfigSpy = jest.spyOn(SdkConfig, "get");
|
2023-05-16 04:22:45 +03:00
|
|
|
render(getComponent());
|
2022-10-11 12:10:55 +03:00
|
|
|
expect(sdkConfigSpy).toHaveBeenCalledWith("show_labs_settings");
|
|
|
|
|
|
|
|
// only section is beta section
|
2023-05-16 04:22:45 +03:00
|
|
|
expect(screen.queryByText("Early previews")).not.toBeInTheDocument();
|
2022-10-11 12:10:55 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
it("renders non-beta labs settings when enabled in config", () => {
|
|
|
|
// enable labs
|
2024-01-18 14:18:55 +03:00
|
|
|
SdkConfig.add({ show_labs_settings: true });
|
2022-10-11 12:10:55 +03:00
|
|
|
const { container } = render(getComponent());
|
|
|
|
|
2023-05-16 04:22:45 +03:00
|
|
|
// non-beta labs section
|
|
|
|
expect(screen.getByText("Early previews")).toBeInTheDocument();
|
|
|
|
const labsSections = container.getElementsByClassName("mx_SettingsSubsection");
|
2024-04-29 18:30:19 +03:00
|
|
|
expect(labsSections).toHaveLength(10);
|
2022-10-11 12:10:55 +03:00
|
|
|
});
|
|
|
|
});
|