| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453 |
- import { describe, expect, it, vi } from 'vitest'
- import { Context } from '@deepseek-ai/cordis'
- import Loader from '@deepseek-ai/cordis-plugin-loader'
- import SystemPrompt from '@deepseek-ai/dsh-system-prompt'
- import ToolRuntime, { TOOL_ABORTED_BEFORE_DISPATCH } from '@deepseek-ai/dsh-tools'
- import type { ToolExecutionResult, ToolExecutionToken } from '@deepseek-ai/dsh-tools'
- import type { Agent } from '@deepseek-ai/dsh-agent'
- import { WorkflowRunId, WorkflowEngine } from '@deepseek-ai/dsh-workflow'
- import type {
- WorkflowAgentEndInfo, WorkflowAgentInfo, WorkflowResult, WorkflowRun,
- WorkflowRunId as WorkflowRunIdType, WorkflowStartRequest,
- } from '@deepseek-ai/dsh-workflow'
- import { ToolCallId } from '@deepseek-ai/dsh-llm'
- import SubagentRuntime from '@deepseek-ai/dsh-subagent'
- import WorkerThreadWorkflowEngine from '@deepseek-ai/dsh-workflow-worker-thread'
- import * as toolWorkflow from '../src/index.ts'
- import { Session, SessionId } from '@deepseek-ai/dsh-session'
- import SessionProjectionRegistry from '@deepseek-ai/dsh-session-projection'
- const testToolSignal = new AbortController().signal
- /** A controllable engine standing in behind ctx.workflowEngine (the tool's only seam). */
- class StubEngine extends WorkflowEngine {
- requests: WorkflowStartRequest[] = []
- cancels: string[] = []
- disposed = 0
- disposeBarrier: Promise<void> | undefined
- settle!: (result: WorkflowResult) => void
- readonly settlements = new Map<WorkflowRunIdType, (result: WorkflowResult) => void>()
- startError: Error | undefined
- start(request: WorkflowStartRequest): WorkflowRun {
- if (this.startError) throw this.startError
- this.requests.push(request)
- const id = WorkflowRunId(`run-${this.requests.length}`)
- const result = new Promise<WorkflowResult>((resolve) => { this.settle = resolve })
- this.settlements.set(id, this.settle)
- request.signal?.addEventListener('abort', () => {
- this.settle({ value: null, stopReason: 'cancelled', error: 'signal', agentsStarted: 0 })
- }, { once: true })
- return {
- id,
- meta: request.meta,
- result,
- cancel: (reason?: string) => {
- this.cancels.push(reason ?? 'cancelled')
- this.settle({ value: null, stopReason: 'cancelled', ...reason !== undefined ? { error: reason } : {}, agentsStarted: 0 })
- },
- dispose: async () => {
- this.disposed += 1
- await this.disposeBarrier
- this.settlements.delete(id)
- },
- }
- }
- settleRun(id: WorkflowRunIdType, result: WorkflowResult): void {
- const settle = this.settlements.get(id)
- if (settle === undefined) throw new Error(`unknown stub workflow ${id}`)
- settle(result)
- }
- agentStart(id: WorkflowRunIdType, agent: WorkflowAgentInfo): void {
- this.emitWorkflowEvent('workflow/agent-start', {
- id,
- meta: this.requests[Number(String(id).slice(4)) - 1]!.meta,
- }, agent)
- }
- agentEnd(id: WorkflowRunIdType, agent: WorkflowAgentEndInfo): void {
- this.emitWorkflowEvent('workflow/agent-end', {
- id,
- meta: this.requests[Number(String(id).slice(4)) - 1]!.meta,
- }, agent)
- }
- }
- async function setup(config?: { toolName?: string; maxResultChars?: number }) {
- const ctx = new Context()
- await ctx.plugin(SystemPrompt)
- await ctx.plugin(ToolRuntime)
- await ctx.plugin(StubEngine)
- await ctx.plugin(toolWorkflow, config ?? {})
- const engine = ctx.workflowEngine as StubEngine
- const session = Session.create(SessionId('caller'))
- const parent = { id: session.id, options: {}, session } as unknown as Agent
- return { ctx, engine, parent, session }
- }
- const SCRIPT = 'return 1'
- const META = { name: 'audit', description: 'd' }
- function execute(ctx: Context, args: unknown, extra?: {
- agent?: Agent
- signal?: AbortSignal
- parent?: ToolExecutionToken
- }): Promise<ToolExecutionResult> {
- return ctx.tools.execute({
- signal: testToolSignal,
- callId: ToolCallId('call-1'),
- name: 'workflow',
- arguments: args,
- ...extra?.agent ? { agent: extra.agent } : {},
- ...extra?.signal ? { signal: extra.signal } : {},
- ...extra?.parent ? { parent: extra.parent } : {},
- })
- }
- describe('dsh-tool-workflow', () => {
- it('starts a run with the script/args/parent/signal and renders the completed value', async () => {
- const { ctx, engine, parent } = await setup()
- const controller = new AbortController()
- const pending = execute(ctx, { script: SCRIPT, meta: META, args: { files: ['a.ts'] } }, { agent: parent, signal: controller.signal })
- await vi.waitFor(() => { expect(engine.requests.length).toBe(1) })
- expect(engine.requests[0]).toMatchObject({ script: SCRIPT, meta: META, args: { files: ['a.ts'] }, parent })
- expect(engine.requests[0]!.signal).toBe(controller.signal)
- engine.settle({ value: { findings: [1, 2] }, stopReason: 'completed', agentsStarted: 7 })
- const result = await pending
- expect(result.isError).toBe(false)
- if (result.isError) throw new Error('expected workflow success')
- expect(result.value).toEqual({ runId: 'run-1', agentsStarted: 7, result: { findings: [1, 2] } })
- const rendered = (result.content[0] as { text: string }).text
- expect(rendered).toContain('workflow "audit" completed (7 agents)')
- expect(rendered).toContain('"findings"')
- expect(engine.disposed).toBe(1)
- })
- it('records one top-level run and its members in the calling Session after cleanup', async () => {
- const { ctx, engine, parent, session } = await setup()
- const pending = execute(ctx, { script: SCRIPT, meta: META }, { agent: parent })
- await vi.waitFor(() => { expect(engine.requests).toHaveLength(1) })
- const runId = WorkflowRunId('run-1')
- engine.agentStart(runId, {
- seq: 1,
- label: '',
- phase: '',
- childId: SessionId('child-1'),
- })
- engine.agentEnd(runId, {
- seq: 1,
- label: '',
- phase: '',
- childId: SessionId('child-1'),
- outcome: 'completed',
- })
- engine.settleRun(runId, { value: 1, stopReason: 'completed', agentsStarted: 1 })
- expect((await pending).isError).toBe(false)
- expect(engine.disposed).toBe(1)
- expect(session.snapshotEvents().map(event => [event.type, event.data])).toEqual([
- ['tool-workflow/run-start', { runId: 'run-1', name: 'audit' }],
- ['tool-workflow/agent-start', {
- runId: 'run-1', seq: 1, label: '', phase: '', childId: 'child-1',
- }],
- ['tool-workflow/agent-end', { runId: 'run-1', seq: 1, outcome: 'completed' }],
- ['tool-workflow/run-end', { runId: 'run-1', stopReason: 'completed' }],
- ])
- })
- it('writes run-end only after run disposal reaches quiescence', async () => {
- const { ctx, engine, parent, session } = await setup()
- const barrier = Promise.withResolvers<undefined>()
- engine.disposeBarrier = barrier.promise
- const pending = execute(ctx, { script: SCRIPT, meta: META }, { agent: parent })
- await vi.waitFor(() => { expect(engine.requests).toHaveLength(1) })
- engine.settleRun(WorkflowRunId('run-1'), {
- value: null, stopReason: 'completed', agentsStarted: 0,
- })
- await vi.waitFor(() => { expect(engine.disposed).toBe(1) })
- expect(session.snapshotEvents().map(event => event.type)).toEqual(['tool-workflow/run-start'])
- barrier.resolve(undefined)
- expect((await pending).isError).toBe(false)
- expect(session.snapshotEvents().map(event => event.type)).toEqual([
- 'tool-workflow/run-start', 'tool-workflow/run-end',
- ])
- })
- it('records zero-member and concurrent runs independently', async () => {
- const { ctx, engine, parent, session } = await setup()
- const first = execute(ctx, { script: SCRIPT, meta: { ...META, name: 'first' } }, { agent: parent })
- const second = execute(ctx, { script: SCRIPT, meta: { ...META, name: 'second' } }, { agent: parent })
- await vi.waitFor(() => { expect(engine.requests).toHaveLength(2) })
- const secondId = WorkflowRunId('run-2')
- engine.agentStart(secondId, {
- seq: 1, label: 'member', childId: SessionId('child-2'),
- })
- engine.agentEnd(secondId, {
- seq: 1, label: 'member', childId: SessionId('child-2'), outcome: 'failed',
- })
- engine.settleRun(WorkflowRunId('run-1'), { value: null, stopReason: 'completed', agentsStarted: 0 })
- engine.settleRun(secondId, { value: null, stopReason: 'error', error: 'child failed', agentsStarted: 1 })
- expect((await first).isError).toBe(false)
- expect((await second).isError).toBe(true)
- expect(session.snapshotEvents().filter(event => event.type === 'tool-workflow/agent-start'))
- .toHaveLength(1)
- expect(session.snapshotEvents().filter(event => event.type === 'tool-workflow/run-end').map(event => event.data))
- .toEqual([
- { runId: 'run-1', stopReason: 'completed' },
- { runId: 'run-2', stopReason: 'error' },
- ])
- })
- it('does not record nested transport executions', async () => {
- const { ctx, engine, parent, session } = await setup()
- const pending = execute(ctx, { script: SCRIPT, meta: META }, {
- agent: parent,
- parent: Symbol('outer') as ToolExecutionToken,
- })
- await vi.waitFor(() => { expect(engine.requests).toHaveLength(1) })
- engine.settleRun(WorkflowRunId('run-1'), { value: null, stopReason: 'completed', agentsStarted: 0 })
- expect((await pending).isError).toBe(false)
- expect(session.snapshotEvents()).toEqual([])
- })
- it.each([
- 'tool-workflow/run-start',
- 'tool-workflow/agent-start',
- 'tool-workflow/agent-end',
- 'tool-workflow/run-end',
- ] as const)('isolates a first append failure at %s and preserves a valid prefix', async (failedType) => {
- const { ctx, engine, parent, session } = await setup()
- const warnings: string[] = []
- ctx.logger.warn = ((message: unknown) => { warnings.push(String(message)) }) as typeof ctx.logger.warn
- const append = session.append.bind(session)
- session.append = ((type: Parameters<Session['append']>[0], data: never) => {
- if (type === failedType) throw new Error(`injected ${failedType} failure`)
- return append(type, data)
- }) as Session['append']
- const pending = execute(ctx, { script: SCRIPT, meta: META }, { agent: parent })
- await vi.waitFor(() => { expect(engine.requests).toHaveLength(1) })
- const runId = WorkflowRunId('run-1')
- engine.agentStart(runId, {
- seq: 1, label: 'member', childId: SessionId('child-1'),
- })
- engine.agentEnd(runId, {
- seq: 1, label: 'member', childId: SessionId('child-1'), outcome: 'completed',
- })
- engine.settleRun(runId, { value: null, stopReason: 'completed', agentsStarted: 1 })
- expect((await pending).isError).toBe(false)
- expect(engine.disposed).toBe(1)
- expect(warnings).toHaveLength(1)
- expect(warnings[0]).toContain(failedType)
- const types = session.snapshotEvents().map(event => event.type)
- const expectedPrefixes = {
- 'tool-workflow/run-start': [],
- 'tool-workflow/agent-start': ['tool-workflow/run-start'],
- 'tool-workflow/agent-end': ['tool-workflow/run-start', 'tool-workflow/agent-start'],
- 'tool-workflow/run-end': [
- 'tool-workflow/run-start', 'tool-workflow/agent-start', 'tool-workflow/agent-end',
- ],
- } as const
- expect(types).toEqual(expectedPrefixes[failedType])
- })
- it('contains an append failure whose thrown value cannot be rendered', async () => {
- const { ctx, engine, parent, session } = await setup()
- const warnings: string[] = []
- ctx.logger.warn = ((message: unknown) => { warnings.push(String(message)) }) as typeof ctx.logger.warn
- session.append = () => {
- throw { toString: () => { throw new Error('coercion trap') } }
- }
- const pending = execute(ctx, { script: SCRIPT, meta: META }, { agent: parent })
- await vi.waitFor(() => { expect(engine.requests).toHaveLength(1) })
- engine.settleRun(WorkflowRunId('run-1'), {
- value: null, stopReason: 'completed', agentsStarted: 0,
- })
- expect((await pending).isError).toBe(false)
- expect(warnings).toHaveLength(1)
- expect(warnings[0]).toContain('[unrenderable thrown value]')
- })
- it('maps a non-completed stop reason to an isError result (and still disposes)', async () => {
- const { ctx, engine, parent } = await setup()
- const pending = execute(ctx, { script: SCRIPT, meta: META }, { agent: parent })
- await vi.waitFor(() => { expect(engine.requests.length).toBe(1) })
- engine.settle({ value: null, stopReason: 'error', error: 'script threw: boom', agentsStarted: 2 })
- const result = await pending
- expect(result.isError).toBe(true)
- expect((result.content[0] as { text: string }).text).toContain('workflow run failed: script threw: boom')
- expect(engine.disposed).toBe(1)
- })
- it('reports a cancelled run distinctly (with and without a reason)', async () => {
- const { ctx, engine, parent } = await setup()
- const pending = execute(ctx, { script: SCRIPT, meta: META }, { agent: parent })
- await vi.waitFor(() => { expect(engine.requests.length).toBe(1) })
- engine.settle({ value: null, stopReason: 'cancelled', error: 'user', agentsStarted: 0 })
- const result = await pending
- expect(result.isError).toBe(true)
- expect((result.content[0] as { text: string }).text).toContain('workflow run was cancelled (user)')
- const bare = execute(ctx, { script: SCRIPT, meta: META }, { agent: parent })
- await vi.waitFor(() => { expect(engine.requests.length).toBe(2) })
- engine.settle({ value: null, stopReason: 'cancelled', agentsStarted: 0 })
- expect(((await bare).content[0] as { text: string }).text.trim().endsWith('cancelled')).toBe(true)
- })
- it('an error result without a message renders the unknown-error fallback', async () => {
- const { ctx, engine, parent } = await setup()
- const pending = execute(ctx, { script: SCRIPT, meta: META }, { agent: parent })
- await vi.waitFor(() => { expect(engine.requests.length).toBe(1) })
- engine.settle({ value: null, stopReason: 'error', agentsStarted: 0 })
- expect(((await pending).content[0] as { text: string }).text).toContain('unknown error')
- })
- it('cancels the run when exec.signal aborts MID-FLIGHT (the abort bridge)', async () => {
- const { ctx, engine, parent } = await setup()
- const controller = new AbortController()
- const pending = execute(ctx, { script: SCRIPT, meta: META }, { agent: parent, signal: controller.signal })
- await vi.waitFor(() => { expect(engine.requests.length).toBe(1) })
- controller.abort()
- const result = await pending
- expect(result.isError).toBe(true)
- expect(engine.cancels).toContain('parent step aborted')
- expect(engine.disposed).toBe(1)
- })
- it('a synchronous engine start throw (meta/parse failure) becomes an isError result', async () => {
- const { ctx, engine, parent } = await setup()
- engine.startError = new Error('invalid meta: meta.name must be a non-empty string')
- const result = await execute(ctx, { script: 'nope', meta: { name: '', description: 'd' } }, { agent: parent })
- expect(result.isError).toBe(true)
- expect((result.content[0] as { text: string }).text).toContain('meta.name must be a non-empty string')
- })
- it('requires a calling agent (fails loud without exec.agent)', async () => {
- const { ctx, engine } = await setup()
- const result = await execute(ctx, { script: SCRIPT, meta: META })
- expect(result.isError).toBe(true)
- expect((result.content[0] as { text: string }).text).toContain('requires a calling agent')
- expect(engine.requests.length).toBe(0)
- })
- it('validates its own arguments via the schema DSL (missing script)', async () => {
- const { ctx, parent } = await setup()
- const result = await execute(ctx, {}, { agent: parent })
- expect(result.isError).toBe(true)
- expect(result.error?.info?.code).toBe('INVALID_ARGS')
- })
- it('skips workflow startup when exec.signal is already aborted', async () => {
- const { ctx, engine, parent } = await setup()
- const controller = new AbortController()
- controller.abort()
- const result = await execute(ctx, { script: SCRIPT, meta: META }, { agent: parent, 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(engine.requests).toHaveLength(0)
- expect(engine.cancels).toHaveLength(0)
- expect(engine.disposed).toBe(0)
- })
- it('truncates an oversized rendered value with a notice (maxResultChars)', async () => {
- const { ctx, engine, parent } = await setup({ maxResultChars: 40 })
- const pending = execute(ctx, { script: SCRIPT, meta: META }, { agent: parent })
- await vi.waitFor(() => { expect(engine.requests.length).toBe(1) })
- engine.settle({ value: { blob: 'x'.repeat(500) }, stopReason: 'completed', agentsStarted: 1 })
- const result = await pending
- if (result.isError) throw new Error('expected workflow success')
- expect(result.value).toEqual({ runId: 'run-1', agentsStarted: 1, result: { blob: 'x'.repeat(500) } })
- const rendered = (result.content[0] as { text: string }).text
- expect(rendered).toContain('[truncated:')
- expect(rendered.length).toBeLessThan(400)
- })
- it('registers under a configured toolName and unregisters on fiber dispose (HMR safety)', async () => {
- const ctx = new Context()
- await ctx.plugin(SystemPrompt)
- await ctx.plugin(ToolRuntime)
- await ctx.plugin(StubEngine)
- const fiber = await ctx.plugin(toolWorkflow, { toolName: 'orchestrate' })
- expect(ctx.tools.get('orchestrate')).toBeDefined()
- expect(ctx.tools.get('workflow')).toBeUndefined()
- // The usage-policy prompt section rides the same registration: present
- // under the CONFIGURED name (its guidance names the tool it describes)…
- const sections = (await ctx.systemPrompt.assemble()).sections
- const section = sections.find(s => s.name === 'tool:orchestrate')
- expect(section?.text).toContain('orchestrate')
- expect(sections.some(s => s.name === 'tool:workflow')).toBe(false)
- ctx.systemPrompt.section({ name: 'tool:cordis-order-probe', order: 115.5, text: 'Cordis' })
- expect((await ctx.systemPrompt.assemble()).sections
- .filter(s => s.name === 'tool:cordis-order-probe' || s.name === 'tool:orchestrate')
- .map(s => s.name)).toEqual(['tool:cordis-order-probe', 'tool:orchestrate'])
- await fiber.dispose()
- expect(ctx.tools.get('orchestrate')).toBeUndefined()
- // …and gone with the fiber — a reload must not leak a stale section.
- expect((await ctx.systemPrompt.assemble()).sections.some(s => s.name === 'tool:orchestrate')).toBe(false)
- })
- it('presents a generic pending card titled by the meta name, with the script as rawInput', async () => {
- const { ctx } = await setup()
- const tool = ctx.tools.get('workflow')!
- const view = tool.presentCall!({ script: SCRIPT, meta: META })
- expect(view).toMatchObject({ card: 'generic', title: 'workflow: audit', rawInput: SCRIPT })
- })
- it('presentResult keeps the generic card; presentation is pure and replay-safe on malformed args', async () => {
- const { ctx } = await setup()
- const tool = ctx.tools.get('workflow')!
- expect(tool.presentResult!({ script: SCRIPT, meta: META }, { content: [], isError: false })).toEqual({ card: 'generic' })
- // defineTool soft-validates presentation args: a malformed logged shape
- // (wrong fields entirely, or a call missing its meta) falls back to
- // undefined instead of throwing mid-replay.
- expect(tool.presentCall!({ not: 'the schema' })).toBeUndefined()
- expect(tool.presentCall!({ script: SCRIPT })).toBeUndefined()
- })
- it('has the namespace-plugin export shape (no stray default)', () => {
- expect('default' in toolWorkflow).toBe(false)
- expect(toolWorkflow.name).toBe('tool-workflow')
- expect(toolWorkflow.inject).toEqual(['tools', 'workflowEngine', 'systemPrompt'])
- const loader = Object.create(Loader.prototype) as Loader
- const unwrapped = loader.unwrapExports(toolWorkflow) as Record<string, unknown>
- expect(unwrapped).toBe(toolWorkflow)
- expect(typeof unwrapped.apply).toBe('function')
- })
- describe('composition with the REAL worker-thread engine (the mock above must stay honest)', () => {
- it('an abort releases the tool even when the script parks on a promise no hook owns', async () => {
- // The tool and loop await run.result before cleanup, so cancellation must settle a script
- // parked on an unowned promise. Exercise that guarantee through the real registry and worker.
- const ctx = new Context()
- await ctx.plugin(SystemPrompt)
- await ctx.plugin(ToolRuntime)
- await ctx.plugin(SessionProjectionRegistry)
- await ctx.plugin(SubagentRuntime)
- ctx.subagents.registerProvider({
- name: 'spawn',
- capabilities: { agentOptions: true, outputSchema: true, depthLimit: true, toolFilter: true, persona: true },
- inheritsParentContext: false,
- start: () => Promise.reject(new Error('the parked-script fixture must not start a child')),
- })
- await ctx.plugin(WorkerThreadWorkflowEngine, { disposeGraceMs: 30 })
- await ctx.plugin(toolWorkflow, {})
- const session = Session.create(SessionId('caller'))
- const parent = { id: session.id, options: {}, session } as unknown as Agent
- const controller = new AbortController()
- const pending = execute(ctx, {
- script: 'await new Promise(() => {})\nreturn 1',
- meta: { name: 'stuck', description: 'parks forever' },
- }, { agent: parent, signal: controller.signal })
- // Give the run a beat to start (past its synchronous slice), then abort.
- await new Promise(resolve => setTimeout(resolve, 20))
- controller.abort('user abort')
- const result = await pending
- expect(result.isError).toBe(true)
- expect((result.content[0] as { text: string }).text).toContain('cancelled')
- })
- })
- })
|