| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279 |
- import { mkdtempSync } from 'node:fs'
- import { tmpdir } from 'node:os'
- import { join } from 'node:path'
- import { describe, expect, it, vi } from 'vitest'
- import { Context } from '@deepseek-ai/cordis'
- import { CallId } from '@deepseek-ai/dsh-llm'
- import { ShellExecutor } from '@deepseek-ai/dsh-shell'
- import type { ShellExecRequest, ShellExecSpec, ShellProcess, ShellProcessRead, ShellRunResult } from '@deepseek-ai/dsh-shell'
- import SystemPrompt from '@deepseek-ai/dsh-system-prompt'
- import ToolRuntime, { TOOL_ABORTED, TOOL_ABORTED_BEFORE_DISPATCH } from '@deepseek-ai/dsh-tools'
- import AgentRegistry from '@deepseek-ai/dsh-agent'
- import type { Agent } from '@deepseek-ai/dsh-agent'
- import SessionStore, { SessionId } from '@deepseek-ai/dsh-session'
- import JsonlSessionPersistence from '@deepseek-ai/dsh-session-persistence-jsonl'
- import LocalJobRegistry from '@deepseek-ai/dsh-jobs-local'
- import * as ToolTasks from '@deepseek-ai/dsh-tool-jobs'
- import ApprovalService from '@deepseek-ai/dsh-user-approval'
- import type { ApprovalOutcome } from '@deepseek-ai/dsh-user-approval'
- import { LocalBashExecutor } from '@deepseek-ai/dsh-bash-local'
- import LocalSubprocessRuntime from '@deepseek-ai/dsh-subprocess-local'
- import SandboxPolicyService from '@deepseek-ai/dsh-sandbox-policy'
- import * as ToolBash from '@deepseek-ai/dsh-tool-bash'
- import * as BashEnvPlugin from '@deepseek-ai/dsh-shell-env'
- import { processOutcome } from '../src/background.ts'
- import { renderProcessRead, renderResult } from '../src/render.ts'
- const testToolSignal = new AbortController().signal
- const spillDir = mkdtempSync(join(tmpdir(), 'dsh-tool-bash-spec-'))
- /** Foreground-only harness: no job runtime (backgrounding fails loud here). */
- async function setup() {
- const ctx = new Context()
- await ctx.plugin(SystemPrompt)
- await ctx.plugin(ToolRuntime)
- await ctx.plugin(AgentRegistry)
- await ctx.plugin(LocalSubprocessRuntime)
- ;(ctx.subprocess as LocalSubprocessRuntime).internals = { spillDir }
- await ctx.plugin(BashEnvPlugin)
- await ctx.plugin(LocalBashExecutor, { timeoutMs: 10_000, graceMs: 200 })
- await ctx.plugin(ToolBash)
- return ctx
- }
- /** Full harness: the generic job runtime + its controller, then the bash tool. */
- async function setupWithTasks() {
- const ctx = new Context()
- await ctx.plugin(SystemPrompt)
- await ctx.plugin(ToolRuntime)
- await ctx.plugin(AgentRegistry)
- await ctx.plugin(LocalJobRegistry)
- await ctx.plugin(ToolTasks)
- await ctx.plugin(LocalSubprocessRuntime)
- ;(ctx.subprocess as LocalSubprocessRuntime).internals = { spillDir }
- await ctx.plugin(BashEnvPlugin)
- await ctx.plugin(LocalBashExecutor, { timeoutMs: 10_000, graceMs: 200 })
- await ctx.plugin(ToolBash)
- return ctx
- }
- /**
- * Build a fake {@link Agent} with the shared agent/session identity, give it a
- * dedicated lifecycle fiber for `Agent.ctx`, and register it in `ctx.agents`.
- */
- function registerFakeAgent(ctx: Context, sessionId: string, inject: (...args: unknown[]) => void = () => {}): Agent {
- const scopeFiber = ctx.plugin(() => {})
- const id = SessionId(sessionId)
- const agent = {
- id,
- ctx: scopeFiber.ctx,
- inject,
- session: { id, header: { version: 0, id, createdAt: 0 } },
- } as unknown as Agent
- ctx.agents.register(agent)
- return agent
- }
- let callCounter = 0
- function call(ctx: Context, name: string, args: unknown, agent?: Agent) {
- return ctx.tools.execute({ signal: testToolSignal, callId: CallId(`call-${++callCounter}`), name, arguments: args, ...agent ? { agent } : {} })
- }
- function text(result: { content: { type: string; text?: string }[] }): string {
- return result.content.filter(block => block.type === 'text').map(block => block.text).join('')
- }
- async function callUntilText(
- ctx: Context,
- name: string,
- args: unknown,
- expected: string,
- timeoutMs = 5_000,
- ): Promise<Awaited<ReturnType<typeof call>>> {
- const deadline = Date.now() + timeoutMs
- let last: Awaited<ReturnType<typeof call>> | undefined
- while (Date.now() < deadline) {
- last = await call(ctx, name, args)
- if (text(last).includes(expected)) return last
- await new Promise(resolve => setTimeout(resolve, 20))
- }
- throw new Error(`${name} output did not include ${JSON.stringify(expected)}; last text was ${JSON.stringify(last !== undefined ? text(last) : '')}`)
- }
- class RecordingSandboxExecutor extends ShellExecutor {
- readonly modes: Array<string | undefined> = []
- override get sandboxMode() {
- return 'read-only' as const
- }
- resolve(request: ShellExecRequest): ShellExecSpec {
- return {
- command: request.command,
- workdir: request.workdir ?? process.cwd(),
- stdoutMaxBytes: request.stdoutMaxBytes ?? 64_000,
- timeoutMs: request.timeoutMs ?? 1000,
- ...request.signal ? { signal: request.signal } : {},
- sandboxPolicy: request.sandboxPolicy ?? { mode: 'read-only', workspaceRoot: process.cwd() },
- }
- }
- run(spec: ShellExecSpec): Promise<ShellRunResult> {
- this.modes.push(spec.sandboxPolicy?.mode)
- return Promise.resolve({
- exitCode: 0,
- signal: null,
- timedOut: false,
- aborted: false,
- timeoutMs: spec.timeoutMs,
- stdout: { text: 'ok', truncated: false },
- stderr: { text: '', truncated: false },
- sandbox: {
- mode: spec.sandboxPolicy?.mode ?? 'read-only',
- denied: false,
- ...spec.command === 'without optional sandbox facts'
- ? {}
- : { enforcement: 'full' as const, runnerFailed: false },
- },
- })
- }
- start(spec: ShellExecSpec): ShellProcess {
- this.modes.push(spec.sandboxPolicy?.mode)
- return {
- status: 'completed',
- exitCode: 0,
- signal: null,
- done: Promise.resolve(),
- sandbox: { mode: spec.sandboxPolicy?.mode ?? 'read-only', denied: false },
- readOutput: () => ({ delta: '', lossy: false }),
- kill: () => false,
- }
- }
- }
- /** Test executor that records whether the background start boundary was crossed. */
- class CountingStartExecutor extends ShellExecutor {
- starts = 0
- resolve(request: ShellExecRequest): ShellExecSpec {
- return {
- command: request.command,
- workdir: request.workdir ?? '/x',
- timeoutMs: request.timeoutMs ?? 0,
- stdoutMaxBytes: request.stdoutMaxBytes ?? 64_000,
- sandboxPolicy: request.sandboxPolicy,
- }
- }
- run(): Promise<ShellRunResult> { return Promise.reject(new Error('unused')) }
- start(): ShellProcess {
- this.starts += 1
- return {
- status: 'completed',
- exitCode: 0,
- signal: null,
- done: Promise.resolve(),
- readOutput: () => ({ delta: '', lossy: false }),
- kill: () => false,
- }
- }
- }
- async function setupSandboxed(withApproval = false) {
- const ctx = new Context()
- await ctx.plugin(SystemPrompt)
- await ctx.plugin(ToolRuntime)
- await ctx.plugin(AgentRegistry)
- await ctx.plugin(LocalJobRegistry)
- await ctx.plugin(ToolTasks)
- await ctx.plugin(SandboxPolicyService, {})
- await ctx.plugin(RecordingSandboxExecutor)
- if (withApproval) await ctx.plugin(ApprovalService)
- await ctx.plugin(BashEnvPlugin)
- await ctx.plugin(ToolBash)
- return { ctx, bash: ctx.shell as RecordingSandboxExecutor }
- }
- function sandboxAgent(
- mode?: 'read-only' | 'workspace-write' | 'danger-full-access',
- ctx?: Context,
- onAppend?: (type: string) => void,
- ): Agent {
- const events: Array<{ type: string; data?: Record<string, unknown> }> = [{ type: 'turn/start' }]
- if (mode !== undefined) events.push({ type: 'sandbox/mode', data: { mode } })
- const id = SessionId('sandbox-session')
- return {
- id,
- ...ctx === undefined ? {} : { ctx: ctx.plugin(() => {}).ctx },
- session: {
- id,
- header: { version: 0, id, createdAt: 0 },
- events,
- append: (type: string, data: Record<string, unknown>) => {
- const event = { type, data }
- events.push(event)
- onAppend?.(type)
- return event
- },
- },
- } as unknown as Agent
- }
- describe('bash tool', () => {
- it('returns stdout for a successful command', async () => {
- const ctx = await setup()
- const result = await call(ctx, 'bash', { command: 'echo hello', description: 'test command' })
- expect(result.isError).toBe(false)
- if (result.isError) throw new Error('expected bash success')
- expect(result.value).toMatchObject({
- kind: 'foreground',
- exitCode: 0,
- signal: null,
- timedOut: false,
- aborted: false,
- stdout: { text: 'hello\n', truncated: false },
- stderr: { text: '', truncated: false },
- })
- expect(text(result)).toBe('hello\n')
- })
- it('reports (no output) for silent commands', async () => {
- const ctx = await setup()
- const result = await call(ctx, 'bash', { command: 'true', description: 'test command' })
- expect(text(result)).toBe('(no output)')
- })
- it('marks stderr sections', async () => {
- const ctx = await setup()
- const result = await call(ctx, 'bash', { command: 'echo out; echo err >&2', description: 'test command' })
- expect(text(result)).toBe('out\n[stderr]\nerr\n')
- expect(result.isError).toBe(false)
- })
- it('reports non-zero exits without isError', async () => {
- const ctx = await setup()
- const result = await call(ctx, 'bash', { command: 'echo failing; exit 3', description: 'test command' })
- expect(result.isError).toBe(false)
- expect(text(result)).toBe('failing\n[exit code: 3]')
- })
- it('reports timeout kills with both markers (timeout first)', async () => {
- const ctx = await setup()
- const result = await call(ctx, 'bash', { command: 'sleep 60', description: 'test command', timeoutMs: 100 })
- expect(result.isError).toBe(false)
- expect(text(result)).toBe('(no output)\n[timed out after 100ms]\n[killed by signal: SIGTERM]')
- })
- it('reports a timeout even when the command traps the signal and exits 0', async () => {
- // The signal-independent timeout marker: a trapped SIGTERM that exits 0
- // after our timer fired must NOT look like a clean success. (bash may
- // print "Terminated" to stderr for the killed sleep — environment
- // dependent — so assert the marker, not the exact body.)
- const ctx = await setup()
- const result = await call(ctx, 'bash', { command: 'trap "exit 0" TERM; sleep 60', description: 'test command', timeoutMs: 100 })
- expect(result.isError).toBe(false)
- expect(text(result)).toContain('[timed out after 100ms]')
- expect(text(result)).not.toContain('[exit code:')
- })
- it('reports truncation with the spill path', async () => {
- const ctx = new Context()
- await ctx.plugin(SystemPrompt)
- await ctx.plugin(ToolRuntime)
- await ctx.plugin(LocalSubprocessRuntime)
- ;(ctx.subprocess as LocalSubprocessRuntime).internals = { spillDir }
- await ctx.plugin(LocalBashExecutor, { maxOutputBytes: 100, graceMs: 200 })
- await ctx.plugin(BashEnvPlugin)
- await ctx.plugin(ToolBash)
- const result = await call(ctx, 'bash', { command: 'for i in $(seq 1 100); do printf "line-%04d\\n" $i; done', description: 'test command' })
- expect(text(result)).toContain('[output truncated; full output: ')
- expect(text(result)).toContain('line-0100')
- })
- it('honors workdir', async () => {
- const ctx = await setup()
- const result = await call(ctx, 'bash', { command: 'pwd', description: 'test command', workdir: '/tmp' })
- expect(text(result).trim()).toMatch(/\/tmp$/)
- })
- it('surfaces spawn failures as isError', async () => {
- const ctx = await setup()
- const result = await call(ctx, 'bash', { command: 'true', description: 'test command', workdir: '/nonexistent-dsh' })
- expect(result.isError).toBe(true)
- expect(text(result)).toMatch(/ENOENT/)
- })
- it('surfaces foreground aborts as the structured TOOL_ABORTED error', async () => {
- const ctx = await setup()
- const controller = new AbortController()
- const pending = ctx.tools.execute({
- callId: CallId('call-abort'),
- name: 'bash',
- arguments: { command: 'sleep 60', description: 'test command' },
- signal: controller.signal,
- })
- setTimeout(() => { controller.abort() }, 50)
- const result = await pending
- expect(result.isError).toBe(true)
- expect(result.error).toMatchObject({
- message: 'tool call aborted',
- info: { name: 'AbortError', code: TOOL_ABORTED },
- })
- })
- // Type and required-key violations are rejected by the harness
- // (defineTool validates against the ParameterSchemaSpec — the arg-validation Agent Note) before execute.
- it.each([
- [{}, /missing required property "command"/],
- [{ command: 42, description: 'd' }, /"command" must be a string/],
- [{ command: 'x' }, /missing required property "description"/],
- [{ command: 'x', description: 7 }, /"description" must be a string/],
- [{ command: 'x', description: 'd', timeoutMs: 'soon' }, /"timeoutMs" must be a number/],
- [{ command: 'x', description: 'd', workdir: 7 }, /"workdir" must be a string/],
- [{ command: 'x', description: 'd', run_in_background: 'yes' }, /"run_in_background" must be a boolean/],
- ])('rejects schema-invalid args %j', async (args, pattern) => {
- const ctx = await setup()
- const result = await call(ctx, 'bash', args)
- expect(result.isError).toBe(true)
- expect(text(result)).toMatch(pattern)
- })
- // Value constraints the ParameterSchemaSpec can't express stay in the tool body.
- it.each([
- [{ command: ' ', description: 'd' }, /invalid command/],
- [{ command: 'x', description: ' ' }, /invalid description/],
- [{ command: 'x', description: 'd', timeoutMs: -1 }, /invalid timeoutMs/],
- ])('rejects value-invalid args %j', async (args, pattern) => {
- const ctx = await setup()
- const result = await call(ctx, 'bash', args)
- expect(result.isError).toBe(true)
- expect(text(result)).toMatch(pattern)
- })
- it('rejects a non-JSON numeric argument before tool-specific validation', async () => {
- const ctx = await setup()
- const result = await call(ctx, 'bash', {
- command: 'x', description: 'd', timeoutMs: Number.NaN,
- })
- expect(result.isError).toBe(true)
- expect(text(result)).toContain('tool execution arguments must be losslessly JSON-serializable')
- })
- it('registers the bash schema with run_in_background exposed by default', async () => {
- const ctx = await setup()
- const schemas = ctx.tools.schemas()
- expect(schemas.map(schema => schema.name)).toEqual(['bash'])
- const bashSchema = schemas[0]!
- expect(bashSchema.parameters).toMatchObject({
- type: 'object',
- required: ['command', 'description'],
- })
- expect(Object.keys(bashSchema.parameters.properties as Record<string, unknown>))
- .toContain('run_in_background')
- expect(bashSchema.description).toContain('job_output')
- })
- it('contributes the exit-code habit as its prompt section (guidance the descriptions cannot carry)', async () => {
- const ctx = await setup()
- ctx.systemPrompt.section({ name: 'test:before-bash', order: 104, text: 'before' })
- ctx.systemPrompt.section({ name: 'test:after-bash', order: 106, text: 'after' })
- const assembly = await ctx.systemPrompt.assemble()
- const section = assembly.sections.find(s => s.name === 'tool:bash')
- expect(assembly.sections.map(s => s.name)).toEqual([
- 'harness:identity',
- 'deployment:persona',
- 'test:before-bash',
- 'tool:bash',
- 'test:after-bash',
- ])
- expect(section?.text).toContain('[exit code: N]')
- })
- it('unregisters everything when the plugin fiber is disposed (HMR safety)', async () => {
- const ctx = new Context()
- await ctx.plugin(SystemPrompt)
- await ctx.plugin(ToolRuntime)
- await ctx.plugin(LocalSubprocessRuntime)
- await ctx.plugin(LocalBashExecutor, {})
- await ctx.plugin(BashEnvPlugin)
- const fiber = await ctx.plugin(ToolBash)
- expect(ctx.tools.schemas()).toHaveLength(1)
- expect((await ctx.systemPrompt.assemble()).sections.map(s => s.name)).toEqual(['harness:identity', 'deployment:persona', 'tool:bash'])
- await fiber.dispose()
- expect(ctx.tools.schemas()).toHaveLength(0)
- // Only the system-prompt plugin's own built-in sections remain.
- expect((await ctx.systemPrompt.assemble()).sections.map(s => s.name)).toEqual(['harness:identity', 'deployment:persona'])
- })
- it('tools depend on the executor: no registration without ctx.shell', async () => {
- const ctx = new Context()
- await ctx.plugin(SystemPrompt)
- await ctx.plugin(ToolRuntime)
- // inject: ['tools', 'bash'] keeps the plugin pending until bash exists.
- await ctx.plugin(BashEnvPlugin)
- await ctx.plugin(ToolBash)
- expect(ctx.tools.schemas()).toHaveLength(0)
- await ctx.plugin(LocalSubprocessRuntime)
- await ctx.plugin(LocalBashExecutor, {})
- await new Promise(resolve => setTimeout(resolve, 0))
- expect(ctx.tools.schemas()).toHaveLength(1)
- })
- it('applies the built-in background default when apply() receives a bare config', async () => {
- // Bypasses the schemastery defaults on purpose: apply() must stand on its
- // own `?? true` fallback when embedded programmatically without the schema.
- const ctx = new Context()
- await ctx.plugin(SystemPrompt)
- await ctx.plugin(ToolRuntime)
- await ctx.plugin(LocalSubprocessRuntime)
- await ctx.plugin(LocalBashExecutor, {})
- ToolBash.apply(ctx, {})
- const schema = ctx.tools.schemas()[0]!
- expect(Object.keys(schema.parameters.properties as Record<string, unknown>))
- .toContain('run_in_background')
- })
- })
- describe('background execution through the job runtime', () => {
- it('run_in_background acks with the job id, readable through the REAL job_output tool', async () => {
- const ctx = await setupWithTasks()
- const started = await call(ctx, 'bash', { command: 'echo bg-ok', description: 'test command', run_in_background: true })
- expect(started.isError).toBe(false)
- if (started.isError) throw new Error('expected background bash success')
- expect(started.value).toEqual({ kind: 'background', jobId: 'bash-1' })
- expect(text(started)).toBe('started background job bash-1')
- const read = await callUntilText(ctx, 'job_output', { job_id: 'bash-1' }, 'bg-ok')
- expect(text(read)).toContain('bg-ok')
- // A later read reports the terminal outcome in the generic status line.
- const final = await callUntilText(ctx, 'job_output', { job_id: 'bash-1' }, '[status: completed, exit code: 0]')
- expect(final.isError).toBe(false)
- })
- it('a running background job is killable through the REAL job_kill tool', async () => {
- const ctx = await setupWithTasks()
- await call(ctx, 'bash', { command: 'sleep 60', description: 'test command', run_in_background: true })
- const killed = await call(ctx, 'job_kill', { job_id: 'bash-1' })
- expect(text(killed)).toBe('requested cancellation of job bash-1')
- // The cancel reached the process handle; the task settles as killed with
- // the signal detail mapped by processOutcome.
- const final = await call(ctx, 'job_output', { job_id: 'bash-1', wait: true })
- expect(text(final)).toContain('[status: killed, signal: SIGTERM]')
- })
- it('a self-signal background exit is reported as killed through the REAL job_output tool', async () => {
- const ctx = await setupWithTasks()
- await call(ctx, 'bash', { command: 'kill -TERM $$', description: 'test command', run_in_background: true })
- const final = await call(ctx, 'job_output', { job_id: 'bash-1', wait: true })
- expect(text(final)).toContain('[status: killed, signal: SIGTERM]')
- })
- it('a background job started by an agent is registered with that agent as owner', async () => {
- // The producer must forward exec.agent as the job owner.
- const ctx = await setupWithTasks()
- const agent = registerFakeAgent(ctx, 'sess-owner')
- const started = await call(ctx, 'bash', { command: 'sleep 60', description: 'test command', run_in_background: true }, agent)
- expect(text(started)).toBe('started background job bash-1')
- const anon = await call(ctx, 'job_output', { job_id: 'bash-1' })
- expect(anon.isError).toBe(true)
- expect(text(anon)).toMatch(/belongs to another session/)
- const killed = await call(ctx, 'job_kill', { job_id: 'bash-1' }, agent)
- expect(killed.isError).toBe(false)
- await call(ctx, 'job_output', { job_id: 'bash-1', wait: true }, agent) // await settlement — no orphan
- })
- it('fails loud when the job runtime is not loaded', async () => {
- const ctx = await setup() // no LocalJobRegistry / ToolTasks
- const result = await call(ctx, 'bash', { command: 'sleep 60', description: 'test command', run_in_background: true })
- expect(result.isError).toBe(true)
- expect(text(result)).toContain('background jobs unavailable: load @deepseek-ai/dsh-jobs and @deepseek-ai/dsh-tool-jobs')
- })
- it('a pre-aborted call is skipped before the process starts', async () => {
- const ctx = new Context()
- await ctx.plugin(SystemPrompt)
- await ctx.plugin(ToolRuntime)
- await ctx.plugin(AgentRegistry)
- await ctx.plugin(LocalJobRegistry)
- await ctx.plugin(ToolTasks)
- await ctx.plugin(CountingStartExecutor)
- await ctx.plugin(BashEnvPlugin)
- await ctx.plugin(ToolBash)
- const controller = new AbortController()
- controller.abort()
- const result = await ctx.tools.execute({
- callId: CallId('call-pre-aborted'),
- name: 'bash',
- arguments: { command: 'sleep 60', description: 'test command', run_in_background: true },
- signal: controller.signal,
- })
- expect(result.isError).toBe(true)
- expect(result.error).toEqual({
- message: 'tool call aborted before dispatch',
- info: { name: 'AbortError', code: TOOL_ABORTED_BEFORE_DISPATCH },
- })
- expect(text(result)).toBe('Error: tool call aborted before dispatch')
- expect((ctx.shell as CountingStartExecutor).starts).toBe(0)
- })
- it('never spawns the process when tasks.start preflight throws (no orphan, by construction)', async () => {
- // With no job controller, preflight fails before the executor can spawn.
- const ctx = new Context()
- await ctx.plugin(SystemPrompt)
- await ctx.plugin(ToolRuntime)
- await ctx.plugin(AgentRegistry)
- await ctx.plugin(LocalJobRegistry)
- await ctx.plugin(CountingStartExecutor)
- await ctx.plugin(BashEnvPlugin)
- await ctx.plugin(ToolBash)
- const result = await call(ctx, 'bash', { command: 'sleep 60', description: 'test command', run_in_background: true })
- expect(result.isError).toBe(true)
- expect(text(result)).toContain('no job controller serves this agent')
- // Declare-then-execute: the failed preflight means no process ever ran.
- expect((ctx.shell as CountingStartExecutor).starts).toBe(0)
- })
- it('enableRunInBackground: false removes the parameter and flips the description', async () => {
- const ctx = new Context()
- await ctx.plugin(SystemPrompt)
- await ctx.plugin(ToolRuntime)
- await ctx.plugin(LocalSubprocessRuntime)
- await ctx.plugin(BashEnvPlugin)
- await ctx.plugin(LocalBashExecutor, {})
- await ctx.plugin(ToolBash, { enableRunInBackground: false })
- const schema = ctx.tools.schemas().find(s => s.name === 'bash')!
- expect(Object.keys(schema.parameters.properties as Record<string, unknown>))
- .toEqual(['command', 'description', 'timeoutMs', 'workdir'])
- expect(schema.description).toContain('Background execution is not available')
- expect(schema.description).not.toContain('run_in_background')
- // The registry-held definition agrees (schema and capability never disagree).
- const parameters = ctx.tools.get('bash')!.parameters as { properties: Record<string, unknown> }
- expect('run_in_background' in parameters.properties).toBe(false)
- // Schema omission is advertising; execution must also enforce the opt-out.
- const forced = await call(ctx, 'bash', { command: 'echo hi', description: 'test command', run_in_background: true })
- expect(forced.isError).toBe(true)
- expect(text(forced)).toContain('run_in_background is disabled for this deployment')
- const foreground = await call(ctx, 'bash', { command: 'echo hi', description: 'test command' })
- expect(foreground.isError).toBe(false)
- })
- })
- describe('sandbox escalation through the generic task producer', () => {
- const escalate = {
- command: 'true',
- description: 'test escalation',
- sandbox_permissions: 'workspace-write',
- justification: 'the command needs workspace writes',
- }
- it('fails load when a confining executor has no shared sandbox-policy resolver', async () => {
- const ctx = new Context()
- await ctx.plugin(SystemPrompt)
- await ctx.plugin(ToolRuntime)
- await ctx.plugin(RecordingSandboxExecutor)
- await ctx.plugin(BashEnvPlugin)
- await expect(ctx.plugin(ToolBash)).rejects.toThrow('tool-bash: the mounted bash executor confines but ctx.sandboxPolicy is missing')
- })
- it('advertises the sandbox fields and validates their pairing', async () => {
- const { ctx } = await setupSandboxed()
- const schema = ctx.tools.schemas().find(item => item.name === 'bash')!
- const properties = schema.parameters.properties as Record<string, { enum?: string[] }>
- expect(properties['sandbox_permissions']?.enum).toEqual(['workspace-write', 'danger-full-access'])
- expect(schema.description).toContain('approval prompt')
- for (const args of [
- { command: 'true', description: 'd', sandbox_permissions: 'workspace-write' },
- { command: 'true', description: 'd', justification: 'why' },
- { command: 'true', description: 'd', sandbox_permissions: 'workspace-write', justification: ' ' },
- ]) {
- expect((await call(ctx, 'bash', args)).isError).toBe(true)
- }
- })
- it('rejects injected escalation without a sandbox and non-widening escalation without prompting', async () => {
- const plain = await setup()
- expect(text(await call(plain, 'bash', escalate))).toContain('not available in this composition')
- const { ctx } = await setupSandboxed(true)
- const prompted = vi.fn()
- ctx.on('approval/request', () => { prompted(); return Promise.resolve<ApprovalOutcome>('allowed-once') })
- const result = await call(ctx, 'bash', { ...escalate, sandbox_permissions: 'workspace-write' }, sandboxAgent('workspace-write'))
- expect(text(result)).toContain('not strictly wider')
- expect(prompted).not.toHaveBeenCalled()
- const malformed = sandboxAgent()
- ;(malformed.session.events as unknown as Array<{ type: string; data: { mode: string } }>).push({
- type: 'sandbox/mode',
- data: { mode: 'unknown-mode' },
- })
- expect(text(await call(ctx, 'bash', escalate, malformed))).toContain('not strictly wider')
- })
- it('fails closed when approval cannot be routed', async () => {
- const withoutService = await setupSandboxed()
- expect(text(await call(withoutService.ctx, 'bash', escalate, sandboxAgent()))).toContain('no approval service')
- const withService = await setupSandboxed(true)
- expect(text(await call(withService.ctx, 'bash', escalate))).toContain('no agent to route')
- expect(text(await call(withService.ctx, 'bash', escalate, sandboxAgent()))).toContain('no approval channel')
- })
- it.each([
- ['rejected', 'user rejected'],
- ['cancelled', 'was cancelled'],
- ] as const)('maps an approval %s to its distinct failure', async (outcome, message) => {
- const { ctx, bash } = await setupSandboxed(true)
- ctx.on('approval/request', () => Promise.resolve<ApprovalOutcome>(outcome))
- const result = await call(ctx, 'bash', escalate, sandboxAgent())
- expect(text(result)).toContain(message)
- expect(bash.modes).toEqual([])
- })
- it('runs a granted foreground or background call under the approved mode', async () => {
- const { ctx, bash } = await setupSandboxed(true)
- ctx.on('approval/request', () => Promise.resolve<ApprovalOutcome>('allowed-once'))
- const agent = sandboxAgent(undefined, ctx)
- ctx.agents.register(agent)
- const foreground = await ctx.tools.execute({
- callId: CallId('sandbox-signal'),
- name: 'bash',
- arguments: escalate,
- agent,
- signal: new AbortController().signal,
- })
- expect(foreground.isError).toBe(false)
- const background = await call(ctx, 'bash', { ...escalate, run_in_background: true }, agent)
- expect(text(background)).toBe('started background job bash-1')
- expect(bash.modes).toEqual(['workspace-write', 'workspace-write'])
- })
- it('does not publish detached work when cancellation follows the escalation grant', async () => {
- const { ctx, bash } = await setupSandboxed(true)
- const controller = new AbortController()
- const agent = sandboxAgent(undefined, ctx, (type) => {
- if (type === 'approval/decided') controller.abort()
- })
- ctx.agents.register(agent)
- ctx.on('approval/request', () => Promise.resolve<ApprovalOutcome>('allowed-once'))
- const start = vi.spyOn(bash, 'start')
- const result = await ctx.tools.execute({
- callId: CallId('cancelled-escalation-background'),
- name: 'bash',
- arguments: { ...escalate, run_in_background: true },
- agent,
- signal: controller.signal,
- })
- expect(result.error).toEqual({
- message: 'tool call aborted',
- info: { name: 'AbortError', code: TOOL_ABORTED },
- })
- expect(text(result)).toBe('Error: tool call aborted')
- expect(start).not.toHaveBeenCalled()
- })
- it('uses the session override for ordinary calls and evaluates widening against it', async () => {
- const { ctx, bash } = await setupSandboxed(true)
- const agent = sandboxAgent('workspace-write')
- await call(ctx, 'bash', { command: 'true', description: 'ordinary' }, agent)
- ctx.on('approval/request', () => Promise.resolve<ApprovalOutcome>('allowed-once'))
- await call(ctx, 'bash', { ...escalate, sandbox_permissions: 'danger-full-access' }, agent)
- expect(bash.modes).toEqual(['workspace-write', 'danger-full-access'])
- })
- it('omits sandbox facts the executor did not acquire from the canonical result', async () => {
- const { ctx } = await setupSandboxed()
- const result = await call(ctx, 'bash', {
- command: 'without optional sandbox facts',
- description: 'exercise optional sandbox facts',
- })
- if (result.isError) throw new Error('expected foreground bash success')
- expect(result.value).toMatchObject({
- kind: 'foreground',
- sandbox: { mode: 'read-only', denied: false },
- })
- expect((result.value as { sandbox: object }).sandbox).not.toHaveProperty('enforcement')
- expect((result.value as { sandbox: object }).sandbox).not.toHaveProperty('runnerFailed')
- })
- it('keeps the exhaustiveness backstop for a rogue approval implementation', async () => {
- const { ctx } = await setupSandboxed(true)
- ctx.approval.request = () => Promise.resolve('rogue' as ApprovalOutcome)
- const result = await call(ctx, 'bash', escalate, sandboxAgent())
- expect(text(result)).toContain('unreachable variant in EscalationOutcome')
- })
- })
- describe('renderProcessRead', () => {
- const base: ShellProcessRead = { delta: 'out\n', lossy: false }
- it('returns the delta verbatim for a lossless read', () => {
- expect(renderProcessRead(base)).toBe('out\n')
- expect(renderProcessRead({ delta: '', lossy: false })).toBe('')
- })
- it('appends the loss notice with the available spill paths', () => {
- expect(renderProcessRead({ ...base, lossy: true, stdoutSpillPath: '/spill/out.log' }))
- .toBe('out\n[some output was dropped from memory; full output: /spill/out.log]')
- expect(renderProcessRead({ ...base, lossy: true, stdoutSpillPath: '/spill/out.log', stderrSpillPath: '/spill/err.log' }))
- .toBe('out\n[some output was dropped from memory; full output: /spill/out.log, /spill/err.log]')
- })
- it('reports (unavailable) when a lossy read has no safe spill path', () => {
- expect(renderProcessRead({ ...base, lossy: true }))
- .toBe('out\n[some output was dropped from memory; full output: (unavailable)]')
- })
- it('an empty lossy delta is the notice alone', () => {
- expect(renderProcessRead({ delta: '', lossy: true, stderrSpillPath: '/spill/err.log' }))
- .toBe('[some output was dropped from memory; full output: /spill/err.log]')
- })
- it('inserts the separating newline only when the delta lacks one', () => {
- expect(renderProcessRead({ delta: 'tail', lossy: true }))
- .toBe('tail\n[some output was dropped from memory; full output: (unavailable)]')
- expect(renderProcessRead({ delta: 'tail\n', lossy: true }))
- .toBe('tail\n[some output was dropped from memory; full output: (unavailable)]')
- })
- it('appends settled sandbox denial and runner-failure facts', () => {
- expect(renderProcessRead(base, { mode: 'read-only', denied: true }, ['workspace-write']))
- .toContain('[sandbox: escalation available')
- expect(renderProcessRead({ delta: 'tail', lossy: false }, { mode: 'read-only', denied: true }))
- .toBe('tail\n[sandbox: file access denied under read-only mode]')
- const runner = renderProcessRead(
- { delta: '', lossy: false },
- { mode: 'workspace-write', denied: true, runnerFailed: true },
- ['danger-full-access'],
- )
- expect(runner).toContain('sandbox runner itself failed under workspace-write mode')
- expect(runner).not.toContain('file access denied')
- })
- })
- describe('processOutcome', () => {
- function settled(over: Partial<ShellProcess>): ShellProcess {
- return {
- status: 'completed',
- exitCode: 0,
- signal: null,
- done: Promise.resolve(),
- readOutput: () => ({ delta: '', lossy: false }),
- kill: () => false,
- ...over,
- }
- }
- it('maps a signal-killed process to killed with the signal detail', () => {
- expect(processOutcome(settled({ status: 'killed', signal: 'SIGTERM' })))
- .toEqual({ status: 'killed', detail: 'signal: SIGTERM' })
- })
- it('maps a killed process without a recorded signal (kill raced exit / spawn failure)', () => {
- expect(processOutcome(settled({ status: 'killed', exitCode: null })))
- .toEqual({ status: 'killed', detail: 'killed before exit' })
- })
- it('maps a completed process to its exit code', () => {
- expect(processOutcome(settled({ exitCode: 3 })))
- .toEqual({ status: 'completed', detail: 'exit code: 3' })
- })
- it('defensively reads a null exit code as 0 (handle shapes from other executors)', () => {
- expect(processOutcome(settled({ exitCode: null })))
- .toEqual({ status: 'completed', detail: 'exit code: 0' })
- })
- })
- describe('session-cwd routing (per-session workdir)', () => {
- // An agent whose session header carries a cwd (what session/new records).
- const agentInCwd = (cwd: string) =>
- ({ inject: () => undefined, session: { header: { version: 0, id: 'c', createdAt: 0, cwd } } }) as unknown as Agent
- it('defaults bash to the agent\'s session cwd (not the server launch dir)', async () => {
- const ctx = await setup()
- const result = await call(ctx, 'bash', { command: 'pwd', description: 'pwd' }, agentInCwd('/tmp'))
- expect(text(result).trim()).toMatch(/\/tmp$/)
- })
- it('an explicit absolute workdir overrides the session cwd', async () => {
- const ctx = await setup()
- const result = await call(ctx, 'bash', { command: 'pwd', description: 'pwd', workdir: '/tmp' }, agentInCwd('/'))
- expect(text(result).trim()).toMatch(/\/tmp$/)
- })
- it('a relative workdir is resolved against the session cwd', async () => {
- const ctx = await setup()
- // session cwd /usr + relative 'bin' → /usr/bin
- const result = await call(ctx, 'bash', { command: 'pwd', description: 'pwd', workdir: 'bin' }, agentInCwd('/usr'))
- expect(text(result).trim()).toMatch(/\/usr\/bin$/)
- })
- it('two sessions with different cwds each run bash in their own dir', async () => {
- const ctx = await setup()
- const inUsr = await call(ctx, 'bash', { command: 'pwd', description: 'pwd' }, agentInCwd('/usr'))
- const inTmp = await call(ctx, 'bash', { command: 'pwd', description: 'pwd' }, agentInCwd('/tmp'))
- expect(text(inUsr).trim()).toMatch(/\/usr$/)
- expect(text(inTmp).trim()).toMatch(/\/tmp$/)
- })
- it('falls back to the executor default when the agent has no session cwd', async () => {
- const ctx = await setup()
- // No exec.agent at all → executor uses its config/process.cwd() default.
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('cwd-noagent'), name: 'bash', arguments: { command: 'pwd', description: 'pwd' } })
- expect(result.isError).toBe(false)
- expect(text(result).trim().length).toBeGreaterThan(0)
- })
- })
- describe('renderResult', () => {
- const base = {
- exitCode: 0 as number | null,
- signal: null as NodeJS.Signals | null,
- timedOut: false,
- aborted: false,
- timeoutMs: 1000,
- stdout: { text: '', truncated: false },
- stderr: { text: '', truncated: false },
- }
- it('renders stderr-only output without a stdout prefix', () => {
- expect(renderResult({ ...base, stderr: { text: 'err\n', truncated: false } }))
- .toBe('[stderr]\nerr\n')
- })
- it('adds a separator when stdout does not end with a newline', () => {
- expect(renderResult({
- ...base,
- stdout: { text: 'out', truncated: false },
- stderr: { text: 'err', truncated: false },
- })).toBe('out\n[stderr]\nerr')
- })
- it('appends exit-code markers after a newline for unterminated output', () => {
- expect(renderResult({ ...base, exitCode: 7, stdout: { text: 'x', truncated: false } }))
- .toBe('x\n[exit code: 7]')
- })
- it('renders signal kills without the timeout marker when not timed out', () => {
- expect(renderResult({ ...base, exitCode: null, signal: 'SIGKILL' }))
- .toBe('(no output)\n[killed by signal: SIGKILL]')
- })
- it('reports a timeout that exited 0 (trapped signal) without a kill marker', () => {
- expect(renderResult({ ...base, exitCode: 0, signal: null, timedOut: true }))
- .toBe('(no output)\n[timed out after 1000ms]')
- })
- it('orders the timeout marker before a kill marker', () => {
- expect(renderResult({ ...base, exitCode: null, signal: 'SIGTERM', timedOut: true }))
- .toBe('(no output)\n[timed out after 1000ms]\n[killed by signal: SIGTERM]')
- })
- it('notes truncation with a fallback when the spill path is missing', () => {
- expect(renderResult({ ...base, stdout: { text: 'tail', truncated: true } }))
- .toBe('tail\n[output truncated; full output: (unavailable)]')
- })
- it('reports sandbox denials before exit status and hints only when escalation is advertised', () => {
- const result: ShellRunResult = {
- exitCode: 1,
- signal: null,
- timedOut: false,
- aborted: false,
- timeoutMs: 1000,
- stdout: { text: '', truncated: false },
- stderr: { text: 'denied', truncated: false },
- sandbox: { mode: 'read-only', denied: true },
- }
- expect(renderResult(result)).toMatch(/denied under read-only mode\]\n\[exit code: 1\]$/)
- expect(renderResult(result, ['workspace-write'])).toContain('[sandbox: escalation available')
- expect(renderResult({ ...result, sandbox: { mode: 'read-only', denied: false } }, ['workspace-write']))
- .not.toContain('[sandbox:')
- })
- })
- describe('tool-owned UI presentation (presentCall / presentResult)', () => {
- it('bash presentCall: a foreground run is a terminal card (command title, description, workdir → cwd absolute or relative)', async () => {
- const ctx = await setup()
- // No explicit workdir → a terminal card with no cwd (the UI bridge fills the
- // session cwd it owns; the pure presenter can't see it).
- expect(ctx.tools.get('bash')?.presentCall?.({ command: 'ls -la src', description: 'List files in src' }))
- .toEqual({ card: 'terminal', title: 'ls -la src', description: 'List files in src' })
- // An ABSOLUTE workdir is surfaced verbatim as the terminal cwd header.
- expect(ctx.tools.get('bash')?.presentCall?.({ command: 'pwd', description: 'Print dir', workdir: '/tmp/x' }))
- .toEqual({ card: 'terminal', title: 'pwd', description: 'Print dir', cwd: '/tmp/x' })
- // A RELATIVE workdir is passed through AS-IS (the bridge resolves it against
- // the session cwd, matching where execution runs) — not dropped.
- expect(ctx.tools.get('bash')?.presentCall?.({ command: 'pwd', description: 'Print dir', workdir: 'sub' }))
- .toEqual({ card: 'terminal', title: 'pwd', description: 'Print dir', cwd: 'sub' })
- })
- it('bash presentResult: a terminal result carries RAW output (newlines intact) + parsed exit code', async () => {
- const ctx = await setup()
- const present = ctx.tools.get('bash')!.presentResult!(
- { command: 'printf "hi\\n\\n"', description: 'echo' },
- // A clean run renders no exit marker at all, so the body is the raw bytes.
- { content: [{ type: 'text', text: 'hi\n\n' }], isError: false },
- )
- // A terminal result keeps the RAW bytes (newlines intact) a terminal renderer
- // needs; the bridge derives the fenced fallback.
- expect(present).toEqual({ card: 'terminal', output: 'hi\n\n', exitCode: 0 })
- })
- it('bash presentResult: a non-zero exit and a signal kill parse into exitCode / signal', async () => {
- const ctx = await setup()
- const args = { command: 'x', description: 'x' }
- const nonzero = ctx.tools.get('bash')!.presentResult!(args, { content: [{ type: 'text', text: 'oops\n[exit code: 3]' }], isError: false })
- expect(nonzero).toEqual({ card: 'terminal', output: 'oops', exitCode: 3 })
- const killed = ctx.tools.get('bash')!.presentResult!(args, { content: [{ type: 'text', text: 'gone\n[killed by signal: SIGKILL]' }], isError: false })
- expect(killed).toEqual({ card: 'terminal', output: 'gone', signal: 'SIGKILL' })
- })
- it('bash presentResult: markers a pill CANNOT show (timeout, sandbox denial) stay in the terminal output', async () => {
- const ctx = await setup()
- const args = { command: 'x', description: 'x' }
- const timedOut = ctx.tools.get('bash')!.presentResult!(
- args,
- { content: [{ type: 'text', text: 'slow\n[timed out after 100ms]\n[exit code: 143]' }], isError: false },
- )
- expect(timedOut).toEqual({ card: 'terminal', output: 'slow\n[timed out after 100ms]', exitCode: 143 })
- })
- it('bash presentResult exit parse is the inverse of renderResult markers (round-trip)', async () => {
- const ctx = await setup()
- const present = ctx.tools.get('bash')!
- // For each renderResult outcome, the rendered text fed back through
- // presentResult recovers the matching structured exit — the parse and the
- // marker emission co-evolve in one file, so this pins the pair.
- const base = {
- aborted: false,
- timeoutMs: 1000,
- stdout: { text: 'out', truncated: false },
- stderr: { text: '', truncated: false },
- }
- const cases = [
- { result: { ...base, exitCode: 0, signal: null, timedOut: false }, expect: { exitCode: 0 } },
- { result: { ...base, exitCode: 7, signal: null, timedOut: false }, expect: { exitCode: 7 } },
- { result: { ...base, exitCode: null, signal: 'SIGTERM' as const, timedOut: false }, expect: { signal: 'SIGTERM' } },
- // A trapped-timeout run that exits 0 has no signal/exit marker → reads as exit 0 (it did exit 0).
- { result: { ...base, exitCode: 0, signal: null, timedOut: true }, expect: { exitCode: 0 } },
- ]
- for (const c of cases) {
- const rendered = renderResult(c.result)
- const out = present.presentResult!({ command: 'x', description: 'x' }, { content: [{ type: 'text', text: rendered }], isError: false })
- // Drop card + output; the remaining fields are the parsed exit.
- const { card: _c, output, ...exit } = out as { card: string; output?: string; exitCode?: number; signal?: string }
- expect(exit).toEqual(c.expect)
- // Whatever the parse consumed is gone from the body, so a card with an exit
- // pill never shows the same status twice.
- expect(output).not.toMatch(/\[exit code: \d+\]|\[killed by signal: /)
- }
- })
- it('bash presentResult: a clean exit-0 whose output ENDS in marker-like text is NOT read as a failure', async () => {
- const ctx = await setup()
- const args = { command: 'printf "[exit code: 5]"', description: 'print' }
- // A successful command may print marker-like text. A clean result appends no marker or
- // newline; parsing requires the leading newline emitted for real markers, so this stays exit 0.
- const out = ctx.tools.get('bash')!.presentResult!(args, { content: [{ type: 'text', text: '[exit code: 5]' }], isError: false })
- expect(out).toEqual({ card: 'terminal', output: '[exit code: 5]', exitCode: 0 })
- // Unparsed marker-like text is real output, so it is NOT stripped from the body.
- // Same for a fake signal marker with no leading newline.
- const sig = ctx.tools.get('bash')!.presentResult!(args, { content: [{ type: 'text', text: '[killed by signal: SIGKILL]' }], isError: false })
- expect(sig).toEqual({ card: 'terminal', output: '[killed by signal: SIGKILL]', exitCode: 0 })
- })
- it('bash presentCall/presentResult: a run_in_background call is a generic card and its ack carries no exit pill', async () => {
- const ctx = await setup()
- // The background start returns a task-id ack, not a streamed run — a generic
- // execute card with the command as rawInput and the description as content.
- const call = ctx.tools.get('bash')!.presentCall!({ command: 'sleep 100', description: 'wait', run_in_background: true })
- expect(call).toEqual({ card: 'generic', title: 'sleep 100', kind: 'execute', rawInput: 'sleep 100', content: [{ type: 'text', text: 'wait' }] })
- // The ack result is a generic fenced-text card — no terminal output / exit pill.
- const result = ctx.tools.get('bash')!.presentResult!(
- { command: 'sleep 100', description: 'wait', run_in_background: true },
- { content: [{ type: 'text', text: 'started background job bash-1' }], isError: false },
- )
- expect(result).toEqual({ card: 'generic', content: [{ type: 'text', text: '```console\nstarted background job bash-1\n```' }] })
- })
- it('bash presentResult: an isError result is a generic card (no real process exit to report)', async () => {
- const ctx = await setup()
- // A spawn failure / abort has no process exit — the body is an error message,
- // not renderResult output, so a generic fenced card, no terminal output/exit.
- const out = ctx.tools.get('bash')!.presentResult!(
- { command: 'x', description: 'x' },
- { content: [{ type: 'text', text: 'tool call aborted' }], isError: true },
- )
- expect(out).toEqual({ card: 'generic', content: [{ type: 'text', text: '```console\ntool call aborted\n```' }] })
- })
- it('bash presentResult: leaves a non-text (unexpected) result untouched → undefined (UI keeps raw content)', async () => {
- const ctx = await setup()
- const present = ctx.tools.get('bash')!.presentResult!(
- { command: 'x', description: 'x' },
- { content: [{ type: 'reasoning', text: 'unexpected' }], isError: false },
- )
- expect(present).toBeUndefined()
- })
- it('bash presentResult: a result that is not exactly one block → undefined (no single text to fence)', async () => {
- const ctx = await setup()
- const args = { command: 'x', description: 'x' }
- // Empty content (no block) and multi-block content both fall through.
- expect(ctx.tools.get('bash')!.presentResult!(args, { content: [], isError: false })).toBeUndefined()
- expect(ctx.tools.get('bash')!.presentResult!(args, {
- content: [{ type: 'text', text: 'a' }, { type: 'text', text: 'b' }],
- isError: false,
- })).toBeUndefined()
- })
- it('presentCall validates softly: malformed args (missing required description) return undefined, never throw', async () => {
- const ctx = await setup()
- // `defineTool` soft-validates replayed logged args before presentation. Invalid shapes return
- // undefined for generic UI rendering rather than throwing; `presentCall` accepts `unknown`.
- expect(ctx.tools.get('bash')?.presentCall?.({ command: 'ls' })).toBeUndefined()
- })
- })
- describe('the model-facing bash tool builds its request from named args only (no {...args} forward)', () => {
- const recordingDshHome = join(spillDir, 'dsh-home')
- /**
- * Records every {@link ShellExecRequest} the consumer hands to `resolve()`, so a
- * test can assert what the model-facing tool DID and DID NOT forward. The `bash`
- * tool does not expose trusted-plugin fields (`stdoutMaxBytes`, `stdin`, or
- * `env`) as parameters, so it must build its request from named args only and
- * never spread unknown tool-call keys into it. This guard's job is to catch a
- * future refactor that blindly forwards `...args` — which would silently thread
- * model input into the post-scrub `env` merge or per-run capture budget — NOT
- * to defend a trust boundary
- * (the credential scrub in dsh-bash-local is the security control; see the
- * bash-stdin-env Agent Note). Foreground `run()` returns a canned result; `start()`
- * hands back an already-settled fake handle so the task registration completes.
- */
- class RecordingBashExecutor extends ShellExecutor {
- readonly requests: ShellExecRequest[] = []
- resolve(request: ShellExecRequest): ShellExecSpec {
- this.requests.push(request)
- return {
- command: request.command,
- workdir: request.workdir ?? process.cwd(),
- timeoutMs: request.timeoutMs ?? 0,
- stdoutMaxBytes: request.stdoutMaxBytes ?? 64_000,
- ...request.signal ? { signal: request.signal } : {},
- ...request.stdin !== undefined ? { stdin: request.stdin } : {},
- ...request.env !== undefined ? { env: request.env } : {},
- ...request.dshEnv !== undefined ? { dshEnv: request.dshEnv } : {},
- sandboxPolicy: request.sandboxPolicy,
- }
- }
- run(): Promise<ShellRunResult> {
- return Promise.resolve({
- exitCode: 0, signal: null, timedOut: false, aborted: false, timeoutMs: 0,
- stdout: { text: 'ok', truncated: false }, stderr: { text: '', truncated: false },
- })
- }
- start(): ShellProcess {
- return {
- status: 'completed',
- exitCode: 0,
- signal: null,
- done: Promise.resolve(),
- readOutput: () => ({ delta: '', lossy: false }),
- kill: () => false,
- }
- }
- }
- async function setupRecording(withJsonl = false) {
- const ctx = new Context()
- await ctx.plugin(SystemPrompt)
- await ctx.plugin(ToolRuntime)
- await ctx.plugin(AgentRegistry)
- if (withJsonl) {
- await ctx.plugin(SessionStore)
- await ctx.plugin(JsonlSessionPersistence, { root: join(spillDir, 'jsonl') })
- }
- await ctx.plugin(LocalJobRegistry)
- await ctx.plugin(ToolTasks)
- await ctx.plugin(BashEnvPlugin, { dshHome: recordingDshHome })
- await ctx.plugin(RecordingBashExecutor)
- await ctx.plugin(ToolBash)
- return { ctx, bash: ctx.shell as RecordingBashExecutor }
- }
- it('describes the managed harness environment namespace to the model', async () => {
- const { ctx } = await setupRecording()
- const description = ctx.tools.get('bash')?.description ?? ''
- expect(description).toContain('$DSH_*')
- expect(description).not.toContain('DSH_SESSION_JSONL')
- })
- it('injects the session id and JSONL target path into a foreground request', async () => {
- const { ctx, bash } = await setupRecording(true)
- const agent = registerFakeAgent(ctx, 'request-fg', () => undefined)
- const path = ctx.sessionPersistence.locate(agent.session.header)?.path
- await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId('session-env-fg'),
- name: 'bash',
- arguments: { command: 'true', description: 'run command' },
- agent,
- })
- expect(bash.requests[0]?.dshEnv).toEqual({
- DSH_HOME: recordingDshHome,
- DSH_SESSION_ID: 'request-fg',
- DSH_SESSION_JSONL: path,
- DSH_SHELL: '1',
- })
- })
- it('injects the same trusted variables into a background request without forwarding model env', async () => {
- const { ctx, bash } = await setupRecording(true)
- const agent = registerFakeAgent(ctx, 'request-bg', () => undefined)
- const path = ctx.sessionPersistence.locate(agent.session.header)?.path
- await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId('session-env-bg'),
- name: 'bash',
- arguments: {
- command: 'sleep 1',
- description: 'run command',
- run_in_background: true,
- env: { DSH_SESSION_ID: 'spoofed', DSH_SESSION_JSONL: '/tmp/spoofed' },
- },
- agent,
- })
- expect(bash.requests[0]?.env).toBeUndefined()
- expect(bash.requests[0]?.dshEnv).toEqual({
- DSH_HOME: recordingDshHome,
- DSH_SESSION_ID: 'request-bg',
- DSH_SESSION_JSONL: path,
- DSH_SHELL: '1',
- })
- })
- it('injects built-ins and the stable session id when no JSONL locator is available', async () => {
- const { ctx, bash } = await setupRecording()
- const agent = registerFakeAgent(ctx, 'request-id-only', () => undefined)
- const ambient = process.env.DSH_SESSION_ID
- await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId('session-env-id-only'),
- name: 'bash',
- arguments: { command: 'true', description: 'run command' },
- agent,
- })
- expect(bash.requests[0]?.dshEnv).toEqual({
- DSH_HOME: recordingDshHome,
- DSH_SESSION_ID: 'request-id-only',
- DSH_SHELL: '1',
- })
- expect(process.env.DSH_SESSION_ID).toBe(ambient)
- })
- it('keeps parent and child agent session environments isolated', async () => {
- const { ctx, bash } = await setupRecording(true)
- const parent = registerFakeAgent(ctx, 'request-parent', () => undefined)
- const child = registerFakeAgent(ctx, 'request-child', () => undefined)
- for (const [callId, agent] of [['parent', parent], ['child', child]] as const) {
- await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId(`session-env-${callId}`),
- name: 'bash',
- arguments: { command: 'true', description: 'run command' },
- agent,
- })
- }
- expect(bash.requests.map(request => request.dshEnv)).toEqual([
- {
- DSH_HOME: recordingDshHome,
- DSH_SESSION_ID: 'request-parent',
- DSH_SESSION_JSONL: ctx.sessionPersistence.locate(parent.session.header)?.path,
- DSH_SHELL: '1',
- },
- {
- DSH_HOME: recordingDshHome,
- DSH_SESSION_ID: 'request-child',
- DSH_SESSION_JSONL: ctx.sessionPersistence.locate(child.session.header)?.path,
- DSH_SHELL: '1',
- },
- ])
- expect(bash.requests[0]?.dshEnv?.DSH_SESSION_JSONL).not.toBe(bash.requests[1]?.dshEnv?.DSH_SESSION_JSONL)
- })
- it('does not forward trusted-only fields even when the model includes them as extra arguments', async () => {
- const { ctx, bash } = await setupRecording()
- // Unknown `env` and `stdin` keys are ignored by the schema and named request construction.
- // This preserves the request shape; it is not a security boundary because shell syntax can
- // already set environment variables or feed stdin.
- await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId('no-forward-1'),
- name: 'bash',
- arguments: {
- command: 'echo hi',
- description: 'echo',
- env: { SNEAKY_API_KEY: 'leak' },
- stdin: 'malicious payload',
- stdoutMaxBytes: 999_999,
- },
- })
- expect(bash.requests).toHaveLength(1)
- const request = bash.requests[0]!
- expect(request.command).toBe('echo hi')
- expect('env' in request).toBe(false)
- expect('stdin' in request).toBe(false)
- expect('stdoutMaxBytes' in request).toBe(false)
- })
- it('a background bash call likewise carries no trusted-only fields', async () => {
- const { ctx, bash } = await setupRecording()
- const result = await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId('no-forward-2'),
- name: 'bash',
- arguments: {
- command: 'sleep 1',
- description: 'sleep',
- run_in_background: true,
- env: { TOKEN: 'leak' },
- stdin: 'x',
- stdoutMaxBytes: 999_999,
- },
- })
- // The call really went down the background path (the recorder sees the real
- // request the consumer built, so the absent env/stdin below is a real
- // negative, not a recorder that drops everything).
- expect(text(result)).toBe('started background job bash-1')
- expect(bash.requests).toHaveLength(1)
- const request = bash.requests[0]!
- expect(request.command).toBe('sleep 1')
- expect('env' in request).toBe(false)
- expect('stdin' in request).toBe(false)
- expect('stdoutMaxBytes' in request).toBe(false)
- })
- })
|