run-gates.ts 64 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577
  1. /**
  2. * Run local and CI quality gates with bounded in-process scheduling.
  3. *
  4. * Package scripts own public aggregate names; this runner owns their validated
  5. * dependency graphs, scheduler environment, and process diagnostics.
  6. * @see ../.agents/notes/implemented/process/2026-07-06-parallel-pre-push-gates.md
  7. */
  8. import { spawn, spawnSync } from 'node:child_process'
  9. import { readdirSync, readFileSync } from 'node:fs'
  10. import { availableParallelism } from 'node:os'
  11. import { resolve } from 'node:path'
  12. import { performance } from 'node:perf_hooks'
  13. import { CLIENT_BUILD_PROFILE_SELECTOR } from './client-build-environment.ts'
  14. import { COVERAGE_EXEMPT_ENV, coverageExemptHeavySuites } from './coverage-exempt.ts'
  15. import {
  16. COVERAGE_PARTITIONS_ENV,
  17. COVERAGE_TEST_TIMEOUT_ENV,
  18. coverageTestTimeoutArgs,
  19. parseCoveragePartitionCount,
  20. } from './coverage-partitions.ts'
  21. import { pnpmInvocation } from './pnpm-invocation.ts'
  22. /** A named aggregate exposed by the gate runner. */
  23. export type Mode =
  24. | 'ci-primary'
  25. | 'ci-linux-primary'
  26. | 'ci-static'
  27. | 'ci-lint-contracts-ready'
  28. | 'ci-coverage'
  29. | 'ci-bench'
  30. | 'ci-snapshot'
  31. | 'ci-artifacts'
  32. | 'ci-consumers'
  33. | 'ci-windows-blocking'
  34. | 'ci-windows-complete'
  35. | 'ci-windows-observational'
  36. | 'node-compat'
  37. | 'check-all'
  38. | 'hygiene'
  39. | 'doc-sync'
  40. | 'doc-quick'
  41. type GateResultStatus = 'passed' | 'failed' | 'skipped'
  42. type GateState = 'pending' | 'running' | GateResultStatus
  43. /** A command and its dependency metadata inside one aggregate. */
  44. export interface Gate {
  45. id: string
  46. label: string
  47. displayCommand: string
  48. command: string
  49. args: string[]
  50. needs?: string[]
  51. /** Gate ids that must settle, regardless of outcome, before this gate starts. */
  52. after?: string[]
  53. env?: Record<string, string | undefined>
  54. /** Include this leaf in the build-free documentation aggregate. */
  55. quick?: boolean
  56. /** Keep a failure visible without failing the aggregate. */
  57. allowFailure?: boolean
  58. /** Write child output as it arrives instead of buffering it until completion. */
  59. streamOutput?: boolean
  60. }
  61. /** The observed outcome of one gate process. */
  62. export interface GateResult {
  63. gate: Gate
  64. status: GateResultStatus
  65. durationMs: number
  66. output: GateOutputChunk[]
  67. exitCode: number | null
  68. signalCode: NodeJS.Signals | null
  69. error?: string
  70. /** True when the shared abort signal terminated this gate before its outcome
  71. * was observed; such a result must not be reported as passed, even if the
  72. * child trapped the signal and exited zero. */
  73. aborted?: boolean
  74. }
  75. interface GateOutputChunk {
  76. stream: 'stdout' | 'stderr'
  77. text: string
  78. }
  79. interface RunningGate {
  80. gate: Gate
  81. promise: Promise<GateResult>
  82. }
  83. interface ConcurrencyDefault {
  84. workers: number
  85. source: string
  86. }
  87. type GateExecutor = (gate: Gate, signal?: AbortSignal) => Promise<GateResult>
  88. type ResultObserver = (result: GateResult) => void
  89. const root = resolve(import.meta.dirname, '..')
  90. if (import.meta.main) {
  91. process.exitCode = await main(process.argv.slice(2))
  92. }
  93. async function main(args: string[]): Promise<number> {
  94. const mode = parseMode(args[0])
  95. const gates = gatesForMode(mode)
  96. const concurrencyDefault = defaultConcurrency(mode, gates.length)
  97. const concurrencyOverride = process.env.DSH_GATE_CONCURRENCY
  98. const maxConcurrency = concurrencyFromEnv('DSH_GATE_CONCURRENCY', concurrencyDefault.workers)
  99. const concurrencySource = concurrencyOverride === undefined || concurrencyOverride === ''
  100. ? concurrencyDefault.source
  101. : '$DSH_GATE_CONCURRENCY'
  102. const failFast = flagEnabled('DSH_GATE_FAIL_FAST')
  103. const startedAt = performance.now()
  104. console.log(`run-gates: ${mode} running ${gates.length} gate(s) with ${maxConcurrency} worker(s) from ${concurrencySource}${failFast ? ', fail-fast after first blocking failure' : ''}.`)
  105. const results = await runGates(gates, maxConcurrency, runGate, printResult, cliGateOptions(failFast))
  106. printSummary(results, performance.now() - startedAt)
  107. return results.some(result => result.gate.allowFailure !== true && (result.status === 'failed' || result.status === 'skipped'))
  108. ? 1
  109. : 0
  110. }
  111. /**
  112. * The options the CLI entrypoint hands to the scheduler. Host signal
  113. * forwarding always follows fail-fast: children are detached only then, so
  114. * without it the forwarding would have no tree to drain.
  115. * @param failFast - whether `DSH_GATE_FAIL_FAST` is enabled.
  116. * @returns the scheduler options for the entrypoint.
  117. */
  118. export function cliGateOptions(failFast: boolean): RunGatesOptions {
  119. return { failFast, forwardProcessSignals: failFast }
  120. }
  121. function parseMode(raw: string | undefined): Mode {
  122. switch (raw) {
  123. case 'ci-primary':
  124. case 'ci-linux-primary':
  125. case 'ci-static':
  126. case 'ci-lint-contracts-ready':
  127. case 'ci-coverage':
  128. case 'ci-bench':
  129. case 'ci-snapshot':
  130. case 'ci-artifacts':
  131. case 'ci-consumers':
  132. case 'ci-windows-blocking':
  133. case 'ci-windows-complete':
  134. case 'ci-windows-observational':
  135. case 'node-compat':
  136. case 'check-all':
  137. case 'hygiene':
  138. case 'doc-sync':
  139. case 'doc-quick':
  140. return raw
  141. default:
  142. throw new Error(
  143. `run-gates: expected mode ci-primary | ci-linux-primary | ci-static | ci-lint-contracts-ready | ci-coverage | ci-bench | ci-snapshot | ci-artifacts | ci-consumers | ci-windows-blocking | ci-windows-complete | ci-windows-observational | node-compat | check-all | hygiene | doc-sync | doc-quick, got ${JSON.stringify(raw)}.`,
  144. )
  145. }
  146. }
  147. /**
  148. * Resolve the default worker count for one aggregate.
  149. * @param selectedMode - aggregate whose resource posture applies.
  150. * @param total - number of gates in the aggregate.
  151. * @param available - host CPU availability for ordinary modes.
  152. * @returns the default worker count and its diagnostic source.
  153. */
  154. export function defaultConcurrency(
  155. selectedMode: Mode,
  156. total: number,
  157. available = availableParallelism(),
  158. ): ConcurrencyDefault {
  159. if (selectedMode === 'ci-consumers') return { workers: total, source: 'ci-consumers gate count' }
  160. // Local modes cap workers: several doc gates each build a full ts.Program,
  161. // so an uncapped default on a large host trades wall clock for memory blowups.
  162. const localCap = selectedMode === 'check-all'
  163. || selectedMode === 'hygiene'
  164. || selectedMode === 'doc-sync'
  165. || selectedMode === 'doc-quick'
  166. const modeLimit = localCap ? Math.min(4, available) : available
  167. return {
  168. workers: Math.min(total, modeLimit),
  169. source: localCap
  170. ? `${available} available CPU(s), ${selectedMode} cap 4`
  171. : `${available} available CPU(s)`,
  172. }
  173. }
  174. function concurrencyFromEnv(name: string, fallback: number): number {
  175. const raw = process.env[name]
  176. if (raw === undefined || raw === '') return fallback
  177. const parsed = Number.parseInt(raw, 10)
  178. if (!Number.isSafeInteger(parsed) || parsed < 1) {
  179. throw new Error(`run-gates: ${name} must be a positive integer, got ${JSON.stringify(raw)}.`)
  180. }
  181. return parsed
  182. }
  183. function pnpmScript(id: string, script: string, options: Partial<Gate> = {}): Gate {
  184. return {
  185. id,
  186. label: options.label ?? script,
  187. displayCommand: `pnpm run ${script}`,
  188. ...pnpmInvocation(['run', script]),
  189. ...options,
  190. }
  191. }
  192. /** Build official client artifacts inside a CI aggregate without changing sibling gate environments. */
  193. function ciBuildGate(id = 'build', options: Partial<Gate> = {}): Gate {
  194. return pnpmScript(id, 'build', {
  195. ...options,
  196. env: { ...options.env, [CLIENT_BUILD_PROFILE_SELECTOR]: 'official' },
  197. })
  198. }
  199. function pnpmExec(id: string, args: string[], options: Partial<Gate> = {}): Gate {
  200. return {
  201. id,
  202. label: options.label ?? `pnpm exec ${args.join(' ')}`,
  203. displayCommand: `pnpm exec ${args.join(' ')}`,
  204. ...pnpmInvocation(['exec', ...args]),
  205. ...options,
  206. }
  207. }
  208. /**
  209. * Construct the complete gate list for a named aggregate.
  210. * @param selected - aggregate mode to construct.
  211. * @returns the aggregate's gate graph.
  212. */
  213. export function gatesForMode(selected: Mode): Gate[] {
  214. switch (selected) {
  215. case 'ci-primary':
  216. return ciPrimaryGates()
  217. case 'ci-linux-primary':
  218. return [...ciPrimaryGates(), webSnapshotGate(['built-package-invariants'])]
  219. case 'ci-static':
  220. return ciStaticGates({ ownsBuild: false })
  221. case 'ci-lint-contracts-ready':
  222. return [
  223. lintGate(),
  224. pnpmScript('duplication', 'duplication'),
  225. ]
  226. case 'ci-coverage':
  227. return coverageGates()
  228. case 'ci-bench':
  229. return [pnpmScript('bench', 'test:bench', { label: 'performance benchmarks' })]
  230. case 'ci-snapshot':
  231. return [ciBuildGate(), snapshotGate()]
  232. case 'ci-artifacts':
  233. return ciArtifactGates()
  234. case 'ci-consumers':
  235. return ciConsumerGates()
  236. case 'ci-windows-blocking':
  237. return ciWindowsBlockingGates()
  238. case 'ci-windows-complete':
  239. return ciWindowsCompleteGates()
  240. case 'ci-windows-observational':
  241. return ciWindowsObservationalGates()
  242. case 'node-compat':
  243. return nodeCompatGates()
  244. case 'check-all':
  245. return [
  246. pnpmScript('runtime-closure', 'verify-runtime-closure', { label: 'runtime closure' }),
  247. pnpmScript('cordis-config', 'verify-cordis-config', { label: 'Cordis config' }),
  248. pnpmScript('client-domain-graph', 'verify-client-domain-graph', { label: 'client domain graph' }),
  249. pnpmScript('test', 'test'),
  250. pnpmScript('issue-management', 'test:issue-management', { label: 'Issue management policy' }),
  251. pnpmScript('duplication', 'duplication'),
  252. snapshotGate(),
  253. expectedOutputGate(),
  254. pnpmScript('build', 'build'),
  255. pnpmScript('build:web', 'build:web'),
  256. ...hygieneLeafGates({ artifactNeeds: ['build'] }),
  257. ...docSyncLeafGates({
  258. docTypecheckNeeds: ['build'],
  259. docTypecheckEnv: { DSH_DOC_TYPECHECK_USE_BUILD_OUTPUT: '1' },
  260. docTypecheckScript: 'doc-typecheck:contracts-ready',
  261. }),
  262. pnpmScript('module-graph', 'verify-module-graph', { label: 'module graph' }),
  263. ]
  264. case 'hygiene':
  265. return [
  266. ...hygieneLeafGates(),
  267. pnpmScript('cordis-config', 'verify-cordis-config', { label: 'Cordis config' }),
  268. pnpmScript('runtime-closure', 'verify-runtime-closure', { label: 'runtime closure' }),
  269. pnpmScript('vendored-links', 'verify-vendored-links', { label: 'vendored links' }),
  270. ]
  271. case 'doc-sync':
  272. return docSyncLeafGates()
  273. case 'doc-quick':
  274. return docQuickLeafGates()
  275. }
  276. }
  277. function ciSharedStaticGates(): Gate[] {
  278. return [
  279. pnpmScript('runtime-closure', 'verify-runtime-closure', { label: 'runtime closure' }),
  280. pnpmScript('application-entrypoints', 'verify-application-entrypoints', { label: 'application entrypoints' }),
  281. pnpmScript('constraints', 'constraints'),
  282. pnpmScript('package-dependencies', 'verify-package-dependencies', { label: 'package dependencies' }),
  283. pnpmScript('dsh-package-licenses', 'verify-dsh-package-licenses', { label: 'DSH package licenses' }),
  284. pnpmScript('package-invariants', 'verify-package-invariants', { label: 'package invariants' }),
  285. pnpmScript('cordis-config', 'verify-cordis-config', { label: 'Cordis config' }),
  286. pnpmScript('optional-dependency-imports', 'verify-optional-dependency-imports', {
  287. label: 'optional dependency imports',
  288. }),
  289. pnpmScript('client-packages', 'verify-client-packages', { label: 'client packages' }),
  290. pnpmScript('client-ui-i18n', 'verify-client-ui-i18n', { label: 'client UI i18n' }),
  291. pnpmScript('no-bare-dispatcher', 'verify-no-bare-dispatcher', { label: 'proxy-aware dispatchers' }),
  292. pnpmScript('issue-management', 'test:issue-management', { label: 'Issue management policy' }),
  293. ]
  294. }
  295. function ciPrimaryGates(): Gate[] {
  296. return [
  297. ...ciSharedStaticGates(),
  298. typertContractsGate(),
  299. pnpmScript('typecheck', 'typecheck:contracts-ready', { needs: ['typert-contracts'] }),
  300. lintGate({ needs: ['typert-contracts'] }),
  301. pnpmScript('duplication', 'duplication'),
  302. ...coverageGates(),
  303. ...nodeCompatSmokeGates(),
  304. snapshotGate(),
  305. ...docSyncLeafGates({
  306. docTypecheckNeeds: ['typert-contracts'],
  307. docTypecheckScript: 'doc-typecheck:contracts-ready',
  308. }),
  309. pnpmScript('module-graph', 'verify-module-graph', { label: 'module graph' }),
  310. // The prepared typecheck and build both drive Client tsc, while build also
  311. // repeats the Host contract pass. Wait for all three consumers so build
  312. // neither races tsbuildinfo nor replaces declarations while they are read.
  313. ciBuildGate('build', { needs: ['typecheck', 'lint', 'doc-typecheck'] }),
  314. pnpmScript('publint', 'publint', { needs: ['build'] }),
  315. pnpmScript('node-next-types', 'verify-node-next-types', {
  316. label: 'node-next types',
  317. needs: ['build'],
  318. }),
  319. builtPackageInvariantsGate(['build']),
  320. builtBinSmokeGate(),
  321. ]
  322. }
  323. function nodeCompatGates(): Gate[] {
  324. const typecheck = flagEnabled('DSH_NODE_COMPAT_SKIP_TYPECHECK')
  325. ? []
  326. : [pnpmScript('typecheck', 'typecheck')]
  327. if (runningNodeMajor() !== 22) {
  328. return [...typecheck, ...nodeCompatSmokeGates()]
  329. }
  330. return [
  331. ...typecheck,
  332. pnpmScript('build', 'build', {
  333. ...typecheck.length === 0 ? {} : { needs: ['typecheck'] },
  334. }),
  335. pnpmScript('build:web', 'build:web', {
  336. label: 'Web frontend build',
  337. needs: ['build'],
  338. }),
  339. ...nodeCompatSmokeGates({ cliSmoke: true }),
  340. ]
  341. }
  342. function nodeCompatSmokeGates(options: { cliSmoke?: boolean } = {}): Gate[] {
  343. const gates: Gate[] = [
  344. pnpmExec('source-worker-smoke', [
  345. 'vitest',
  346. 'run',
  347. 'packages/workflow/workflow-worker-thread/tests/source-worker.compat.spec.ts',
  348. ], { label: 'source worker smoke' }),
  349. pnpmExec('jsonl-zstd-smoke', [
  350. 'vitest',
  351. 'run',
  352. 'packages/session/session-persistence-jsonl/tests/zstd.compat.spec.ts',
  353. ], { label: 'JSONL Zstandard smoke' }),
  354. pnpmExec('dsh-source-launch-smoke', [
  355. 'vitest',
  356. 'run',
  357. 'apps/cli/tests/source-launch.compat.spec.ts',
  358. ], { label: 'dsh source-launch smoke' }),
  359. pnpmExec('vitest-jsdom-smoke', [
  360. 'vitest',
  361. 'run',
  362. 'scripts/vitest-environment.compat.spec.ts',
  363. ], { label: 'Vitest jsdom smoke' }),
  364. ]
  365. if (options.cliSmoke) {
  366. gates.push(
  367. pnpmExec('cli-lazy-search-startup-smoke', [
  368. 'vitest',
  369. 'run',
  370. 'apps/cli/tests/lazy-search-startup.compat.spec.ts',
  371. ], {
  372. label: 'CLI lazy-search startup smoke',
  373. env: { DSH_REQUIRE_BUILT_CLI_SMOKE: '1' },
  374. needs: ['build:web'],
  375. }),
  376. )
  377. }
  378. return gates
  379. }
  380. /** Active Node major used to select version-specific compatibility checks. */
  381. function runningNodeMajor(): number {
  382. const major = Number.parseInt(process.versions.node.split('.')[0] ?? '', 10)
  383. if (!Number.isSafeInteger(major)) {
  384. throw new Error(`run-gates: cannot parse Node version ${JSON.stringify(process.versions.node)}.`)
  385. }
  386. return major
  387. }
  388. function ciStaticGates(options: { ownsBuild: boolean }): Gate[] {
  389. return [
  390. ...ciSharedStaticGates(),
  391. ...options.ownsBuild ? [ciBuildGate()] : [],
  392. ...docSyncLeafGates({
  393. includeDocTypecheck: options.ownsBuild,
  394. ...options.ownsBuild
  395. ? {
  396. docTypecheckNeeds: ['build'],
  397. docTypecheckEnv: { DSH_DOC_TYPECHECK_USE_BUILD_OUTPUT: '1' },
  398. docTypecheckScript: 'doc-typecheck:contracts-ready',
  399. }
  400. : {},
  401. docsBuildScript: 'docs:build:mpa',
  402. }),
  403. pnpmScript('module-graph', 'verify-module-graph', { label: 'module graph' }),
  404. ]
  405. }
  406. function ciArtifactGates(): Gate[] {
  407. return [
  408. ciBuildGate(),
  409. pnpmScript('publint', 'publint', { needs: ['build'] }),
  410. pnpmScript('node-next-types', 'verify-node-next-types', {
  411. label: 'node-next types',
  412. needs: ['build'],
  413. }),
  414. builtPackageInvariantsGate(['build']),
  415. builtBinSmokeGate(),
  416. ]
  417. }
  418. function ciConsumerGates(): Gate[] {
  419. const builtTree = ['build']
  420. const validatedBuild = ['built-package-invariants']
  421. // The HMR web test starts `dev:web`, which rewrites the shared `lib/` and
  422. // `apps/web/dist/` trees. Let every build-artifact reader settle before that
  423. // writer starts; `after` preserves the web diagnostic even if a reader fails.
  424. const buildArtifactReaders = [
  425. 'publint',
  426. 'lint-and-duplication',
  427. 'snapshot',
  428. 'expected-output',
  429. 'doc-typecheck',
  430. 'node-next-types',
  431. 'built-bin-smoke',
  432. ]
  433. return [
  434. ciBuildGate(),
  435. pnpmScript('node-compat', 'check:node-compat', {
  436. label: 'Node compatibility',
  437. env: { [CLIENT_BUILD_PROFILE_SELECTOR]: 'official' },
  438. }),
  439. pnpmScript('publint', 'publint', { needs: builtTree }),
  440. builtPackageInvariantsGate(builtTree),
  441. pnpmScript('lint-and-duplication', 'check:ci:lint:contracts-ready', {
  442. label: 'lint and duplication',
  443. needs: validatedBuild,
  444. }),
  445. snapshotGate(validatedBuild),
  446. expectedOutputGate(validatedBuild),
  447. webSnapshotGate(validatedBuild, buildArtifactReaders),
  448. pnpmScript('doc-typecheck', 'doc-typecheck:contracts-ready', {
  449. needs: validatedBuild,
  450. env: { DSH_DOC_TYPECHECK_USE_BUILD_OUTPUT: '1' },
  451. }),
  452. pnpmScript('node-next-types', 'verify-node-next-types', {
  453. label: 'node-next types',
  454. needs: validatedBuild,
  455. }),
  456. builtBinSmokeGate(validatedBuild),
  457. ]
  458. }
  459. function webSnapshotGate(needs: string[], after?: string[]): Gate {
  460. const order = after === undefined ? { needs } : { needs, after }
  461. const workerRaw = process.env.DSH_WEB_SNAPSHOT_WORKERS
  462. if (workerRaw !== undefined && workerRaw !== '') {
  463. const workers = Number.parseInt(workerRaw, 10)
  464. if (!Number.isSafeInteger(workers) || workers < 2 || String(workers) !== workerRaw) {
  465. throw new Error(`run-gates: DSH_WEB_SNAPSHOT_WORKERS must be an integer greater than 1, got ${JSON.stringify(workerRaw)}.`)
  466. }
  467. return pnpmScript('web-snapshot', 'test:web:ci', {
  468. label: 'web browser snapshot',
  469. displayCommand: `DSH_SNAPSHOT=replay DSH_WEB_SNAPSHOT_WORKERS=${workers} pnpm run test:web:ci`,
  470. env: { DSH_SNAPSHOT: 'replay' },
  471. ...order,
  472. streamOutput: true,
  473. })
  474. }
  475. return pnpmScript('web-snapshot', 'test:web:built', {
  476. label: 'web browser snapshot',
  477. displayCommand: 'DSH_SNAPSHOT=replay pnpm run test:web:built',
  478. env: { DSH_SNAPSHOT: 'replay' },
  479. ...order,
  480. })
  481. }
  482. function ciWindowsBlockingGates(): Gate[] {
  483. return [
  484. ciBuildGate('windows-build', { label: 'build' }),
  485. pnpmScript('windows-site', 'docs:build', { label: 'production site' }),
  486. ]
  487. }
  488. function ciWindowsCompleteGates(): Gate[] {
  489. const coverage = coverageGates().map(gate => ({
  490. ...gate,
  491. needs: [...new Set(['build', ...(gate.needs ?? [])])],
  492. }))
  493. const coverageAfter = coverage.map(gate => gate.id)
  494. const observational = ciWindowsObservationalGates()
  495. // The required production site replaces the observational MPA build; both
  496. // VitePress modes write the same output directory and cannot overlap.
  497. .filter(gate => gate.id !== 'build' && gate.id !== 'docs-site-build')
  498. .map(gate => ({
  499. ...gate,
  500. allowFailure: true,
  501. after: [...new Set([
  502. ...coverageAfter,
  503. ...(gate.after ?? []).map(id => id === 'docs-site-build' ? 'windows-site' : id),
  504. ])],
  505. }))
  506. return [
  507. ciBuildGate(),
  508. pnpmScript('windows-site', 'docs:build', { label: 'production site' }),
  509. ...coverage,
  510. ...observational,
  511. ]
  512. }
  513. function ciWindowsObservationalGates(): Gate[] {
  514. const predecessors = [
  515. ...ciStaticGates({ ownsBuild: true }),
  516. // Linux owns required lint and snapshots; Windows omits those duplicates.
  517. pnpmScript('duplication', 'duplication'),
  518. pnpmScript('publint', 'publint', { needs: ['build'] }),
  519. pnpmScript('node-next-types', 'verify-node-next-types', {
  520. label: 'node-next types',
  521. needs: ['build'],
  522. }),
  523. builtPackageInvariantsGate(['build']),
  524. ]
  525. return [
  526. ...predecessors,
  527. {
  528. ...builtBinSmokeGate(),
  529. // This smoke starts real application children with bounded startup
  530. // deadlines. Let other Windows processes settle before measuring startup.
  531. after: predecessors.map(gate => gate.id),
  532. },
  533. ]
  534. }
  535. function typertContractsGate(): Gate {
  536. return pnpmScript('typert-contracts', 'build:lib:host', { label: 'Typert contracts' })
  537. }
  538. function lintGate(options: { needs?: string[] } = {}): Gate {
  539. const raw = process.env.DSH_OXLINT_THREADS
  540. const script = 'lint:contracts-ready'
  541. return pnpmScript('lint', script, {
  542. ...raw === undefined || raw === ''
  543. ? {}
  544. : { displayCommand: `DSH_OXLINT_THREADS=${raw} pnpm run ${script}` },
  545. ...options.needs === undefined ? {} : { needs: options.needs },
  546. })
  547. }
  548. // The heavy suites run uninstrumented beside the thresholded gate: their
  549. // compiler- and subprocess-bound fixtures pay a multiple of their runtime
  550. // under v8 instrumentation while contributing nothing the thresholds need
  551. // (membership rules in scripts/coverage-exempt.ts).
  552. //
  553. // DSH_COVERAGE_MAX_WORKERS is the ordinary lane's worker budget, so the two
  554. // parallel gates split it instead of each claiming it whole. When
  555. // DSH_COVERAGE_PARTITIONS is set, its single-worker processes replace the
  556. // instrumented share while this budget still sizes the exempt gate. The exempt
  557. // gate's wall clock is dominated by its longest single file, so it takes the
  558. // small share. A budget of 1 gives each gate 1 worker; lanes that need a strict
  559. // total of one (the serial reference jobs) also set DSH_GATE_CONCURRENCY=1,
  560. // which keeps the gates from overlapping at all.
  561. // DSH_COVERAGE_TEST_TIMEOUT_MS raises Vitest's per-test, expect.poll, and hook
  562. // defaults together for instrumented lanes whose scheduling overhead exceeds
  563. // those defaults. Explicit fixture timeouts remain authoritative.
  564. function coverageWorkerArgs(): { instrumented: string[]; exempt: string[] } {
  565. const [flag] = positiveIntArg('DSH_COVERAGE_MAX_WORKERS', '--maxWorkers')
  566. if (flag === undefined) return { instrumented: [], exempt: [] }
  567. const total = Number.parseInt(flag.split('=')[1] ?? '', 10)
  568. const exempt = Math.max(1, Math.floor(total / 3))
  569. const instrumented = Math.max(1, total - exempt)
  570. return {
  571. instrumented: [`--maxWorkers=${String(instrumented)}`],
  572. exempt: [`--maxWorkers=${String(exempt)}`],
  573. }
  574. }
  575. function coverageGates(): Gate[] {
  576. const workers = coverageWorkerArgs()
  577. const timeouts = coverageTestTimeoutArgs(process.env[COVERAGE_TEST_TIMEOUT_ENV])
  578. const partitions = parseCoveragePartitionCount(process.env[COVERAGE_PARTITIONS_ENV])
  579. const instrumented = partitions === undefined
  580. ? pnpmExec('coverage', [
  581. 'vitest',
  582. 'run',
  583. '--coverage',
  584. ...workers.instrumented,
  585. ...timeouts,
  586. ], {
  587. label: 'test:coverage',
  588. env: { [COVERAGE_EXEMPT_ENV]: '1' },
  589. })
  590. : pnpmScript('coverage', 'test:coverage:partitioned', {
  591. label: 'test:coverage',
  592. displayCommand: `${COVERAGE_PARTITIONS_ENV}=${partitions} pnpm run test:coverage:partitioned`,
  593. env: { [COVERAGE_EXEMPT_ENV]: '1' },
  594. streamOutput: true,
  595. })
  596. return [
  597. instrumented,
  598. pnpmExec('coverage-exempt-heavy', [
  599. 'vitest',
  600. 'run',
  601. ...coverageExemptHeavySuites.map(suite => suite.filter),
  602. ...workers.exempt,
  603. ...timeouts,
  604. ], {
  605. label: 'test:coverage-exempt-heavy',
  606. }),
  607. ]
  608. }
  609. // Recorded-session adapters boot process scenarios in `lib` mode. Callers wait
  610. // either on `build` or on a validation gate that transitively owns that build.
  611. function snapshotGate(needs: string[] = ['build']): Gate {
  612. return pnpmScript('snapshot', 'test:snapshot', {
  613. env: { DSH_EXAMPLE_MODE: 'lib' },
  614. needs,
  615. })
  616. }
  617. // Owner-local process expectations consume built package exports without entering
  618. // the recorded-session corpus or the credentialed provider lane.
  619. function expectedOutputGate(needs: string[] = ['build']): Gate {
  620. return pnpmScript('expected-output', 'test:expected', {
  621. env: { DSH_EXAMPLE_MODE: 'lib' },
  622. needs,
  623. })
  624. }
  625. function builtPackageInvariantsGate(needs?: string[]): Gate {
  626. return pnpmScript('built-package-invariants', 'verify-built-package-invariants', {
  627. label: 'built package invariants',
  628. ...needs === undefined ? {} : { needs },
  629. })
  630. }
  631. function positiveIntArg(envName: string, flag: string): string[] {
  632. const raw = process.env[envName]
  633. if (raw === undefined || raw === '') return []
  634. const parsed = Number.parseInt(raw, 10)
  635. if (!Number.isSafeInteger(parsed) || parsed < 1 || String(parsed) !== raw) {
  636. throw new Error(`run-gates: ${envName} must be a positive integer, got ${JSON.stringify(raw)}.`)
  637. }
  638. return [`${flag}=${raw}`]
  639. }
  640. function flagEnabled(envName: string): boolean {
  641. const raw = process.env[envName]
  642. if (raw === undefined || raw === '') return false
  643. if (raw !== '1') throw new Error(`run-gates: ${envName} must be 1 when set, got ${JSON.stringify(raw)}.`)
  644. return true
  645. }
  646. function hygieneLeafGates(options: { artifactNeeds?: string[] } = {}): Gate[] {
  647. const artifactOptions = options.artifactNeeds === undefined ? {} : { needs: options.artifactNeeds }
  648. return [
  649. pnpmScript('rescope-vendor', 'rescope-vendor:check', { label: 'vendor rescope' }),
  650. pnpmScript('publint', 'publint', artifactOptions),
  651. pnpmScript('constraints', 'constraints'),
  652. pnpmScript('package-dependencies', 'verify-package-dependencies', { label: 'package dependencies' }),
  653. pnpmScript('application-entrypoints', 'verify-application-entrypoints', { label: 'application entrypoints' }),
  654. pnpmScript('dsh-package-licenses', 'verify-dsh-package-licenses', { label: 'DSH package licenses' }),
  655. pnpmScript('package-invariants', 'verify-package-invariants', { label: 'package invariants' }),
  656. builtPackageInvariantsGate(options.artifactNeeds),
  657. pnpmScript('node-next-types', 'verify-node-next-types', {
  658. label: 'node-next types',
  659. ...artifactOptions,
  660. }),
  661. pnpmScript('optional-dependency-imports', 'verify-optional-dependency-imports', {
  662. label: 'optional dependency imports',
  663. }),
  664. pnpmScript('client-packages', 'verify-client-packages', { label: 'client packages' }),
  665. pnpmScript('client-ui-i18n', 'verify-client-ui-i18n', { label: 'client UI i18n' }),
  666. pnpmScript('no-bare-dispatcher', 'verify-no-bare-dispatcher', { label: 'proxy-aware dispatchers' }),
  667. ]
  668. }
  669. function docSyncLeafGates(options: {
  670. includeDocTypecheck?: boolean
  671. docTypecheckNeeds?: string[]
  672. docTypecheckEnv?: Record<string, string | undefined>
  673. docTypecheckScript?: 'doc-typecheck' | 'doc-typecheck:contracts-ready'
  674. docsBuildScript?: 'docs:build' | 'docs:build:mpa'
  675. } = {}): Gate[] {
  676. const docTypecheckOptions: Partial<Gate> = {}
  677. if (options.docTypecheckNeeds !== undefined) docTypecheckOptions.needs = options.docTypecheckNeeds
  678. if (options.docTypecheckEnv !== undefined) docTypecheckOptions.env = options.docTypecheckEnv
  679. return [
  680. // Stable FIFO starts the longest leaves first; only docs-site-build writes website/.generated.
  681. ...options.includeDocTypecheck === false
  682. ? []
  683. : [pnpmScript('doc-typecheck', options.docTypecheckScript ?? 'doc-typecheck', docTypecheckOptions)],
  684. pnpmScript('docs-site-build', options.docsBuildScript ?? 'docs:build', { label: 'documentation build' }),
  685. pnpmScript('doc-graphs', 'verify-doc-graphs', { label: 'doc graphs' }),
  686. pnpmScript('markdown-links', 'verify-md-links', { label: 'markdown links', quick: true }),
  687. pnpmScript('type-equivalence', 'verify-type-equiv', { label: 'type equivalence', quick: true }),
  688. pnpmScript('cordis-catalog', 'verify-cordis-catalog', { label: 'cordis catalog' }),
  689. pnpmScript('cordis-inspect-catalog', 'verify-cordis-inspect-catalog', { label: 'Cordis inspect catalog' }),
  690. pnpmScript('mermaid', 'verify-mermaid'),
  691. pnpmScript('scoped-events', 'verify-scoped-events', { label: 'scoped events' }),
  692. pnpmScript('translation-pairing', 'verify-translation-pairing', { label: 'translation pairing', quick: true }),
  693. pnpmScript('markdown-wrap', 'verify-md-wrap', { label: 'markdown wrap', quick: true }),
  694. pnpmScript('client-catalog', 'verify-client-catalog', { label: 'client catalog' }),
  695. pnpmScript('export-jsdoc', 'verify-export-jsdoc', { label: 'export jsdoc' }),
  696. pnpmScript('tool-catalog', 'verify-tool-catalog', { label: 'tool catalog' }),
  697. pnpmScript('config-catalog', 'verify-config-catalog', { label: 'config catalog' }),
  698. pnpmScript('persistence-catalog', 'verify-persistence-catalog', { label: 'persistence catalog' }),
  699. pnpmScript('session-format-catalog', 'verify-session-format-catalog', { label: 'Session format catalog' }),
  700. pnpmScript('public-repository-links', 'verify-public-repository-links', { label: 'public repository links', quick: true }),
  701. pnpmScript('doc-refs', 'verify-doc-refs', { label: 'doc refs', quick: true }),
  702. pnpmScript('subsystem-pages', 'verify-subsystem-pages', { label: 'subsystem pages' }),
  703. pnpmScript('package-paths', 'verify-package-paths', { label: 'package paths' }),
  704. pnpmScript('tsconfig-paths', 'verify-tsconfig-paths', { label: 'tsconfig paths' }),
  705. pnpmScript('config-source-ownership', 'verify-config-source-ownership', { label: 'config source ownership' }),
  706. pnpmScript('package-readme-model-experience', 'verify-package-readme-model-experience', { label: 'package README model experience', quick: true }),
  707. pnpmScript('agent-note-classification', 'verify-agent-note-classification', { label: 'agent note classification', quick: true }),
  708. pnpmScript('agent-note-format', 'verify-agent-note-format', { label: 'agent note format', quick: true }),
  709. pnpmScript('archived-agent-notes', 'verify-archived-agent-notes', { label: 'archived agent notes', quick: true }),
  710. pnpmScript('skill-invocation-metadata', 'verify-skill-invocation-metadata', { label: 'skill invocation metadata', quick: true }),
  711. pnpmScript('translation-prompt', 'verify-translation-prompt', { label: 'translation prompt', quick: true }),
  712. pnpmScript('doc-budgets', 'verify-doc-budgets', { label: 'doc budgets', quick: true }),
  713. pnpmExec('doc-standard-tests', ['vitest', 'run', 'scripts/doc-standard.spec.ts'], {
  714. label: 'documentation standard tests',
  715. quick: true,
  716. }),
  717. pnpmExec('docs-site-projection', ['vitest', 'run', 'scripts/project-doc-site.spec.ts', 'scripts/verify-doc-site-fragments.spec.ts'], {
  718. label: 'documentation site checks',
  719. }),
  720. pnpmScript('package-readme-limitations', 'verify-package-readme-limitations', { label: 'package README limitations', quick: true }),
  721. ]
  722. }
  723. /**
  724. * The quick comprehensive documentation-standard aggregate for `test:docs`.
  725. * It covers the prose, pairing, README, budget, and Agent Note gates
  726. * without builds, generator regeneration, or the VitePress site build.
  727. */
  728. function docQuickLeafGates(): Gate[] {
  729. return docSyncLeafGates({ includeDocTypecheck: false }).filter(gate => gate.quick === true)
  730. }
  731. function builtBinSmokeGate(needs: string[] = ['build']): Gate {
  732. return pnpmExec('built-bin-smoke', [
  733. 'vitest',
  734. 'run',
  735. '--config',
  736. 'vitest.e2e.config.ts',
  737. 'apps/cli/tests/profiles/headless/tests/keyless-smoke.e2e.ts',
  738. 'apps/cli/tests/built-bin.e2e.ts',
  739. 'packages/host/directory-picker-native/tests/built-worker.e2e.ts',
  740. 'packages/sdk/server/tests/built-scope-carrier.e2e.ts',
  741. 'packages/subagent/subagent-codex/tests/loader-composition.e2e.ts',
  742. 'packages/subagent/subagent-claude-code/tests/loader-composition.e2e.ts',
  743. 'packages/api/remotes/tests/built-lib.e2e.ts',
  744. 'packages/experimental/agent-team/tests/built-lib.e2e.ts',
  745. // Built execution consumers: the only automated proof that package-name
  746. // imports reach their lib/ entrypoints under plain Node. The e2e lane runs
  747. // unbuilt, so these files self-skip there.
  748. 'packages/workflow/workflow-worker-thread/tests/built-worker.e2e.ts',
  749. 'packages/code-runtime/code-runtime-worker-thread/tests/built-lib.e2e.ts',
  750. 'packages/session/session-persistence-jsonl/tests/built-migration-worker.e2e.ts',
  751. 'packages/lsp/lsp-stdio/tests/built-lib.e2e.ts',
  752. ], {
  753. label: 'built-bin smoke',
  754. needs,
  755. env: { DSH_EXAMPLE_MODE: 'lib' },
  756. })
  757. }
  758. /**
  759. * Reject a gate list whose graph cannot be executed unambiguously.
  760. * @param gates - complete aggregate to validate.
  761. */
  762. function validateGateGraph(gates: readonly Gate[]): void {
  763. if (gates.length === 0) throw new Error('run-gates: gate graph has no gates.')
  764. const ids = new Set<string>()
  765. for (const gate of gates) {
  766. if (ids.has(gate.id)) throw new Error(`run-gates: duplicate gate id ${JSON.stringify(gate.id)}.`)
  767. ids.add(gate.id)
  768. }
  769. for (const gate of gates) {
  770. for (const dependency of gate.needs ?? []) {
  771. if (!ids.has(dependency)) {
  772. throw new Error(`run-gates: gate ${JSON.stringify(gate.id)} depends on unknown gate ${JSON.stringify(dependency)}.`)
  773. }
  774. }
  775. for (const predecessor of gate.after ?? []) {
  776. if (!ids.has(predecessor)) {
  777. throw new Error(`run-gates: gate ${JSON.stringify(gate.id)} waits for unknown gate ${JSON.stringify(predecessor)}.`)
  778. }
  779. }
  780. }
  781. const cycle = findDependencyCycle(gates)
  782. if (cycle !== undefined) throw new Error(`run-gates: dependency cycle: ${cycle.join(' -> ')}.`)
  783. }
  784. function findDependencyCycle(gates: readonly Gate[]): string[] | undefined {
  785. const byId = new Map(gates.map(gate => [gate.id, gate]))
  786. const complete = new Set<string>()
  787. const active = new Map<string, number>()
  788. const path: string[] = []
  789. const visit = (id: string): string[] | undefined => {
  790. if (complete.has(id)) return undefined
  791. const cycleStart = active.get(id)
  792. if (cycleStart !== undefined) return [...path.slice(cycleStart), id]
  793. const gate = byId.get(id)
  794. if (gate === undefined) return undefined
  795. active.set(id, path.length)
  796. path.push(id)
  797. for (const predecessor of [...(gate.needs ?? []), ...(gate.after ?? [])]) {
  798. const cycle = visit(predecessor)
  799. if (cycle !== undefined) return cycle
  800. }
  801. path.pop()
  802. active.delete(id)
  803. complete.add(id)
  804. return undefined
  805. }
  806. for (const gate of gates) {
  807. const cycle = visit(gate.id)
  808. if (cycle !== undefined) return cycle
  809. }
  810. return undefined
  811. }
  812. /**
  813. * Scheduling options for one aggregate.
  814. */
  815. export interface RunGatesOptions {
  816. /** Stop the aggregate at the first blocking gate failure. */
  817. failFast?: boolean
  818. /** Forward host SIGINT/SIGTERM to the abort path so detached gate trees are
  819. * terminated when the run itself is interrupted or the runner cancels it.
  820. * Tree termination additionally requires failFast, because only then is the
  821. * abort signal passed to the executor and children detached. */
  822. forwardProcessSignals?: boolean
  823. }
  824. /**
  825. * Validate and run one aggregate before the injected executor can start a child.
  826. * @param gates - complete aggregate to execute.
  827. * @param maxActive - maximum concurrent child count.
  828. * @param execute - child-process executor; receives the abort signal only when
  829. * fail-fast is enabled, so ordinary runs keep their children in the host
  830. * process group.
  831. * @param observe - result observer invoked when each gate settles.
  832. * @param options - scheduling options; fail-fast aborts the aggregate at the
  833. * first blocking gate failure by killing running children and skipping every
  834. * not-yet-run gate.
  835. * @returns results in aggregate order.
  836. */
  837. export async function runGates(
  838. gates: Gate[],
  839. maxActive: number,
  840. execute: GateExecutor,
  841. observe: ResultObserver = () => {},
  842. options: RunGatesOptions = {},
  843. ): Promise<GateResult[]> {
  844. validateGateGraph(gates)
  845. if (!Number.isSafeInteger(maxActive) || maxActive < 1) {
  846. throw new Error(`run-gates: max concurrency must be a positive integer, got ${JSON.stringify(maxActive)}.`)
  847. }
  848. if (options.forwardProcessSignals === true && options.failFast !== true) {
  849. throw new Error('run-gates: forwardProcessSignals requires failFast, otherwise no child is detached or killed.')
  850. }
  851. const states = new Map<string, GateState>(gates.map(gate => [gate.id, 'pending']))
  852. const results = new Map<string, GateResult>()
  853. const running: RunningGate[] = []
  854. const abort = new AbortController()
  855. let abortCause: string | undefined
  856. // Host interruption (terminal Ctrl+C, runner cancellation) drains through
  857. // the same abort path as a gate failure, so detached trees are killed and
  858. // never orphaned. Handlers are removed before returning.
  859. const hostSignals = options.forwardProcessSignals === true ? ['SIGINT', 'SIGTERM'] as const : []
  860. const hostHandlers = hostSignals.map((name) => {
  861. const handler = () => {
  862. abortCause = abortCause ?? 'host interruption'
  863. abort.abort()
  864. }
  865. process.on(name, handler)
  866. return { name, handler }
  867. })
  868. const failFastSignal = options.failFast === true ? abort.signal : undefined
  869. try {
  870. for (;;) {
  871. let madeProgress = false
  872. if (abortCause === undefined) {
  873. while (running.length < maxActive) {
  874. const ready = gates.find(gate => states.get(gate.id) === 'pending' && predecessorsReady(gate, states))
  875. if (ready === undefined) break
  876. states.set(ready.id, 'running')
  877. running.push({ gate: ready, promise: execute(ready, failFastSignal) })
  878. console.log(`run-gates: start ${ready.label}`)
  879. madeProgress = true
  880. }
  881. }
  882. if (running.length === 0) {
  883. if (abortCause !== undefined) {
  884. for (const gate of gates) {
  885. if (states.get(gate.id) !== 'pending') continue
  886. const skipped = skippedByFailFast(gate, abortCause)
  887. states.set(gate.id, 'skipped')
  888. results.set(gate.id, skipped)
  889. observe(skipped)
  890. }
  891. break
  892. }
  893. const pending = gates.filter(gate => states.get(gate.id) === 'pending')
  894. if (pending.length === 0) break
  895. const gate = pending.find(item => (item.needs ?? []).some(id => gateFailed(states.get(id))))
  896. if (gate === undefined) throw new Error('run-gates: validated graph stalled without a failed dependency.')
  897. const failedDeps = (gate.needs ?? []).filter(id => gateFailed(states.get(id)))
  898. const result: GateResult = {
  899. gate,
  900. status: 'skipped',
  901. durationMs: 0,
  902. output: [],
  903. exitCode: null,
  904. signalCode: null,
  905. error: `dependency failed or skipped: ${failedDeps.join(', ')}`,
  906. }
  907. states.set(gate.id, 'skipped')
  908. results.set(gate.id, result)
  909. observe(result)
  910. continue
  911. }
  912. if (!madeProgress) {
  913. const settled = await Promise.race(running.map(async item => ({ item, result: await item.promise })))
  914. running.splice(running.indexOf(settled.item), 1)
  915. const observed = abortCause === undefined || settled.result.aborted !== true
  916. ? settled.result
  917. : skippedByFailFast(settled.item.gate, abortCause)
  918. states.set(settled.item.gate.id, observed.status)
  919. results.set(settled.item.gate.id, observed)
  920. observe(observed)
  921. if (abortCause === undefined && options.failFast === true
  922. && observed.status === 'failed' && settled.item.gate.allowFailure !== true) {
  923. abortCause = `${observed.gate.label} failed`
  924. abort.abort()
  925. console.error(`run-gates: fail-fast aborting: ${abortCause}.`)
  926. for (const gate of gates) {
  927. if (states.get(gate.id) !== 'pending') continue
  928. const skipped = skippedByFailFast(gate, abortCause)
  929. states.set(gate.id, 'skipped')
  930. results.set(gate.id, skipped)
  931. observe(skipped)
  932. }
  933. }
  934. }
  935. }
  936. } finally {
  937. for (const { name, handler } of hostHandlers) process.removeListener(name, handler)
  938. }
  939. return gates.map((gate) => {
  940. const result = results.get(gate.id)
  941. if (result === undefined) throw new Error(`run-gates: missing result for ${gate.id}.`)
  942. return result
  943. })
  944. }
  945. /**
  946. * The result of a gate that produced no evidence because fail-fast aborted.
  947. * A gate whose process settled before the abort took effect keeps its real
  948. * result instead: it did produce evidence, and the summary must say so. Any
  949. * result settling after the abort — including a genuine independent failure
  950. * in the race window, and a child that trapped the signal and exited zero —
  951. * is recorded skipped with its partial output discarded, because on Windows a
  952. * killed process is indistinguishable from a failed one by exit code alone.
  953. * @param gate - the gate that produced no evidence.
  954. * @param cause - the full clause naming what aborted the aggregate, e.g.
  955. * `typecheck failed` or `host interruption`.
  956. * @returns the skipped record with the fail-fast error.
  957. */
  958. function skippedByFailFast(gate: Gate, cause: string): GateResult {
  959. return {
  960. gate,
  961. status: 'skipped',
  962. durationMs: 0,
  963. output: [],
  964. exitCode: null,
  965. signalCode: null,
  966. error: `aborted by fail-fast: ${cause}`,
  967. }
  968. }
  969. function predecessorsReady(gate: Gate, states: Map<string, GateState>): boolean {
  970. return (gate.needs ?? []).every(id => states.get(id) === 'passed')
  971. && (gate.after ?? []).every(id => gateSettled(states.get(id)))
  972. }
  973. function gateSettled(state: GateState | undefined): boolean {
  974. return state === 'passed' || state === 'failed' || state === 'skipped'
  975. }
  976. function gateFailed(state: GateState | undefined): boolean {
  977. return state === 'failed' || state === 'skipped'
  978. }
  979. /**
  980. * Execute one gate through the real shell-free child-process boundary.
  981. * @param gate - command and scheduler environment to execute.
  982. * @param signal - abort signal that terminates the whole gate process tree when
  983. * the aggregate fails fast; an already-aborted signal terminates it
  984. * immediately. A provided signal spawns the child detached so POSIX can signal
  985. * its process group and Windows can reach its tree through taskkill.
  986. * @returns the complete process outcome.
  987. */
  988. export async function runGate(gate: Gate, signal?: AbortSignal): Promise<GateResult> {
  989. const started = performance.now()
  990. const output: GateOutputChunk[] = []
  991. let spawnError: string | undefined
  992. let aborted = false
  993. const outcome = await new Promise<{
  994. exitCode: number | null
  995. signalCode: NodeJS.Signals | null
  996. }>((resolveExit) => {
  997. const child = spawn(gate.command, gate.args, {
  998. cwd: root,
  999. env: { ...process.env, ...gate.env },
  1000. stdio: ['pipe', 'pipe', 'pipe'],
  1001. detached: signal !== undefined && process.platform !== 'win32',
  1002. })
  1003. child.stdout.setEncoding('utf8')
  1004. child.stderr.setEncoding('utf8')
  1005. child.stdout.on('data', (chunk: string) => {
  1006. if (gate.streamOutput === true) process.stdout.write(chunk)
  1007. else output.push({ stream: 'stdout', text: chunk })
  1008. })
  1009. child.stderr.on('data', (chunk: string) => {
  1010. if (gate.streamOutput === true) process.stderr.write(chunk)
  1011. else output.push({ stream: 'stderr', text: chunk })
  1012. })
  1013. // Deliver one signal to the entire gate tree: the negative pid targets the
  1014. // POSIX process group the detached child leads; Windows has no groups, so
  1015. // taskkill walks the tree rooted at the child and force-terminates (a
  1016. // taskkill without `/F` does not terminate console processes, which is
  1017. // what gate commands are). Outcomes are deliberately unchecked because
  1018. // delivery races tree exit, and a missing taskkill binary is as tolerable
  1019. // as ESRCH. Mirrors the subprocess package's teardown contract
  1020. // (packages/subprocess/subprocess-local/src/spawn.ts).
  1021. const treeKill = (signalToSend: 'SIGTERM' | 'SIGKILL') => {
  1022. const pid = child.pid
  1023. if (pid === undefined) return
  1024. if (process.platform === 'win32') {
  1025. for (const args of taskkillArgs(pid, descendants)) {
  1026. spawnSync('taskkill', args, { stdio: 'ignore' })
  1027. }
  1028. return
  1029. }
  1030. try {
  1031. process.kill(-pid, signalToSend)
  1032. } catch {
  1033. // The group is gone; the direct child may still be alive alone.
  1034. child.kill(signalToSend)
  1035. }
  1036. // The captured list stays valid after the group kill reparents the
  1037. // detached descendants of a nested run-gates (the `check:node-compat`
  1038. // and `check:ci:lint:contracts-ready` gates in ci-consumers): pids do
  1039. // not change on reparenting, so the escalation reaches leaves that
  1040. // ignored SIGTERM without re-enumerating.
  1041. for (const descendantPid of descendants) {
  1042. try {
  1043. process.kill(descendantPid, signalToSend)
  1044. } catch {
  1045. // The descendant exited between the enumeration and the signal.
  1046. }
  1047. }
  1048. }
  1049. let escalation: ReturnType<typeof setTimeout> | undefined
  1050. let terminatedAt = 0
  1051. // Captured once at terminate and re-signalled on escalation: the group
  1052. // kill reaps the direct child, after which its detached descendants are
  1053. // reparented and unreachable by parent id, so the escalation cannot
  1054. // re-enumerate them.
  1055. let descendants: number[] = []
  1056. let pipeDrain: ReturnType<typeof setTimeout> | undefined
  1057. const terminate = () => {
  1058. aborted = true
  1059. const pid = child.pid
  1060. // Merge while the child is still alive: re-enumerating alone would drop
  1061. // a descendant that an exited intermediate reparented out of the parent
  1062. // chain, and replacing the list entirely would lose the sampler's
  1063. // last-known entries when the child already exited. Union preserves both.
  1064. // The sampler runs on every platform (including Windows, where an
  1065. // exited intermediate's table record vanishes and a fresh enumeration
  1066. // cannot cross the gap), so the cache is the source of truth once the
  1067. // child is gone.
  1068. if (pid !== undefined && child.exitCode === null && child.signalCode === null) {
  1069. descendants = [...new Set([...descendants, ...descendantPids(pid)])]
  1070. }
  1071. treeKill('SIGTERM')
  1072. if (escalation === undefined) {
  1073. terminatedAt = Date.now()
  1074. // Force-kill at the deadline regardless of the direct child's exit
  1075. // state: when the wrapper dies but a grandchild ignores SIGTERM and
  1076. // still holds the stdio pipes, `close` has not fired and the tree must
  1077. // still be killed. treeKill swallows an already-absent group.
  1078. escalation = setTimeout(() => { treeKill('SIGKILL') }, 5000)
  1079. }
  1080. if (pipeDrain === undefined) {
  1081. // `close` can stay pending past the direct child's exit when a
  1082. // descendant holds the stdio write ends (escaped process group, or
  1083. // uninterruptible I/O that keeps the SIGKILL pending). Bound the wait
  1084. // past the 5-second SIGKILL grace and force the streams closed so
  1085. // fail-fast settles instead of hanging to the job timeout. Only the
  1086. // abort path arms it: on an ordinary run a gate that outlives its
  1087. // descendants must keep waiting rather than report passed over a live
  1088. // leak. Armed in terminate (not only at `exit`) so the window where
  1089. // the child already exited before the abort is covered too.
  1090. pipeDrain = setTimeout(() => {
  1091. child.stdout.destroy()
  1092. child.stderr.destroy()
  1093. child.stdin.destroy()
  1094. }, 10000)
  1095. }
  1096. }
  1097. if (signal !== undefined) {
  1098. if (signal.aborted) terminate()
  1099. else signal.addEventListener('abort', terminate, { once: true })
  1100. }
  1101. // Refresh the descendant cache while the child runs, so an abort that
  1102. // arrives after the child already exited can still reach a detached
  1103. // descendant the child left behind: once the child is gone, its
  1104. // descendants are reparented (POSIX) or their intermediate's table record
  1105. // is gone (Windows), so a fresh enumeration cannot cross the gap. The
  1106. // cache is primed at spawn and refreshed every 5 seconds, so a descendant
  1107. // is captured once it appears in any enumeration whose parent chain is
  1108. // still fully present in the table; the residual window is a descendant
  1109. // that never appears in such a snapshot — created after one enumeration
  1110. // and orphaned before the next. Enumeration is asynchronous (a slow
  1111. // WMI/CIM call is bounded by its own 10-second timeout), so a gate's
  1112. // output draining and exit handling are never blocked while the sampler
  1113. // reads the process table. Fail-fast runs only; ordinary runs never
  1114. // abort.
  1115. let descendantSampler: ReturnType<typeof setInterval> | undefined
  1116. if (signal !== undefined) {
  1117. let enumerationInFlight: { cancel: () => void } | undefined
  1118. const refreshDescendants = () => {
  1119. const pid = child.pid
  1120. if (pid === undefined || child.exitCode !== null || child.signalCode !== null) return
  1121. if (enumerationInFlight !== undefined) return
  1122. const handle = descendantPidsAsync(pid, process.platform)
  1123. enumerationInFlight = handle
  1124. void handle.promise.then((fresh) => {
  1125. if (enumerationInFlight === handle) enumerationInFlight = undefined
  1126. // Merge regardless of the child's exit state: the enumeration
  1127. // started while the child was alive, so its snapshot is the last
  1128. // reliable view of the tree. The child may exit (its intermediate
  1129. // gone, its table record vanished) before the promise settles while
  1130. // a grandchild still holds the stdio write ends and keeps `close`
  1131. // pending — exactly when terminate needs this list.
  1132. // Merge instead of replacing, like terminate: an intermediate that
  1133. // exited since the last tick reparented its detached descendants
  1134. // out of the parent chain, so a fresh enumeration alone would drop
  1135. // them. Filter the cache to the still-executing so a long gate
  1136. // does not accumulate stale pids; while sampler ticks still run the
  1137. // live filter also keeps the escalation from signalling a reused
  1138. // pid, but once ticks stop (child exited) the cache can go stale,
  1139. // and a pid reused after that is the accepted sampling window.
  1140. descendants = [...new Set([...descendants.filter(processAlive), ...fresh])]
  1141. })
  1142. }
  1143. const cancelInFlightEnumeration = () => {
  1144. if (enumerationInFlight !== undefined) enumerationInFlight.cancel()
  1145. enumerationInFlight = undefined
  1146. }
  1147. refreshDescendants()
  1148. descendantSampler = setInterval(refreshDescendants, 5000)
  1149. // A gate that settles while an enumeration is still running must not
  1150. // leave the PowerShell subprocess holding stdio handles until its own
  1151. // timeout: stop it as soon as the child's outcome is known.
  1152. child.once('close', cancelInFlightEnumeration)
  1153. child.once('error', cancelInFlightEnumeration)
  1154. }
  1155. child.on('error', (error) => {
  1156. if (escalation !== undefined) clearTimeout(escalation)
  1157. if (pipeDrain !== undefined) clearTimeout(pipeDrain)
  1158. if (descendantSampler !== undefined) clearInterval(descendantSampler)
  1159. if (signal !== undefined) signal.removeEventListener('abort', terminate)
  1160. spawnError = `failed to start command: ${error.message}`
  1161. resolveExit({ exitCode: null, signalCode: null })
  1162. })
  1163. child.on('close', (exitCode, signalCode) => {
  1164. if (pipeDrain !== undefined) clearTimeout(pipeDrain)
  1165. if (descendantSampler !== undefined) clearInterval(descendantSampler)
  1166. if (signal !== undefined) signal.removeEventListener('abort', terminate)
  1167. if (escalation !== undefined && process.platform !== 'win32') {
  1168. // `close` only means the direct child's stdio closed; a grandchild
  1169. // that ignored SIGTERM and redirected its stdio can outlive it. Do
  1170. // not settle until the process group and the captured descendants are
  1171. // confirmed gone — the deadline SIGKILL covers members still alive at
  1172. // the grace end — so runGate returns only once the tree is quiescent.
  1173. const confirmGroupGone = () => {
  1174. if (!groupAlive(child.pid) && descendants.every(descendantPid => !processAlive(descendantPid))) {
  1175. clearTimeout(escalation)
  1176. resolveExit({ exitCode, signalCode })
  1177. return
  1178. }
  1179. if (Date.now() - terminatedAt < 8000) {
  1180. setTimeout(confirmGroupGone, 50)
  1181. return
  1182. }
  1183. // The grace ended with members still alive (e.g. uninterruptible
  1184. // I/O that even SIGKILL cannot cut). Fail loud instead of reporting
  1185. // a quiescent tree: the gate is recorded failed either way.
  1186. console.error(`run-gates: gate tree not quiescent after 8s (${gate.label}).`)
  1187. clearTimeout(escalation)
  1188. resolveExit({ exitCode, signalCode })
  1189. }
  1190. confirmGroupGone()
  1191. return
  1192. }
  1193. if (escalation !== undefined) clearTimeout(escalation)
  1194. resolveExit({ exitCode, signalCode })
  1195. })
  1196. child.stdin.end()
  1197. })
  1198. const { exitCode, signalCode } = outcome
  1199. const status: GateResultStatus = exitCode === 0 && signalCode === null && spawnError === undefined ? 'passed' : 'failed'
  1200. const result: GateResult = {
  1201. gate,
  1202. status,
  1203. durationMs: performance.now() - started,
  1204. output,
  1205. exitCode,
  1206. signalCode,
  1207. }
  1208. result.aborted = aborted
  1209. if (spawnError !== undefined) result.error = spawnError
  1210. return result
  1211. }
  1212. /**
  1213. * Parse the state, parent, and process-group fields from a `/proc/<pid>/stat`
  1214. * line. The comm field may contain spaces and parentheses, so the state starts
  1215. * after the last closing parenthesis.
  1216. * @param stat - one `/proc/<pid>/stat` line.
  1217. * @returns state, parent pid, and process-group pid; undefined when truncated.
  1218. */
  1219. function procStatFields(stat: string): { state: string; ppid: number; pgrp: number } | undefined {
  1220. const fields = stat.slice(stat.lastIndexOf(')') + 2).split(' ')
  1221. const state = fields[0]
  1222. const ppid = fields[1]
  1223. const pgrp = fields[2]
  1224. if (state === undefined || ppid === undefined || pgrp === undefined) return undefined
  1225. return { state, ppid: Number(ppid), pgrp: Number(pgrp) }
  1226. }
  1227. /**
  1228. * Whether one process is still executing. Zombies (state `Z`) do not count:
  1229. * they are dead records awaiting reaping, and kill(pid, 0) would report them
  1230. * as alive. Linux reads /proc/<pid>/stat to distinguish; other platforms fall
  1231. * back to the signal probe.
  1232. * @param pid - the process to probe.
  1233. */
  1234. function processAlive(pid: number): boolean {
  1235. if (process.platform === 'linux') {
  1236. try {
  1237. const parsed = procStatFields(readFileSync(`/proc/${pid}/stat`, 'utf8'))
  1238. return parsed !== undefined && parsed.state !== 'Z'
  1239. } catch {
  1240. return false
  1241. }
  1242. }
  1243. try {
  1244. process.kill(pid, 0)
  1245. return true
  1246. } catch {
  1247. return false
  1248. }
  1249. }
  1250. /**
  1251. * Whether any member of the child's POSIX process group is still executing.
  1252. * Zombie entries (state `Z`) do not count: they are dead records awaiting
  1253. * reaping, and the kill(-pid, 0) group probe would report them as alive.
  1254. * Linux enumerates /proc to distinguish after a fast-path group probe; other
  1255. * POSIX platforms fall back to the probe alone.
  1256. * @param pid - the group leader's pid; undefined or non-positive means the
  1257. * spawn failed and nothing is alive.
  1258. */
  1259. function groupAlive(pid: number | undefined): boolean {
  1260. if (pid === undefined || pid <= 0) return false
  1261. if (process.platform === 'linux') {
  1262. try {
  1263. process.kill(-pid, 0)
  1264. } catch {
  1265. // ESRCH: the group has no entries at all.
  1266. return false
  1267. }
  1268. try {
  1269. for (const entry of readdirSync('/proc')) {
  1270. if (!/^\d+$/.test(entry)) continue
  1271. try {
  1272. const parsed = procStatFields(readFileSync(`/proc/${entry}/stat`, 'utf8'))
  1273. if (parsed !== undefined && parsed.pgrp === pid && parsed.state !== 'Z') return true
  1274. } catch {
  1275. // The process exited mid-scan; it is not a live member.
  1276. }
  1277. }
  1278. return false
  1279. } catch {
  1280. return false
  1281. }
  1282. }
  1283. try {
  1284. process.kill(-pid, 0)
  1285. return true
  1286. } catch {
  1287. return false
  1288. }
  1289. }
  1290. /**
  1291. * The pids of every transitive descendant of `root`, read from the live
  1292. * process table. Linux walks /proc/<pid>/stat parent fields; other platforms
  1293. * parse `ps` (POSIX) or the CIM process table (Windows) output. This is one
  1294. * snapshot, not the full tree-ownership mechanism: terminate and the sampler
  1295. * rely on the 5-second cache to cross an intermediate that exited between
  1296. * ticks (reparented on POSIX, table record gone on Windows), so a single
  1297. * enumeration reaches only the descendants whose parent chain is still fully
  1298. * present in the table.
  1299. * @param root - the pid whose descendants are wanted.
  1300. * @returns descendant pids in breadth-first order; empty on enumeration failure.
  1301. */
  1302. function descendantPids(root: number): number[] {
  1303. if (root <= 0) return []
  1304. if (process.platform === 'linux') {
  1305. const rows: Array<[number, number]> = []
  1306. try {
  1307. for (const entry of readdirSync('/proc')) {
  1308. if (!/^\d+$/.test(entry)) continue
  1309. try {
  1310. const parsed = procStatFields(readFileSync(`/proc/${entry}/stat`, 'utf8'))
  1311. if (parsed !== undefined) rows.push([Number(entry), parsed.ppid])
  1312. } catch {
  1313. // The process exited mid-scan; skip it.
  1314. }
  1315. }
  1316. } catch {
  1317. return []
  1318. }
  1319. return collectDescendants(root, rows)
  1320. }
  1321. let ps: { error?: Error; stdout: string }
  1322. if (process.platform === 'win32') {
  1323. // taskkill /T covers the tree only while the root is alive; once the
  1324. // direct child exits (a descendant still holding the stdio write ends
  1325. // keeps `close` pending), abort must reach the survivors from a fresh
  1326. // enumeration. Windows keeps the exited parent's pid in its descendants'
  1327. // parent column, so this walk still finds the whole tree. A hung
  1328. // PowerShell (WMI/CIM service trouble) must not stall the abort path
  1329. // indefinitely, so the enumeration is bounded.
  1330. ps = spawnSync('powershell', processTableArgs('win32'), { encoding: 'utf8', timeout: 10000 })
  1331. } else {
  1332. ps = spawnSync('ps', processTableArgs('posix'), { encoding: 'utf8' })
  1333. }
  1334. if (ps.error !== undefined) return []
  1335. return collectDescendants(root, parsePidPpidLines(ps.stdout))
  1336. }
  1337. /**
  1338. * The process-table enumeration command for one platform. Windows queries the
  1339. * CIM provider through PowerShell (each line `pid ppid`); other platforms use
  1340. * `ps -axo pid=,ppid=`.
  1341. * @param platform - the target platform.
  1342. * @returns the command arguments to enumerate every live process's pid/ppid.
  1343. */
  1344. function processTableArgs(platform: 'win32' | 'posix'): string[] {
  1345. if (platform === 'win32') {
  1346. return ['-NoProfile', '-NonInteractive', '-Command', 'Get-CimInstance Win32_Process | ForEach-Object { "$($_.ProcessId) $($_.ParentProcessId)" }']
  1347. }
  1348. return ['-axo', 'pid=,ppid=']
  1349. }
  1350. /**
  1351. * Asynchronous descendant enumeration, so a slow WMI/CIM call (bounded by a
  1352. * 10-second timeout) cannot block the event loop: the sampler runs it while
  1353. * the gate's output streams and exit handling must keep flowing. Returns the
  1354. * same descendant list as {@link descendantPids}; used by the fail-fast
  1355. * sampler only, never on the abort path (which needs the synchronous walk to
  1356. * capture the tree before any member exits).
  1357. * @param root - the pid whose descendants are wanted.
  1358. * @param platform - the platform whose table the enumeration reads.
  1359. * @returns a promise of descendant pids in breadth-first order; empty on
  1360. * enumeration failure.
  1361. */
  1362. function descendantPidsAsync(root: number, platform: NodeJS.Platform): { promise: Promise<number[]>; cancel: () => void } {
  1363. if (root <= 0 || platform === 'linux') {
  1364. // The /proc walk is synchronous inside the async wrapper so the sampler
  1365. // keeps the same contract on every platform; /proc reads are fast and
  1366. // need no subprocess, and a completed enumeration needs no cancellation.
  1367. return { promise: Promise.resolve(descendantPids(root)), cancel: () => {} }
  1368. }
  1369. const [command, args] = platform === 'win32'
  1370. ? ['powershell', processTableArgs('win32')]
  1371. : ['ps', processTableArgs('posix')]
  1372. const child = spawn(command, args, {
  1373. stdio: ['ignore', 'pipe', 'ignore'],
  1374. timeout: platform === 'win32' ? 10000 : undefined,
  1375. })
  1376. child.stdout.setEncoding('utf8')
  1377. let stdout = ''
  1378. let settled = false
  1379. let settle!: (value: number[]) => void
  1380. const promise = new Promise<number[]>((resolve) => { settle = resolve })
  1381. const finish = (value: number[]) => {
  1382. if (settled) return
  1383. settled = true
  1384. // The enumeration completed (or was cancelled): stop the subprocess so
  1385. // the gate does not wait on its stdio handles.
  1386. child.kill('SIGTERM')
  1387. settle(value)
  1388. }
  1389. child.stdout.on('data', (chunk: string) => { stdout += chunk })
  1390. child.on('error', () => { finish([]) })
  1391. child.on('close', () => { finish(collectDescendants(root, parsePidPpidLines(stdout))) })
  1392. return {
  1393. promise,
  1394. cancel: () => { finish([]) },
  1395. }
  1396. }
  1397. /** Parse `pid ppid` rows from a process-table dump. Both the POSIX `ps -axo
  1398. * pid=,ppid=` output and the Windows PowerShell `Get-CimInstance Win32_Process`
  1399. * projection emit one `pid ppid` pair per line.
  1400. * @param output - the raw dump text.
  1401. * @returns the parsed pid/ppid rows in line order; blank and malformed lines
  1402. * are dropped.
  1403. */
  1404. export function parsePidPpidLines(output: string): Array<[number, number]> {
  1405. const rows: Array<[number, number]> = []
  1406. for (const line of output.split('\n')) {
  1407. const match = line.trim().match(/^(\d+)\s+(\d+)$/)
  1408. if (match !== null) rows.push([Number(match[1]), Number(match[2])])
  1409. }
  1410. return rows
  1411. }
  1412. /**
  1413. * The taskkill invocations that terminate one Windows gate tree. The direct
  1414. * child leads, because a live `taskkill /T` walks its whole subtree in one
  1415. * call; each captured descendant follows individually, because when the root
  1416. * already exited (a descendant holding the stdio write ends keeps `close`
  1417. * pending) `taskkill /T` rooted at the dead pid finds nothing — Windows never
  1418. * reparents, so the ppid chain captured at terminate still reaches the whole
  1419. * tree, and `/T` lets a surviving intermediate carry its own subtree. A pid
  1420. * that exited between capture and termination is as tolerable as ESRCH on
  1421. * POSIX: taskkill reports a nonzero status that is deliberately unchecked.
  1422. * @param rootPid - the direct child's pid.
  1423. * @param descendants - the captured descendant pids.
  1424. * @returns one `taskkill` argument list per pid, in termination order.
  1425. */
  1426. export function taskkillArgs(rootPid: number, descendants: number[]): string[][] {
  1427. return [rootPid, ...descendants].map(pid => ['/PID', String(pid), '/T', '/F'])
  1428. }
  1429. /** Breadth-first walk of the pid/ppid rows starting at `root`. */
  1430. function collectDescendants(root: number, rows: Array<[number, number]>): number[] {
  1431. const byParent = new Map<number, number[]>()
  1432. for (const [pid, ppid] of rows) {
  1433. const children = byParent.get(ppid) ?? []
  1434. children.push(pid)
  1435. byParent.set(ppid, children)
  1436. }
  1437. const result: number[] = []
  1438. const queue = byParent.get(root) ?? []
  1439. for (let index = 0; index < queue.length; index += 1) {
  1440. const pid = queue[index]
  1441. if (pid === undefined) continue
  1442. result.push(pid)
  1443. queue.push(...(byParent.get(pid) ?? []))
  1444. }
  1445. return result
  1446. }
  1447. /**
  1448. * Format every independently observed failure fact for the aggregate summary.
  1449. * @param result - unsuccessful gate result.
  1450. * @returns error, exit, and signal facts without allowing one to hide another.
  1451. */
  1452. export function formatGateResultReason(result: GateResult): string {
  1453. const facts: string[] = []
  1454. if (result.error !== undefined) facts.push(result.error)
  1455. if (result.exitCode !== null) facts.push(`exit ${result.exitCode}`)
  1456. if (result.signalCode !== null) facts.push(`signal ${result.signalCode}`)
  1457. return facts.length === 0 ? 'no exit code or signal' : facts.join(', ')
  1458. }
  1459. function printResult(result: GateResult): void {
  1460. const verbose = process.env.DSH_GATE_VERBOSE === '1'
  1461. const seconds = (result.durationMs / 1000).toFixed(2)
  1462. if (result.status === 'passed' && !verbose) {
  1463. console.log(`run-gates: PASS ${result.gate.label} (${seconds}s)`)
  1464. return
  1465. }
  1466. const heading = `${result.status.toUpperCase()} ${result.gate.label} (${seconds}s)`
  1467. const writeHeading = result.status === 'passed' ? console.log : console.error
  1468. writeHeading(`\n== ${heading} ==`)
  1469. if (result.status !== 'passed') {
  1470. console.error(`command: ${result.gate.displayCommand}`)
  1471. console.error(`outcome: ${formatGateResultReason(result)}`)
  1472. }
  1473. if (result.gate.streamOutput !== true) printOutput(result.output)
  1474. }
  1475. function printSummary(results: GateResult[], durationMs: number): void {
  1476. const passed = results.filter(result => result.status === 'passed').length
  1477. const failed = results.filter(result => result.status === 'failed').length
  1478. const skipped = results.filter(result => result.status === 'skipped').length
  1479. const seconds = (durationMs / 1000).toFixed(2)
  1480. console.log(`\nrun-gates: ${passed} passed, ${failed} failed, ${skipped} skipped in ${seconds}s.`)
  1481. const unsuccessful = results.filter(result => result.status === 'failed' || result.status === 'skipped')
  1482. if (unsuccessful.length === 0) return
  1483. console.error('run-gates: unsuccessful gates:')
  1484. for (const result of unsuccessful) {
  1485. const duration = (result.durationMs / 1000).toFixed(2)
  1486. const reason = formatGateResultReason(result)
  1487. const disposition = result.gate.allowFailure === true ? 'NON-BLOCKING ' : ''
  1488. console.error(` - ${disposition}${result.status.toUpperCase()} ${result.gate.label} (${duration}s, ${reason})`)
  1489. console.error(` ${result.gate.displayCommand}`)
  1490. }
  1491. }
  1492. function printOutput(output: GateOutputChunk[]): void {
  1493. for (const chunk of output) {
  1494. if (chunk.stream === 'stdout') process.stdout.write(chunk.text)
  1495. else process.stderr.write(chunk.text)
  1496. }
  1497. }