scaffold.ts 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482
  1. // Shared scaffold for the keyless browser e2e lane (Agent Note:
  2. // .agents/notes/implemented/testing/2026-07-24-web-gui-browser-e2e-lane.md).
  3. // Boots the REAL web composition — the shipped apps/cli/cordis.yml through
  4. // the vendored Loader (the same include boot AppCLIEntry drives), patched the
  5. // snapshot way — so a real chromium exercises the real HTTP/SSE wire, the
  6. // api-gateway, agent loop, tools, and persistence. Modes ride $DSH_SNAPSHOT:
  7. // replay (default, keyless: llm-deepseek row disabled, dsh-llm-replay row
  8. // inserted in providers mode), record (real adapter + key, harvests fixtures
  9. // from live session memory), refresh (keyless replay that rewrites goldens).
  10. //
  11. // Composition divergences from `dsh web`, all deliberate, all via include
  12. // patches over the SAME tree (never a second yml): temp persistenceRoot;
  13. // workspace-context disabled (recorded fixtures must not embed this repo's
  14. // AGENTS.md); session-title-llm disabled (its fire-and-forget title call
  15. // would race the loop for the session's replay cursor); webserver pinned to
  16. // port 0 with the built dist; keyless modes disable llm-deepseek and fill
  17. // the open llm seam post-boot with installLlmReplay on the settled root ctx
  18. // (the plugin-row path discards the ReplayHandle; the direct install keeps
  19. // assertConsumed for the teardown fixture-consumption check).
  20. import { existsSync } from 'node:fs'
  21. import { mkdtemp, readFile, readdir, realpath, rm, utimes, writeFile } from 'node:fs/promises'
  22. import { tmpdir } from 'node:os'
  23. import { join, resolve } from 'node:path'
  24. import { pathToFileURL } from 'node:url'
  25. import type { Page } from 'playwright'
  26. import { expect } from 'vitest'
  27. import { Context } from 'cordis'
  28. import Loader from '@cordisjs/plugin-loader'
  29. import Include, { type PatchOptions } from '@cordisjs/plugin-include'
  30. import { scrubRequestHeaders } from '@deepseek-ai/dsh-acp-snapshot'
  31. import { assertEntriesLoaded } from '@deepseek-ai/dsh-app-boot'
  32. import type { ReplayHandle } from '@deepseek-ai/dsh-llm-replay'
  33. import { installLlmReplay, parseSessionLog } from '@deepseek-ai/dsh-llm-replay'
  34. import SessionStore, {
  35. packChunkRuns,
  36. SESSION_FORMAT_VERSION,
  37. SessionId,
  38. type Session,
  39. type SessionEvent,
  40. type SessionHeader,
  41. } from '@deepseek-ai/dsh-session'
  42. import SessionPersistenceJsonl from '@deepseek-ai/dsh-session-persistence-jsonl'
  43. import * as ToolCordis from '@deepseek-ai/dsh-tool-cordis'
  44. // Empty type imports carry the httpServer/agents/sessionPersistence Context merges.
  45. import type {} from '@deepseek-ai/dsh-host-webserver'
  46. import type {} from '@deepseek-ai/dsh-agent'
  47. import { DIST_INDEX, REPO_ROOT, requireDist } from './support.ts'
  48. /** Snapshot mode for the lane, from $DSH_SNAPSHOT (same vocabulary as the ACP/TUI suites). */
  49. export type WebSnapshotMode = 'replay' | 'record' | 'refresh'
  50. /**
  51. * Resolve and validate the lane's snapshot mode.
  52. * @returns the active mode; unset/empty selects replay.
  53. */
  54. export function webSnapshotMode(): WebSnapshotMode {
  55. const value = process.env.DSH_SNAPSHOT
  56. if (value === undefined || value === '' || value === 'replay') return 'replay'
  57. if (value === 'record' || value === 'refresh') return value
  58. throw new Error(`DSH_SNAPSHOT must be replay, record, or refresh; got ${JSON.stringify(value)}`)
  59. }
  60. /** The shipped composition under test: apps/cli's config tree. */
  61. const CONFIG_PATH = join(REPO_ROOT, 'apps/cli/cordis.yml')
  62. // Replay publishes the provider catalog the gateway routes to (providers
  63. // mode, never catch-all: with llm-deepseek disabled no adapter exists, so a
  64. // catch-all would leave resolveModelInfo unroutable and compact-basic's
  65. // post-step pressure check would warn every step). The published
  66. // contextWindow keeps that pressure path provably inert for small fixtures.
  67. const REPLAY_PROVIDERS = [{
  68. id: 'deepseek',
  69. name: 'DeepSeek',
  70. models: [{ id: 'deepseek-v4-flash', name: 'DeepSeek-V4-Flash', contextWindow: 128_000 }],
  71. }]
  72. /** A booted web scaffold: real composition, mode-selected model backend, temp world. */
  73. export interface WebScaffold {
  74. /** The active snapshot mode this scaffold booted under. */
  75. mode: WebSnapshotMode
  76. /** Browser-facing origin (http://127.0.0.1:<bound port>). */
  77. baseUrl: string
  78. /** Settled root context (the in-process barrier seam; headless event subscription is its sanctioned use). */
  79. ctx: Context
  80. /** Temp project directory sessions run in (bash/fs tool cwd). */
  81. workspaceCwd: string
  82. /** Temp persistence root (seeded sessions land here through the real API). */
  83. persistenceRoot: string
  84. /** Await a settled turn end: in-process turn/end, then the agent's idle flip (which follows the persistence flush). */
  85. whenTurnSettled(timeoutMs?: number): Promise<SessionId>
  86. /** Tear everything down; asserts the replay fixture was fully consumed first (replay/refresh). */
  87. close(): Promise<void>
  88. }
  89. /** Options for {@link launchWebScaffold}. */
  90. export interface LaunchOptions {
  91. /**
  92. * Replay fixture (session.jsonl) served by the inserted dsh-llm-replay row
  93. * in replay/refresh modes; ignored in record mode (the real adapter
  94. * answers). Omit for scenarios issuing no model calls — a stray stream then
  95. * fails loud with NO_ADAPTER (llm-deepseek is disabled and no replay row
  96. * mounts).
  97. */
  98. replayFixture?: string
  99. /**
  100. * Optional replay.override.json sidecar (whole-script replacement or
  101. * `{ patches }` augmentation) for throw/hang scenarios not expressible as
  102. * recorded chunks; replay/refresh only.
  103. */
  104. replayOverride?: string
  105. /** Per-chunk replay pacing (ms) so the browser observes genuinely incremental SSE; replay/refresh only. */
  106. paceMs?: number
  107. /**
  108. * Tool presentation mode patched onto the shipped `tools` row (`code`
  109. * collapses the wire to run_code + the SDK prompt section). Omit for the
  110. * yml default. The code runtime row is always in the tree, so no extra
  111. * insertion is needed.
  112. */
  113. toolsMode?: 'native' | 'code' | 'both'
  114. /**
  115. * Insert the opt-in self-referential Cordis tools into the shipped tree.
  116. * Record and replay use the same tool surface, so captured request headers
  117. * remain reconstructable without making the tools a product default.
  118. */
  119. cordisTools?: boolean
  120. }
  121. /** Dispose the booted tree and remove both owned temp roots, reporting every independent cleanup failure. */
  122. async function cleanupScaffoldWorld(ctx: Context, workspaceCwd: string, persistenceRoot: string): Promise<unknown[]> {
  123. const failures: unknown[] = []
  124. await Promise.resolve(ctx.fiber.dispose()).catch((error: unknown) => failures.push(error))
  125. await rm(workspaceCwd, { recursive: true, force: true }).catch((error: unknown) => failures.push(error))
  126. await rm(persistenceRoot, { recursive: true, force: true }).catch((error: unknown) => failures.push(error))
  127. return failures
  128. }
  129. /**
  130. * Boot the real web composition under the current snapshot mode.
  131. * @param options - replay fixture selection and pacing.
  132. * @returns the running scaffold.
  133. */
  134. export async function launchWebScaffold(options: LaunchOptions = {}): Promise<WebScaffold> {
  135. requireDist()
  136. const mode = webSnapshotMode()
  137. if (mode === 'record') {
  138. // Both owning vitest configs (web unconditionally, snapshot in record
  139. // mode) load the repo-root .env before this file runs.
  140. if (process.env.DEEPSEEK_API_KEY === undefined || process.env.DEEPSEEK_API_KEY.length === 0) {
  141. throw new Error('web e2e record mode needs DEEPSEEK_API_KEY (env or repo-root .env)')
  142. }
  143. }
  144. const workspaceCwd = await realpath(await mkdtemp(join(tmpdir(), 'dsh-web-e2e-ws-')))
  145. let persistenceRoot: string
  146. try {
  147. persistenceRoot = await mkdtemp(join(tmpdir(), 'dsh-web-e2e-sessions-'))
  148. } catch (error) {
  149. const failures: unknown[] = [error]
  150. await rm(workspaceCwd, { recursive: true, force: true }).catch((cleanupError: unknown) => failures.push(cleanupError))
  151. if (failures.length > 1) throw new AggregateError(failures, 'web scaffold temp-root setup failed')
  152. throw error
  153. }
  154. // The include patch set — the same mechanism AppCLIEntry and the ACP
  155. // snapshot overlay use, applied over the SAME shipped tree (a patch id that
  156. // stops matching a row fails the boot sweep loudly instead of drifting).
  157. const patches: PatchOptions[] = [
  158. { id: 'session-persistence-jsonl', config: { root: persistenceRoot } },
  159. // storage-json's './.storages' yml default is cwd-relative and resolves
  160. // per write; the scaffold restores the original cwd after boot, so the
  161. // row gets an absolute temp root (removed with the workspace at close).
  162. { id: 'storage-json', config: { root: join(workspaceCwd, '.dsh-storages') } },
  163. // fs/bash cwd default to process.cwd(); the gateway injects the same
  164. // value into session.cwd — chdir below anchors all three to the temp
  165. // workspace, keeping the composition untouched.
  166. { id: 'workspace-context', disabled: true },
  167. { id: 'session-title-llm', disabled: true },
  168. { id: 'webserver', config: { host: '127.0.0.1', port: 0, distIndex: DIST_INDEX } },
  169. ...options.toolsMode === undefined ? [] : [{ id: 'tools', config: { mode: options.toolsMode } }],
  170. ...options.cordisTools === true
  171. ? [{ insert: [{ id: 'tool-cordis', name: 'cordis:tool-cordis' }] }]
  172. : [],
  173. ...mode === 'record' ? [] : [{ id: 'llm-deepseek', disabled: true }],
  174. ]
  175. // Sessions inherit the gateway's process.cwd() default; run the boot from
  176. // the temp workspace so tool cwd, session cwd, and fixtures agree.
  177. const originalCwd = process.cwd()
  178. const ctx = new Context()
  179. let port = 0
  180. let replayHandle: ReplayHandle | undefined
  181. try {
  182. process.chdir(workspaceCwd)
  183. ctx.baseUrl = pathToFileURL(join(resolve(CONFIG_PATH), '..')).href + '/'
  184. await ctx.plugin(Loader)
  185. ctx.loader.builtins.include = Include
  186. // The shipped CLI deliberately has no dependency on this opt-in package.
  187. // Keep the Loader row real without broadening the product installation.
  188. if (options.cordisTools === true) ctx.loader.builtins['tool-cordis'] = ToolCordis
  189. await ctx.loader.create({
  190. name: 'cordis:include',
  191. config: { path: pathToFileURL(resolve(CONFIG_PATH)).href, patches },
  192. })
  193. await ctx.loader.await()
  194. assertEntriesLoaded(ctx, 'web e2e scaffold')
  195. const boundPort = ctx.get('httpServer')?.port
  196. if (boundPort === undefined) {
  197. throw new Error('web e2e scaffold: httpServer service missing after settled boot')
  198. }
  199. port = boundPort
  200. // Fill the open llm seam on the settled root ctx (llm-deepseek is disabled
  201. // in keyless modes; a scenario with no fixture leaves the seam empty so a
  202. // stray stream fails loud with NO_ADAPTER). The direct install, unlike the
  203. // plugin row, returns the ReplayHandle for the teardown consumption check.
  204. if (mode !== 'record' && options.replayFixture !== undefined) {
  205. replayHandle = installLlmReplay(ctx, {
  206. file: options.replayFixture,
  207. providers: REPLAY_PROVIDERS,
  208. ...(options.replayOverride === undefined ? {} : { overrideFile: options.replayOverride }),
  209. ...(options.paceMs === undefined ? {} : { paceMs: options.paceMs }),
  210. })
  211. }
  212. } catch (error) {
  213. if (process.cwd() !== originalCwd) process.chdir(originalCwd)
  214. const cleanupFailures = await cleanupScaffoldWorld(ctx, workspaceCwd, persistenceRoot)
  215. if (cleanupFailures.length > 0) {
  216. throw new AggregateError([error, ...cleanupFailures], 'web scaffold setup failed and cleanup was incomplete')
  217. }
  218. throw error
  219. } finally {
  220. if (process.cwd() !== originalCwd) process.chdir(originalCwd)
  221. }
  222. return {
  223. mode,
  224. baseUrl: `http://127.0.0.1:${port}`,
  225. ctx,
  226. workspaceCwd,
  227. persistenceRoot,
  228. // Barrier stack: the in-process turn/end identifies the session, then
  229. // agent.whenIdle() covers the persistence flush (the idle flip follows
  230. // the flush), and the caller's browser settled-poll comes last because
  231. // host completion strictly precedes render.
  232. whenTurnSettled(timeoutMs = mode === 'record' ? 180_000 : 30_000): Promise<SessionId> {
  233. return new Promise<SessionId>((resolveSettled, reject) => {
  234. const timer = setTimeout(() => {
  235. off()
  236. reject(new Error(`no turn/end within ${timeoutMs}ms`))
  237. }, timeoutMs)
  238. const off = ctx.on('session/event', (session: { id: SessionId }, event: SessionEvent) => {
  239. if (event.type !== 'turn/end') return
  240. clearTimeout(timer)
  241. off()
  242. const agent = ctx.agents.get(session.id)
  243. if (agent === undefined) {
  244. reject(new Error(`turn/end for ${session.id} but no live agent`))
  245. return
  246. }
  247. agent.whenIdle().then(() => { resolveSettled(session.id) }, reject)
  248. })
  249. })
  250. },
  251. async close(): Promise<void> {
  252. const failures: unknown[] = []
  253. // Fixture-consumption check first, while the run's binding state is
  254. // still authoritative — a scenario that drove fewer model calls than
  255. // recorded fails here instead of drifting green.
  256. try {
  257. replayHandle?.assertConsumed()
  258. } catch (error) {
  259. failures.push(error)
  260. }
  261. failures.push(...await cleanupScaffoldWorld(ctx, workspaceCwd, persistenceRoot))
  262. if (failures.length > 0) throw new AggregateError(failures, 'web scaffold teardown failed')
  263. },
  264. }
  265. }
  266. /**
  267. * Serialize a live session to the canonical raw session-JSONL layout — the
  268. * in-memory record-mode harvest, so the on-disk zstd default never matters.
  269. */
  270. function rawSessionLog(session: Session): string {
  271. return [
  272. JSON.stringify({ type: 'session', ...session.header }),
  273. ...packChunkRuns(session.events).map(record => JSON.stringify(record)),
  274. '',
  275. ].join('\n')
  276. }
  277. /**
  278. * Record-mode fixture write-back: harvest the live session, scrub request
  279. * headers to {{system}}/{{tools}} (TODO(web-header-pin): the web lane pins no
  280. * header class — a deliberate deviation logged in the Agent Note's deferred
  281. * work), tokenize the run-local session id, cwd, and browser RPC id
  282. * ({{sessionId}}/{{cwd}}/{{rpcId}}, the committed fixture convention —
  283. * re-records then diff only on real content), and write the fixture.
  284. * @param scaffold - the record-mode scaffold.
  285. * @param sessionId - the driven session.
  286. * @param fixturePath - the committed session.jsonl / seed.jsonl target.
  287. */
  288. export async function recordFixture(scaffold: WebScaffold, sessionId: SessionId, fixturePath: string): Promise<void> {
  289. const agent = scaffold.ctx.agents.get(sessionId)
  290. if (agent === undefined) throw new Error(`record harvest: no live agent for ${sessionId}`)
  291. const tokenized = scrubRequestHeaders(rawSessionLog(agent.session))
  292. .split(sessionId).join('{{sessionId}}')
  293. .split(scaffold.workspaceCwd).join('{{cwd}}')
  294. .replace(/"rpcId":"[^"]+"/g, '"rpcId":"{{rpcId}}"')
  295. await writeFile(fixturePath, tokenized)
  296. }
  297. /**
  298. * The user prompts recorded in a fixture, in order — the single source tying
  299. * spec drive steps to recorded reality so script and fixture cannot drift.
  300. * @param fixtureText - raw session.jsonl contents.
  301. * @returns the recorded user prompt texts.
  302. */
  303. export function fixtureUserPrompts(fixtureText: string): string[] {
  304. return parseSessionLog(fixtureText).flatMap((event) => {
  305. if (event.type !== 'user/message' || event.data.source.kind !== 'user') return []
  306. const text = event.data.content.filter(block => block.type === 'text').map(block => block.text).join('')
  307. return text.length > 0 ? [text] : []
  308. })
  309. }
  310. /**
  311. * Seed a recorded session fixture into the scaffold's persistence root
  312. * through the REAL backend API (throwaway Context + SessionStore + JSONL
  313. * plugin — the semantic-checkpoint precedent), never raw file writes: no
  314. * knowledge of bucket hashing, filename encoding, or compression, and
  315. * malformed shapes fail loud at seed time. The fixture's tokenized identity
  316. * ({{sessionId}}/{{cwd}}) is realized for this world before parsing.
  317. * @param scaffold - the target scaffold.
  318. * @param fixtureText - raw recorded session.jsonl contents.
  319. * @param id - the seeded session id (stable for deterministic goldens).
  320. * @returns the seeded id.
  321. */
  322. export async function seedSession(scaffold: WebScaffold, fixtureText: string, id: string): Promise<SessionId> {
  323. const realized = fixtureText
  324. .split('{{sessionId}}').join(id)
  325. .split('{{cwd}}').join(scaffold.workspaceCwd)
  326. const fixtureCwd = (JSON.parse(realized.split('\n', 1)[0]!) as { cwd?: string }).cwd
  327. const rewritten = fixtureCwd === undefined
  328. ? realized
  329. : realized.split(fixtureCwd).join(scaffold.workspaceCwd)
  330. const events = parseSessionLog(rewritten)
  331. if (events.length === 0) throw new Error('seed fixture has no events')
  332. const last = events[events.length - 1]!
  333. // An open final turn would be mutated by resume's crash repair on first
  334. // open; a committed seed must be a closed recording.
  335. if (last.type !== 'turn/end') throw new Error(`seed fixture must end in turn/end, got ${last.type}`)
  336. const meta: SessionHeader = {
  337. version: SESSION_FORMAT_VERSION,
  338. id: SessionId(id),
  339. createdAt: Date.now() - 60_000,
  340. cwd: scaffold.workspaceCwd,
  341. delegationDepth: 0,
  342. }
  343. const seeder = new Context()
  344. try {
  345. await seeder.plugin(SessionStore)
  346. // Same root as the booted tree with the plugin's own default compression,
  347. // so the host's directory-scan list() sees one consistent encoding.
  348. await seeder.plugin(SessionPersistenceJsonl, { root: scaffold.persistenceRoot })
  349. await seeder.sessionPersistence.create(meta)
  350. await seeder.sessionPersistence.append(meta.id, events)
  351. // Deterministic sidebar order: cold summaries take updatedAt from mtime.
  352. const located = seeder.sessionPersistence.locate(meta)
  353. if (located !== undefined) {
  354. const backdated = new Date(meta.createdAt)
  355. await utimes(located.path, backdated, backdated)
  356. }
  357. } finally {
  358. await seeder.fiber.dispose()
  359. }
  360. return meta.id
  361. }
  362. /**
  363. * Normalize an aria snapshot: uuid, cwd, workspace-basename, and duration
  364. * volatility collapse to stable tokens.
  365. */
  366. function normalizeAria(snapshot: string, workspaceCwd: string): string {
  367. // The header breadcrumb renders the workspace's basename, not the full
  368. // path, so both spellings must collapse to the token.
  369. const base = workspaceCwd.split('/').pop()!
  370. return snapshot
  371. .split(workspaceCwd).join('{{cwd}}')
  372. .split(base).join('{{workspace}}')
  373. .replace(/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/gi, '{{uuid}}')
  374. .replace(/\b\d+(?:\.\d+)?(?:ms|s|秒)\b/g, '{{duration}}')
  375. }
  376. /**
  377. * Capture the region's aria snapshot at a settled milestone: poll until two
  378. * consecutive normalized captures are equal — a single-shot capture races the
  379. * last React commits.
  380. * @param page - the page under test.
  381. * @param selector - the region locator selector.
  382. * @param workspaceCwd - normalization input.
  383. * @returns the stable normalized snapshot.
  384. */
  385. export async function captureStableAria(page: Page, selector: string, workspaceCwd: string): Promise<string> {
  386. const region = page.locator(selector).first()
  387. let previous = normalizeAria(await region.ariaSnapshot(), workspaceCwd)
  388. await expect.poll(async () => {
  389. const current = normalizeAria(await region.ariaSnapshot(), workspaceCwd)
  390. const stable = current === previous
  391. previous = current
  392. return stable
  393. }, { timeout: 5_000, message: 'aria snapshot did not stabilize' }).toBe(true)
  394. return previous
  395. }
  396. /**
  397. * Compare a normalized golden, or rewrite it under refresh. Refresh is the
  398. * ONLY writer: a missing golden in replay mode fails with the healing command
  399. * instead of silently self-bootstrapping.
  400. * @param goldenPath - the committed ui.expected.md path.
  401. * @param actual - the stable normalized snapshot.
  402. * @param mode - the active snapshot mode.
  403. */
  404. export async function compareOrRefreshGolden(goldenPath: string, actual: string, mode: WebSnapshotMode): Promise<void> {
  405. const payload = `${actual}\n`
  406. if (mode === 'refresh') {
  407. await writeFile(goldenPath, payload)
  408. return
  409. }
  410. if (!existsSync(goldenPath)) {
  411. throw new Error(`missing golden ${goldenPath} — run DSH_SNAPSHOT=refresh pnpm run test:web to generate it`)
  412. }
  413. expect(payload).toBe(await readFile(goldenPath, 'utf8'))
  414. }
  415. /**
  416. * Fixture-inventory guard (the TUI afterAll shape): the scenario directory
  417. * holds exactly the expected files and every committed JSONL is a scrub
  418. * fixed-point without a run-local browser RPC id.
  419. * @param dir - the scenario snapshot directory.
  420. * @param expected - the exact expected file inventory.
  421. */
  422. export async function assertFixtureInventory(dir: string, expected: string[]): Promise<void> {
  423. const entries = (await readdir(dir)).sort()
  424. expect(entries).toEqual([...expected].sort())
  425. for (const entry of entries.filter(name => name.endsWith('.jsonl'))) {
  426. const content = await readFile(join(dir, entry), 'utf8')
  427. expect(scrubRequestHeaders(content), `${dir}/${entry} carries request-header bulk`).toBe(content)
  428. expect(content, `${dir}/${entry} carries a run-local rpcId`)
  429. .not.toMatch(/"rpcId":"(?!\{\{rpcId\}\})[^"]+"/)
  430. }
  431. }
  432. /**
  433. * Console tripwires: reconnect/gap-repair self-healing or a pageerror must
  434. * fail the scenario, not mask a dead wire behind eventual consistency.
  435. * @param page - the page under test.
  436. * @returns live warning/pageerror collectors to assert empty at scenario end.
  437. */
  438. export function watchConsole(page: Page): { warnings: string[]; pageErrors: string[] } {
  439. const warnings: string[] = []
  440. const pageErrors: string[] = []
  441. page.on('console', (message) => {
  442. const text = message.text()
  443. if (/connection lost|gap repair|discontinuous/i.test(text)) warnings.push(text)
  444. })
  445. page.on('pageerror', (error) => { pageErrors.push(String(error)) })
  446. return { warnings, pageErrors }
  447. }
  448. /**
  449. * Remove only connection-loss warnings emitted after an intentional reload.
  450. * Earlier warnings and all gap-repair/discontinuity warnings remain fatal.
  451. * @param tripwire - the live console-warning collector.
  452. * @param warningStart - warning count captured immediately before reloading.
  453. */
  454. export function acknowledgeReloadConnectionLoss(
  455. tripwire: ReturnType<typeof watchConsole>,
  456. warningStart: number,
  457. ): void {
  458. const reloadWarnings = tripwire.warnings.splice(warningStart)
  459. tripwire.warnings.push(...reloadWarnings.filter(text => !/connection lost/i.test(text)))
  460. }