run-gates.ts 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449
  1. /**
  2. * Run local and CI quality gates with bounded in-process scheduling.
  3. *
  4. * The gate vocabulary stays in package.json; this runner only decides which
  5. * independent commands can overlap and which commands wait for built artifacts.
  6. */
  7. import { spawn } from 'node:child_process'
  8. import { readdir, rm } from 'node:fs/promises'
  9. import { availableParallelism } from 'node:os'
  10. import { join, resolve } from 'node:path'
  11. import { performance } from 'node:perf_hooks'
  12. type Mode =
  13. | 'ci-primary'
  14. | 'ci-static'
  15. | 'ci-lint'
  16. | 'ci-coverage'
  17. | 'ci-snapshot'
  18. | 'ci-artifacts'
  19. | 'node-compat'
  20. | 'pre-push'
  21. type GateStatus = 'pending' | 'running' | 'passed' | 'failed' | 'skipped'
  22. interface Gate {
  23. id: string
  24. label: string
  25. command: string
  26. args: string[]
  27. needs?: string[]
  28. env?: Record<string, string | undefined>
  29. input?: string
  30. verify?: (result: GateResult) => Promise<void>
  31. }
  32. interface GateResult {
  33. gate: Gate
  34. status: GateStatus
  35. durationMs: number
  36. stdout: string
  37. stderr: string
  38. exitCode: number | null
  39. error?: string
  40. }
  41. interface RunningGate {
  42. gate: Gate
  43. promise: Promise<GateResult>
  44. }
  45. const root = resolve(import.meta.dirname, '..')
  46. const mode = parseMode(process.argv[2])
  47. const gates = gatesForMode(mode)
  48. const maxConcurrency = concurrencyFromEnv('DSH_GATE_CONCURRENCY', defaultConcurrency(gates.length))
  49. const startedAt = performance.now()
  50. console.log(`run-gates: ${mode} running ${gates.length} gate(s) with ${maxConcurrency} worker(s).`)
  51. const results = await runGates(gates, maxConcurrency)
  52. printSummary(results, performance.now() - startedAt)
  53. if (results.some(result => result.status === 'failed' || result.status === 'skipped')) process.exit(1)
  54. function parseMode(raw: string | undefined): Mode {
  55. switch (raw) {
  56. case 'ci-primary':
  57. case 'ci-static':
  58. case 'ci-lint':
  59. case 'ci-coverage':
  60. case 'ci-snapshot':
  61. case 'ci-artifacts':
  62. case 'node-compat':
  63. case 'pre-push':
  64. return raw
  65. default:
  66. throw new Error(
  67. `run-gates: expected mode ci-primary | ci-static | ci-lint | ci-coverage | ci-snapshot | ci-artifacts | node-compat | pre-push, got ${JSON.stringify(raw)}.`,
  68. )
  69. }
  70. }
  71. function defaultConcurrency(total: number): number {
  72. return Math.min(total, Math.max(4, availableParallelism()))
  73. }
  74. function concurrencyFromEnv(name: string, fallback: number): number {
  75. const raw = process.env[name]
  76. if (raw === undefined || raw === '') return fallback
  77. const parsed = Number.parseInt(raw, 10)
  78. if (!Number.isSafeInteger(parsed) || parsed < 1) {
  79. throw new Error(`run-gates: ${name} must be a positive integer, got ${JSON.stringify(raw)}.`)
  80. }
  81. return parsed
  82. }
  83. function pnpmScript(id: string, script: string, options: Partial<Gate> = {}): Gate {
  84. return {
  85. id,
  86. label: options.label ?? script,
  87. command: pnpmBin(),
  88. args: ['run', script],
  89. ...options,
  90. }
  91. }
  92. function pnpmExec(id: string, args: string[], options: Partial<Gate> = {}): Gate {
  93. return {
  94. id,
  95. label: options.label ?? `pnpm exec ${args.join(' ')}`,
  96. command: pnpmBin(),
  97. args: ['exec', ...args],
  98. ...options,
  99. }
  100. }
  101. function pnpmBin(): string {
  102. return process.platform === 'win32' ? 'pnpm.cmd' : 'pnpm'
  103. }
  104. function nodeOptions(...options: string[]): string {
  105. return [process.env.NODE_OPTIONS, ...options].filter(option => option !== undefined && option !== '').join(' ')
  106. }
  107. function gatesForMode(selected: Mode): Gate[] {
  108. switch (selected) {
  109. case 'ci-primary':
  110. return ciPrimaryGates()
  111. case 'ci-static':
  112. return ciStaticGates()
  113. case 'ci-lint':
  114. return [
  115. lintGate(),
  116. ]
  117. case 'ci-coverage':
  118. return [
  119. coverageGate(),
  120. ]
  121. case 'ci-snapshot':
  122. return [
  123. pnpmScript('snapshot', 'test:snapshot'),
  124. ]
  125. case 'ci-artifacts':
  126. return ciArtifactGates()
  127. case 'node-compat':
  128. return [
  129. pnpmScript('typecheck', 'typecheck'),
  130. ]
  131. case 'pre-push':
  132. return [
  133. pnpmScript('test', 'test'),
  134. pnpmScript('snapshot', 'test:snapshot'),
  135. pnpmScript('build', 'build'),
  136. ...hygieneLeafGates({ artifactNeeds: ['build'] }),
  137. ...docSyncLeafGates(),
  138. pnpmScript('module-graph', 'verify-module-graph', { label: 'module graph' }),
  139. ]
  140. }
  141. }
  142. function ciPrimaryGates(): Gate[] {
  143. return [
  144. pnpmScript('constraints', 'constraints'),
  145. pnpmScript('typecheck', 'typecheck'),
  146. lintGate(),
  147. coverageGate(),
  148. pnpmScript('snapshot', 'test:snapshot'),
  149. demoSmokeGate({ needs: ['lint'] }),
  150. ...docSyncLeafGates(),
  151. pnpmScript('module-graph', 'verify-module-graph', { label: 'module graph' }),
  152. pnpmScript('knip', 'knip'),
  153. pnpmScript('build', 'build', { needs: ['typecheck'] }),
  154. pnpmScript('publint', 'publint', { needs: ['build'] }),
  155. pnpmScript('node-next-types', 'verify-node-next-types', {
  156. label: 'node-next types',
  157. needs: ['build'],
  158. }),
  159. builtBinSmokeGate(),
  160. ]
  161. }
  162. function ciStaticGates(): Gate[] {
  163. return [
  164. pnpmScript('constraints', 'constraints'),
  165. demoSmokeGate(),
  166. ...docSyncLeafGates(),
  167. pnpmScript('module-graph', 'verify-module-graph', { label: 'module graph' }),
  168. pnpmScript('knip', 'knip'),
  169. ]
  170. }
  171. function ciArtifactGates(): Gate[] {
  172. return [
  173. pnpmScript('build', 'build'),
  174. pnpmScript('publint', 'publint', { needs: ['build'] }),
  175. pnpmScript('node-next-types', 'verify-node-next-types', {
  176. label: 'node-next types',
  177. needs: ['build'],
  178. }),
  179. builtBinSmokeGate(),
  180. ]
  181. }
  182. function lintGate(): Gate {
  183. if (process.env.DSH_ESLINT_CACHE === '1') {
  184. return pnpmExec('lint', [
  185. 'eslint',
  186. '.',
  187. '--cache',
  188. '--cache-location',
  189. '.cache/eslint/',
  190. '--cache-strategy',
  191. 'content',
  192. ], {
  193. label: 'lint',
  194. env: { NODE_OPTIONS: nodeOptions('--max-old-space-size=8192') },
  195. })
  196. }
  197. return pnpmScript('lint', 'lint', {
  198. env: { NODE_OPTIONS: nodeOptions('--max-old-space-size=8192') },
  199. })
  200. }
  201. function coverageGate(): Gate {
  202. return pnpmExec('coverage', [
  203. 'vitest',
  204. 'run',
  205. '--coverage',
  206. ...positiveIntArg('DSH_COVERAGE_MAX_WORKERS', '--maxWorkers'),
  207. ], {
  208. label: 'test:coverage',
  209. })
  210. }
  211. function positiveIntArg(envName: string, flag: string): string[] {
  212. const raw = process.env[envName]
  213. if (raw === undefined || raw === '') return []
  214. const parsed = Number.parseInt(raw, 10)
  215. if (!Number.isSafeInteger(parsed) || parsed < 1 || String(parsed) !== raw) {
  216. throw new Error(`run-gates: ${envName} must be a positive integer, got ${JSON.stringify(raw)}.`)
  217. }
  218. return [`${flag}=${raw}`]
  219. }
  220. function hygieneLeafGates(options: { artifactNeeds?: string[] } = {}): Gate[] {
  221. const artifactOptions = options.artifactNeeds === undefined ? {} : { needs: options.artifactNeeds }
  222. return [
  223. pnpmScript('knip', 'knip'),
  224. pnpmScript('publint', 'publint', artifactOptions),
  225. pnpmScript('constraints', 'constraints'),
  226. pnpmScript('node-next-types', 'verify-node-next-types', {
  227. label: 'node-next types',
  228. ...artifactOptions,
  229. }),
  230. ]
  231. }
  232. function docSyncLeafGates(): Gate[] {
  233. return [
  234. pnpmScript('doc-typecheck', 'doc-typecheck'),
  235. pnpmScript('cordis-catalog', 'verify-cordis-catalog', { label: 'cordis catalog' }),
  236. pnpmScript('export-jsdoc', 'verify-export-jsdoc', { label: 'export jsdoc' }),
  237. pnpmScript('tool-catalog', 'verify-tool-catalog', { label: 'tool catalog' }),
  238. pnpmScript('config-catalog', 'verify-config-catalog', { label: 'config catalog' }),
  239. pnpmScript('persistence-catalog', 'verify-persistence-catalog', { label: 'persistence catalog' }),
  240. pnpmScript('doc-graphs', 'verify-doc-graphs', { label: 'doc graphs' }),
  241. pnpmScript('scoped-dispatch', 'verify-scoped-dispatch', { label: 'scoped dispatch' }),
  242. pnpmScript('markdown-wrap', 'verify-md-wrap', { label: 'markdown wrap' }),
  243. pnpmScript('markdown-links', 'verify-md-links', { label: 'markdown links' }),
  244. pnpmScript('doc-refs', 'verify-doc-refs', { label: 'doc refs' }),
  245. pnpmScript('package-paths', 'verify-package-paths', { label: 'package paths' }),
  246. pnpmScript('mermaid', 'verify-mermaid'),
  247. pnpmScript('rfc-classification', 'verify-rfc-classification', { label: 'rfc classification' }),
  248. pnpmScript('rfc-format', 'verify-rfc-format', { label: 'rfc format' }),
  249. pnpmScript('type-equivalence', 'verify-type-equiv', { label: 'type equivalence' }),
  250. pnpmScript('translation-pairing', 'verify-translation-pairing', { label: 'translation pairing' }),
  251. pnpmScript('doc-budgets', 'verify-doc-budgets', { label: 'doc budgets' }),
  252. ]
  253. }
  254. function demoSmokeGate(options: { needs?: string[] } = {}): Gate {
  255. const dependencyOptions = options.needs === undefined ? {} : { needs: options.needs }
  256. return {
  257. id: 'demo-smoke',
  258. label: 'demo smoke',
  259. command: pnpmBin(),
  260. args: ['run', 'demo:echo'],
  261. input: 'echo ci smoke\n',
  262. ...dependencyOptions,
  263. verify: async (result) => {
  264. const output = result.stdout + result.stderr
  265. const sessionsRoot = join(root, '.sessions')
  266. try {
  267. if (!output.includes('[tool call] echo({"text":"ci smoke"})')) {
  268. throw new Error('demo smoke did not show the echo tool call.')
  269. }
  270. if (!output.includes('[tool result] ECHO: CI SMOKE')) {
  271. throw new Error('demo smoke did not show the echo tool result.')
  272. }
  273. const buckets = await readdir(sessionsRoot, { withFileTypes: true })
  274. let found = false
  275. for (const bucket of buckets) {
  276. if (!bucket.isDirectory() || !bucket.name.startsWith('cwd-')) continue
  277. const entries = await readdir(join(sessionsRoot, bucket.name))
  278. if (entries.some(entry => /^main-session-.+\.jsonl$/.test(entry))) {
  279. found = true
  280. break
  281. }
  282. }
  283. if (!found) throw new Error('demo smoke did not create a main-session JSONL log in a cwd bucket.')
  284. } finally {
  285. await rm(sessionsRoot, { recursive: true, force: true })
  286. }
  287. },
  288. }
  289. }
  290. function builtBinSmokeGate(): Gate {
  291. return pnpmExec('built-bin-smoke', [
  292. 'vitest',
  293. 'run',
  294. '--config',
  295. 'vitest.e2e.config.ts',
  296. 'packages/ui/stdio-agent/tests/built-bin.e2e.ts',
  297. 'packages/ui/acp-agent/tests/built-bin.e2e.ts',
  298. // The worker-entry packages' built bundles: the only automated proof
  299. // that lib/index.js resolves its sibling lib/worker.js under plain node
  300. // (the e2e lane runs unbuilt, so these files self-skip there).
  301. 'packages/workflow/workflow-workerthread/tests/built-worker.e2e.ts',
  302. 'packages/code-runtime/code-runtime-worker/tests/built-lib.e2e.ts',
  303. ], {
  304. label: 'built-bin smoke',
  305. needs: ['build'],
  306. })
  307. }
  308. async function runGates(allGates: Gate[], maxActive: number): Promise<GateResult[]> {
  309. const states = new Map<string, GateStatus>(allGates.map(gate => [gate.id, 'pending']))
  310. const results = new Map<string, GateResult>()
  311. const running: RunningGate[] = []
  312. for (;;) {
  313. let madeProgress = false
  314. while (running.length < maxActive) {
  315. const ready = allGates.find(gate => states.get(gate.id) === 'pending' && dependenciesPassed(gate, states))
  316. if (ready === undefined) break
  317. states.set(ready.id, 'running')
  318. running.push({ gate: ready, promise: runGate(ready) })
  319. console.log(`run-gates: start ${ready.label}`)
  320. madeProgress = true
  321. }
  322. if (running.length === 0) {
  323. const pending = allGates.filter(gate => states.get(gate.id) === 'pending')
  324. for (const gate of pending) {
  325. const failedDeps = (gate.needs ?? []).filter(id => states.get(id) !== 'passed')
  326. const result: GateResult = {
  327. gate,
  328. status: 'skipped',
  329. durationMs: 0,
  330. stdout: '',
  331. stderr: '',
  332. exitCode: null,
  333. error: `dependency failed or skipped: ${failedDeps.join(', ')}`,
  334. }
  335. states.set(gate.id, 'skipped')
  336. results.set(gate.id, result)
  337. printResult(result)
  338. }
  339. break
  340. }
  341. if (!madeProgress) {
  342. const settled = await Promise.race(running.map(async item => ({ item, result: await item.promise })))
  343. running.splice(running.indexOf(settled.item), 1)
  344. states.set(settled.item.gate.id, settled.result.status)
  345. results.set(settled.item.gate.id, settled.result)
  346. printResult(settled.result)
  347. }
  348. }
  349. return allGates.map((gate) => {
  350. const result = results.get(gate.id)
  351. if (result === undefined) throw new Error(`run-gates: missing result for ${gate.id}.`)
  352. return result
  353. })
  354. }
  355. function dependenciesPassed(gate: Gate, states: Map<string, GateStatus>): boolean {
  356. return (gate.needs ?? []).every(id => states.get(id) === 'passed')
  357. }
  358. async function runGate(gate: Gate): Promise<GateResult> {
  359. const started = performance.now()
  360. let stdout = ''
  361. let stderr = ''
  362. const exitCode = await new Promise<number | null>((resolveExit, reject) => {
  363. const child = spawn(gate.command, gate.args, {
  364. cwd: root,
  365. env: { ...process.env, ...gate.env },
  366. stdio: ['pipe', 'pipe', 'pipe'],
  367. })
  368. child.stdout.setEncoding('utf8')
  369. child.stderr.setEncoding('utf8')
  370. child.stdout.on('data', (chunk: string) => { stdout += chunk })
  371. child.stderr.on('data', (chunk: string) => { stderr += chunk })
  372. child.on('error', reject)
  373. child.on('close', resolveExit)
  374. if (gate.input !== undefined) child.stdin.end(gate.input)
  375. else child.stdin.end()
  376. })
  377. let status: GateStatus = exitCode === 0 ? 'passed' : 'failed'
  378. let error: string | undefined
  379. if (status === 'passed' && gate.verify !== undefined) {
  380. try {
  381. await gate.verify({ gate, status, durationMs: performance.now() - started, stdout, stderr, exitCode })
  382. } catch (verifyError: unknown) {
  383. status = 'failed'
  384. error = verifyError instanceof Error ? verifyError.message : String(verifyError)
  385. }
  386. }
  387. const result: GateResult = {
  388. gate,
  389. status,
  390. durationMs: performance.now() - started,
  391. stdout,
  392. stderr,
  393. exitCode,
  394. }
  395. if (error !== undefined) result.error = error
  396. return result
  397. }
  398. function printResult(result: GateResult): void {
  399. const seconds = (result.durationMs / 1000).toFixed(2)
  400. console.log(`\n== ${result.status.toUpperCase()} ${result.gate.label} (${seconds}s) ==`)
  401. process.stdout.write(result.stdout)
  402. process.stderr.write(result.stderr)
  403. if (result.error !== undefined) console.error(result.error)
  404. }
  405. function printSummary(results: GateResult[], durationMs: number): void {
  406. const passed = results.filter(result => result.status === 'passed').length
  407. const failed = results.filter(result => result.status === 'failed').length
  408. const skipped = results.filter(result => result.status === 'skipped').length
  409. const seconds = (durationMs / 1000).toFixed(2)
  410. console.log(`\nrun-gates: ${passed} passed, ${failed} failed, ${skipped} skipped in ${seconds}s.`)
  411. }