lifecycle-chrome.e2e.ts 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. // Web e2e scenarios: lifecycle & chrome — the workspace-aware first-send
  2. // flow over the real wire, reload recovery, and the dark-mode token cascade.
  3. // One tiny recorded turn (text-only) drives the whole spec: the empty-state
  4. // hero materializes a real Workspace + Session on first send (the jsdom
  5. // workspace-flow suite pins the object-layer state machine over the fixture
  6. // client; THIS spec pins the same flow through HTTP RPC + SSE + the host
  7. // gateway), reload replays everything from the log (zero further model
  8. // calls), and the theme scenario proves the shipped dark palette actually
  9. // cascades: attribute -> alias token flip -> painted surface change. Per the
  10. // lane's scope ruling there is no theme/layout golden (aria is color-blind);
  11. // the hero's waiting state gets the one golden here.
  12. import { readFile } from 'node:fs/promises'
  13. import { fileURLToPath } from 'node:url'
  14. import { join } from 'node:path'
  15. import type { Browser, Page } from 'playwright'
  16. import { chromium } from 'playwright'
  17. import { afterAll, beforeAll, describe, expect, it, onTestFailed } from 'vitest'
  18. import type { SessionEvent } from '@deepseek-ai/dsh-session'
  19. import {
  20. acknowledgeReloadConnectionLoss, assertFixtureInventory, captureStableAria, compareOrRefreshGolden, fixtureUserPrompts,
  21. launchWebScaffold, recordFixture, watchConsole, webSnapshotMode, type WebScaffold,
  22. } from './scaffold.ts'
  23. import { connectFreshWorkspace, newEnglishPage, saveFailureShot } from './support.ts'
  24. const SNAPSHOT_DIR = fileURLToPath(new URL('./snapshots/lifecycle-chrome', import.meta.url))
  25. const FIXTURE = join(SNAPSHOT_DIR, 'session.jsonl')
  26. const HERO_EXPECTED = join(SNAPSHOT_DIR, 'hero.expected.md')
  27. const COMMAND_MENU_EXPECTED = join(SNAPSHOT_DIR, 'command-menu.expected.md')
  28. const FUZZY_COMMAND_MENU_EXPECTED = join(SNAPSHOT_DIR, 'command-menu-fuzzy.expected.md')
  29. const PLAN_ACTIVE_EXPECTED = join(SNAPSHOT_DIR, 'plan-active.expected.md')
  30. // Post-reload golden: the same settled conversation rebuilt purely from
  31. // persistence + history — byte-equal rendering is exactly the recovery claim.
  32. const RELOADED_EXPECTED = join(SNAPSHOT_DIR, 'reloaded.expected.md')
  33. const MODE = webSnapshotMode()
  34. const PROMPT = 'Reply with the single word LIGHTHOUSE and stop.'
  35. const REPLAY_PACE_MS = 100
  36. describe('web e2e: lifecycle & chrome (workspace flow / reload / dark mode)', () => {
  37. let scaffold: WebScaffold
  38. let browser: Browser
  39. let page: Page
  40. let tripwire: ReturnType<typeof watchConsole>
  41. const sessionEvents: SessionEvent[] = []
  42. beforeAll(async () => {
  43. scaffold = await launchWebScaffold(MODE === 'record' ? {} : { replayFixture: FIXTURE, paceMs: REPLAY_PACE_MS })
  44. scaffold.ctx.on('session/event', (_session, event: SessionEvent) => { sessionEvents.push(event) })
  45. browser = await chromium.launch()
  46. page = await newEnglishPage(browser)
  47. tripwire = watchConsole(page)
  48. await page.goto(scaffold.baseUrl, { waitUntil: 'load' })
  49. await page.waitForSelector('[class*="frame"]', { timeout: 30_000 })
  50. // Fresh world: connect a Workspace so the composer scenarios start live.
  51. await connectFreshWorkspace(page, scaffold.workspaceCwd)
  52. }, 120_000)
  53. afterAll(async () => {
  54. await browser?.close()
  55. await scaffold?.close()
  56. })
  57. it.skipIf(MODE === 'record')('opens the shared slash menu from plus with only Command candidates', async () => {
  58. onTestFailed(() => saveFailureShot(page, 'web-e2e-command-menu-launcher'))
  59. const launcher = page.getByRole('button', { name: 'Commands' })
  60. await launcher.click()
  61. const menu = page.getByRole('listbox', { name: 'Trigger suggestions' })
  62. await menu.waitFor({ timeout: 10_000 })
  63. const snapshot = await captureStableAria(page, '[role="listbox"]', scaffold.workspaceCwd)
  64. await compareOrRefreshGolden(COMMAND_MENU_EXPECTED, snapshot, MODE)
  65. expect(snapshot).toContain('text: Commands')
  66. expect(snapshot).not.toContain('text: Skills')
  67. expect(snapshot).not.toContain('text: Subagents')
  68. const launchedBox = await menu.boundingBox()
  69. await page.locator('textarea').first().press('Escape')
  70. await expect.poll(() => menu.count()).toBe(0)
  71. const input = page.locator('textarea').first()
  72. await input.fill('/')
  73. await menu.waitFor({ timeout: 10_000 })
  74. const typedBox = await menu.boundingBox()
  75. expect(launchedBox).not.toBeNull()
  76. expect(typedBox).not.toBeNull()
  77. expect(Math.abs(launchedBox!.x - typedBox!.x)).toBeLessThan(1)
  78. expect(Math.abs(
  79. launchedBox!.y + launchedBox!.height - typedBox!.y - typedBox!.height,
  80. )).toBeLessThan(1)
  81. await input.fill('/cpt')
  82. await expect.poll(() => menu.getByRole('option').allTextContents()).toEqual([
  83. 'compactCompact older conversation history',
  84. ])
  85. const fuzzySnapshot = await captureStableAria(page, '[role="listbox"]', scaffold.workspaceCwd)
  86. await compareOrRefreshGolden(FUZZY_COMMAND_MENU_EXPECTED, fuzzySnapshot, MODE)
  87. await input.fill('')
  88. await expect.poll(() => menu.count()).toBe(0)
  89. })
  90. it.skipIf(MODE === 'record')('shows active Plan as the warn-state status action', async () => {
  91. const activeScaffold = await launchWebScaffold()
  92. const activePage = await newEnglishPage(browser)
  93. const activeTripwire = watchConsole(activePage)
  94. try {
  95. await activePage.goto(activeScaffold.baseUrl, { waitUntil: 'load' })
  96. await activePage.waitForSelector('[class*="frame"]', { timeout: 30_000 })
  97. await connectFreshWorkspace(activePage, activeScaffold.workspaceCwd)
  98. const input = activePage.locator('textarea').first()
  99. await activePage.getByRole('button', { name: 'Commands' }).click()
  100. const menu = activePage.getByRole('listbox', { name: 'Trigger suggestions' })
  101. await menu.waitFor({ timeout: 10_000 })
  102. await menu.getByRole('option', { name: 'plan Enter or leave plan mode' }).click()
  103. await expect.poll(() => input.inputValue()).toBe('/plan ')
  104. await input.press('Enter')
  105. const planButton = activePage.getByRole('button', { name: 'Plan mode on, press to turn off' })
  106. await planButton.waitFor({ timeout: 10_000 })
  107. // The golden encodes an empty composer, and the button arriving does not
  108. // mean the submitted text is gone yet: under load the capture caught a
  109. // textbox still holding `/plan`.
  110. await expect.poll(() => input.inputValue(), { timeout: 10_000 }).toBe('')
  111. const planSnapshot = await captureStableAria(activePage, '[class*="frame"]', activeScaffold.workspaceCwd)
  112. await compareOrRefreshGolden(PLAN_ACTIVE_EXPECTED, planSnapshot, MODE)
  113. const planStyle = await planButton.evaluate((element) => {
  114. const probe = document.createElement('span')
  115. probe.style.color = 'var(--dsw-alias-state-warn-label)'
  116. probe.style.backgroundColor = 'var(--dsw-alias-state-warn-tertiary)'
  117. document.body.append(probe)
  118. const actual = getComputedStyle(element)
  119. const reference = getComputedStyle(probe)
  120. const result = {
  121. color: actual.color,
  122. backgroundColor: actual.backgroundColor,
  123. borderRadius: actual.borderRadius,
  124. fontSize: actual.fontSize,
  125. referenceColor: reference.color,
  126. referenceBackgroundColor: reference.backgroundColor,
  127. }
  128. probe.remove()
  129. return result
  130. })
  131. expect(planStyle.color).toBe(planStyle.referenceColor)
  132. expect(planStyle.backgroundColor).toBe(planStyle.referenceBackgroundColor)
  133. expect(planStyle.borderRadius).toBe('999px')
  134. expect(planStyle.fontSize).toBe('13px')
  135. await planButton.click()
  136. await expect.poll(() => planButton.count()).toBe(0)
  137. expect(activeTripwire.pageErrors).toEqual([])
  138. expect(activeTripwire.warnings).toEqual([])
  139. } catch (error) {
  140. await saveFailureShot(activePage, 'web-e2e-plan-active').catch(() => undefined)
  141. throw error
  142. } finally {
  143. await activePage.close()
  144. await activeScaffold.close()
  145. }
  146. })
  147. it('sends the first prompt from the empty-state hero (all modes)', async () => {
  148. onTestFailed(() => saveFailureShot(page, 'web-e2e-lifecycle-send'))
  149. if (MODE !== 'record') {
  150. expect(fixtureUserPrompts(await readFile(FIXTURE, 'utf8'))).toEqual([PROMPT])
  151. }
  152. // The blank frame renders the hero, not the resident composer: the
  153. // headline plus the guidance placeholder are the empty state's anchors.
  154. await expect.poll(() => page.getByText("Let's start building", { exact: false }).count(), { timeout: 15_000 }).toBe(1)
  155. const input = page.locator('textarea').first()
  156. await input.waitFor({ timeout: 10_000 })
  157. if (MODE !== 'record') {
  158. // Golden of the hero's stable waiting state (captured before any send;
  159. // the conversation-region goldens belong to the other scenarios).
  160. const snapshot = await captureStableAria(page, '[class*="frame"]', scaffold.workspaceCwd)
  161. await compareOrRefreshGolden(HERO_EXPECTED, snapshot, MODE)
  162. }
  163. const settled = scaffold.whenTurnSettled()
  164. await input.fill(PROMPT)
  165. const observeTurn = async () => {
  166. const originalViewport = page.viewportSize() ?? { width: 1680, height: 1000 }
  167. if (MODE !== 'record') await page.setViewportSize({ width: 480, height: 1000 })
  168. try {
  169. await input.press('Enter')
  170. if (MODE !== 'record') {
  171. const liveTail = page.locator('[data-variant="think"][data-state="running"] [data-follow-end]')
  172. await expect.poll(async () => await liveTail.evaluate(element => (
  173. element.scrollWidth > element.clientWidth
  174. && element.scrollLeft >= element.scrollWidth - element.clientWidth - 1
  175. )), { timeout: 10_000, interval: 10 }).toBe(true)
  176. }
  177. return await settled
  178. } finally {
  179. if (MODE !== 'record') await page.setViewportSize(originalViewport)
  180. }
  181. }
  182. const sessionId = await observeTurn()
  183. if (MODE === 'record') {
  184. await recordFixture(scaffold, sessionId, FIXTURE)
  185. }
  186. }, 200_000)
  187. it.skipIf(MODE === 'record')('materialized a real Workspace and Session over the wire', async () => {
  188. onTestFailed(() => saveFailureShot(page, 'web-e2e-lifecycle-materialize'))
  189. // Browser: the sidebar tree now carries the auto-created workspace group
  190. // with its one session, and the opened session is the selected row.
  191. await expect.poll(() => page.getByText('1 session', { exact: true }).count(), { timeout: 15_000 }).toBeGreaterThanOrEqual(1)
  192. await expect.poll(() => page.locator('[role="treeitem"][aria-selected="true"]').count(), { timeout: 10_000 }).toBe(1)
  193. await expect.poll(() => page.getByText('LIGHTHOUSE', { exact: true }).count(), { timeout: 15_000 }).toBeGreaterThanOrEqual(1)
  194. // Host: the session's durable header cwd is the folder the workspace
  195. // flow created and adopted (<workspaceCwd>/workspace) — the proof the
  196. // send went through workspace materialization rather than a bare
  197. // default-cwd session.
  198. const cwds = scaffold.ctx.sessions.list().map(session => session.header.cwd)
  199. expect(cwds).toEqual([join(scaffold.workspaceCwd, 'workspace')])
  200. const turnEnds = sessionEvents.filter(e => e.type === 'turn/end')
  201. expect(turnEnds).toHaveLength(1)
  202. expect((turnEnds[0] as SessionEvent & { data: { reason: { kind: string } } }).data.reason.kind).toBe('completed')
  203. }, 60_000)
  204. it.skipIf(MODE === 'record')('recovers the whole surface across a reload from the log alone', async () => {
  205. onTestFailed(() => saveFailureShot(page, 'web-e2e-lifecycle-reload'))
  206. const warningStart = tripwire.warnings.length
  207. await page.reload({ waitUntil: 'load' })
  208. await page.waitForSelector('[class*="frame"]', { timeout: 30_000 })
  209. acknowledgeReloadConnectionLoss(tripwire, warningStart)
  210. // Selection persisted (dsh.sessions.current) and history replayed: the
  211. // recorded turn re-renders from session.history with zero model calls —
  212. // the replay cursor was fully consumed before the reload, so any stray
  213. // request would fail the scenario loudly at close().
  214. await expect.poll(() => page.getByText('LIGHTHOUSE', { exact: true }).count(), { timeout: 15_000 }).toBeGreaterThanOrEqual(1)
  215. await expect.poll(() => page.locator('[role="treeitem"][aria-selected="true"]').count(), { timeout: 10_000 }).toBe(1)
  216. // Golden of the recovered conversation region: rebuilt from the log, it
  217. // must render the same settled transcript the live turn produced.
  218. const snapshot = await captureStableAria(page, '[class*="centerCol"]', scaffold.workspaceCwd)
  219. await compareOrRefreshGolden(RELOADED_EXPECTED, snapshot, MODE)
  220. expect(tripwire.pageErrors).toEqual([])
  221. }, 90_000)
  222. it.skipIf(MODE === 'record')('cascades the dark theme from the body attribute to painted surfaces', async () => {
  223. onTestFailed(() => saveFailureShot(page, 'web-e2e-lifecycle-dark'))
  224. // This scenario pins the ThemeService's DOM contract seam directly (the
  225. // body[data-ds-dark-theme] attribute -> stylesheet cascade); the REAL
  226. // user gesture above it (Settings -> Appearance cubes) is owned by
  227. // settings-chrome.e2e.ts. Driving the attribute here keeps the cascade
  228. // pinned independently of the settings surface's own lifecycle.
  229. const sample = async (): Promise<{ token: string; sidebarBg: string; bodyBg: string }> =>
  230. await page.evaluate(() => {
  231. const sidebar = document.querySelector('[class*="sidebar"], [class*="rail"]') ?? document.body
  232. return {
  233. token: getComputedStyle(document.body).getPropertyValue('--dsw-alias-bg-base').trim(),
  234. sidebarBg: getComputedStyle(sidebar).backgroundColor,
  235. bodyBg: getComputedStyle(document.body).backgroundColor,
  236. }
  237. })
  238. const light = await sample()
  239. await page.evaluate(() => { document.body.setAttribute('data-ds-dark-theme', '') })
  240. const dark = await sample()
  241. // The alias token itself must flip — the cascade's root fact.
  242. expect(dark.token).not.toBe(light.token)
  243. // And a real painted surface must consume it (not just variables in a
  244. // void): at least one of the sampled backgrounds repaints.
  245. expect(dark.sidebarBg !== light.sidebarBg || dark.bodyBg !== light.bodyBg).toBe(true)
  246. // Removing the attribute restores the light values exactly (the palettes
  247. // live in one stylesheet; activation is attribute-only by design).
  248. await page.evaluate(() => { document.body.removeAttribute('data-ds-dark-theme') })
  249. const restored = await sample()
  250. expect(restored).toEqual(light)
  251. expect(tripwire.pageErrors).toEqual([])
  252. }, 60_000)
  253. it.skipIf(MODE === 'record')('keeps the fixture inventory closed', async () => {
  254. expect(tripwire.warnings).toEqual([])
  255. await assertFixtureInventory(SNAPSHOT_DIR, [
  256. 'session.jsonl', 'command-menu.expected.md', 'command-menu-fuzzy.expected.md', 'hero.expected.md', 'plan-active.expected.md', 'reloaded.expected.md',
  257. ])
  258. })
  259. })