| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- import { describe, expect, it } from 'vitest'
- import { Context } from '@deepseek-ai/cordis'
- import { SessionId } from '@deepseek-ai/dsh-session'
- import AgentLoop from '@deepseek-ai/dsh-agent-loop'
- import { mountAgentLoopTestDependencies } from '@deepseek-ai/dsh-agent-loop-testkit'
- import InvariantRegistry from '@deepseek-ai/dsh-invariants'
- import * as SessionInvariant from '@deepseek-ai/dsh-session/invariant'
- import * as AgentInvariant from '@deepseek-ai/dsh-agent/invariant'
- import * as AgentLoopInvariant from '@deepseek-ai/dsh-agent-loop/invariant'
- import SubagentRuntime from '@deepseek-ai/dsh-subagent'
- import * as spawn from '@deepseek-ai/dsh-subagent-spawn-in-process'
- import { STRUCTURED_OUTPUT_TOOL } from '@deepseek-ai/dsh-subagent-in-process-driver'
- import { MockAdapter, textResponse, toolCallResponse } from '../../../core/agent-loop/tests/mock-adapter.ts'
- import PtcWorkflowEngine from '../src/index.ts'
- import { mountPtcRuntime } from './setup.ts'
- type Script = ConstructorParameters<typeof MockAdapter>[0]
- async function mountInvariants(ctx: Context): Promise<void> {
- await ctx.plugin(InvariantRegistry)
- await ctx.plugin(SessionInvariant)
- await ctx.plugin(AgentInvariant)
- await ctx.plugin(AgentLoopInvariant)
- }
- async function setup(script: Script) {
- const ctx = new Context()
- const adapter = new MockAdapter(script)
- await mountAgentLoopTestDependencies(ctx)
- await mountPtcRuntime(ctx)
- await mountInvariants(ctx)
- await ctx.plugin(AgentLoop, { agents: [] })
- await ctx.plugin(SubagentRuntime)
- await ctx.plugin(spawn, { providerName: 'spawn' })
- await ctx.plugin(PtcWorkflowEngine, {})
- ctx.llm.registerAdapter(['mock'], adapter)
- const parent = await ctx.agentLoop.create(SessionId('parent'), { provider: 'mock', model: 'mock' })
- return { ctx, parent, adapter }
- }
- describe('dsh-workflow-ptc over the real in-process stack', () => {
- it('runs a two-stage workflow: a plain child, then a schema child through the structured runtime', async () => {
- const { ctx, parent } = await setup([
- textResponse('the file list is a.ts'),
- toolCallResponse('c1', STRUCTURED_OUTPUT_TOOL, { verdict: 'real', confidence: 0.9 }),
- ])
- const childIds: string[] = []
- ctx.on('workflow/agent-start', (_info, agent) => {
- // The workflow bridge must await asynchronous provider start: an observer
- // sees the real spawn child already published, never a reserved id.
- expect(ctx.agents.get(agent.childId)).toBeDefined()
- childIds.push(agent.childId)
- })
- const run = ctx.workflowEngine.start({
- meta: { name: 'integration', description: 'plain + structured children' },
- script: `phase('Read')
- const prose = await agent('read the repo')
- phase('Judge')
- const judged = await agent('judge: ' + prose, {
- schema: { type: 'object', properties: { verdict: { type: 'string', enum: ['real', 'bogus'] }, confidence: { type: 'number' } }, required: ['verdict'] },
- })
- return { prose, verdict: judged.verdict, confidence: judged.confidence }`,
- parent,
- })
- const result = await run.result
- expect(result.stopReason, result.error?.split('\n')[0]).toBe('completed')
- expect(result.value).toEqual({ prose: 'the file list is a.ts', verdict: 'real', confidence: 0.9 })
- expect(result.agentsStarted).toBe(2)
- await run.dispose()
- // Both children were disposed to quiescence — no live child agents remain.
- expect(childIds.length).toBe(2)
- for (const childId of childIds) {
- expect(ctx.agents.get(SessionId(childId))).toBeUndefined()
- }
- })
- it('a child that fails against its schema (nudges exhausted) reaches the script as null', async () => {
- const { ctx, parent } = await setup([
- textResponse('prose only'),
- textResponse('still prose after the nudge'),
- ])
- const run = ctx.workflowEngine.start({
- meta: { name: 'null-path', description: 'schema failure maps to null' },
- script: `const judged = await agent('judge it', { schema: { type: 'object', properties: { v: { type: 'string' } } } })
- return { got: judged === null ? 'null' : 'value' }`,
- parent,
- })
- const result = await run.result
- expect(result.stopReason, result.error?.split('\n')[0]).toBe('completed')
- expect(result.value).toEqual({ got: 'null' })
- await run.dispose()
- })
- it('keeps real children visible to start observers after a progress burst', async () => {
- const { ctx, parent } = await setup([textResponse('child complete')])
- const logs: string[] = []
- const visible: boolean[] = []
- ctx.on('workflow/log', (_info, message) => { logs.push(message) })
- ctx.on('workflow/agent-start', (_info, child) => { visible.push(ctx.agents.get(child.childId) !== undefined) })
- const run = ctx.workflowEngine.start({
- meta: { name: 'progress-burst', description: 'ordered progress and child visibility' },
- script: 'for (let index = 0; index < 200; index++) log(String(index)); return await agent("finish")',
- parent,
- })
- try {
- await expect(run.result).resolves.toMatchObject({ value: 'child complete', stopReason: 'completed', agentsStarted: 1 })
- expect(logs).toEqual(Array.from({ length: 200 }, (_, index) => String(index)))
- expect(visible).toEqual([true])
- } finally {
- await run.dispose()
- }
- })
- })
|