keyless-smoke.e2e.ts 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. import { spawn, type ChildProcessWithoutNullStreams } from 'node:child_process'
  2. import { mkdtemp, rm } from 'node:fs/promises'
  3. import { tmpdir } from 'node:os'
  4. import { join } from 'node:path'
  5. import { fileURLToPath } from 'node:url'
  6. import { afterEach, describe, expect, it } from 'vitest'
  7. /**
  8. * Keyless Loader-path smoke for examples/coding-agent: boot the REAL example
  9. * through its `cordis.yml` (the cordis Loader, `unwrapExports`, the full plugin
  10. * tree incl. the extracted `@deepseek-ai/dsh-ui-stdio`), then close stdin with
  11. * no prompt and assert the ready banner + a clean exit.
  12. *
  13. * No prompt is ever sent, so the model is NEVER called — this is why it runs
  14. * without a real key. coding-agent's `cordis.yml` loads `llm-deepseek`, whose
  15. * `apply()` only requires a key to be PRESENT (it does not validate it and only
  16. * uses it when a stream actually starts), so a dummy key lets the tree boot
  17. * while the absence of any prompt guarantees no network call. The value is the
  18. * real-Loader-path guard for the shared UI plugin's export shape (a broken
  19. * `export default` that drops `inject` would crash here — see postmortem 0001),
  20. * complementing coding-agent's with-key e2e suites which prove the real product.
  21. */
  22. const startScript = fileURLToPath(new URL('../start.ts', import.meta.url))
  23. const tsxLoader = fileURLToPath(import.meta.resolve('tsx'))
  24. // Dev/test run UNBUILT: resolve `@deepseek-ai/dsh-*` through the root tsconfig
  25. // `paths` map; tsx searches UP from cwd, and we spawn from a temp dir outside
  26. // the repo, so point it at the repo tsconfig (root is four levels up).
  27. const repoTsconfig = fileURLToPath(new URL('../../../tsconfig.json', import.meta.url))
  28. let child: ChildProcessWithoutNullStreams | undefined
  29. let workdir: string | undefined
  30. afterEach(async () => {
  31. if (child !== undefined && child.exitCode === null) child.kill('SIGKILL')
  32. child = undefined
  33. if (workdir !== undefined) await rm(workdir, { recursive: true, force: true })
  34. workdir = undefined
  35. })
  36. async function bootAndEof(): Promise<{ stdout: string; code: number }> {
  37. workdir = await mkdtemp(join(tmpdir(), 'coding-smoke-'))
  38. const cwd = workdir
  39. return new Promise((resolve, reject) => {
  40. const proc = spawn(
  41. process.execPath,
  42. // --expose-internals: cordis.yml loads the HMR plugin (mirrors demo:coding).
  43. ['--expose-internals', '--import', tsxLoader, startScript],
  44. {
  45. cwd,
  46. env: {
  47. ...process.env,
  48. TSX_TSCONFIG_PATH: repoTsconfig,
  49. // A dummy key so llm-deepseek's apply() (key-PRESENT check only) boots.
  50. // No prompt is sent, so the adapter never streams — no network call.
  51. DEEPSEEK_API_KEY: 'keyless-smoke-no-call',
  52. },
  53. stdio: ['pipe', 'pipe', 'pipe'],
  54. },
  55. )
  56. child = proc
  57. let stdout = ''
  58. let stderr = ''
  59. proc.stdout.setEncoding('utf8')
  60. proc.stdout.on('data', (chunk: string) => { stdout += chunk })
  61. proc.stderr.setEncoding('utf8')
  62. proc.stderr.on('data', (chunk: string) => { stderr += chunk })
  63. const timer = setTimeout(() => {
  64. proc.kill('SIGKILL')
  65. reject(new Error(`coding-agent did not exit within 10s. stdout:\n${stdout}\nstderr:\n${stderr}`))
  66. }, 10_000)
  67. proc.on('exit', (code) => {
  68. clearTimeout(timer)
  69. if (code === 0) resolve({ stdout, code })
  70. else reject(new Error(`coding-agent exited ${code}. stderr:\n${stderr}`))
  71. })
  72. proc.on('error', (err) => { clearTimeout(timer); reject(err) })
  73. // No prompt — just EOF, so the stdio UI exits without ever running a turn.
  74. proc.stdin.end()
  75. })
  76. }
  77. describe('coding-agent keyless smoke (real cordis.yml via the Loader)', () => {
  78. it('boots the full plugin tree, prints its banner, and exits cleanly on EOF', async () => {
  79. const { stdout, code } = await bootAndEof()
  80. expect(code).toBe(0)
  81. expect(stdout).toContain('coding-agent ready.')
  82. }, 15_000)
  83. })