| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- // Trusted non-loopback Web access must not wedge on the loopback-only
- // settings API while the mandatory product notice owns the viewport.
- import type { Browser, Page } from 'playwright'
- import { chromium } from 'playwright'
- import { afterAll, beforeAll, describe, expect, it } from 'vitest'
- import {
- acknowledgeReloadConnectionLoss, launchWebScaffold, watchConsole, webSnapshotMode,
- type WebScaffold,
- } from './scaffold.ts'
- import { ZH_BROWSER_LOCALE } from './support.ts'
- import { WELCOME_NOTICE_COPY } from '@deepseek-ai/dsh-client-ui-settings-general'
- const MODE = webSnapshotMode()
- describe.skipIf(MODE === 'record')('web e2e: remote welcome notice', () => {
- let scaffold: WebScaffold
- let browser: Browser
- let page: Page
- let tripwire: ReturnType<typeof watchConsole>
- beforeAll(async () => {
- scaffold = await launchWebScaffold({ remoteAuthority: 'remote.localhost', welcomeNoticePending: true })
- browser = await chromium.launch()
- page = await browser.newPage({ viewport: { width: 1440, height: 960 }, locale: ZH_BROWSER_LOCALE })
- tripwire = watchConsole(page)
- await page.goto(scaffold.baseUrl, { waitUntil: 'load' })
- await page.waitForSelector('#root', { timeout: 30_000 })
- }, 120_000)
- afterAll(async () => {
- await browser?.close()
- await scaffold?.close()
- })
- it('advances process-locally and presents the notice again after reload', async () => {
- const welcome = page.getByRole('region', { name: WELCOME_NOTICE_COPY.zh.title })
- await welcome.waitFor({ timeout: 15_000 })
- expect(await page.locator('#root').evaluate(root => (root as HTMLElement).inert)).toBe(true)
- await welcome.getByRole('button', { name: WELCOME_NOTICE_COPY.zh.continueLabel }).click()
- await welcome.waitFor({ state: 'detached', timeout: 15_000 })
- await expect.poll(
- () => page.locator('#root').evaluate(root => (root as HTMLElement).inert),
- { timeout: 15_000 },
- ).toBe(false)
- const reloadWarnings = tripwire.warnings.length
- await page.reload({ waitUntil: 'load' })
- acknowledgeReloadConnectionLoss(tripwire, reloadWarnings)
- await welcome.waitFor({ timeout: 15_000 })
- expect(tripwire.warnings).toEqual([])
- expect(tripwire.pageErrors).toEqual([])
- }, 60_000)
- })
|