scaffold.ts 72 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597
  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 dsh-base and dsh-web-app bundle
  4. // patches over the empty profile root through the vendored Loader (the same
  5. // layer stack the profile boot composes), patched the
  6. // snapshot way — so a real chromium exercises the real HTTP uplink/WebSocket
  7. // downlink, api-gateway, agent loop, tools, and persistence. Modes ride $DSH_SNAPSHOT:
  8. // replay (default, keyless: normally disables the llm-deepseek row and
  9. // inserts dsh-llm-replay in providers mode), record (real adapter + key,
  10. // harvests fixtures from live session memory), refresh (keyless replay that
  11. // rewrites goldens). A first-run option keeps the real adapter mounted while
  12. // masking its credential, without making a model call.
  13. //
  14. // Composition divergences from `dsh web`, all deliberate, all via include
  15. // patches after the shipped bundle layers, over the SAME tree (never a
  16. // second yml): temp persistenceRoot; host-level skill roots confined to the
  17. // temp workspace while project skill discovery remains real; agent-instructions
  18. // disabled (recorded fixtures must not embed this repo's AGENTS.md);
  19. // session-title-llm disabled (its fire-and-forget title call would race the
  20. // loop for the session's replay cursor); webserver pinned to port 0 with the
  21. // built dist; ordinary keyless modes disable llm-deepseek and fill the open
  22. // llm seam post-boot with installLlmReplay on the settled root ctx
  23. // (the plugin-row path discards the ReplayHandle; the direct install keeps
  24. // assertConsumed for the teardown fixture-consumption check).
  25. import { existsSync, readFileSync } from 'node:fs'
  26. import { createHash } from 'node:crypto'
  27. import { mkdir, mkdtemp, readFile, readdir, realpath, rm, writeFile } from 'node:fs/promises'
  28. import { tmpdir } from 'node:os'
  29. import { basename, dirname, join, resolve } from 'node:path'
  30. import { pathToFileURL } from 'node:url'
  31. import type { Page } from 'playwright'
  32. import { expect } from 'vitest'
  33. import { Context } from '@deepseek-ai/cordis'
  34. import { DSH_LAUNCH_ENVIRONMENT_KEY, type LaunchEnvironmentSnapshot } from '@deepseek-ai/dsh-launch-environment'
  35. import Loader from '@deepseek-ai/cordis-plugin-loader'
  36. import Include, { type PatchOptions } from '@deepseek-ai/cordis-plugin-include'
  37. import Group from '@deepseek-ai/cordis-plugin-group'
  38. import {
  39. captureExpectedWorkspaceSnapshot,
  40. captureWorkspaceSnapshot,
  41. assertSessionFixtureVersion,
  42. formatSystemPromptSnapshot,
  43. formatToolSchemasSnapshot,
  44. normalizedSystemPrompts,
  45. normalizedToolSchemas,
  46. parseSnapshotManifest,
  47. redactSessionSnapshotIds,
  48. normalizeSessionSnapshots,
  49. parseSessionFixtureName,
  50. scrubModelRequestBulk,
  51. scrubSessionSnapshot,
  52. sessionFixtureFiles,
  53. sessionFixtureName,
  54. stabilizeFixtureMessageIds,
  55. stabilizeRefreshLog,
  56. writesCurrentSessionFixtures,
  57. type NormalizeContext,
  58. } from '@deepseek-ai/dsh-session-snapshot'
  59. import {
  60. assertEntriesLoaded,
  61. composeEntries,
  62. healProfilesModuleFallback,
  63. loadOverlayPatches,
  64. type Profile,
  65. } from '@deepseek-ai/dsh-app-boot'
  66. import { dshHomePath } from '@deepseek-ai/dsh-home-paths'
  67. import { LlmAdapter } from '@deepseek-ai/dsh-llm'
  68. import type {
  69. LlmModelInfo, LlmProviderInfo, LlmResolvedModelInfo, RetryPolicyConfig, StreamChunk,
  70. } from '@deepseek-ai/dsh-llm'
  71. import type { ReplayHandle, ReplayProviderConfig } from '@deepseek-ai/dsh-llm-replay'
  72. import {
  73. installLlmReplay,
  74. parseSessionLog,
  75. prepareSessionSnapshotFixtureForComparison,
  76. } from '@deepseek-ai/dsh-llm-replay'
  77. import type { SessionFormatEvent } from '@deepseek-ai/dsh-session-format'
  78. import { sessionFormatCatalog } from '@deepseek-ai/dsh-session-format-catalog'
  79. import {
  80. SESSION_FORMAT_VERSION,
  81. SessionId,
  82. type Session,
  83. type SessionEvent,
  84. type SessionHeader,
  85. } from '@deepseek-ai/dsh-session'
  86. import JsonlSessionPersistence from '@deepseek-ai/dsh-session-persistence-jsonl'
  87. // Empty type imports carry the webServer/agents/sessionPersistence Context merges.
  88. import type {} from '@deepseek-ai/dsh-host-webserver'
  89. import type {} from '@deepseek-ai/dsh-agent'
  90. import { provideCmdline } from '@deepseek-ai/dsh-cmdline'
  91. import { REPO_ROOT, requireDist } from './support.ts'
  92. // Host-side web e2e cannot import a browser package: doing so would pull that
  93. // package's complete TS project into this graph. Mirrored from
  94. // packages/client/ui-settings-models/src/onboarding-copy.ts; drift makes the
  95. // default pre-acknowledgement stop suppressing the notice and fails loudly.
  96. // import {
  97. // WELCOME_NOTICE_ACK_FIELD, WELCOME_NOTICE_SETTINGS_NAMESPACE,
  98. // WELCOME_NOTICE_VERSION, WELCOME_NOTICE_COPY,
  99. // } from '@deepseek-ai/dsh-client-ui-settings-models'
  100. export const WELCOME_NOTICE_SETTINGS_NAMESPACE = 'ui-onboarding'
  101. export const WELCOME_NOTICE_ACK_FIELD = 'welcomeNoticeVersion'
  102. export const WELCOME_NOTICE_VERSION = '2026-08-13.1'
  103. export const WELCOME_NOTICE_COPY = {
  104. zh: {
  105. title: '内测声明',
  106. body: 'DeepSeek Harness 目前的 0.1 版本仍处在面向 Harness 开发者进行测试的阶段,还有许多地方需要持续改进和打磨,希望听取广大开发者的反馈建议。预计 DeepSeek Harness 的核心插件以及基础 API 都会在接下来的一段时间内快速迭代、持续演化。\n\n我们期待与全球开发者一起,在开源、开放、可复用、可组合的基础设施之上,共同探索智能上限。欢迎全球 Harness 开发者加入 DSH 插件生态。',
  107. continueLabel: '继续',
  108. },
  109. } as const
  110. /** Snapshot mode for the lane, from $DSH_SNAPSHOT (same vocabulary as the other snapshot suites). */
  111. export type WebSnapshotMode = 'replay' | 'record' | 'refresh'
  112. /**
  113. * Resolve and validate the lane's snapshot mode.
  114. * @returns the active mode; unset/empty selects replay.
  115. */
  116. export function webSnapshotMode(): WebSnapshotMode {
  117. const value = process.env.DSH_SNAPSHOT
  118. if (value === undefined || value === '' || value === 'replay') return 'replay'
  119. if (value === 'record' || value === 'refresh') return value
  120. throw new Error(`DSH_SNAPSHOT must be replay, record, or refresh; got ${JSON.stringify(value)}`)
  121. }
  122. /**
  123. * Compare a session-driven Web scenario's complete workspace with its committed independent expected state.
  124. * @param scenarioDir - Absolute recorded-session scenario directory.
  125. * @param workspaceRoot - Absolute cwd used by the controlled session.
  126. */
  127. export async function assertFinalWorkspaceSnapshot(scenarioDir: string, workspaceRoot: string): Promise<void> {
  128. const manifestPath = join(scenarioDir, 'snapshot.yml')
  129. const manifest = parseSnapshotManifest(await readFile(manifestPath, 'utf8'), manifestPath)
  130. expect(manifest.workspace?.final, `${manifest.scenario ?? scenarioDir}: mutating Web scenario declares workspace.final`)
  131. .toBe(true)
  132. const actual = await captureWorkspaceSnapshot(workspaceRoot)
  133. const expected = await captureExpectedWorkspaceSnapshot(join(scenarioDir, 'workspace.expected'))
  134. expect(actual, `${manifest.scenario ?? scenarioDir}: complete final workspace`).toEqual(expected)
  135. }
  136. async function ownsReplayFixture(replayFixture: string | undefined): Promise<boolean> {
  137. if (replayFixture === undefined) return false
  138. const fixture = parseSessionFixtureName(basename(replayFixture))
  139. if (fixture === undefined || fixture.index !== 0) return false
  140. const manifestPath = join(dirname(replayFixture), 'snapshot.yml')
  141. if (!existsSync(manifestPath)) return false
  142. const manifest = parseSnapshotManifest(await readFile(manifestPath, 'utf8'), manifestPath)
  143. return manifest.session === undefined
  144. }
  145. /**
  146. * Resolve one requested fixture role to its highest committed generation.
  147. * @param path - any generation path for the requested parent or child role.
  148. * @param allowAbsent - Keep an absent canonical path only for an override-only replay script.
  149. * @returns the highest canonical sibling generation, or the input for non-Session files.
  150. */
  151. export async function selectedSessionFixture(path: string, allowAbsent = false): Promise<string> {
  152. const requested = parseSessionFixtureName(basename(path))
  153. if (requested === undefined) return path
  154. const entries = await readdir(dirname(path))
  155. if (allowAbsent && !entries.some(name => parseSessionFixtureName(name) !== undefined)) return path
  156. const selected = sessionFixtureFiles(entries)
  157. .find(candidate => candidate.index === requested.index)
  158. if (selected === undefined) throw new Error(`${path}: missing Session fixture role ${requested.index}`)
  159. const resolved = join(dirname(path), selected.name)
  160. assertSessionFixtureVersion(selected.name, await readFile(resolved, 'utf8'))
  161. return resolved
  162. }
  163. /**
  164. * Return the current-writer target without replacing the requested older fixture.
  165. * @param path - any canonical fixture generation for one role.
  166. * @param version - generation emitted by the current writer.
  167. * @returns the canonical sibling path for that role and generation.
  168. */
  169. export function recordedSessionFixturePath(path: string, version: number): string {
  170. const fixture = parseSessionFixtureName(basename(path))
  171. if (fixture === undefined) throw new Error(`record harvest: invalid Session fixture path ${path}`)
  172. return join(dirname(path), sessionFixtureName(fixture.index, version))
  173. }
  174. /** The shipped composition under test: the dsh-base and dsh-web-app bundle patches over the empty profile root. */
  175. const BASE_PATCH_PATH = join(REPO_ROOT, 'packages/bundle/base/cordis.patch.yml')
  176. const WEB_PATCH_PATH = join(REPO_ROOT, 'packages/bundle/web-app/cordis.patch.yml')
  177. /** The installation anchor whose dependency surface the profile module fallback mirrors. */
  178. const INSTALL_ANCHOR = join(REPO_ROOT, 'apps/cli/package.json')
  179. // Replay publishes the provider catalog the gateway routes to (providers
  180. // mode, never catch-all: with llm-deepseek disabled no adapter exists, so a
  181. // catch-all would leave resolveModelInfo unroutable and compaction-basic's
  182. // post-step pressure check would warn every step). The published
  183. // contextWindow keeps that pressure path provably inert for small fixtures.
  184. const REPLAY_PROVIDERS = [{
  185. id: 'deepseek-official',
  186. name: 'DeepSeek',
  187. models: [
  188. { id: 'deepseek-v4-flash', name: 'DeepSeek-V4-Flash', contextWindow: 128_000 },
  189. {
  190. id: 'deepseek-v4-flash-vision-exp',
  191. name: 'DeepSeek-V4-Flash-Vision-Exp',
  192. contextWindow: 1_000_000,
  193. inputModalities: ['text', 'image'] as const,
  194. defaultMaxTokens: 256_000,
  195. reasoningEfforts: ['off', 'low', 'high', 'max'],
  196. defaultReasoningEffort: 'high',
  197. },
  198. ],
  199. }]
  200. /**
  201. * The routes a shipped composition always has, with no ability to stream.
  202. * A fixture-less keyless scenario issues no model calls, but its tree must
  203. * still answer `listProviders()` — surfaces legitimately gate on whether any
  204. * adapter serves a session's route, and an empty registry is a test artifact,
  205. * not a product state.
  206. */
  207. class RouteOnlyAdapter extends LlmAdapter {
  208. constructor(private readonly providers: typeof REPLAY_PROVIDERS) {
  209. super()
  210. }
  211. override providerInfo(provider: string): LlmProviderInfo {
  212. return { id: provider, name: this.providers.find(entry => entry.id === provider)?.name ?? provider }
  213. }
  214. override listModels(provider: string): Promise<readonly LlmModelInfo[]> {
  215. return Promise.resolve((this.providers.find(entry => entry.id === provider)?.models ?? [])
  216. .map(model => ({ provider, id: model.id, name: model.name })))
  217. }
  218. override resolveModel(provider: string, model: string): Promise<LlmResolvedModelInfo> {
  219. const listed = this.providers.find(entry => entry.id === provider)?.models
  220. .find(entry => entry.id === model)
  221. return Promise.resolve({
  222. provider,
  223. id: model,
  224. name: listed?.name ?? model,
  225. ...listed?.contextWindow === undefined ? {} : { contextWindow: listed.contextWindow },
  226. })
  227. }
  228. override async *stream(): AsyncIterable<StreamChunk> {
  229. throw new Error(
  230. 'web e2e scaffold: a model call was issued by a scenario that declared no replay fixture'
  231. + ' — pass replayFixture, or keep the scenario free of model calls',
  232. )
  233. }
  234. }
  235. function replayProviders(contextWindow: number | undefined): typeof REPLAY_PROVIDERS {
  236. if (contextWindow === undefined) return REPLAY_PROVIDERS
  237. return REPLAY_PROVIDERS.map(provider => ({
  238. ...provider,
  239. models: provider.models.map(model => ({ ...model, contextWindow })),
  240. }))
  241. }
  242. /** A booted web scaffold: real composition, mode-selected model backend, temp world. */
  243. export interface WebScaffold {
  244. /** The active snapshot mode this scaffold booted under. */
  245. mode: WebSnapshotMode
  246. /** Browser-facing origin for the bound test server. */
  247. baseUrl: string
  248. /** Process-token URL that establishes this scaffold's browser session. */
  249. authenticatedUrl: string
  250. /** Settled root context (the in-process readiness barrier; headless event subscription is its sanctioned use). */
  251. ctx: Context
  252. /** Temp project directory sessions run in (shell/fs tool cwd). */
  253. workspaceCwd: string
  254. /** Temp persistence root (seeded sessions land here through the real API). */
  255. persistenceRoot: string
  256. /** Isolated harness home the settings/credentials rows write ($DSH_HOME double). */
  257. harnessHome: string
  258. /** Send a browser-equivalent Host request with this scaffold's authenticated cookie. */
  259. hostFetch(path: string, init?: RequestInit): Promise<Response>
  260. /** Await a settled turn end: in-process turn/end, then the agent's idle flip (which follows the persistence flush). */
  261. whenTurnSettled(timeoutMs?: number): Promise<SessionId>
  262. /**
  263. * Tear everything down; asserts the replay fixture was fully consumed first
  264. * (replay/refresh), unless booted with replayProvidersOnly (whose fixture
  265. * is validated call-free at boot).
  266. */
  267. close(): Promise<void>
  268. }
  269. /** Options for {@link launchWebScaffold}. */
  270. export interface LaunchOptions {
  271. /** Enable the real Open In rows with deterministic launch-environment facts. */
  272. openInAppEnvironment?: LaunchEnvironmentSnapshot
  273. /** Compare the replayed root session with `replayFixture`; defaults on for a manifest-owned canonical recording. */
  274. compareReplaySession?: boolean
  275. /**
  276. * Optional product overlay applied after the shipped Web surface and before
  277. * the scaffold's hermetic test patches, matching the launcher's `--patch`
  278. * ordering.
  279. */
  280. extraOverlayPath?: string
  281. /**
  282. * Additional package manifests whose dependency closures supply experimental
  283. * profile layers named by {@link extraOverlayPath}.
  284. */
  285. extraInstallAnchors?: string[]
  286. /**
  287. * Replay fixture (session.jsonl) served by the inserted dsh-llm-replay row
  288. * in replay/refresh modes; ignored in record mode (the real adapter
  289. * answers). Omit for scenarios issuing no model calls — a stray stream then
  290. * fails loud with NO_ADAPTER (llm-deepseek is disabled and no replay row
  291. * mounts). With {@link replayProvidersOnly}, the fixture must record no
  292. * model calls (its header alone mounts the catalog).
  293. */
  294. replayFixture?: string
  295. /** Explicit replay routes for scenarios exercising provider-dependent behavior; replay/refresh only. */
  296. replayProviders?: ReplayProviderConfig[]
  297. /**
  298. * Mount the replay provider catalog (the model directory the UI shows)
  299. * without consuming any recorded script: for scenarios that never call a
  300. * model but need the real provider/model labels rendered. Requires
  301. * {@link replayFixture} whose log records no model calls, and rejects
  302. * {@link replayOverride} and {@link replayChildFixtures}; the teardown
  303. * consumption check is skipped for this mode. `replayFixture` without this
  304. * flag keeps the consumption check.
  305. */
  306. replayProvidersOnly?: boolean
  307. /**
  308. * Recorded child logs assigned in child creation order. Each child owns its
  309. * own positional replay cursor across initial and continuation turns.
  310. */
  311. replayChildFixtures?: string[]
  312. /**
  313. * Optional replay.override.json sidecar (whole-script replacement or
  314. * `{ patches }` augmentation) for throw/hang scenarios not expressible as
  315. * recorded chunks; replay/refresh only.
  316. */
  317. replayOverride?: string
  318. /**
  319. * Retry policy registered on every replay provider route, for failure-
  320. * injection scenarios that must exhaust recovery quickly instead of walking
  321. * the shared normal default's five backed-off retries; replay/refresh only.
  322. */
  323. replayRetryPolicy?: RetryPolicyConfig
  324. /** Per-chunk replay pacing (ms) so the browser observes genuinely incremental SSE; replay/refresh only. */
  325. paceMs?: number
  326. /** Synthetic model capacity for UI scenarios whose seeded history must remain uncompacted. */
  327. replayContextWindow?: number
  328. /**
  329. * Tool presentation mode patched onto the shipped `tools` row (`code`
  330. * collapses the wire to run_code + the SDK prompt section). Omit for the
  331. * yml default. The code runtime row is always in the tree, so no extra
  332. * insertion is needed.
  333. */
  334. toolsMode?: 'native' | 'ptc' | 'both'
  335. /**
  336. * Insert the opt-in model-facing Cordis tool provider into the shipped tree.
  337. * Record and replay use the same tool surface, so captured request headers
  338. * remain reconstructable without making the tools a product default.
  339. */
  340. cordisTools?: boolean
  341. /**
  342. * Keep the shipped DeepSeek adapter mounted while masking the process
  343. * environment's DEEPSEEK_API_KEY for this scaffold lifetime. This is the
  344. * keyless first-run configuration lane; the default disables the adapter.
  345. */
  346. deepSeekMissingCredential?: boolean
  347. /** Leave the current welcome notice pending; ordinary scenarios pre-acknowledge it before browser boot. */
  348. welcomeNoticePending?: boolean
  349. /**
  350. * Patch the shipped DeepSeek search row to a deterministic endpoint and
  351. * credential reference. Browser search scenarios keep the real provider and
  352. * credentials seam while avoiding external search traffic and ambient keys.
  353. */
  354. deepSeekSearch?: {
  355. /** Anthropic-compatible base URL; the provider appends `/messages`. */
  356. baseURL: string
  357. /** Credential reference resolved by the shipped search provider. */
  358. apiKeyEnv: string
  359. }
  360. /**
  361. * Replace the roster row the scaffold pins by default (no configured roots,
  362. * default `standard` — the plugin's own shipped presets). Supply this only
  363. * to change WHICH presets a scenario sees beyond the shipped set — a
  364. * writable user root, a different default. The patch lands after the
  365. * default, so it wins.
  366. */
  367. agentPresets?: {
  368. /** Roots to discover after the plugin's shipped root, in precedence order. */
  369. roots: { path: string; trust: 'system' | 'user' }[]
  370. /** The preset a session that names none is composed from. */
  371. default: string
  372. }
  373. /**
  374. * Patch the telemetry exporter URL while preserving the shipped enabled
  375. * setting. A scenario-owned loopback collector contains all fixture uploads.
  376. */
  377. telemetryUrl?: string
  378. /** Mode when telemetryUrl is supplied; defaults to FEEDBACK_ONLY without enabling a disabled row. */
  379. telemetryMode?: 'FEEDBACK_ONLY'
  380. /** SDK batch cadence for a scenario-owned collector; omitted to retain the SDK default. */
  381. telemetryScheduledDelayMillis?: number
  382. /**
  383. * Browse through a trusted non-loopback hostname that the browser resolves
  384. * to loopback (for example `*.localhost`). The test server stays bound to
  385. * 127.0.0.1; a non-resolving authority fails before Host trust is exercised.
  386. */
  387. remoteAuthority?: string
  388. /** Reuse an existing harness home so a second Host can verify user settings across origins. */
  389. harnessHome?: string
  390. }
  391. /** Dispose the booted tree and remove both owned temp roots, reporting every independent cleanup failure. */
  392. async function cleanupScaffoldWorld(ctx: Context, workspaceCwd: string, persistenceRoot: string): Promise<unknown[]> {
  393. const failures: unknown[] = []
  394. await Promise.resolve(ctx.fiber.dispose()).catch((error: unknown) => failures.push(error))
  395. await rm(workspaceCwd, { recursive: true, force: true }).catch((error: unknown) => failures.push(error))
  396. await rm(persistenceRoot, { recursive: true, force: true }).catch((error: unknown) => failures.push(error))
  397. return failures
  398. }
  399. /**
  400. * Boot the real web composition under the current snapshot mode.
  401. * @param options - replay fixture selection and pacing.
  402. * @returns the running scaffold.
  403. */
  404. export async function launchWebScaffold(options: LaunchOptions = {}): Promise<WebScaffold> {
  405. requireDist()
  406. const mode = webSnapshotMode()
  407. const replayFixture = options.replayFixture === undefined
  408. ? undefined
  409. : await selectedSessionFixture(options.replayFixture, options.replayOverride !== undefined)
  410. const replayChildFixtures = options.replayChildFixtures === undefined
  411. ? undefined
  412. : await Promise.all(options.replayChildFixtures.map(path => selectedSessionFixture(path)))
  413. const compareReplaySession = options.compareReplaySession ?? await ownsReplayFixture(replayFixture)
  414. const browserHost = options.remoteAuthority ?? '127.0.0.1'
  415. if (mode === 'record') {
  416. // Both owning vitest configs (web unconditionally, snapshot in record
  417. // mode) load the repo-root .env before this file runs.
  418. if (process.env.DEEPSEEK_API_KEY === undefined || process.env.DEEPSEEK_API_KEY.length === 0) {
  419. throw new Error('web e2e record mode needs DEEPSEEK_API_KEY (env or repo-root .env)')
  420. }
  421. }
  422. if (mode === 'record' && options.deepSeekMissingCredential === true) {
  423. throw new Error('deepSeekMissingCredential is a keyless replay/refresh option')
  424. }
  425. const maskDeepSeekCredential = mode !== 'record' && options.deepSeekMissingCredential === true
  426. const originalDeepSeekCredential = process.env.DEEPSEEK_API_KEY
  427. let credentialEnvironmentRestored = false
  428. const restoreCredentialEnvironment = (): void => {
  429. if (credentialEnvironmentRestored || !maskDeepSeekCredential) return
  430. credentialEnvironmentRestored = true
  431. if (originalDeepSeekCredential === undefined) {
  432. Reflect.deleteProperty(process.env, 'DEEPSEEK_API_KEY')
  433. } else {
  434. process.env.DEEPSEEK_API_KEY = originalDeepSeekCredential
  435. }
  436. }
  437. const workspaceCwd = await realpath(await mkdtemp(join(tmpdir(), 'dsh-web-e2e-ws-')))
  438. // Isolated harness home: the settings/credentials rows resolve $DSH_HOME
  439. // paths at load, and an in-process boot must NEVER touch the developer's
  440. // real ~/.dsh document or credential file.
  441. const harnessHome = options.harnessHome ?? join(workspaceCwd, '.dsh-home')
  442. // Skill discovery is model-visible input, and its roots now resolve inside a
  443. // PRESET — a subtree this lane's include patches cannot reach, because the
  444. // roster mounts it directly per session rather than as a row of the booted
  445. // tree. The row's documented fallback is the environment, so pin that: the
  446. // whole scaffold lifetime, not just the boot, since presets mount when a
  447. // session is created. Without this a developer's real ~/.dsh/skills silently
  448. // enters replay requests and goldens while CI sees none. `DSH_HOME` follows
  449. // the resolved harness home so a scaffold sharing another's home — the
  450. // cross-port persistence scenario — pins the same roots the settings and
  451. // credentials rows were configured with.
  452. const skillRootEnvironment = {
  453. DSH_HOME: harnessHome,
  454. DSH_AGENTS_HOME: join(workspaceCwd, '.agents-home'),
  455. DSH_BUNDLED_SKILL_DIR: join(workspaceCwd, '.bundled-skills'),
  456. }
  457. const originalSkillRootEnvironment = Object.fromEntries(
  458. Object.keys(skillRootEnvironment).map(key => [key, process.env[key]]),
  459. )
  460. let skillRootEnvironmentRestored = false
  461. const restoreSkillRootEnvironment = (): void => {
  462. if (skillRootEnvironmentRestored) return
  463. skillRootEnvironmentRestored = true
  464. for (const [key, value] of Object.entries(originalSkillRootEnvironment)) {
  465. if (value === undefined) Reflect.deleteProperty(process.env, key)
  466. else process.env[key] = value
  467. }
  468. }
  469. Object.assign(process.env, skillRootEnvironment)
  470. let persistenceRoot: string
  471. try {
  472. persistenceRoot = await mkdtemp(join(tmpdir(), 'dsh-web-e2e-sessions-'))
  473. } catch (error) {
  474. const failures: unknown[] = [error]
  475. await rm(workspaceCwd, { recursive: true, force: true }).catch((cleanupError: unknown) => failures.push(cleanupError))
  476. restoreSkillRootEnvironment()
  477. if (failures.length > 1) throw new AggregateError(failures, 'web scaffold temp-root setup failed')
  478. throw error
  479. }
  480. if (maskDeepSeekCredential) Reflect.deleteProperty(process.env, 'DEEPSEEK_API_KEY')
  481. // The include patch set — the same layer stack the profile boot composes
  482. // (bundle patches in dsh.profile.bundles order), applied over the SAME empty root (a
  483. // patch id that stops matching a row fails the boot sweep loudly instead of
  484. // drifting).
  485. const basePatches = loadOverlayPatches('web e2e scaffold', BASE_PATCH_PATH)
  486. const surfacePatches = loadOverlayPatches('web e2e scaffold', WEB_PATCH_PATH)
  487. const extraOverlayPatches = options.extraOverlayPath === undefined
  488. ? []
  489. : loadOverlayPatches('web e2e scaffold', options.extraOverlayPath)
  490. const composedRows = composeEntries([basePatches, surfacePatches, extraOverlayPatches])
  491. const webRuntimeConfig = composedRows.find(row => row.id === 'web-runtime')?.config as {
  492. surfaceContext?: boolean
  493. } | undefined
  494. const surfaceContext = webRuntimeConfig?.surfaceContext !== false
  495. const patches: PatchOptions[] = [
  496. ...basePatches,
  497. ...surfacePatches,
  498. // Keyless scenarios retain the recorded default; explicit scenario overlays win.
  499. ...mode === 'record' || options.deepSeekMissingCredential === true
  500. ? []
  501. : [{ id: 'agent-default-model', config: { provider: 'deepseek-official', model: 'deepseek-v4-flash' } }],
  502. ...extraOverlayPatches,
  503. // The roster's shipped presets are the plugin's own, bundled inside
  504. // `dsh-agent-presets` and prepended by it. Pin only the machine-local
  505. // root away: a developer's own `~/.dsh/.agent-presets` must not be able
  506. // to change a golden.
  507. {
  508. id: 'agent-presets',
  509. config: {
  510. default: 'standard',
  511. includeUserRoot: false,
  512. },
  513. },
  514. { id: 'session-persistence-jsonl', config: { root: persistenceRoot } },
  515. // Content search is enabled here although the shipped bundles default it
  516. // off (`openAt: never`, pinned by apps/cli/tests/lazy-search-startup):
  517. // the seeded-session scenarios navigate by content search, and these e2e
  518. // runs are the assembled coverage for the opt-in search path.
  519. { id: 'session-query-sqlite', config: { path: ':memory:', openAt: 'first-search' } },
  520. // storage-json's yml root is anchored to the real $DSH_HOME; pin the row
  521. // to an absolute temp root (removed with the workspace at close) so tests
  522. // never write the user's harness home.
  523. { id: 'storage-json', config: { root: join(workspaceCwd, '.dsh-storages') } },
  524. // Skill discovery is model-visible input. Pin every host-level root inside
  525. // the owned temp world so ~/.dsh, ~/.agents, and a bundled-root env setting
  526. // cannot change replay requests or conversation goldens. Project roots stay
  527. // enabled against the same empty temp workspace, preserving the real seam.
  528. {
  529. id: 'skill-filesystem',
  530. config: {
  531. dshHome: join(workspaceCwd, '.dsh-home'),
  532. agentsHome: join(workspaceCwd, '.agents-home'),
  533. bundledSkillDir: join(workspaceCwd, '.bundled-skills'),
  534. watch: false,
  535. },
  536. },
  537. // fs/bash cwd default to process.cwd(); the gateway injects the same
  538. // value into session.cwd — chdir below anchors all three to the temp
  539. // workspace, keeping the composition untouched.
  540. { id: 'agent-instructions', disabled: true },
  541. { id: 'session-title-llm', disabled: true },
  542. // Fixture sessions must never leave the process: the shipped row defaults
  543. // to the production OTLP endpoint (or whatever DSH_TELEMETRY_OTLP_URL
  544. // names in the ambient environment). A scenario with a local collector
  545. // preserves the shipped disabled setting instead of overriding it.
  546. options.telemetryUrl === undefined
  547. ? { id: 'session-telemetry-otel', disabled: true }
  548. : {
  549. id: 'session-telemetry-otel',
  550. config: {
  551. mode: options.telemetryMode ?? 'FEEDBACK_ONLY',
  552. exporter: { url: options.telemetryUrl },
  553. ...(options.telemetryScheduledDelayMillis === undefined ? {} : {
  554. processor: { scheduledDelayMillis: options.telemetryScheduledDelayMillis },
  555. }),
  556. shutdownTimeoutMillis: 1_000,
  557. },
  558. },
  559. // Use an ephemeral port while preserving the shipped compression policy;
  560. // a patch replaces the row's complete config.
  561. {
  562. id: 'webserver',
  563. config: {
  564. host: '127.0.0.1', port: 0, compression: 'gzip',
  565. compressionLevel: 1, compressionThresholdBytes: 1024,
  566. },
  567. },
  568. // The bundle's web-runtime row resolves the same built dist under test
  569. // (apps/web IS @deepseek-ai/dsh-web-frontend); native browser opening and the
  570. // URL line are disabled because this scaffold owns its Playwright browser.
  571. // Preserve the composed surface-context choice because a patch replaces
  572. // the row's complete config.
  573. { id: 'web-runtime', config: { openBrowser: false, printUrl: false, surfaceContext } },
  574. ...options.remoteAuthority === undefined
  575. ? []
  576. : [{ id: 'connection', config: { trustedHosts: [options.remoteAuthority] } }],
  577. { id: 'settings', config: { dshHome: harnessHome } },
  578. { id: 'credentials', config: { dshHome: harnessHome } },
  579. // The shipped directory-picker row is the -auto chooser, which resolves
  580. // the interaction from the RUNNING host (display, SSH launch, bind). The
  581. // lane's goldens are interaction-specific (workspace-management drives
  582. // the in-app browse dialog), so pin -browse deterministically on every
  583. // host: patch `name` is an assertion, not an override, hence the
  584. // disable+insert pair.
  585. { id: 'directory-picker', disabled: true },
  586. { insert: [
  587. { id: 'directory-picker-browse', name: '@deepseek-ai/dsh-host-directory-picker-browse' },
  588. { id: 'ui-directory-picker-browse', name: '@deepseek-ai/dsh-client-ui-directory-picker-browse' },
  589. ] },
  590. // Ordinary scenarios exclude host-dependent application discovery. The
  591. // Open In scenario supplies launch facts that suppress every native probe.
  592. { id: 'open-in-app', disabled: options.openInAppEnvironment === undefined },
  593. { id: 'ui-open-in-app', disabled: options.openInAppEnvironment === undefined },
  594. ...options.agentPresets === undefined
  595. ? []
  596. // Never the derived harness-home root: a developer's own presets must not
  597. // be able to change a golden, whatever roots a scenario asks for.
  598. : [{ id: 'agent-presets', config: { ...options.agentPresets, includeUserRoot: false } }],
  599. ...options.toolsMode === undefined ? [] : [{ id: 'tools', config: { mode: options.toolsMode } }],
  600. // The shipped Web bundle already owns both runners and the Cordis UI. This
  601. // scenario adds only the model-facing tools that exercise those services.
  602. ...options.cordisTools === true
  603. ? [{ insert: [
  604. { id: 'tool-cordis', name: '@deepseek-ai/dsh-tool-cordis' },
  605. ] }]
  606. : [],
  607. ...options.deepSeekSearch === undefined
  608. ? []
  609. : [{
  610. id: 'web-search-deepseek',
  611. config: {
  612. apiKeyEnv: options.deepSeekSearch.apiKeyEnv,
  613. baseURL: options.deepSeekSearch.baseURL,
  614. },
  615. }],
  616. ...mode === 'record' || options.deepSeekMissingCredential === true
  617. ? []
  618. : [{ id: 'llm-deepseek', disabled: true }],
  619. ]
  620. // Sessions inherit the gateway's process.cwd() default; run the boot from
  621. // the temp workspace so tool cwd, session cwd, and fixtures agree.
  622. const originalCwd = process.cwd()
  623. const ctx = new Context()
  624. if (options.openInAppEnvironment !== undefined) ctx.provide(DSH_LAUNCH_ENVIRONMENT_KEY, options.openInAppEnvironment)
  625. const observedSessions = new Map<SessionId, Session>()
  626. const stopObservingSessions = ctx.on('session/created', (session) => {
  627. observedSessions.set(session.id, session)
  628. })
  629. let port = 0
  630. let baseUrl = ''
  631. let authenticatedUrl = ''
  632. let cookieHeader = ''
  633. let replayHandle: ReplayHandle | undefined
  634. try {
  635. process.chdir(workspaceCwd)
  636. const profileDir = join(harnessHome, 'profiles', 'scaffold')
  637. const extraLayers: Profile['layers'] = await Promise.all((options.extraInstallAnchors ?? []).map(async (anchor) => {
  638. const manifest = JSON.parse(await readFile(anchor, 'utf8')) as { name?: unknown }
  639. if (typeof manifest.name !== 'string' || manifest.name === '') {
  640. throw new Error(`web scaffold extra install anchor has no package name: ${anchor}`)
  641. }
  642. const packageDir = dirname(anchor)
  643. return {
  644. packageName: manifest.name,
  645. packageDir,
  646. patchPath: join(packageDir, 'cordis.patch.yml'),
  647. patches: [],
  648. }
  649. }))
  650. // Mirror the production launcher: the shared installation closure keeps
  651. // its carrier-specific fallback, while private bundle dependencies stay
  652. // isolated to this synthetic scaffold profile.
  653. await healProfilesModuleFallback({
  654. installAnchor: INSTALL_ANCHOR,
  655. home: harnessHome,
  656. profile: {
  657. name: 'scaffold',
  658. dir: profileDir,
  659. layers: extraLayers,
  660. patchPath: join(profileDir, 'cordis.patch.yml'),
  661. patches: [],
  662. patchReload: 'startup',
  663. },
  664. })
  665. await mkdir(profileDir, { recursive: true })
  666. const rootConfig = join(profileDir, 'cordis.yml')
  667. await writeFile(rootConfig, '[]\n')
  668. ctx.baseUrl = pathToFileURL(profileDir).href + '/'
  669. // This direct Loader harness supplies the same root-path capability as app-boot.
  670. ctx.provide('dshHomePath', dshHomePath)
  671. // A host with no command line still provides one: the web bundle's startup
  672. // row releases the rows waiting on it, and with no arguments each starts on
  673. // the values this scaffold composed above. An exit request can only come
  674. // from a rejected argument, which a fixed empty list has none of.
  675. provideCmdline(ctx, {
  676. args: [],
  677. exit: (code) => {
  678. throw new Error(`web e2e scaffold: the web app requested exit ${String(code)} with no arguments to reject`)
  679. },
  680. })
  681. await ctx.plugin(Loader)
  682. ctx.loader.builtins.include = Include
  683. // `cordis:group` beside it, exactly as `boot()` registers it: a group row is
  684. // how a preset gives one `isolate` realm to a provider and its consumers,
  685. // and a preset resolving package names from its own directory cannot reach
  686. // `@deepseek-ai/cordis-plugin-group` by name.
  687. ctx.loader.builtins.group = Group
  688. await ctx.loader.create({
  689. name: 'cordis:include',
  690. config: { path: pathToFileURL(rootConfig).href, patches },
  691. })
  692. await ctx.loader.await()
  693. assertEntriesLoaded(ctx, 'web e2e scaffold')
  694. if (options.welcomeNoticePending !== true) {
  695. await ctx.settings.mutate(WELCOME_NOTICE_SETTINGS_NAMESPACE, [{
  696. op: 'set', path: [WELCOME_NOTICE_ACK_FIELD], value: WELCOME_NOTICE_VERSION,
  697. }])
  698. }
  699. const boundPort = ctx.get('webServer')?.port
  700. if (boundPort === undefined) {
  701. throw new Error('web e2e scaffold: webServer service missing after settled boot')
  702. }
  703. port = boundPort
  704. // Fill the open llm seam on the settled root ctx. Ordinary keyless modes
  705. // disable llm-deepseek; the first-run lane keeps it mounted but has no
  706. // replay fixture and never streams. The direct install, unlike the plugin
  707. // row, returns the ReplayHandle for the teardown consumption check.
  708. if (options.replayProvidersOnly) {
  709. if (replayFixture === undefined) {
  710. throw new Error('replayProvidersOnly requires replayFixture (its file supplies the header)')
  711. }
  712. const fixtureText = readFileSync(replayFixture, 'utf8')
  713. // The consumption check is skipped for this mode, so no script source
  714. // may carry callable entries: reject override/child sources outright
  715. // and any call-bearing fixture.
  716. if (options.replayOverride !== undefined || replayChildFixtures !== undefined) {
  717. throw new Error('replayProvidersOnly cannot combine with replayOverride or replayChildFixtures')
  718. }
  719. // A fixture without a session header row must not mount the catalog
  720. // silently: the consumption-skip assumes the header-only shape.
  721. let headerType: unknown
  722. try {
  723. headerType = (JSON.parse(fixtureText.trimStart().split('\n', 1)[0] ?? '') as { type?: unknown }).type
  724. } catch {
  725. headerType = undefined
  726. }
  727. if (headerType !== 'session') {
  728. throw new Error('replayProvidersOnly fixture must open with a session header row')
  729. }
  730. const recorded = parseSessionLog(fixtureText)
  731. const hasModelCall = recorded.some(event => (
  732. event.type === 'assistant/message' || event.type === 'assistant/attempt'
  733. || event.type === 'request/header' || event.type === 'tool/call'
  734. ))
  735. if (hasModelCall) {
  736. throw new Error('replayProvidersOnly fixture must record no model calls')
  737. }
  738. }
  739. if (mode !== 'record' && replayFixture !== undefined) {
  740. replayHandle = installLlmReplay(ctx, {
  741. file: replayFixture,
  742. providers: (options.replayProviders ?? replayProviders(options.replayContextWindow)).map(provider => ({
  743. ...provider,
  744. ...(options.replayRetryPolicy === undefined ? {} : { retryPolicy: options.replayRetryPolicy }),
  745. })),
  746. ...(options.replayOverride === undefined ? {} : { overrideFile: options.replayOverride }),
  747. ...(replayChildFixtures === undefined ? {} : { childFiles: replayChildFixtures }),
  748. ...(options.paceMs === undefined ? {} : { paceMs: options.paceMs }),
  749. })
  750. } else if (mode !== 'record' && options.deepSeekMissingCredential !== true) {
  751. // No fixture and no shipped adapter would leave the tree with ZERO
  752. // provider routes — a state no product composition has, and one the
  753. // composer refuses to type into. Register the same routes
  754. // a fixture would, with streaming that still fails loud: the scenario
  755. // issues no model calls, and one that slipped in must not pass quietly.
  756. ctx.effect(() => ctx.llm.registerAdapter(
  757. replayProviders(options.replayContextWindow).map(provider => provider.id),
  758. new RouteOnlyAdapter(replayProviders(options.replayContextWindow)),
  759. ), 'web e2e scaffold: route-only adapter')
  760. }
  761. baseUrl = `http://${browserHost}:${String(port)}`
  762. authenticatedUrl = ctx.connection.authenticatedUrl(baseUrl)
  763. const login = await fetch(authenticatedUrl, { redirect: 'manual' })
  764. const setCookie = login.headers.get('set-cookie')
  765. if (login.status !== 303 || login.headers.get('location') !== '/' || setCookie === null) {
  766. throw new Error('web e2e scaffold: browser token exchange did not return its session cookie')
  767. }
  768. cookieHeader = setCookie.split(';', 1)[0] ?? ''
  769. if (cookieHeader.length === 0) {
  770. throw new Error('web e2e scaffold: browser token exchange returned an empty session cookie')
  771. }
  772. } catch (error) {
  773. if (process.cwd() !== originalCwd) process.chdir(originalCwd)
  774. const cleanupFailures = await cleanupScaffoldWorld(ctx, workspaceCwd, persistenceRoot)
  775. restoreCredentialEnvironment()
  776. restoreSkillRootEnvironment()
  777. if (cleanupFailures.length > 0) {
  778. throw new AggregateError([error, ...cleanupFailures], 'web scaffold setup failed and cleanup was incomplete')
  779. }
  780. throw error
  781. } finally {
  782. if (process.cwd() !== originalCwd) process.chdir(originalCwd)
  783. }
  784. return {
  785. harnessHome,
  786. mode,
  787. baseUrl,
  788. authenticatedUrl,
  789. ctx,
  790. workspaceCwd,
  791. persistenceRoot,
  792. hostFetch(path: string, init: RequestInit = {}): Promise<Response> {
  793. const headers = new Headers(init.headers)
  794. headers.set('cookie', cookieHeader)
  795. return fetch(new URL(path, baseUrl), { ...init, headers })
  796. },
  797. // Barrier stack: the in-process turn/end identifies the session, its
  798. // explicit flush makes the transcript durable, and the caller's browser
  799. // settled-poll comes last because host completion strictly precedes render.
  800. whenTurnSettled(timeoutMs = mode === 'record' ? 180_000 : 30_000): Promise<SessionId> {
  801. return new Promise<SessionId>((resolveSettled, reject) => {
  802. const timer = setTimeout(() => {
  803. off()
  804. reject(new Error(`no turn/end within ${timeoutMs}ms`))
  805. }, timeoutMs)
  806. const off = ctx.on('session/event', (session: Session, event: SessionEvent) => {
  807. if (event.type !== 'turn/end') return
  808. clearTimeout(timer)
  809. off()
  810. ctx.sessions.flush(session)
  811. .then(() => { resolveSettled(session.id) }, reject)
  812. })
  813. })
  814. },
  815. async close(): Promise<void> {
  816. const failures: unknown[] = []
  817. if (mode !== 'record'
  818. && replayFixture !== undefined
  819. && options.replayProvidersOnly !== true
  820. && compareReplaySession) {
  821. try {
  822. await assertReplaySession(
  823. [...observedSessions.values()],
  824. replayFixture,
  825. mode,
  826. `http://${browserHost}:${port}`,
  827. harnessHome,
  828. )
  829. } catch (error) {
  830. failures.push(error)
  831. }
  832. }
  833. // Fixture-consumption check first, while the run's binding state is
  834. // still authoritative — a scenario that drove fewer model calls than
  835. // recorded fails here instead of drifting green. Skipped for
  836. // replayProvidersOnly, whose fixture is validated call-free at boot.
  837. if (!options.replayProvidersOnly) {
  838. try {
  839. replayHandle?.assertConsumed()
  840. } catch (error) {
  841. failures.push(error)
  842. }
  843. }
  844. try {
  845. stopObservingSessions()
  846. failures.push(...await cleanupScaffoldWorld(ctx, workspaceCwd, persistenceRoot))
  847. } finally {
  848. restoreCredentialEnvironment()
  849. restoreSkillRootEnvironment()
  850. }
  851. if (failures.length > 0) throw new AggregateError(failures, 'web scaffold teardown failed')
  852. },
  853. }
  854. }
  855. /**
  856. * Serialize a live session to the canonical raw session-JSONL layout — the
  857. * in-memory record-mode harvest, so the on-disk zstd default never matters.
  858. */
  859. function rawSessionLog(session: Session): string {
  860. const encodedEvents = (session.snapshotEvents() as unknown as readonly SessionFormatEvent[])
  861. .map(event => sessionFormatCatalog.encodeCurrentEvent(event))
  862. const header = sessionFormatCatalog.encodeCurrentHeader({
  863. ...session.header,
  864. delegationDepth: session.header.delegationDepth ?? 0,
  865. }, session.inheritedEventCount)
  866. return [
  867. JSON.stringify(header),
  868. ...encodedEvents.map(record => JSON.stringify(record)),
  869. '',
  870. ].join('\n')
  871. }
  872. function mapJsonStringValues(value: unknown, map: (value: string) => string): unknown {
  873. if (typeof value === 'string') return map(value)
  874. if (Array.isArray(value)) return value.map(item => mapJsonStringValues(item, map))
  875. if (value !== null && typeof value === 'object') {
  876. return Object.fromEntries(Object.entries(value).map(([key, item]) => [
  877. key,
  878. mapJsonStringValues(item, map),
  879. ]))
  880. }
  881. return value
  882. }
  883. /** Tokenize the browser timezone carried by user message sources. */
  884. function normalizeClientTimeZones(value: unknown): unknown {
  885. if (Array.isArray(value)) return value.map(item => normalizeClientTimeZones(item))
  886. if (value !== null && typeof value === 'object') {
  887. const next = Object.fromEntries(Object.entries(value).map(([key, item]) => [
  888. key,
  889. normalizeClientTimeZones(item),
  890. ]))
  891. const source = (next as { source?: unknown }).source
  892. if (source !== null && typeof source === 'object'
  893. && (source as { kind?: unknown }).kind === 'user'
  894. && typeof (source as { clientTimeZone?: unknown }).clientTimeZone === 'string') {
  895. return {
  896. ...next,
  897. source: { ...source, clientTimeZone: '{{clientTimeZone}}' },
  898. }
  899. }
  900. return next
  901. }
  902. return value
  903. }
  904. const WEB_PATH_TEXT_BOUNDARY_RE = /[\s<>'"`()\[\]{},;:!?=]/
  905. const WEB_FILE_URI_PATH_PREFIX_RE = /(?:^|[^a-z0-9+.-])file:\/\/\/?$/i
  906. function isWebCwdMatch(value: string, start: number, length: number): boolean {
  907. const before = value[start - 1]
  908. const after = value[start + length]
  909. const afterPunctuation = value[start + length + 1]
  910. const startsAtBoundary = before === undefined
  911. || WEB_PATH_TEXT_BOUNDARY_RE.test(before)
  912. || WEB_FILE_URI_PATH_PREFIX_RE.test(value.slice(0, start))
  913. const endsAtBoundary = after === undefined
  914. || after === '/'
  915. || after === '\\'
  916. || WEB_PATH_TEXT_BOUNDARY_RE.test(after)
  917. || after === '.' && (afterPunctuation === undefined || WEB_PATH_TEXT_BOUNDARY_RE.test(afterPunctuation))
  918. return startsAtBoundary && endsAtBoundary
  919. }
  920. function replaceWebCwd(value: string, cwd: string): string {
  921. let cursor = 0
  922. let normalized = ''
  923. while (cursor < value.length) {
  924. const match = value.indexOf(cwd, cursor)
  925. if (match < 0) return normalized + value.slice(cursor)
  926. const end = match + cwd.length
  927. if (isWebCwdMatch(value, match, cwd.length)) {
  928. normalized += value.slice(cursor, match) + '{{cwd}}'
  929. cursor = end
  930. } else {
  931. normalized += value.slice(cursor, end)
  932. cursor = end
  933. }
  934. }
  935. return normalized
  936. }
  937. /**
  938. * Normalize Web-only volatile strings while preserving JSON structure and row framing.
  939. * @param log - raw Session JSONL.
  940. * @param workspaceCwd - optional scaffold parent used before a live Session selects its cwd.
  941. * @returns compact JSONL with run-local strings tokenized.
  942. */
  943. export function normalizeWebSessionVolatiles(log: string, workspaceCwd?: string): string {
  944. const headerLine = log.split(/\r?\n/).find(line => line.trim().length > 0)
  945. const header = headerLine === undefined ? undefined : JSON.parse(headerLine) as { cwd?: unknown }
  946. const sessionCwd = typeof header?.cwd === 'string' && header.cwd.length > 0 ? header.cwd : undefined
  947. const cwdSpellings = [...new Set([sessionCwd ?? workspaceCwd]
  948. .filter((value): value is string => typeof value === 'string' && value.length > 0)
  949. .flatMap((value) => {
  950. const forward = value.replaceAll('\\', '/')
  951. const native = /^[A-Za-z]:[\\/]/.test(value) ? forward.replaceAll('/', '\\') : value
  952. return [value, value.replaceAll('\\', '\\\\'), forward, native]
  953. }))].sort((left, right) => right.length - left.length)
  954. return log.split(/\r?\n/).map((line) => {
  955. if (line.trim() === '') return line
  956. const record = normalizeClientTimeZones(mapJsonStringValues(JSON.parse(line), (value) => {
  957. let normalized = value
  958. .replace(/Anonymous user: [0-9a-f-]{36}(?=\.$)/gi, 'Anonymous user: {{anonymousUserId}}')
  959. for (const cwd of cwdSpellings) normalized = replaceWebCwd(normalized, cwd)
  960. return normalized
  961. })) as { type?: unknown; data?: { endpoint?: unknown } }
  962. if (record.type === 'web/deepseek-search-llm-request' && typeof record.data?.endpoint === 'string') {
  963. record.data.endpoint = '{{webSearchEndpoint}}'
  964. }
  965. return JSON.stringify(record)
  966. }).join('\n')
  967. }
  968. function stableSessionFixture(
  969. session: Session,
  970. existing: string,
  971. workspaceCwd: string,
  972. harnessHome: string,
  973. ): string {
  974. const prepared = prepareSessionSnapshotFixtureForComparison(
  975. normalizeWebSessionVolatiles(rawSessionLog(session), workspaceCwd),
  976. )
  977. const stabilized = existing === ''
  978. ? prepared
  979. : stabilizeRefreshLog(prepared, existing, [], {
  980. sessionIds: [String(session.id)],
  981. cwd: workspaceCwd,
  982. })
  983. const fresh = scrubSessionSnapshot(stabilized)
  984. .split(session.id).join('{{session:1}}')
  985. .split(harnessHome).join('{{harnessHome}}')
  986. const stable = redactSessionSnapshotIds(stabilizeFixtureMessageIds([fresh], [existing]))[0]
  987. if (stable === undefined) throw new Error('session harvest produced no stabilized fixture')
  988. return stable
  989. }
  990. async function assertReplaySession(
  991. sessions: readonly Session[],
  992. fixturePath: string,
  993. mode: WebSnapshotMode,
  994. webUrl: string,
  995. harnessHome: string,
  996. ): Promise<void> {
  997. let expected = await readFile(fixturePath, 'utf8')
  998. const fixtureDir = dirname(fixturePath)
  999. const manifestPath = join(fixtureDir, 'snapshot.yml')
  1000. const manifest = parseSnapshotManifest(await readFile(manifestPath, 'utf8'), manifestPath)
  1001. let expectedPath = fixturePath
  1002. const userPrompts = fixtureUserPrompts(expected)
  1003. const candidates = sessions.filter((session) => {
  1004. if (session.header.parentSession !== undefined) return false
  1005. const actual = session.snapshotEvents().flatMap((event) => {
  1006. if (event.type !== 'user/message' || event.data.source.kind !== 'user') return []
  1007. const text = event.data.content.filter(block => block.type === 'text').map(block => block.text).join('')
  1008. return text.length === 0 ? [] : [text]
  1009. })
  1010. return JSON.stringify(actual) === JSON.stringify(userPrompts)
  1011. })
  1012. expect(candidates, `Web replay fixture ${fixturePath} must match one live root session`).toHaveLength(1)
  1013. const session = candidates[0] as Session
  1014. const sessionCwd = session.header.cwd
  1015. if (sessionCwd === undefined) throw new Error(`${fixturePath}: replayed session has no cwd`)
  1016. const actual = rawSessionLog(session)
  1017. if (mode === 'refresh' && writesCurrentSessionFixtures(manifest, mode)) {
  1018. expected = stableSessionFixture(session, expected, sessionCwd, harnessHome)
  1019. expectedPath = recordedSessionFixturePath(fixturePath, session.header.version)
  1020. await writeFile(expectedPath, expected)
  1021. }
  1022. const expectedHeader = JSON.parse(expected.split('\n').find(line => line.trim() !== '') ?? '{}') as {
  1023. id?: unknown
  1024. cwd?: unknown
  1025. }
  1026. const actualContext: NormalizeContext = { sessionIds: [String(session.id)], cwd: sessionCwd }
  1027. const expectedContext: NormalizeContext = {
  1028. sessionIds: typeof expectedHeader.id === 'string' ? [expectedHeader.id] : [],
  1029. cwd: typeof expectedHeader.cwd === 'string' ? expectedHeader.cwd : '\0no-cwd\0',
  1030. }
  1031. const actualSnapshot = normalizeSessionSnapshots([normalizeWebSessionVolatiles(actual)], actualContext)[0]
  1032. ?.split(harnessHome).join('{{harnessHome}}')
  1033. const expectedSnapshot = normalizeSessionSnapshots([normalizeWebSessionVolatiles(expected)], expectedContext)[0]
  1034. ?.split(harnessHome).join('{{harnessHome}}')
  1035. expect(actualSnapshot, `${fixturePath}: persisted replay`).toBe(expectedSnapshot)
  1036. if (manifest.header?.pin !== true) return
  1037. const normalizePrompt = (value: string): string => value
  1038. .split(REPO_ROOT).join('{{sourceRoot}}')
  1039. .split(webUrl).join('{{webUrl}}')
  1040. const prompts = normalizedSystemPrompts(actual, actualContext).map(normalizePrompt)
  1041. const schemas = normalizedToolSchemas(actual, actualContext)
  1042. const promptPath = join(fixtureDir, 'system-prompt.expected.md')
  1043. const schemaPath = join(fixtureDir, 'tool-schemas.expected.json')
  1044. const promptSnapshot = formatSystemPromptSnapshot(prompts[0] as string, prompts.slice(1))
  1045. const schemaSnapshot = formatToolSchemasSnapshot(schemas[0] as unknown[], schemas.slice(1))
  1046. if (mode === 'refresh') {
  1047. await Promise.all([writeFile(promptPath, promptSnapshot), writeFile(schemaPath, schemaSnapshot)])
  1048. }
  1049. expect(promptSnapshot, `${fixturePath}: system-prompt pin`).toBe(await readFile(promptPath, 'utf8'))
  1050. expect(schemaSnapshot, `${fixturePath}: tool-schema pin`).toBe(await readFile(schemaPath, 'utf8'))
  1051. }
  1052. /**
  1053. * Record-mode fixture write-back: harvest the live session, scrub the
  1054. * system-prompt text to {{system}} and header tool schemas to {{tools}},
  1055. * tokenize the run-local cwd, redact opaque identities with typed
  1056. * relationship-preserving tokens, and write the fixture.
  1057. * A manifest-retained historical generation makes the write-back a no-op.
  1058. * @param scaffold - the record-mode scaffold.
  1059. * @param sessionId - the driven session.
  1060. * @param fixturePath - the committed session.jsonl target.
  1061. */
  1062. export async function recordFixture(scaffold: WebScaffold, sessionId: SessionId, fixturePath: string): Promise<void> {
  1063. const agent = scaffold.ctx.agents.get(sessionId)
  1064. if (agent === undefined) throw new Error(`record harvest: no live agent for ${sessionId}`)
  1065. const manifestPath = join(dirname(fixturePath), 'snapshot.yml')
  1066. const manifest = parseSnapshotManifest(await readFile(manifestPath, 'utf8'), manifestPath)
  1067. if (!writesCurrentSessionFixtures(manifest, 'record')) return
  1068. const target = recordedSessionFixturePath(fixturePath, agent.session.header.version)
  1069. const existingPath = existsSync(target) ? target : fixturePath
  1070. const existing = existsSync(existingPath) ? await readFile(existingPath, 'utf8') : ''
  1071. await writeFile(target, stableSessionFixture(
  1072. agent.session,
  1073. existing,
  1074. scaffold.workspaceCwd,
  1075. scaffold.harnessHome,
  1076. ))
  1077. }
  1078. /**
  1079. * The user prompts recorded in a fixture, in order — the single source tying
  1080. * spec drive steps to recorded reality so script and fixture cannot drift.
  1081. * @param fixtureText - raw session.jsonl contents.
  1082. * @returns the recorded user prompt texts.
  1083. */
  1084. export function fixtureUserPrompts(fixtureText: string): string[] {
  1085. return parseSessionLog(fixtureText).flatMap((event) => {
  1086. if (event.type !== 'user/message' || event.data.source.kind !== 'user') return []
  1087. const text = event.data.content.filter(block => block.type === 'text').map(block => block.text).join('')
  1088. return text.length > 0 ? [text] : []
  1089. })
  1090. }
  1091. /** Deterministic UUID used when a seed fixture's typed identity token is materialized. */
  1092. export function fixtureIdentity(
  1093. kind: 'message' | 'approval' | 'workflow' | 'command' | 'rpc' | 'retry' | 'id',
  1094. ordinal: number,
  1095. ): string {
  1096. const hex = createHash('sha256').update(`${kind}:${ordinal}`).digest('hex').slice(0, 32).split('')
  1097. hex[12] = '4'
  1098. hex[16] = ['8', '9', 'a', 'b'][Number.parseInt(hex[16] as string, 16) % 4] as string
  1099. return `${hex.slice(0, 8).join('')}-${hex.slice(8, 12).join('')}-${hex.slice(12, 16).join('')}-${hex.slice(16, 20).join('')}-${hex.slice(20).join('')}`
  1100. }
  1101. /**
  1102. * Realize a recorded seed fixture against one scaffold: substitute the
  1103. * `{{sessionId}}`/`{{cwd}}`/`{{harnessHome}}` placeholders and rewrite the
  1104. * recorded cwd to the scaffold's workspace. Idempotent, so a caller may realize early (e.g. to
  1105. * price content exactly as the host will fold it) and still pass the result
  1106. * through {@link seedSession}.
  1107. * @param scaffold - the booted scaffold whose workspace the seed targets.
  1108. * @param fixtureText - the committed seed fixture text.
  1109. * @param id - the session id the seed is realized for.
  1110. * @returns the realized fixture text.
  1111. */
  1112. export function realizeSeedFixture(scaffold: WebScaffold, fixtureText: string, id: string): string {
  1113. const firstLine = fixtureText.split(/\r?\n/).find(line => line.trim().length > 0)
  1114. const fixtureCwd = firstLine === undefined
  1115. ? undefined
  1116. : (JSON.parse(firstLine) as { cwd?: unknown }).cwd
  1117. return fixtureText.split(/\r?\n/).map((line) => {
  1118. if (line.trim() === '') return line
  1119. const realized = mapJsonStringValues(JSON.parse(line), (value) => {
  1120. let result = typeof fixtureCwd === 'string'
  1121. ? value.split(fixtureCwd).join(scaffold.workspaceCwd)
  1122. : value
  1123. result = result
  1124. .split('{{sessionId}}').join(id)
  1125. .split('{{session:1}}').join(id)
  1126. .replace(/\{\{session:([2-9]\d*)\}\}/g, (_token, ordinal: string) => `${id}-child-${ordinal}`)
  1127. .replace(/\{\{(message|approval|workflow|command|rpc|retry|id):([1-9]\d*)\}\}/g, (_token, kind: string, ordinal: string) =>
  1128. fixtureIdentity(kind as 'message' | 'approval' | 'workflow' | 'command' | 'rpc' | 'retry' | 'id', Number(ordinal)))
  1129. .split('{{harnessHome}}').join(scaffold.harnessHome)
  1130. .split('{{cwd}}').join(scaffold.workspaceCwd)
  1131. return result
  1132. })
  1133. return JSON.stringify(realized)
  1134. }).join('\n')
  1135. }
  1136. /**
  1137. * Parse a committed web seed fixture through the replay reader.
  1138. * @param fixtureText - session JSONL fixture contents.
  1139. * @returns the current header line, parsed header, and logical events.
  1140. */
  1141. /** Give a migrated fixture stream positive relative timing before its final wall-clock rebase. */
  1142. function spreadMigratedSeedStream(
  1143. stream: SessionEvent<'assistant/message'>['data']['stream'],
  1144. ): SessionEvent<'assistant/message'>['data']['stream'] {
  1145. let nextTime = 0
  1146. return stream.map((record) => {
  1147. if ('time' in record) {
  1148. const timed = { ...record, time: nextTime }
  1149. nextTime += 1
  1150. return timed
  1151. }
  1152. const timed = { ...record, time0: nextTime }
  1153. nextTime += record.dt.reduce((total, delta) => total + delta, 0) + 1
  1154. return timed
  1155. })
  1156. }
  1157. export function parseSeedFixture(fixtureText: string): {
  1158. headerLine: string
  1159. header: Record<string, unknown>
  1160. events: SessionEvent[]
  1161. } {
  1162. const sourceHeaderLine = fixtureText.split(/\r?\n/).find(line => line.trim().length > 0)
  1163. if (sourceHeaderLine === undefined) throw new Error('seed fixture has no session header')
  1164. const sourceHeader = JSON.parse(sourceHeaderLine) as { version?: unknown }
  1165. const current = prepareSessionSnapshotFixtureForComparison(fixtureText)
  1166. const headerLine = current.split(/\r?\n/).find(line => line.trim().length > 0)
  1167. if (headerLine === undefined) throw new Error('seed fixture has no session header')
  1168. const header = JSON.parse(headerLine) as Record<string, unknown>
  1169. if (header.type !== 'session') throw new Error('seed fixture must start with a session header')
  1170. const events = parseSessionLog(current).map((event) => {
  1171. if (sourceHeader.version === SESSION_FORMAT_VERSION) return event
  1172. if (event.type === 'assistant/message') {
  1173. return { ...event, data: { ...event.data, stream: spreadMigratedSeedStream(event.data.stream) } }
  1174. }
  1175. if (event.type === 'assistant/attempt') {
  1176. return { ...event, data: { ...event.data, stream: spreadMigratedSeedStream(event.data.stream) } }
  1177. }
  1178. return event
  1179. })
  1180. return { headerLine, header, events }
  1181. }
  1182. /**
  1183. * Render logical events as an envelope-free web seed fixture.
  1184. * @param headerLine - original session header line.
  1185. * @param events - logical session events in order.
  1186. * @returns projected session JSONL.
  1187. */
  1188. export function renderSeedFixture(
  1189. headerLine: string,
  1190. events: readonly ({ readonly seq: number; readonly time: number } & object)[],
  1191. ): string {
  1192. return [
  1193. headerLine,
  1194. ...events.map(({ seq: _seq, time: _time, ...event }) => JSON.stringify(event)),
  1195. '',
  1196. ].join('\n')
  1197. }
  1198. /** Re-anchor one projected embedded stream while preserving every intra-stream gap. */
  1199. function rebaseSeedStream(
  1200. stream: SessionEvent<'assistant/message'>['data']['stream'],
  1201. startAt: number,
  1202. ): SessionEvent<'assistant/message'>['data']['stream'] {
  1203. const first = stream[0]
  1204. if (first === undefined) return stream
  1205. const sourceStart = 'time' in first ? first.time : first.time0
  1206. const delta = startAt - sourceStart
  1207. return stream.map(record => 'time' in record
  1208. ? { ...record, time: record.time + delta }
  1209. : { ...record, time0: record.time0 + delta })
  1210. }
  1211. /** Last logical timestamp carried by an embedded Assistant stream. */
  1212. function seedStreamEnd(
  1213. stream: SessionEvent<'assistant/message'>['data']['stream'],
  1214. ): number | undefined {
  1215. let end: number | undefined
  1216. for (const record of stream) {
  1217. const recordEnd = 'time' in record
  1218. ? record.time
  1219. : record.time0 + record.dt.reduce((total, delta) => total + delta, 0)
  1220. end = end === undefined ? recordEnd : Math.max(end, recordEnd)
  1221. }
  1222. return end
  1223. }
  1224. /**
  1225. * Seed a recorded session fixture into the scaffold's persistence root
  1226. * through the real Session and JSONL APIs.
  1227. * @param scaffold - the target scaffold.
  1228. * @param fixtureText - raw recorded session.jsonl contents.
  1229. * @param id - the seeded session id.
  1230. * @param agentPreset - preset recorded by scenarios that assert resumed composition.
  1231. * @param options - deterministic metadata overrides for ordering-sensitive scenarios.
  1232. * @returns the seeded id.
  1233. */
  1234. export async function seedSession(
  1235. scaffold: WebScaffold,
  1236. fixtureText: string,
  1237. id: string,
  1238. agentPreset?: string,
  1239. options: { readonly createdAt?: number } = {},
  1240. ): Promise<SessionId> {
  1241. const decoded = parseSeedFixture(realizeSeedFixture(scaffold, fixtureText, id))
  1242. const events = decoded.events
  1243. if (events.length === 0) throw new Error('seed fixture has no events')
  1244. const last = events[events.length - 1]!
  1245. // An open final turn would be mutated by resume's crash repair on first
  1246. // open; a committed seed must be a closed recording.
  1247. if (last.type !== 'turn/end') throw new Error(`seed fixture must end in turn/end, got ${last.type}`)
  1248. const createdAt = options.createdAt ?? Date.now() - 60_000
  1249. const meta: SessionHeader = {
  1250. version: SESSION_FORMAT_VERSION,
  1251. id: SessionId(id),
  1252. createdAt,
  1253. isSeeded: false,
  1254. cwd: scaffold.workspaceCwd,
  1255. delegationDepth: 0,
  1256. ...agentPreset === undefined ? {} : { agentPreset },
  1257. }
  1258. const fixtureCreatedAt = decoded.header.createdAt
  1259. if (typeof fixtureCreatedAt !== 'number') {
  1260. throw new Error('seed fixture requires a numeric createdAt header')
  1261. }
  1262. const timeAnchor = fixtureCreatedAt === 0 ? createdAt : fixtureCreatedAt
  1263. let nextTime = timeAnchor
  1264. const materializedEvents: SessionEvent[] = events.map((event) => {
  1265. const time = nextTime
  1266. if (event.type === 'assistant/message') {
  1267. const stream = rebaseSeedStream(event.data.stream, time)
  1268. const completedAt = Math.max(time, seedStreamEnd(stream) ?? time)
  1269. nextTime = completedAt + 1
  1270. return {
  1271. ...event,
  1272. time: completedAt,
  1273. data: { ...event.data, stream },
  1274. }
  1275. }
  1276. if (event.type === 'assistant/attempt') {
  1277. const stream = rebaseSeedStream(event.data.stream, time)
  1278. const completedAt = Math.max(time, seedStreamEnd(stream) ?? time)
  1279. nextTime = completedAt + 1
  1280. return {
  1281. ...event,
  1282. time: completedAt,
  1283. data: { ...event.data, stream },
  1284. }
  1285. }
  1286. nextTime = time + 1
  1287. return { ...event, time }
  1288. })
  1289. await persistSeedSession(scaffold, meta, materializedEvents)
  1290. return meta.id
  1291. }
  1292. /** Materialize one detached Session fixture through the shipped JSONL provider. */
  1293. async function persistSeedSession(
  1294. scaffold: WebScaffold,
  1295. meta: SessionHeader,
  1296. events: readonly SessionEvent[],
  1297. ): Promise<void> {
  1298. const seeder = new Context()
  1299. try {
  1300. // Same root as the booted tree with the plugin's own default compression,
  1301. // so the host's directory-scan list() sees one consistent encoding.
  1302. await seeder.plugin(JsonlSessionPersistence, { root: scaffold.persistenceRoot })
  1303. const handle = await seeder.sessionPersistence.create(meta)
  1304. await handle.append(events)
  1305. await handle.close()
  1306. } finally {
  1307. await seeder.fiber.dispose()
  1308. }
  1309. }
  1310. /**
  1311. * Read one stored session's physical event log through a throwaway read
  1312. * handle. The physical log carries no synthetic closers: a resumed session
  1313. * shows the closers the loop appended durably, and a never-resumed
  1314. * interrupted log stays interrupted.
  1315. * @param scaffold - the booted scaffold whose persistence holds the session.
  1316. * @param id - the stored session to read.
  1317. * @returns the stored events.
  1318. */
  1319. export async function readPersistedEvents(scaffold: WebScaffold, id: SessionId): Promise<readonly SessionEvent[]> {
  1320. const handle = await scaffold.ctx.sessionPersistence.open(id, 'read')
  1321. try {
  1322. return (await handle.read()).events
  1323. } finally {
  1324. await handle.close()
  1325. }
  1326. }
  1327. /**
  1328. * Normalize an aria snapshot: uuid, cwd, workspace-basename, duration,
  1329. * decode-throughput, and path-sensitive compaction estimates collapse to
  1330. * stable tokens.
  1331. *
  1332. * Throughput needs a token for the same reason durations do, and no fixture
  1333. * can supply one: the figure divides a replayed step's output tokens by the
  1334. * wall time the local run took to stream them, so it moves between two runs
  1335. * on one machine (measured 69 → 70 tok/s) and swings wildly on a fast replay
  1336. * (26333 tok/s for a 3 ms stream).
  1337. */
  1338. /**
  1339. * Relative-time buckets rendered by a dated row, in both dictionaries.
  1340. *
  1341. * Opt-in per capture: a session-tree golden asserts its own literal age (a
  1342. * fresh row reads `now`, an older one does not), so collapsing the vocabulary
  1343. * everywhere would delete that assertion. A region whose rows are dated from
  1344. * live wall-clock state asks for it instead. Anchored on an aria label's
  1345. * closing quote, where the bucket is always last.
  1346. */
  1347. const ARIA_AGE =
  1348. /(?:now|\d+min|\d+h|\d+d|\d+mo|\d+y|刚刚|\d+分钟|\d+小时|\d+天|\d+个月|\d+年)(?=")/g
  1349. function normalizeAria(snapshot: string, workspaceCwd: string, age: boolean): string {
  1350. // The session heading renders the workspace's basename, not the full
  1351. // path, so both spellings must collapse to the token.
  1352. const base = workspaceCwd.split('/').pop()!
  1353. return (age ? snapshot.replace(ARIA_AGE, '{{age}}') : snapshot)
  1354. .split(workspaceCwd).join('{{cwd}}')
  1355. .split(base).join('{{workspace}}')
  1356. .replace(/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}/gi, '{{uuid}}')
  1357. // The optional space in `\d+m ?\d+s` covers both minute spellings: the
  1358. // stats line's compact `2m42s` and the message-chrome template's `2m 42s`.
  1359. .replace(
  1360. /~\d+(?:y(?: \d+mo)?|mo(?: \d+d)?)|\b(?:\d+d(?: \d+h(?: \d+m \d+s)?)?|\d+h \d+m \d+s|\d+m ?\d+s|\d+(?:\.\d+)?s|\d+(?:\.\d+)?ms)\b/g,
  1361. duration => duration.startsWith('~') ? duration : '{{duration}}',
  1362. )
  1363. .replace(/\b\d[\d,]*(?:\.\d+)? ms\b/g, '{{duration}}')
  1364. .replace(
  1365. /约\d+(?:年(?:\d+个月)?|个月(?:\d+天)?)|\d+(?:天(?:\d+小时(?:\d+分\d+秒)?)?|小时\d+分\d+秒|分\d+秒|(?:\.\d+)?秒)/g,
  1366. duration => duration.startsWith('约') ? duration : '{{duration}}',
  1367. )
  1368. .replace(/\d+(?:\.\d+)?(?= tok\/s(?!\w))/g, '{{throughput}}')
  1369. // Seeded compaction prices realized file paths, whose length differs
  1370. // between local worktrees and CI scratch directories.
  1371. .replace(/(Compacted \d+ history items \(~)\d+( tokens\))/g, '$1{{tokens}}$2')
  1372. // Session summaries and Message IconActions clocks cross calendar
  1373. // boundaries; collapse every shape so goldens stay stable across them.
  1374. .replace(/\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(?:\.\d+)?Z/g, '{{timestamp}}')
  1375. .replace(/\d{4}年\d{1,2}月\d{1,2}日 \d{2}:\d{2}/g, '{{clock}}')
  1376. .replace(/\d{1,2}月\d{1,2}日 \d{2}:\d{2}/g, '{{clock}}')
  1377. .replace(/(?<!\d)\d{1,2}:\d{2}:\d{2}(?:\.\d+)?(?:\s*[AP]M)?(?!\d)/gi, '{{clock}}')
  1378. .replace(/(?<!\d)\d{2}:\d{2}(?!\d)/g, '{{clock}}')
  1379. }
  1380. /**
  1381. * Capture the region's aria snapshot at a settled milestone: poll until two
  1382. * consecutive normalized captures are equal — a single-shot capture races the
  1383. * last React commits.
  1384. * @param page - the page under test.
  1385. * @param selector - the region locator selector.
  1386. * @param workspaceCwd - normalization input.
  1387. * @param options - `normalizeAge` collapses relative-time buckets to `{{age}}`
  1388. * for a region whose rows are dated from live wall-clock state;
  1389. * `replacements` tokenizes scenario-owned values before generic normalization.
  1390. * @returns the stable normalized snapshot.
  1391. */
  1392. export async function captureStableAria(
  1393. page: Page,
  1394. selector: string,
  1395. workspaceCwd: string,
  1396. options: {
  1397. normalizeAge?: boolean
  1398. replacements?: readonly (readonly [value: string, token: string])[]
  1399. } = {},
  1400. ): Promise<string> {
  1401. const region = page.locator(selector).first()
  1402. const age = options.normalizeAge === true
  1403. const normalize = (snapshot: string): string => {
  1404. for (const [value, token] of options.replacements ?? []) {
  1405. snapshot = snapshot.split(value).join(token)
  1406. }
  1407. return normalizeAria(snapshot, workspaceCwd, age)
  1408. }
  1409. let previous = normalize(await region.ariaSnapshot())
  1410. await expect.poll(async () => {
  1411. const current = normalize(await region.ariaSnapshot())
  1412. const stable = current === previous
  1413. previous = current
  1414. return stable
  1415. }, { timeout: 5_000, message: 'aria snapshot did not stabilize' }).toBe(true)
  1416. return previous
  1417. }
  1418. /**
  1419. * Capture a stable aria snapshot with every eligible Turn process expanded,
  1420. * then restore the controls that were closed before the capture.
  1421. * @param page - the page under test.
  1422. * @param selector - the region locator selector.
  1423. * @param workspaceCwd - normalization input.
  1424. * @param options - optional user-visible state to establish before capture.
  1425. * @returns the stable normalized expanded snapshot.
  1426. */
  1427. export async function captureExpandedTurnProcessAria(
  1428. page: Page,
  1429. selector: string,
  1430. workspaceCwd: string,
  1431. options: { scrollToBottom?: boolean } = {},
  1432. ): Promise<string> {
  1433. const controls = page.locator('[data-turn-process]')
  1434. const count = await controls.count()
  1435. expect(count).toBeGreaterThan(0)
  1436. const opened: number[] = []
  1437. for (let index = 0; index < count; index++) {
  1438. const control = controls.nth(index)
  1439. if (!await control.isVisible() || await control.getAttribute('aria-expanded') === 'true') continue
  1440. await control.click()
  1441. opened.push(index)
  1442. }
  1443. try {
  1444. if (options.scrollToBottom === true) {
  1445. const backToBottom = page.getByRole('button', { name: 'Back to bottom', exact: true })
  1446. const scroll = page.locator('[data-conversation-scroll]')
  1447. await expect.poll(async () => {
  1448. const distanceFromBottom = await scroll.evaluate((host) => {
  1449. host.scrollTop = host.scrollHeight
  1450. return host.scrollHeight - host.clientHeight - host.scrollTop
  1451. })
  1452. return Math.abs(distanceFromBottom) <= 1 && await backToBottom.count() === 0
  1453. }, { timeout: 10_000 }).toBe(true)
  1454. }
  1455. return await captureStableAria(page, selector, workspaceCwd)
  1456. } finally {
  1457. for (const index of opened.reverse()) {
  1458. const control = controls.nth(index)
  1459. if (await control.getAttribute('aria-expanded') === 'true') await control.click()
  1460. }
  1461. }
  1462. }
  1463. /**
  1464. * Compare a normalized golden, or rewrite it under refresh. Refresh is the
  1465. * ONLY writer: a missing golden in replay mode fails with the healing command
  1466. * instead of silently self-bootstrapping.
  1467. * @param goldenPath - the committed ui.expected.md path.
  1468. * @param actual - the stable normalized snapshot.
  1469. * @param mode - the active snapshot mode.
  1470. */
  1471. export async function compareOrRefreshGolden(goldenPath: string, actual: string, mode: WebSnapshotMode): Promise<void> {
  1472. const payload = `${actual}\n`
  1473. if (mode === 'refresh') {
  1474. await writeFile(goldenPath, payload)
  1475. return
  1476. }
  1477. if (!existsSync(goldenPath)) {
  1478. throw new Error(`missing golden ${goldenPath} — run DSH_SNAPSHOT=refresh pnpm run test:web to generate it`)
  1479. }
  1480. expect(payload).toBe(await readFile(goldenPath, 'utf8'))
  1481. }
  1482. /**
  1483. * Fixture-inventory guard: the scenario directory holds exactly the expected
  1484. * files and every committed JSONL is a header-scrubbed, typed-redaction fixed point.
  1485. * @param dir - the scenario snapshot directory.
  1486. * @param expected - the exact expected file inventory.
  1487. */
  1488. export async function assertFixtureInventory(dir: string, expected: string[]): Promise<void> {
  1489. const entries = (await readdir(dir)).sort()
  1490. const ownsManifest = entries.includes('snapshot.yml')
  1491. const artifacts = entries.filter(name => name !== 'snapshot.yml')
  1492. const roleInventory = (names: readonly string[]): string[] => [...new Set(names.map((name) => {
  1493. const fixture = parseSessionFixtureName(name)
  1494. return fixture === undefined ? name : sessionFixtureName(fixture.index, 0)
  1495. }))].sort()
  1496. expect(roleInventory(artifacts)).toEqual(roleInventory(expected))
  1497. if (ownsManifest) {
  1498. const manifestPath = join(dir, 'snapshot.yml')
  1499. const manifest = parseSnapshotManifest(await readFile(manifestPath, 'utf8'), manifestPath)
  1500. expect(manifest.profile).toBe('web')
  1501. if (manifest.session === undefined) {
  1502. expect(
  1503. artifacts.some(name => parseSessionFixtureName(name)?.index === 0),
  1504. `${dir}: session owner must carry a canonical parent Session fixture`,
  1505. ).toBe(true)
  1506. } else {
  1507. expect(existsSync(resolve(dir, manifest.session.source)), `${dir}: session source`).toBe(true)
  1508. }
  1509. }
  1510. for (const entry of artifacts.filter(name => name.endsWith('.jsonl'))) {
  1511. const content = await readFile(join(dir, entry), 'utf8')
  1512. expect(scrubModelRequestBulk(content), `${dir}/${entry} carries prompt text or tool-schema bulk`).toBe(content)
  1513. expect(redactSessionSnapshotIds([content]), `${dir}/${entry} carries unredacted identities`).toEqual([content])
  1514. }
  1515. }
  1516. /**
  1517. * Console tripwires: reconnect/gap-repair self-healing or a pageerror must
  1518. * fail the scenario, not mask a dead wire behind eventual consistency.
  1519. * @param page - the page under test.
  1520. * @returns live warning/pageerror collectors to assert empty at scenario end.
  1521. */
  1522. export function watchConsole(page: Page): { warnings: string[]; pageErrors: string[] } {
  1523. const warnings: string[] = []
  1524. const pageErrors: string[] = []
  1525. page.on('console', (message) => {
  1526. const text = message.text()
  1527. if (/connection lost|gap repair|discontinuous/i.test(text)) warnings.push(text)
  1528. })
  1529. page.on('pageerror', (error) => { pageErrors.push(String(error)) })
  1530. return { warnings, pageErrors }
  1531. }
  1532. /**
  1533. * Remove only connection-loss warnings emitted after an intentional reload.
  1534. * Earlier warnings and all gap-repair/discontinuity warnings remain fatal.
  1535. * @param tripwire - the live console-warning collector.
  1536. * @param warningStart - warning count captured immediately before reloading.
  1537. */
  1538. export function acknowledgeReloadConnectionLoss(
  1539. tripwire: ReturnType<typeof watchConsole>,
  1540. warningStart: number,
  1541. ): void {
  1542. const reloadWarnings = tripwire.warnings.splice(warningStart)
  1543. tripwire.warnings.push(...reloadWarnings.filter(text => !/connection lost/i.test(text)))
  1544. }