keyless-smoke.e2e.ts 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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/code-agent: boot the REAL example
  9. * through the `@deepseek-ai/dsh-stdio-agent` bin against its `cordis.yml`
  10. * (the cordis Loader, `unwrapExports`, the full plugin tree incl. the
  11. * worker-thread code runtime and the registry in `mode: code`), then close
  12. * stdin with no prompt and assert the ready banner + a clean exit.
  13. *
  14. * No prompt is ever sent, so the model is NEVER called and no `run_code`
  15. * turn happens — a dummy key lets `llm-deepseek`'s key-PRESENT check boot
  16. * the tree. This is the export-shape guard (postmortem 0001) for the Code
  17. * Mode composition; the with-key proof lives in `code-mode.e2e.ts`.
  18. */
  19. const binScript = fileURLToPath(new URL('../../../packages/ui/stdio-agent/src/bin.ts', import.meta.url))
  20. const configPath = fileURLToPath(new URL('../cordis.yml', import.meta.url))
  21. const tsxLoader = fileURLToPath(import.meta.resolve('tsx'))
  22. // Dev/test run UNBUILT: resolve `@deepseek-ai/dsh-*` through the root tsconfig
  23. // `paths` map; tsx searches UP from cwd, and we spawn from a temp dir outside
  24. // the repo, so point it at the repo tsconfig.
  25. const repoTsconfig = fileURLToPath(new URL('../../../tsconfig.json', import.meta.url))
  26. let child: ChildProcessWithoutNullStreams | undefined
  27. let workdir: string | undefined
  28. afterEach(async () => {
  29. if (child !== undefined && child.exitCode === null) child.kill('SIGKILL')
  30. child = undefined
  31. if (workdir !== undefined) await rm(workdir, { recursive: true, force: true })
  32. workdir = undefined
  33. })
  34. async function bootAndEof(): Promise<{ stdout: string; code: number }> {
  35. workdir = await mkdtemp(join(tmpdir(), 'code-agent-smoke-'))
  36. const cwd = workdir
  37. return new Promise((resolve, reject) => {
  38. const proc = spawn(
  39. process.execPath,
  40. // --expose-internals: cordis.yml loads the HMR plugin (mirrors demo:code).
  41. ['--expose-internals', '--import', tsxLoader, binScript, configPath],
  42. {
  43. cwd,
  44. env: {
  45. ...process.env,
  46. TSX_TSCONFIG_PATH: repoTsconfig,
  47. // A dummy key so llm-deepseek's apply() (key-PRESENT check only) boots.
  48. // No prompt is sent, so the adapter never streams — no network call.
  49. DEEPSEEK_API_KEY: 'keyless-smoke-no-call',
  50. },
  51. stdio: ['pipe', 'pipe', 'pipe'],
  52. },
  53. )
  54. child = proc
  55. let stdout = ''
  56. let stderr = ''
  57. proc.stdout.setEncoding('utf8')
  58. proc.stdout.on('data', (chunk: string) => { stdout += chunk })
  59. proc.stderr.setEncoding('utf8')
  60. proc.stderr.on('data', (chunk: string) => { stderr += chunk })
  61. const timer = setTimeout(() => {
  62. proc.kill('SIGKILL')
  63. reject(new Error(`code-agent did not exit within 10s. stdout:\n${stdout}\nstderr:\n${stderr}`))
  64. }, 10_000)
  65. proc.on('exit', (code) => {
  66. clearTimeout(timer)
  67. if (code === 0) resolve({ stdout, code })
  68. else reject(new Error(`code-agent exited ${code}. stderr:\n${stderr}`))
  69. })
  70. proc.on('error', (err) => { clearTimeout(timer); reject(err) })
  71. // No prompt — just EOF, so the stdio UI exits without ever running a turn.
  72. proc.stdin.end()
  73. })
  74. }
  75. describe('code-agent keyless smoke (real cordis.yml via the Loader)', () => {
  76. it('boots the Code Mode plugin tree, prints its banner, and exits cleanly on EOF', async () => {
  77. const { stdout, code } = await bootAndEof()
  78. expect(code).toBe(0)
  79. expect(stdout).toContain('code-mode agent ready.')
  80. }, 15_000)
  81. })