Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

test(site): add e2e tests for appearance#12950

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
mtojek merged 3 commits intomainfrom12508-appearance
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
82 changes: 82 additions & 0 deletionssite/e2e/tests/deployment/appearance.spec.ts
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
import { chromium, expect, test } from "@playwright/test";
import { expectUrl } from "../../expectUrl";
import { randomName, requiresEnterpriseLicense } from "../../helpers";

test("set application name", async ({ page }) => {
requiresEnterpriseLicense();

await page.goto("/deployment/appearance", { waitUntil: "domcontentloaded" });

const applicationName = randomName();

// Fill out the form
const form = page.locator("form", { hasText: "Application name" });
await form
.getByLabel("Application name", { exact: true })
.fill(applicationName);
await form.getByRole("button", { name: "Submit" }).click();

// Open a new session without cookies to see the login page
const browser = await chromium.launch();
const incognitoContext = await browser.newContext();
await incognitoContext.clearCookies();
const incognitoPage = await incognitoContext.newPage();
await incognitoPage.goto("/", { waitUntil: "domcontentloaded" });

// Verify the application name
const name = incognitoPage.locator("h1", { hasText: applicationName });
await expect(name).toBeVisible();

// Shut down browser
await incognitoPage.close();
await browser.close();
});

test("set application logo", async ({ page }) => {
requiresEnterpriseLicense();

await page.goto("/deployment/appearance", { waitUntil: "domcontentloaded" });

const imageLink = "/icon/azure.png";

// Fill out the form
const form = page.locator("form", { hasText: "Logo URL" });
await form.getByLabel("Logo URL", { exact: true }).fill(imageLink);
await form.getByRole("button", { name: "Submit" }).click();

// Open a new session without cookies to see the login page
const browser = await chromium.launch();
const incognitoContext = await browser.newContext();
await incognitoContext.clearCookies();
const incognitoPage = await incognitoContext.newPage();
await incognitoPage.goto("/", { waitUntil: "domcontentloaded" });

// Verify banner
const logo = incognitoPage.locator("img");
await expect(logo).toHaveAttribute("src", imageLink);

// Shut down browser
await incognitoPage.close();
await browser.close();
});

test("set service banner", async ({ page }) => {
requiresEnterpriseLicense();

await page.goto("/deployment/appearance", { waitUntil: "domcontentloaded" });

const message = "Mary has a little lamb.";

// Fill out the form
const form = page.locator("form", { hasText: "Service Banner" });
await form.getByLabel("Enabled", { exact: true }).check();
await form.getByLabel("Message", { exact: true }).fill(message);
await form.getByRole("button", { name: "Submit" }).click();

// Verify service banner
await page.goto("/workspaces", { waitUntil: "domcontentloaded" });
await expectUrl(page).toHavePathName("/workspaces");

const bar = page.locator("div.service-banner", { hasText: message });
await expect(bar).toBeVisible();
});
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -16,7 +16,7 @@ export const ServiceBannerView: FC<ServiceBannerViewProps> = ({
isPreview,
}) => {
return (
<div css={[styles.banner, { backgroundColor }]}>
<div css={[styles.banner, { backgroundColor }]} className="service-banner">
{isPreview && <Pill type="info">Preview</Pill>}
<div
css={[
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -105,6 +105,9 @@ export const AppearanceSettingsPageView: FC<
fullWidth
placeholder='Leave empty to display "Coder".'
disabled={!isEntitled}
inputProps={{
"aria-label": "Application name",
}}
/>
</Fieldset>

Expand DownExpand Up@@ -150,6 +153,9 @@ export const AppearanceSettingsPageView: FC<
</InputAdornment>
),
}}
inputProps={{
"aria-label": "Logo URL",
}}
/>
</Fieldset>

Expand DownExpand Up@@ -208,6 +214,7 @@ export const AppearanceSettingsPageView: FC<
);
await serviceBannerForm.setFieldValue("enabled", newState);
}}
data-testid="switch-service-banner"
/>
}
label="Enabled"
Expand All@@ -221,6 +228,9 @@ export const AppearanceSettingsPageView: FC<
fullWidth
label="Message"
multiline
inputProps={{
"aria-label": "Message",
}}
/>
</Stack>

Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp