-
Notifications
You must be signed in to change notification settings - Fork 168
/
Copy pathcustom-theme.spec.ts
58 lines (49 loc) · 1.96 KB
/
custom-theme.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import { test, Page, TestInfo, expect } from "@playwright/test";
import { Common, setupBrowser } from "../utils/common";
import { ThemeVerifier } from "../utils/custom-theme/theme-verifier";
import {
CUSTOM_TAB_ICON,
CUSTOM_BRAND_ICON,
} from "../support/testData/custom-theme";
import { ThemeConstants } from "../data/theme-constants";
let page: Page;
test.describe("CustomTheme should be applied", () => {
let common: Common;
let themeVerifier: ThemeVerifier;
test.beforeAll(async ({ browser }, testInfo) => {
page = (await setupBrowser(browser, testInfo)).page;
common = new Common(page);
themeVerifier = new ThemeVerifier(page);
await common.loginAsGuest();
});
// eslint-disable-next-line no-empty-pattern
test("Verify theme colors are applied and make screenshots", async ({}, testInfo: TestInfo) => {
const themes = ThemeConstants.getThemes();
for (const theme of themes) {
await themeVerifier.setTheme(theme.name);
await themeVerifier.verifyHeaderGradient(
`none, linear-gradient(90deg, ${theme.headerColor1}, ${theme.headerColor2})`,
);
await themeVerifier.verifyBorderLeftColor(theme.navigationIndicatorColor);
await themeVerifier.takeScreenshotAndAttach(
`screenshots/custom-theme-${theme.name}-inspection.png`,
testInfo,
`custom-theme-${theme.name}-inspection`,
);
await themeVerifier.verifyPrimaryColors(theme.primaryColor);
}
});
test("Verify that tab icon for Backstage can be customized", async () => {
expect(await page.locator("#dynamic-favicon").getAttribute("href")).toEqual(
CUSTOM_TAB_ICON,
);
});
test("Verify that brand icon for Backstage can be customized", async () => {
expect(await page.getByTestId("home-logo").getAttribute("src")).toEqual(
CUSTOM_BRAND_ICON,
);
});
test("Verify that title for Backstage can be customized", async () => {
await expect(page).toHaveTitle(/Red Hat Developer Hub/);
});
});