2024-07-10 10:06:13 +01:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2024-07-10 10:06:13 +01:00
|
|
|
Copyright 2023 Suguru Hirahara
|
|
|
|
|
|
2025-01-06 11:18:54 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-09 14:57:16 +01:00
|
|
|
Please see LICENSE files in the repository root for full details.
|
2024-07-10 10:06:13 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import { expect, test } from ".";
|
|
|
|
|
|
|
|
|
|
test.describe("Appearance user settings tab", () => {
|
|
|
|
|
test.use({
|
|
|
|
|
displayName: "Hanako",
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test.describe("Theme Choice Panel", () => {
|
|
|
|
|
test.beforeEach(async ({ app, user, util }) => {
|
|
|
|
|
// Disable the default theme for consistency in case ThemeWatcher automatically chooses it
|
|
|
|
|
await util.disableSystemTheme();
|
2026-04-24 12:39:59 +01:00
|
|
|
await app.closeVerifyToast();
|
|
|
|
|
|
2024-07-10 10:06:13 +01:00
|
|
|
await util.openAppearanceTab();
|
|
|
|
|
});
|
|
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
test(
|
|
|
|
|
"should be rendered with the light theme selected",
|
|
|
|
|
{ tag: "@screenshot" },
|
2026-04-07 16:17:59 +01:00
|
|
|
async ({ page, app, util, axe }) => {
|
2024-12-04 09:12:43 +00:00
|
|
|
// Assert that 'Match system theme' is not checked
|
2025-12-04 15:46:21 +00:00
|
|
|
await expect(util.getMatchSystemThemeSwitch()).not.toBeChecked();
|
2024-07-10 10:06:13 +01:00
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
// Assert that the light theme is selected
|
|
|
|
|
await expect(util.getLightTheme()).toBeChecked();
|
|
|
|
|
// Assert that the dark and high contrast themes are not selected
|
|
|
|
|
await expect(util.getDarkTheme()).not.toBeChecked();
|
|
|
|
|
await expect(util.getHighContrastTheme()).not.toBeChecked();
|
2024-07-10 10:06:13 +01:00
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
await expect(util.getThemePanel()).toMatchScreenshot("theme-panel-light.png");
|
2026-04-07 16:17:59 +01:00
|
|
|
|
|
|
|
|
await expect(axe).toHaveNoViolations();
|
2024-12-04 09:12:43 +00:00
|
|
|
},
|
|
|
|
|
);
|
2024-07-10 10:06:13 +01:00
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
test(
|
|
|
|
|
"should disable the themes when the system theme is clicked",
|
|
|
|
|
{ tag: "@screenshot" },
|
|
|
|
|
async ({ page, app, util }) => {
|
2025-12-04 15:46:21 +00:00
|
|
|
await util.getMatchSystemThemeSwitch().click();
|
2024-07-10 10:06:13 +01:00
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
// Assert that the themes are disabled
|
|
|
|
|
await expect(util.getLightTheme()).toBeDisabled();
|
|
|
|
|
await expect(util.getDarkTheme()).toBeDisabled();
|
|
|
|
|
await expect(util.getHighContrastTheme()).toBeDisabled();
|
2024-07-10 10:06:13 +01:00
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
await expect(util.getThemePanel()).toMatchScreenshot("theme-panel-match-system-enabled.png");
|
|
|
|
|
},
|
|
|
|
|
);
|
2024-07-10 10:06:13 +01:00
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
test("should change the theme to dark", { tag: "@screenshot" }, async ({ page, app, util }) => {
|
2024-07-10 10:06:13 +01:00
|
|
|
// Assert that the light theme is selected
|
|
|
|
|
await expect(util.getLightTheme()).toBeChecked();
|
|
|
|
|
|
|
|
|
|
await util.getDarkTheme().click();
|
|
|
|
|
|
|
|
|
|
// Assert that the light and high contrast themes are not selected
|
|
|
|
|
await expect(util.getLightTheme()).not.toBeChecked();
|
|
|
|
|
await expect(util.getDarkTheme()).toBeChecked();
|
|
|
|
|
await expect(util.getHighContrastTheme()).not.toBeChecked();
|
|
|
|
|
|
|
|
|
|
await expect(util.getThemePanel()).toMatchScreenshot("theme-panel-dark.png");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test.describe("custom theme", () => {
|
|
|
|
|
test.use({
|
|
|
|
|
labsFlags: ["feature_custom_themes"],
|
|
|
|
|
});
|
|
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
test("should render the custom theme section", { tag: "@screenshot" }, async ({ page, app, util }) => {
|
2024-07-10 10:06:13 +01:00
|
|
|
await expect(util.getThemePanel()).toMatchScreenshot("theme-panel-custom-theme.png");
|
|
|
|
|
});
|
|
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
test(
|
|
|
|
|
"should be able to add and remove a custom theme",
|
|
|
|
|
{ tag: "@screenshot" },
|
|
|
|
|
async ({ page, app, util }) => {
|
|
|
|
|
await util.addCustomTheme();
|
2024-07-10 10:06:13 +01:00
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
await expect(util.getCustomTheme()).not.toBeChecked();
|
|
|
|
|
await expect(util.getThemePanel()).toMatchScreenshot("theme-panel-custom-theme-added.png");
|
2024-07-10 10:06:13 +01:00
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
await util.removeCustomTheme();
|
|
|
|
|
await expect(util.getThemePanel()).toMatchScreenshot("theme-panel-custom-theme-removed.png");
|
|
|
|
|
},
|
|
|
|
|
);
|
2026-02-16 12:23:32 +01:00
|
|
|
|
|
|
|
|
test(
|
|
|
|
|
"should keep custom theme when reloading the page",
|
|
|
|
|
{ tag: "@screenshot" },
|
|
|
|
|
async ({ page, app, user, util }) => {
|
|
|
|
|
await util.addCustomTheme();
|
|
|
|
|
await util.getCustomTheme().click();
|
|
|
|
|
await util.closeAppearanceTab();
|
|
|
|
|
|
|
|
|
|
await expect(page).toMatchScreenshot("window-custom-theme.png");
|
|
|
|
|
|
|
|
|
|
await page.reload();
|
2026-04-24 12:39:59 +01:00
|
|
|
await app.closeVerifyToast();
|
2026-02-16 12:23:32 +01:00
|
|
|
|
|
|
|
|
await util.openAppearanceTab();
|
|
|
|
|
// Assert that the custom theme is still selected after reloading the page
|
|
|
|
|
await expect(util.getCustomTheme()).toBeChecked();
|
|
|
|
|
|
|
|
|
|
await util.closeAppearanceTab();
|
|
|
|
|
await expect(page).toMatchScreenshot("window-custom-theme.png");
|
|
|
|
|
},
|
|
|
|
|
);
|
2024-07-10 10:06:13 +01:00
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|