| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766 |
- import { describe, expect, expectTypeOf, it } from 'vitest'
- import { Context } from 'cordis'
- import { createUserMessage, CallId, HarnessError, type ContentBlock } from '@deepseek-ai/dsh-llm'
- import SystemPrompt from '@deepseek-ai/dsh-system-prompt'
- import type { Agent } from '@deepseek-ai/dsh-agent'
- import ApprovalService, { type ApprovalOutcome, type ApprovalRequest } from '@deepseek-ai/dsh-user-approval'
- import ToolRegistry, {
- defineContentToolFixture, defineTool, JsonSchemaError, parameterSchemaSpecToJsonSchema, validateArgs, ToolArgsError, ToolNotFoundError,
- TOOL_ABORTED, TOOL_ABORTED_BEFORE_DISPATCH,
- type InferArgs, type JsonValue, type ParameterSchemaSpec, type PreToolDecision, type PostToolDecision,
- type JsonSchemaNode, type ToolDefinition, type ToolDispatchExecution, type ToolExecutionResult, type ToolExecutionToken,
- } from '@deepseek-ai/dsh-tools'
- const testToolSignal = new AbortController().signal
- async function setup() {
- const ctx = new Context()
- await ctx.plugin(SystemPrompt)
- await ctx.plugin(ToolRegistry)
- return ctx
- }
- const echoTool = defineTool({
- name: 'echo',
- description: 'echo arguments back',
- parameters: { text: { type: 'string' } },
- output: {
- schema: { type: 'string' },
- render: (_args, value) => [{ type: 'text', text: value }],
- },
- async execute(args) {
- return args.text ?? ''
- },
- })
- describe('ToolRegistry', () => {
- it('registers tools, exposes schemas, and feeds the system-prompt assembly', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- expect(ctx.tools.schemas()).toEqual([{
- name: 'echo',
- description: 'echo arguments back',
- parameters: { type: 'object', properties: { text: { type: 'string' } } },
- }])
- // schemas() result must not leak execute — ToolSchema deliberately has no
- // 'execute' key, so widen through unknown to probe for the absent property
- expect((ctx.tools.schemas()[0] as unknown as Record<string, unknown>).execute).toBeUndefined()
- const assembly = await ctx.systemPrompt.assemble()
- expect(assembly.tools.map(t => t.name)).toEqual(['echo'])
- })
- it('schemas() drops host callbacks — they must never reach the model', async () => {
- const ctx = await setup()
- // Tool definitions contain output, finalization, execution, and presentation
- // callbacks. schemas() is an explicit allowlist so none can reach the model.
- ctx.tools.register(defineContentToolFixture({
- name: 'present',
- description: 'has presenters',
- parameters: { x: { type: 'string', required: true } },
- async execute() { return [] },
- finalizeContent: (_exec, result) => result.content,
- presentCall: args => ({ card: 'generic', title: args.x }),
- presentResult: (args, result) => ({ card: 'generic', title: args.x, content: result.content }),
- }))
- const schema = ctx.tools.schemas()[0] as unknown as Record<string, unknown>
- expect(Object.keys(schema).sort()).toEqual(['description', 'name', 'parameters'])
- expect(schema.finalizeContent).toBeUndefined()
- expect(schema.presentCall).toBeUndefined()
- expect(schema.presentResult).toBeUndefined()
- expect(schema.execute).toBeUndefined()
- })
- it('schemas() excludes timeoutMs — the budget must never reach the model', async () => {
- const ctx = await setup()
- ctx.tools.register(defineContentToolFixture({
- name: 'budgeted', description: 'has a budget', parameters: {}, timeoutMs: 5_000,
- async execute() { return [{ type: 'text' as const, text: 'ok' }] },
- }))
- const schema = ctx.tools.schemas().find(s => s.name === 'budgeted')
- expect(schema).toBeDefined()
- expect('timeoutMs' in (schema as object)).toBe(false)
- })
- it('executes a tool and returns its content', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- let observed: ToolExecutionResult | undefined
- ctx.on('tools/result', (_exec, result) => { observed = result })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: { text: 'hi' } })
- expect(result).toEqual({ content: [{ type: 'text', text: 'hi' }], isError: false, value: 'hi' })
- expect(observed).toEqual(result)
- })
- it('projects presentation metadata from the canonical value', async () => {
- const ctx = await setup()
- ctx.tools.register({
- ...echoTool,
- name: 'meta-tool',
- output: {
- ...echoTool.output,
- presentationMeta: () => ({ diffs: [{ path: 'a', oldText: null, newText: 'x' }] }),
- },
- async execute() {
- return 'ok'
- },
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'meta-tool', arguments: {} })
- expect(result).toEqual({
- content: [{ type: 'text', text: 'ok' }],
- isError: false,
- meta: { diffs: [{ path: 'a', oldText: null, newText: 'x' }] },
- value: 'ok',
- })
- })
- it('omits meta when no presentation projector is declared', async () => {
- const ctx = await setup()
- ctx.tools.register({
- ...echoTool,
- name: 'no-meta-tool',
- async execute() {
- return 'ok'
- },
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'no-meta-tool', arguments: {} })
- expect(result).toEqual({ content: [{ type: 'text', text: 'ok' }], isError: false, value: 'ok' })
- expect('meta' in result).toBe(false)
- })
- it('normalizes a contract-violating non-cloneable result before final notification', async () => {
- const ctx = await setup()
- let observedError: boolean | undefined
- ctx.on('tools/result', (_exec, result) => { observedError = result.isError })
- ctx.tools.register({
- ...echoTool,
- name: 'bad-meta',
- output: {
- ...echoTool.output,
- presentationMeta: () => (() => undefined) as unknown as JsonValue,
- },
- async execute() {
- return 'ok'
- },
- })
- const result = await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId('bad-meta'), name: 'bad-meta', arguments: {},
- })
- expect(result.isError).toBe(true)
- expect(result.content[0]?.type === 'text' && result.content[0].text).toContain('Error:')
- expect(result.error).toMatchObject({ info: { name: 'ToolOutputError', code: 'INVALID_TOOL_OUTPUT' } })
- expect(observedError).toBe(true)
- })
- it('finalizes errors discovered while snapshotting non-content result fields', async () => {
- const ctx = await setup()
- let finalizeCalls = 0
- ctx.tools.register({
- ...echoTool,
- name: 'throwing-meta',
- output: {
- ...echoTool.output,
- presentationMeta() {
- const meta = {}
- Object.defineProperty(meta, 'value', {
- enumerable: true,
- get() { throw new Error('snapshot failed: '.repeat(100)) },
- })
- return meta
- },
- },
- finalizeContent(_exec, result) {
- finalizeCalls += 1
- const block = result.content[0]
- if (block?.type !== 'text') return undefined
- return [{ type: 'text', text: block.text.slice(0, 32) }]
- },
- async execute() {
- return 'body'
- },
- })
- const result = await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId('throwing-meta'), name: 'throwing-meta', arguments: {},
- })
- expect(result.isError).toBe(true)
- const block = result.content[0]
- expect(block?.type).toBe('text')
- expect(block?.type === 'text' ? block.text : '').toMatch(/^Error: tool "throwing-meta"/)
- expect(block?.type === 'text' ? block.text : '').toHaveLength(32)
- expect(finalizeCalls).toBe(1)
- })
- it('normalizes a throwing final content callback without invoking it again', async () => {
- const ctx = await setup()
- let finalizeCalls = 0
- ctx.tools.register({
- ...echoTool,
- name: 'throwing-finalizer',
- finalizeContent() {
- finalizeCalls += 1
- throw new Error('finalizer violated its total contract')
- },
- })
- const result = await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId('throwing-finalizer'), name: 'throwing-finalizer', arguments: {},
- })
- expect(result).toEqual({
- content: [{ type: 'text', text: 'Error: finalizer violated its total contract' }],
- isError: true,
- error: { message: 'finalizer violated its total contract' },
- })
- expect(finalizeCalls).toBe(1)
- })
- it('requires every raw registration to declare its canonical output', async () => {
- const ctx = await setup()
- const missingOutput = {
- name: 'legacy-content-tool',
- description: 'missing output',
- parameters: {},
- execute: async () => [{ type: 'text', text: 'legacy' }],
- } as unknown as ToolDefinition
- expect(() => ctx.tools.register(missingOutput))
- .toThrow('must declare output { schema, render, presentationMeta? }')
- })
- it('rejects lossy and schema-mismatched body values before post-execute', async () => {
- const ctx = await setup()
- ctx.tools.register(defineTool({
- name: 'lossy-output',
- description: 'lossy',
- parameters: {},
- output: { schema: { type: 'json' }, render: () => [] },
- execute: async () => (() => undefined) as unknown as JsonValue,
- }))
- ctx.tools.register(defineTool({
- name: 'wrong-output',
- description: 'wrong schema',
- parameters: {},
- output: { schema: { type: 'string' }, render: () => [] },
- execute: async () => 42 as unknown as string,
- }))
- const lossy = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('lossy'), name: 'lossy-output', arguments: {} })
- const mismatch = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('mismatch'), name: 'wrong-output', arguments: {} })
- expect(lossy.error).toMatchObject({ info: { name: 'ToolOutputError', code: 'INVALID_TOOL_OUTPUT' } })
- expect(lossy.content[0]?.type === 'text' ? lossy.content[0].text : '').toContain('not lossless JSON')
- expect(mismatch.error).toMatchObject({ info: { name: 'ToolOutputError', code: 'INVALID_TOOL_OUTPUT' } })
- expect(mismatch.content[0]?.type === 'text' ? mismatch.content[0].text : '').toContain('"value" must be a string')
- })
- it('classifies a throwing body snapshot as invalid tool output', async () => {
- const ctx = await setup()
- const hostile = Object.defineProperty({}, 'value', {
- enumerable: true,
- get: () => { throw new Error('body snapshot getter exploded') },
- })
- ctx.tools.register(defineTool({
- name: 'hostile-body',
- description: 'hostile body',
- parameters: {},
- output: { schema: { type: 'json' }, render: () => [] },
- execute: async () => hostile as JsonValue,
- }))
- const result = await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId('hostile-body'), name: 'hostile-body', arguments: {},
- })
- expect(result.error?.message).toContain('value snapshot failed: body snapshot getter exploded')
- expect(result.error?.info).toEqual({ name: 'ToolOutputError', code: 'INVALID_TOOL_OUTPUT' })
- })
- it.each(['render', 'presentationMeta'] as const)('contains a throwing output.%s projector as one failed call', async (projector) => {
- const ctx = await setup()
- ctx.tools.register(defineTool({
- name: `throwing-${projector}`,
- description: projector,
- parameters: {},
- output: {
- schema: { type: 'string' },
- render: () => {
- if (projector === 'render') throw new Error('renderer exploded')
- return [{ type: 'text', text: 'ok' }]
- },
- presentationMeta: () => {
- if (projector === 'presentationMeta') throw new Error('metadata exploded')
- return null
- },
- },
- execute: async () => 'ok',
- }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId(projector), name: `throwing-${projector}`, arguments: {} })
- expect(result.isError).toBe(true)
- expect(result.error?.message)
- .toContain(projector === 'render' ? 'renderer exploded' : 'metadata exploded')
- expect(result.error?.info).toEqual({ name: 'ToolOutputError', code: 'INVALID_TOOL_OUTPUT' })
- expect('value' in result).toBe(false)
- })
- it.each(['render', 'presentationMeta'] as const)('contains a throwing output.%s snapshot as one failed call', async (projector) => {
- const ctx = await setup()
- const hostile = Object.defineProperty({}, 'value', {
- enumerable: true,
- get: () => { throw new Error('snapshot getter exploded') },
- })
- ctx.tools.register(defineTool({
- name: `hostile-${projector}`,
- description: projector,
- parameters: {},
- output: {
- schema: { type: 'string' },
- render: () => projector === 'render'
- ? hostile as unknown as ContentBlock[]
- : [{ type: 'text', text: 'ok' }],
- presentationMeta: () => projector === 'presentationMeta'
- ? hostile as unknown as JsonValue
- : null,
- },
- execute: async () => 'ok',
- }))
- const result = await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId(`hostile-${projector}`), name: `hostile-${projector}`, arguments: {},
- })
- expect(result.error?.message).toContain('snapshot getter exploded')
- expect(result.error?.info).toEqual({ name: 'ToolOutputError', code: 'INVALID_TOOL_OUTPUT' })
- })
- it('keeps value/meta through content replacement and recomputes both projections after value replacement', async () => {
- const ctx = await setup()
- ctx.tools.register(defineTool({
- name: 'projected',
- description: 'projected',
- parameters: {},
- output: {
- schema: {
- type: 'object',
- additionalProperties: false,
- properties: { text: { type: 'string', required: true } },
- },
- render: (_args, value) => [{ type: 'text', text: `render:${value.text}` }],
- presentationMeta: (_args, value) => ({ projected: value.text }),
- },
- execute: async () => ({ text: 'body' }),
- }))
- let replacement: 'content' | 'value' = 'content'
- ctx.on('tools/post-execute', async () => {
- if (replacement === 'content') {
- return { kind: 'accept', content: [{ type: 'text', text: 'policy content' }] }
- }
- return {
- kind: 'accept',
- value: { text: 'policy value' },
- additionalContexts: [createUserMessage({
- content: [{ type: 'text', text: 'value context' }], source: { kind: 'plugin', plugin: 'test' },
- })],
- }
- })
- const content = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('content'), name: 'projected', arguments: {} })
- replacement = 'value'
- const value = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('value'), name: 'projected', arguments: {} })
- expect(content).toEqual({
- isError: false,
- value: { text: 'body' },
- content: [{ type: 'text', text: 'policy content' }],
- meta: { projected: 'body' },
- })
- expect(value).toEqual({
- isError: false,
- value: { text: 'policy value' },
- content: [{ type: 'text', text: 'render:policy value' }],
- meta: { projected: 'policy value' },
- additionalContexts: [{
- id: expect.any(String) as unknown,
- role: 'user',
- content: [{ type: 'text', text: 'value context' }],
- source: { kind: 'plugin', plugin: 'test' },
- }],
- })
- })
- it('fails a post-execute decision that replaces both projections or supplies an invalid value', async () => {
- const both = await setup()
- both.tools.register(echoTool)
- both.on('tools/post-execute', async () => ({
- kind: 'accept',
- value: 'replacement',
- content: [{ type: 'text', text: 'also replacement' }],
- } as unknown as PostToolDecision))
- const bothResult = await both.tools.execute({ signal: testToolSignal, callId: CallId('both'), name: 'echo', arguments: {} })
- expect(bothResult).toMatchObject({
- isError: true,
- error: { message: 'tools/post-execute accept decision cannot replace both value and content' },
- })
- const invalid = await setup()
- invalid.tools.register(echoTool)
- invalid.on('tools/post-execute', async () => ({ kind: 'accept', value: 1 }))
- const invalidResult = await invalid.tools.execute({ signal: testToolSignal, callId: CallId('invalid'), name: 'echo', arguments: {} })
- expect(invalidResult.error).toMatchObject({ info: { code: 'INVALID_TOOL_OUTPUT' } })
- expect('value' in invalidResult).toBe(false)
- })
- it('turns a post-execute block into a valueless failure', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- ctx.on('tools/post-execute', async () => ({
- kind: 'block',
- feedback: [{ type: 'text', text: 'blocked by policy' }],
- }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('block'), name: 'echo', arguments: { text: 'secret' } })
- expect(result).toEqual({
- isError: true,
- error: { message: 'blocked by policy' },
- content: [{ type: 'text', text: 'blocked by policy' }],
- })
- expect('value' in result).toBe(false)
- })
- it('replaces a canonical value without manufacturing additional context', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- ctx.on('tools/post-execute', async () => ({ kind: 'accept', value: 'replacement' }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('replace-value'), name: 'echo', arguments: {} })
- expect(result).toEqual({
- isError: false,
- value: 'replacement',
- content: [{ type: 'text', text: 'replacement' }],
- })
- })
- it.each([
- [[], 'tool result blocked by post-execute policy'],
- [[{ type: 'reasoning', text: 'private rationale' }], '[reasoning content]'],
- ] as const)('derives a stable failure message from non-text or empty block feedback', async (feedback, message) => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- ctx.on('tools/post-execute', async () => ({ kind: 'block', feedback: [...feedback] }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('block-message'), name: 'echo', arguments: {} })
- expect(result.error?.message).toBe(message)
- })
- it('contains a non-JSON post-execute failure projection as a safe final error', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- ctx.on('tools/post-execute', async () => ({
- kind: 'block',
- feedback: [{ type: 'text', text: 'blocked', invalid: () => undefined } as never],
- }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('invalid-block'), name: 'echo', arguments: {} })
- expect(result).toMatchObject({
- isError: true,
- error: { message: 'tool result must be losslessly JSON-serializable' },
- })
- })
- it('rejects value replacement on a failed dispatch', async () => {
- const ctx = await setup()
- ctx.tools.register({
- ...echoTool,
- name: 'throw-before-replace',
- async execute() { throw new Error('body failed') },
- })
- ctx.on('tools/post-execute', async () => ({ kind: 'accept', value: 'replacement' }))
- const result = await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId('failed-replace'), name: 'throw-before-replace', arguments: {},
- })
- expect(result.error?.message).toBe('tools/post-execute cannot replace the value of a failed result')
- })
- it('fails value replacement when the owning tool disappears before post-policy resolves', async () => {
- const ctx = await setup()
- const dispose = ctx.tools.register(echoTool)
- ctx.on('tools/post-execute', async () => {
- dispose()
- return { kind: 'accept', value: 'replacement' }
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('post-disposed'), name: 'echo', arguments: {} })
- expect(result.error).toEqual({
- message: 'unknown tool "echo"',
- info: { name: 'ToolNotFoundError', code: 'UNKNOWN_TOOL' },
- })
- })
- it('normalizes wrapper-authored failure metadata and contexts', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- ctx.on('tools/execute', async () => ({
- isError: true,
- error: { message: 'wrapped failure' },
- content: [{ type: 'text', text: 'wrapper content' }],
- meta: { wrapped: true },
- additionalContexts: [createUserMessage({
- content: [{ type: 'text', text: 'wrapper context' }], source: { kind: 'plugin', plugin: 'test' },
- })],
- }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('wrapper-failure'), name: 'echo', arguments: {} })
- expect(result).toEqual({
- isError: true,
- error: { message: 'wrapped failure' },
- content: [{ type: 'text', text: 'wrapper content' }],
- meta: { wrapped: true },
- additionalContexts: [{
- id: expect.any(String) as unknown,
- role: 'user',
- content: [{ type: 'text', text: 'wrapper context' }],
- source: { kind: 'plugin', plugin: 'test' },
- }],
- })
- })
- it('fails wrapper-authored success normalization when the owning tool disappears', async () => {
- const ctx = await setup()
- const dispose = ctx.tools.register(echoTool)
- ctx.on('tools/execute', async () => {
- dispose()
- return { isError: false, value: 'replacement', content: [] }
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('wrapper-disposed'), name: 'echo', arguments: {} })
- expect(result.error).toEqual({
- message: 'unknown tool "echo"',
- info: { name: 'ToolNotFoundError', code: 'UNKNOWN_TOOL' },
- })
- })
- it('suppresses presentation metadata only for nested composite dispatches', async () => {
- const ctx = await setup()
- ctx.tools.register({
- ...echoTool,
- name: 'meta-suppression',
- output: { ...echoTool.output, presentationMeta: () => ({ card: true }) },
- })
- const direct = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('direct'), name: 'meta-suppression', arguments: {} })
- const nested = await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId('nested'),
- name: 'meta-suppression',
- arguments: {},
- parent: Symbol('outer') as ToolExecutionToken,
- })
- expect(direct.meta).toEqual({ card: true })
- expect(nested.meta).toBeUndefined()
- expect(nested.isError ? undefined : nested.value).toBe('')
- })
- it('carries a nested conclusion on the nested result for its composite to forward', async () => {
- const ctx = await setup()
- ctx.tools.register({
- ...echoTool,
- name: 'terminal-nested',
- async execute(_args, exec) {
- exec.concludeTurn()
- return 'terminal'
- },
- })
- // A composite that forwards the marker from the nested result — the Code
- // Mode dispatch shape. A recovering composite (nested failure swallowed)
- // has no marker to forward: ToolExecutionFailure types concludesTurn as
- // never, so only an authoritative nested success can conclude the run.
- let call = 0
- ctx.tools.register({
- ...echoTool,
- name: 'composite',
- async execute(_args, exec) {
- call += 1
- const nested = await ctx.tools.execute({
- signal: exec.signal, callId: CallId(`nested-${call}`), name: 'terminal-nested', arguments: {}, parent: exec.token,
- })
- if (nested.concludesTurn) exec.concludeTurn()
- return nested.isError ? 'nested failed, composite recovered' : 'nested succeeded'
- },
- })
- // A policy converts the nested success into an error: the failed result
- // carries no marker, so the recovering composite does not conclude.
- const veto = ctx.on('tools/post-execute', async (exec, _result, next): Promise<PostToolDecision> => {
- if (exec.name !== 'terminal-nested') return next()
- return { kind: 'block', feedback: [{ type: 'text', text: 'nested success rejected' }] }
- })
- const recovered = await ctx.tools.execute({
- signal: testToolSignal, callId: CallId('composite-vetoed'), name: 'composite', arguments: {},
- })
- expect(recovered.isError).toBe(false)
- expect(recovered.concludesTurn).toBeUndefined()
- veto()
- // The same nested call succeeding carries the marker; the composite
- // forwards it onto its own successful result.
- const concluded = await ctx.tools.execute({
- signal: testToolSignal, callId: CallId('composite-ok'), name: 'composite', arguments: {},
- })
- expect(concluded.isError).toBe(false)
- expect(concluded.concludesTurn).toBe(true)
- })
- it('returns isError results for unknown tools and throwing tools', async () => {
- const ctx = await setup()
- ctx.tools.register({
- ...echoTool,
- name: 'boom',
- async execute() {
- throw new Error('exploded')
- },
- })
- const unknown = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'nope', arguments: {} })
- expect(unknown.isError).toBe(true)
- expect(unknown.content[0]).toMatchObject({ text: 'Error: unknown tool "nope"' })
- // An unknown tool is a routable failure class, same as a tool-thrown one.
- expect(unknown.error).toEqual({
- message: 'unknown tool "nope"',
- info: { name: 'ToolNotFoundError', code: 'UNKNOWN_TOOL' },
- })
- const thrown = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c2'), name: 'boom', arguments: {} })
- expect(thrown.isError).toBe(true)
- expect(thrown.content[0]).toMatchObject({ text: 'Error: exploded' })
- })
- it('normalizes a hostile thrown value whose inspection and coercion both throw', async () => {
- const ctx = await setup()
- ctx.tools.register({
- ...echoTool,
- name: 'hostile-throw',
- async execute() {
- throw new Proxy({}, {
- getPrototypeOf: () => { throw new Error('prototype trap') },
- has: () => { throw new Error('has trap') },
- get: () => { throw new Error('get trap') },
- })
- },
- })
- await expect(ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId('hostile'), name: 'hostile-throw', arguments: {},
- })).resolves.toMatchObject({
- isError: true,
- content: [{ type: 'text', text: 'Error: <unprintable thrown value>' }],
- })
- })
- it('ToolNotFoundError carries a stable message and code', async () => {
- const { HarnessError } = await import('@deepseek-ai/dsh-llm')
- const err = new ToolNotFoundError('ghost')
- expect(err).toBeInstanceOf(HarnessError)
- expect(err.name).toBe('ToolNotFoundError')
- expect(err.code).toBe('UNKNOWN_TOOL')
- expect(err.message).toBe('unknown tool "ghost"')
- })
- it('lets a tools/pre-execute listener deny a call (permission pattern)', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- let postSawFrozen = false
- ctx.on('tools/pre-execute', async (exec, next): Promise<PreToolDecision> => {
- if (exec.name === 'echo') return { kind: 'deny', reason: 'denied by policy' }
- return next()
- })
- ctx.on('tools/post-execute', async (_exec, result, next) => {
- postSawFrozen = Object.isFrozen(result)
- expect(Reflect.set(result, 'content', [])).toBe(false)
- return next()
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: { text: 'hi' } })
- expect(result.isError).toBe(true)
- expect(result.content[0]).toMatchObject({ text: 'Error: denied by policy' })
- expect(postSawFrozen).toBe(true)
- })
- it('an ask decision degrades to deny when no approval seam is mounted', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- ctx.on('tools/pre-execute', async (_exec, _next): Promise<PreToolDecision> =>
- ({ kind: 'ask', reason: 'needs approval' }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: { text: 'hi' } })
- expect(result.isError).toBe(true)
- expect(result.content[0]).toMatchObject({ text: 'Error: needs approval' })
- })
- it('an ask decision with no reason degrades to deny with a default message', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- ctx.on('tools/pre-execute', async (_exec, _next): Promise<PreToolDecision> => ({ kind: 'ask' }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: { text: 'hi' } })
- expect(result.isError).toBe(true)
- expect(result.content[0]).toMatchObject({ text: 'Error: tool "echo" requires approval (not yet supported)' })
- })
- describe('ask routing through ctx.approval', () => {
- /**
- * A minimal Agent stand-in — the approval seam reaches
- * `agent.session.append` and folds `.events`; the seeded open turn
- * satisfies request()'s enclosure precondition.
- */
- function fakeAgent(): Agent {
- return {
- session: { events: [{ type: 'turn/start' }], append: () => ({}) },
- } as unknown as Agent
- }
- async function approvalSetup() {
- const ctx = await setup()
- await ctx.plugin(ApprovalService)
- ctx.tools.register(echoTool)
- return ctx
- }
- it('dispatches the tool when the answerer grants allowed-once, forwarding the ask fields', async () => {
- const ctx = await approvalSetup()
- const agent = fakeAgent()
- const controller = new AbortController()
- const seen: ApprovalRequest[] = []
- ctx.on('approval/request', (req) => {
- seen.push(req)
- return Promise.resolve<ApprovalOutcome>('allowed-once')
- })
- ctx.on('tools/pre-execute', async (_exec, _next): Promise<PreToolDecision> =>
- ({ kind: 'ask', reason: 'hook wants a human' }))
- const result = await ctx.tools.execute({
- callId: CallId('c1'), name: 'echo', arguments: { text: 'hi' }, agent, signal: controller.signal,
- })
- expect(result).toMatchObject({ isError: false, content: [{ type: 'text', text: 'hi' }] })
- expect(seen).toHaveLength(1)
- expect(seen[0]).toMatchObject({ agent, toolName: 'echo', callId: 'c1', reason: 'hook wants a human' })
- expect(seen[0]?.signal).toBe(controller.signal)
- })
- it('denies with the user-rejection reason on rejected', async () => {
- const ctx = await approvalSetup()
- ctx.on('approval/request', () => Promise.resolve<ApprovalOutcome>('rejected'))
- ctx.on('tools/pre-execute', async (_exec, _next): Promise<PreToolDecision> => ({ kind: 'ask' }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: {}, agent: fakeAgent() })
- expect(result.isError).toBe(true)
- expect(result.content[0]).toMatchObject({ text: 'Error: the user rejected tool "echo"' })
- })
- it('denies with the cancellation reason on cancelled', async () => {
- const ctx = await approvalSetup()
- ctx.on('approval/request', () => Promise.resolve<ApprovalOutcome>('cancelled'))
- ctx.on('tools/pre-execute', async (_exec, _next): Promise<PreToolDecision> => ({ kind: 'ask' }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: {}, agent: fakeAgent() })
- expect(result.isError).toBe(true)
- expect(result.content[0]).toMatchObject({ text: 'Error: approval for tool "echo" was cancelled' })
- })
- it('returns ABORTED_BEFORE_DISPATCH when caller cancellation overtakes approval', async () => {
- const ctx = await approvalSetup()
- const entered = Promise.withResolvers<undefined>()
- const release = Promise.withResolvers<ApprovalOutcome>()
- let dispatched = 0
- ctx.tools.register({
- ...echoTool,
- name: 'approval-probe',
- async execute() { dispatched += 1; return [] },
- })
- ctx.on('approval/request', () => {
- entered.resolve(undefined)
- return release.promise
- })
- ctx.on('tools/pre-execute', async (_exec, _next): Promise<PreToolDecision> => ({ kind: 'ask' }))
- const controller = new AbortController()
- const pending = ctx.tools.execute({
- callId: CallId('approval-cancelled'),
- name: 'approval-probe',
- arguments: {},
- agent: fakeAgent(),
- signal: controller.signal,
- })
- await entered.promise
- controller.abort('caller cancelled approval')
- release.resolve('allowed-once')
- await expect(pending).resolves.toMatchObject({
- isError: true,
- error: { info: { name: 'AbortError', code: TOOL_ABORTED_BEFORE_DISPATCH } },
- })
- expect(dispatched).toBe(0)
- })
- it('denies with the no-channel reason when the seam is mounted but nobody answers', async () => {
- const ctx = await approvalSetup()
- ctx.on('tools/pre-execute', async (_exec, _next): Promise<PreToolDecision> => ({ kind: 'ask' }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: {}, agent: fakeAgent() })
- expect(result.isError).toBe(true)
- expect(result.content[0]).toMatchObject({ text: 'Error: tool "echo" requires approval, but no approval channel is available' })
- })
- it('denies an agent-less execution without asking — nothing to route or audit through', async () => {
- const ctx = await approvalSetup()
- let asked = false
- ctx.on('approval/request', () => {
- asked = true
- return Promise.resolve<ApprovalOutcome>('allowed-once')
- })
- ctx.on('tools/pre-execute', async (_exec, _next): Promise<PreToolDecision> => ({ kind: 'ask' }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: {} })
- expect(asked).toBe(false)
- expect(result.isError).toBe(true)
- expect(result.content[0]).toMatchObject({ text: 'Error: tool "echo" requires approval, but the call has no agent to route it through' })
- })
- it('turns a rogue outcome from a NON-conforming approval stand-in into an isError result', async () => {
- // ApprovalService normalizes rogue answers itself; this pins the
- // registry's own exhaustiveness backstop by shadowing the service with a
- // stand-in that violates the outcome contract.
- const ctx = await setup()
- ctx.tools.register(echoTool)
- ctx.provide('approval', { request: () => Promise.resolve('yolo') } as unknown as ApprovalService)
- ctx.on('tools/pre-execute', async (_exec, _next): Promise<PreToolDecision> => ({ kind: 'ask' }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: {}, agent: fakeAgent() })
- expect(result.isError).toBe(true)
- const text = result.content[0]?.type === 'text' ? result.content[0].text : ''
- expect(text).toContain('unreachable')
- })
- })
- it('a tools/post-execute listener can replace the result content (accept) ', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- ctx.on('tools/post-execute', async (_exec, _result, _next): Promise<PostToolDecision> =>
- ({ kind: 'accept', content: [{ type: 'text', text: 'rewritten' }] }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: { text: 'hi' } })
- expect(result.isError).toBe(false)
- expect(result.content[0]).toMatchObject({ text: 'rewritten' })
- })
- it('a tools/post-execute block turns the call into an isError with corrective feedback', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- ctx.on('tools/post-execute', async (_exec, _result, _next): Promise<PostToolDecision> =>
- ({ kind: 'block', feedback: [{ type: 'text', text: 'output rejected: try again' }] }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: { text: 'hi' } })
- expect(result.isError).toBe(true)
- expect(result.content[0]).toMatchObject({ text: 'output rejected: try again' })
- })
- it('runs the snapshotted final content transform after outer pipeline normalization', async () => {
- const ctx = await setup()
- const dispose = ctx.tools.register(defineContentToolFixture({
- name: 'bounded',
- description: 'bounded result',
- parameters: {},
- async execute() { return [{ type: 'text', text: 'body' }] },
- finalizeContent(exec, result) {
- expect(exec.name).toBe('bounded')
- expect(result.isError).toBe(true)
- return [{ type: 'text', text: 'bounded failure' }]
- },
- }))
- ctx.on('tools/pre-execute', async () => {
- dispose()
- throw new HarnessError('policy failed', 'POLICY_FAILED')
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('bounded'), name: 'bounded', arguments: {} })
- expect(result).toEqual({
- content: [{ type: 'text', text: 'bounded failure' }],
- isError: true,
- error: {
- message: 'policy failed',
- info: { name: 'HarnessError', code: 'POLICY_FAILED' },
- },
- })
- })
- it('a block decision can ALSO attach additionalContexts', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- ctx.on('tools/post-execute', async (_exec, _result, _next): Promise<PostToolDecision> =>
- ({
- kind: 'block',
- feedback: [{ type: 'text', text: 'rejected' }],
- additionalContexts: [createUserMessage({
- content: [{ type: 'text', text: 'why it was rejected' }], source: { kind: 'plugin', plugin: 'test' },
- })],
- }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: { text: 'hi' } })
- expect(result.isError).toBe(true)
- expect(result.content[0]).toMatchObject({ text: 'rejected' })
- expect(result.additionalContexts).toMatchObject([{ content: [{ text: 'why it was rejected' }], source: { kind: 'plugin', plugin: 'test' } }])
- })
- it('post-execute additionalContexts ride on the result for the loop to buffer', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- ctx.on('tools/post-execute', async (_exec, _result, _next): Promise<PostToolDecision> =>
- ({ kind: 'accept', additionalContexts: [createUserMessage({
- content: [{ type: 'text', text: 'fyi' }], source: { kind: 'plugin', plugin: 'test' },
- })] }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: { text: 'hi' } })
- expect(result.additionalContexts).toMatchObject([{ content: [{ text: 'fyi' }], source: { kind: 'plugin', plugin: 'test' } }])
- })
- it('preserves tool-deferred, execute-wrapper, and post-execute contexts in order', async () => {
- const ctx = await setup()
- ctx.tools.register(defineContentToolFixture({
- name: 'composite',
- description: 'composite',
- parameters: {},
- async execute(_args, exec) {
- exec.deferContext(createUserMessage({
- content: [{ type: 'text', text: 'nested-1' }], source: { kind: 'plugin', plugin: 'nested-1' },
- }))
- exec.deferContext(createUserMessage({
- content: [{ type: 'text', text: 'nested-2' }], source: { kind: 'plugin', plugin: 'nested-2' },
- }))
- return [{ type: 'text', text: 'done' }]
- },
- }))
- ctx.on('tools/execute', async (_exec, next) => {
- const result = await next()
- return {
- ...result,
- additionalContexts: [
- ...result.additionalContexts ?? [],
- createUserMessage({
- content: [{ type: 'text', text: 'wrapper' }], source: { kind: 'plugin', plugin: 'wrapper' },
- }),
- ],
- }
- })
- ctx.on('tools/post-execute', async (_exec, _result, next): Promise<PostToolDecision> => {
- const downstream = await next()
- return {
- ...downstream,
- additionalContexts: [
- createUserMessage({
- content: [{ type: 'text', text: 'post' }], source: { kind: 'plugin', plugin: 'post' },
- }),
- ...downstream.additionalContexts ?? [],
- ],
- }
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('composite'), name: 'composite', arguments: {} })
- expect(result.additionalContexts?.map(context => context.source)).toEqual([
- { kind: 'plugin', plugin: 'nested-1' },
- { kind: 'plugin', plugin: 'nested-2' },
- { kind: 'plugin', plugin: 'wrapper' },
- { kind: 'plugin', plugin: 'post' },
- ])
- })
- it('keeps deferred contexts when a composite tool throws, but drops them when the outer call is blocked', async () => {
- const ctx = await setup()
- ctx.tools.register(defineContentToolFixture({
- name: 'failing-composite',
- description: 'failing composite',
- parameters: {},
- async execute(_args, exec) {
- exec.deferContext(createUserMessage({
- content: [{ type: 'text', text: 'nested' }], source: { kind: 'plugin', plugin: 'nested' },
- }))
- throw new Error('outer failure')
- },
- }))
- const failed = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('failed'), name: 'failing-composite', arguments: {} })
- expect(failed.isError).toBe(true)
- expect(failed.additionalContexts?.map(context => context.source)).toEqual([{ kind: 'plugin', plugin: 'nested' }])
- ctx.on('tools/post-execute', async (): Promise<PostToolDecision> => ({
- kind: 'block',
- feedback: [{ type: 'text', text: 'blocked' }],
- additionalContexts: [createUserMessage({
- content: [{ type: 'text', text: 'block-only' }], source: { kind: 'plugin', plugin: 'blocker' },
- })],
- }))
- const blocked = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('blocked'), name: 'failing-composite', arguments: {} })
- expect(blocked.isError).toBe(true)
- expect(blocked.additionalContexts?.map(context => context.source)).toEqual([{ kind: 'plugin', plugin: 'blocker' }])
- })
- it('composes pre + post waterfalls around dispatch (sandbox-wrap pattern)', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- const order: string[] = []
- ctx.on('tools/pre-execute', async (_exec, next) => {
- order.push('pre:before')
- const decision = await next()
- order.push('pre:after')
- return decision
- })
- ctx.on('tools/post-execute', async (_exec, _result, next) => {
- order.push('post:before')
- const decision = await next()
- order.push('post:after')
- return decision
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: { text: 'x' } })
- expect(result.isError).toBe(false)
- // pre runs fully (gate) before dispatch, then post runs over the result.
- expect(order).toEqual(['pre:before', 'pre:after', 'post:before', 'post:after'])
- })
- it('runs tools/execute after an allowed pre-execute, around dispatch, and before post-execute', async () => {
- const ctx = await setup()
- const order: string[] = []
- ctx.tools.register(defineContentToolFixture({
- name: 'traced',
- description: 'echo',
- parameters: { text: { type: 'string' } },
- async execute(args) {
- order.push('dispatch')
- return [{ type: 'text' as const, text: args.text ?? '' }]
- },
- }))
- ctx.on('tools/pre-execute', async (_exec, next) => { order.push('pre'); return next() })
- ctx.on('tools/execute', async (_exec: ToolDispatchExecution, next: () => Promise<ToolExecutionResult>): Promise<ToolExecutionResult> => {
- order.push('execute:before')
- const result = await next()
- order.push('execute:after')
- return result
- })
- ctx.on('tools/post-execute', async (_exec, _result, next) => { order.push('post'); return next() })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'traced', arguments: { text: 'hi' } })
- expect(result).toEqual({ content: [{ type: 'text', text: 'hi' }], isError: false, value: [{ type: 'text', text: 'hi' }] })
- // The around seam wraps dispatch; pre gates before it, post runs over its result.
- expect(order).toEqual(['pre', 'execute:before', 'dispatch', 'execute:after', 'post'])
- })
- it('skips dispatch when caller cancellation arrives while pre-execute awaits', async () => {
- const ctx = await setup()
- let dispatched = 0
- ctx.tools.register({
- ...echoTool,
- name: 'must-not-run',
- async execute() { dispatched += 1; return [] },
- })
- const entered = Promise.withResolvers<undefined>()
- const release = Promise.withResolvers<undefined>()
- ctx.on('tools/pre-execute', async (_exec, next) => {
- entered.resolve(undefined)
- await release.promise
- return await next()
- })
- const controller = new AbortController()
- const pending = ctx.tools.execute({
- callId: CallId('cancelled-in-pre'), name: 'must-not-run', arguments: {}, signal: controller.signal,
- })
- await entered.promise
- controller.abort('cancelled in policy')
- release.resolve(undefined)
- await expect(pending).resolves.toMatchObject({
- content: [{ type: 'text', text: 'Error: tool call aborted before dispatch' }],
- isError: true,
- error: { info: { name: 'AbortError', code: TOOL_ABORTED_BEFORE_DISPATCH } },
- })
- expect(dispatched).toBe(0)
- })
- it('preserves a pre-execute denial that settles after cancellation', async () => {
- const ctx = await setup()
- let dispatched = 0
- ctx.tools.register({
- ...echoTool,
- name: 'denied-after-cancel',
- async execute() { dispatched += 1; return [] },
- })
- const entered = Promise.withResolvers<undefined>()
- const release = Promise.withResolvers<undefined>()
- ctx.on('tools/pre-execute', async () => {
- entered.resolve(undefined)
- await release.promise
- return { kind: 'deny', reason: 'policy denied the call' }
- })
- const controller = new AbortController()
- const pending = ctx.tools.execute({
- callId: CallId('denied-after-cancel'), name: 'denied-after-cancel', arguments: {}, signal: controller.signal,
- })
- await entered.promise
- controller.abort('cancelled while policy decided')
- release.resolve(undefined)
- await expect(pending).resolves.toEqual({
- content: [{ type: 'text', text: 'Error: policy denied the call' }],
- isError: true,
- error: { message: 'policy denied the call' },
- })
- expect(dispatched).toBe(0)
- })
- it('preserves an async pre-execute failure that settles after cancellation', async () => {
- const ctx = await setup()
- let dispatched = 0
- ctx.tools.register({
- ...echoTool,
- name: 'must-not-run',
- async execute() { dispatched += 1; return [] },
- })
- const entered = Promise.withResolvers<undefined>()
- const release = Promise.withResolvers<undefined>()
- ctx.on('tools/pre-execute', async () => {
- entered.resolve(undefined)
- await release.promise
- throw new Error('gate interrupted')
- })
- const controller = new AbortController()
- const pending = ctx.tools.execute({
- callId: CallId('cancelled-pre-error'), name: 'must-not-run', arguments: {}, signal: controller.signal,
- })
- await entered.promise
- controller.abort('cancelled in policy')
- release.resolve(undefined)
- await expect(pending).resolves.toEqual({
- content: [{ type: 'text', text: 'Error: gate interrupted' }],
- isError: true,
- error: { message: 'gate interrupted' },
- })
- expect(dispatched).toBe(0)
- })
- it('rechecks caller cancellation after an async around-dispatch wrapper delegates', async () => {
- const ctx = await setup()
- let dispatched = 0
- ctx.tools.register({
- ...echoTool,
- name: 'must-not-run',
- async execute() { dispatched += 1; return [] },
- })
- const entered = Promise.withResolvers<undefined>()
- const release = Promise.withResolvers<undefined>()
- const replacement = new AbortController()
- ctx.on('tools/execute', async (exec, next) => {
- const upstream = exec.signal
- exec.signal = replacement.signal
- try {
- entered.resolve(undefined)
- await release.promise
- return await next()
- } finally {
- exec.signal = upstream
- }
- })
- const controller = new AbortController()
- const pending = ctx.tools.execute({
- callId: CallId('cancelled-in-around'), name: 'must-not-run', arguments: {}, signal: controller.signal,
- })
- await entered.promise
- controller.abort('cancelled in wrapper')
- release.resolve(undefined)
- await expect(pending).resolves.toMatchObject({
- isError: true,
- error: { info: { name: 'AbortError', code: TOOL_ABORTED_BEFORE_DISPATCH } },
- })
- expect(dispatched).toBe(0)
- })
- it('skips dispatch when an around wrapper supplies an already-aborted signal', async () => {
- const ctx = await setup()
- let dispatched = 0
- ctx.tools.register({
- ...echoTool,
- name: 'must-not-run',
- async execute() { dispatched += 1; return [] },
- })
- const replacement = AbortSignal.abort('wrapper cancelled')
- ctx.on('tools/execute', async (exec, next) => {
- const upstream = exec.signal
- exec.signal = replacement
- try {
- return await next()
- } finally {
- exec.signal = upstream
- }
- })
- const controller = new AbortController()
- const result = await ctx.tools.execute({
- callId: CallId('cancelled-wrapper'), name: 'must-not-run', arguments: {}, signal: controller.signal,
- })
- expect(result.error).toEqual({
- message: 'tool call aborted before dispatch',
- info: { name: 'AbortError', code: TOOL_ABORTED_BEFORE_DISPATCH },
- })
- expect(dispatched).toBe(0)
- })
- it('uses ABORTED_BEFORE_DISPATCH when cancellation overtakes a wrapper short-circuit', async () => {
- const ctx = await setup()
- let dispatched = 0
- ctx.tools.register({
- ...echoTool,
- name: 'short-circuited',
- async execute() { dispatched += 1; return [] },
- })
- const entered = Promise.withResolvers<undefined>()
- const release = Promise.withResolvers<undefined>()
- ctx.on('tools/execute', async () => {
- entered.resolve(undefined)
- await release.promise
- return {
- value: 'wrapper success',
- content: [{ type: 'text', text: 'wrapper success' }],
- isError: false,
- additionalContexts: [createUserMessage({
- content: [{ type: 'text', text: 'wrapper context' }],
- source: { kind: 'plugin', plugin: 'wrapper' },
- })],
- }
- })
- const controller = new AbortController()
- const pending = ctx.tools.execute({
- callId: CallId('cancelled-short-circuit'),
- name: 'short-circuited',
- arguments: {},
- signal: controller.signal,
- })
- await entered.promise
- controller.abort('cancelled while wrapper waited')
- release.resolve(undefined)
- await expect(pending).resolves.toMatchObject({
- content: [{ type: 'text', text: 'Error: tool call aborted before dispatch' }],
- isError: true,
- error: { info: { name: 'AbortError', code: TOOL_ABORTED_BEFORE_DISPATCH } },
- additionalContexts: [{ source: { kind: 'plugin', plugin: 'wrapper' } }],
- })
- expect(dispatched).toBe(0)
- })
- it('replaces a late wrapper success with ABORTED and preserves deferred contexts', async () => {
- const ctx = await setup()
- ctx.tools.register({
- ...echoTool,
- name: 'completed-before-wrapper',
- async execute(_args, exec) {
- exec.deferContext(createUserMessage({
- content: [{ type: 'text', text: 'completed child work' }],
- source: { kind: 'plugin', plugin: 'child' },
- }))
- return 'body complete'
- },
- })
- const entered = Promise.withResolvers<undefined>()
- const release = Promise.withResolvers<undefined>()
- ctx.on('tools/execute', async (_exec, next) => {
- const result = await next()
- entered.resolve(undefined)
- await release.promise
- return result
- })
- const controller = new AbortController()
- const pending = ctx.tools.execute({
- callId: CallId('cancelled-after-body'), name: 'completed-before-wrapper', arguments: {}, signal: controller.signal,
- })
- await entered.promise
- controller.abort('cancelled while wrapper settled')
- release.resolve(undefined)
- await expect(pending).resolves.toMatchObject({
- content: [{ type: 'text', text: 'Error: tool call aborted' }],
- isError: true,
- error: { info: { name: 'AbortError', code: TOOL_ABORTED } },
- additionalContexts: [{ source: { kind: 'plugin', plugin: 'child' } }],
- })
- })
- it('replaces a late post-execute success with ABORTED and preserves contexts', async () => {
- const ctx = await setup()
- ctx.tools.register({
- ...echoTool,
- name: 'completed-before-post',
- async execute(_args, exec) {
- exec.deferContext(createUserMessage({
- content: [{ type: 'text', text: 'completed child work' }],
- source: { kind: 'plugin', plugin: 'child' },
- }))
- return 'body complete'
- },
- })
- const entered = Promise.withResolvers<undefined>()
- const release = Promise.withResolvers<undefined>()
- ctx.on('tools/post-execute', async (_exec, _result, next) => {
- const decision = await next()
- entered.resolve(undefined)
- await release.promise
- return {
- ...decision,
- additionalContexts: [createUserMessage({
- content: [{ type: 'text', text: 'post context' }],
- source: { kind: 'plugin', plugin: 'post' },
- })],
- }
- })
- const controller = new AbortController()
- const pending = ctx.tools.execute({
- callId: CallId('cancelled-in-post'), name: 'completed-before-post', arguments: {}, signal: controller.signal,
- })
- await entered.promise
- controller.abort('cancelled while post policy waits')
- release.resolve(undefined)
- await expect(pending).resolves.toMatchObject({
- content: [{ type: 'text', text: 'Error: tool call aborted' }],
- isError: true,
- error: { info: { name: 'AbortError', code: TOOL_ABORTED } },
- additionalContexts: [
- { source: { kind: 'plugin', plugin: 'child' } },
- { source: { kind: 'plugin', plugin: 'post' } },
- ],
- })
- })
- it('preserves an around-dispatch failure that settles after cancellation', async () => {
- const ctx = await setup()
- let dispatched = 0
- ctx.tools.register({
- ...echoTool,
- name: 'wrapper-failure',
- async execute() { dispatched += 1; return [] },
- })
- const entered = Promise.withResolvers<undefined>()
- const release = Promise.withResolvers<undefined>()
- ctx.on('tools/execute', async () => {
- entered.resolve(undefined)
- await release.promise
- throw new HarnessError('wrapper failed', 'WRAPPER_FAILURE')
- })
- const controller = new AbortController()
- const pending = ctx.tools.execute({
- callId: CallId('wrapper-failure'), name: 'wrapper-failure', arguments: {}, signal: controller.signal,
- })
- await entered.promise
- controller.abort('cancelled while wrapper failed')
- release.resolve(undefined)
- await expect(pending).resolves.toMatchObject({
- content: [{ type: 'text', text: 'Error: wrapper failed' }],
- isError: true,
- error: { info: { name: 'HarnessError', code: 'WRAPPER_FAILURE' } },
- })
- expect(dispatched).toBe(0)
- })
- it('preserves a tool-owned failure after the body observes cancellation', async () => {
- const ctx = await setup()
- const entered = Promise.withResolvers<undefined>()
- ctx.tools.register({
- ...echoTool,
- name: 'tool-failure',
- execute(_args, exec) {
- entered.resolve(undefined)
- return new Promise<never>((_resolve, reject) => {
- exec.signal.addEventListener('abort', () => {
- reject(new HarnessError('tool failed', 'TOOL_FAILURE'))
- }, { once: true })
- })
- },
- })
- const controller = new AbortController()
- const pending = ctx.tools.execute({
- callId: CallId('tool-failure'), name: 'tool-failure', arguments: {}, signal: controller.signal,
- })
- await entered.promise
- controller.abort('cancelled running body')
- await expect(pending).resolves.toMatchObject({
- content: [{ type: 'text', text: 'Error: tool failed' }],
- isError: true,
- error: { info: { name: 'HarnessError', code: 'TOOL_FAILURE' } },
- })
- })
- it('preserves a post-policy failure that settles after cancellation', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- const entered = Promise.withResolvers<undefined>()
- const release = Promise.withResolvers<undefined>()
- ctx.on('tools/post-execute', async () => {
- entered.resolve(undefined)
- await release.promise
- throw new HarnessError('post-policy failed', 'POST_FAILURE')
- })
- const controller = new AbortController()
- const pending = ctx.tools.execute({
- callId: CallId('post-failure'), name: 'echo', arguments: {}, signal: controller.signal,
- })
- await entered.promise
- controller.abort('cancelled while post-policy failed')
- release.resolve(undefined)
- await expect(pending).resolves.toMatchObject({
- content: [{ type: 'text', text: 'Error: post-policy failed' }],
- isError: true,
- error: { info: { name: 'HarnessError', code: 'POST_FAILURE' } },
- })
- })
- it('fuses caller cancellation back into a wrapper replacement for the running body', async () => {
- const ctx = await setup()
- const entered = Promise.withResolvers<undefined>()
- const replacement = new AbortController()
- let bodySignal: AbortSignal | undefined
- ctx.tools.register({
- ...echoTool,
- name: 'cooperative',
- execute(_args, exec) {
- bodySignal = exec.signal
- entered.resolve(undefined)
- if (exec.signal.aborted) return Promise.resolve('stopped')
- return new Promise<string>((resolve) => {
- exec.signal.addEventListener('abort', () => { resolve('stopped') }, { once: true })
- })
- },
- })
- ctx.on('tools/execute', async (exec, next) => {
- const upstream = exec.signal
- exec.signal = replacement.signal
- try {
- return await next()
- } finally {
- exec.signal = upstream
- }
- })
- const controller = new AbortController()
- const pending = ctx.tools.execute({
- callId: CallId('cancelled-body'), name: 'cooperative', arguments: {}, signal: controller.signal,
- })
- await entered.promise
- expect(bodySignal).not.toBe(controller.signal)
- expect(bodySignal).not.toBe(replacement.signal)
- controller.abort('cancel running body')
- await expect(pending).resolves.toMatchObject({
- isError: true,
- error: { info: { name: 'AbortError', code: TOOL_ABORTED } },
- })
- expect(bodySignal?.aborted).toBe(true)
- expect(replacement.signal.aborted).toBe(false)
- })
- it('restores the required caller signal after around dispatch', async () => {
- const ctx = await setup()
- let postSignal: AbortSignal | undefined
- ctx.on('tools/execute', async (exec, next) => {
- const upstream = exec.signal
- exec.signal = new AbortController().signal
- try {
- return await next()
- } finally {
- exec.signal = upstream
- }
- })
- ctx.on('tools/post-execute', async (exec, _result, next) => {
- postSignal = exec.signal
- return next()
- })
- const controller = new AbortController()
- await ctx.tools.execute({
- callId: CallId('restored-signal'), name: 'echo', arguments: {}, signal: controller.signal,
- })
- expect(postSignal).toBe(controller.signal)
- })
- it('waits for an uncooperative started body before returning ABORTED', async () => {
- const ctx = await setup()
- const entered = Promise.withResolvers<undefined>()
- const release = Promise.withResolvers<string>()
- ctx.tools.register({
- ...echoTool,
- name: 'uncooperative',
- execute(_args, exec) {
- exec.deferContext(createUserMessage({
- content: [{ type: 'text', text: 'nested outcome' }],
- source: { kind: 'plugin', plugin: 'nested' },
- }))
- entered.resolve(undefined)
- return release.promise
- },
- })
- const controller = new AbortController()
- const pending = ctx.tools.execute({
- callId: CallId('drain-body'), name: 'uncooperative', arguments: {}, signal: controller.signal,
- })
- await entered.promise
- controller.abort('must still drain')
- const state = await Promise.race([
- pending.then(() => 'settled' as const),
- Promise.resolve('pending' as const),
- ])
- expect(state).toBe('pending')
- release.resolve('settled')
- await expect(pending).resolves.toMatchObject({
- isError: true,
- error: { info: { name: 'AbortError', code: TOOL_ABORTED } },
- additionalContexts: [{ source: { kind: 'plugin', plugin: 'nested' } }],
- })
- })
- it('materializes a pre-aborted call and publishes one result without entering pipeline phases', async () => {
- const ctx = await setup()
- const phases = { pre: 0, around: 0, body: 0, post: 0, result: 0 }
- const callerArguments = { nested: { value: 1 } }
- const callerSignal = AbortSignal.abort('already cancelled')
- let argumentReads = 0
- let observedArguments: unknown
- let observedExecution: object | undefined
- let observedToken: symbol | undefined
- let observedSignal: AbortSignal | undefined
- let observedResult: ToolExecutionResult | undefined
- ctx.tools.register({
- ...echoTool,
- name: 'domain-abort',
- async execute() { phases.body += 1; return [] },
- })
- ctx.on('tools/pre-execute', async (_exec, next) => { phases.pre += 1; return next() })
- ctx.on('tools/execute', async (_exec, next) => { phases.around += 1; return next() })
- ctx.on('tools/post-execute', async (_exec, _result, next) => { phases.post += 1; return next() })
- ctx.on('tools/result', (exec, result) => {
- phases.result += 1
- observedExecution = exec
- observedArguments = exec.arguments
- observedToken = exec.token
- observedSignal = exec.signal
- observedResult = result
- })
- const result = await ctx.tools.execute({
- callId: CallId('pre-aborted'),
- name: 'domain-abort',
- get arguments() { argumentReads += 1; return callerArguments },
- signal: callerSignal,
- })
- expect(argumentReads).toBe(1)
- expect(phases).toEqual({ pre: 0, around: 0, body: 0, post: 0, result: 1 })
- expect(result).toEqual({
- content: [{ type: 'text', text: 'Error: tool call aborted before dispatch' }],
- isError: true,
- error: {
- message: 'tool call aborted before dispatch',
- info: { name: 'AbortError', code: TOOL_ABORTED_BEFORE_DISPATCH },
- },
- })
- expect(observedResult).toBe(result)
- expect(Object.isFrozen(observedExecution)).toBe(true)
- expect(typeof observedToken).toBe('symbol')
- expect(observedSignal).toBe(callerSignal)
- expect(Object.isFrozen(result)).toBe(true)
- expect(observedArguments).not.toBe(callerArguments)
- expect(Object.isFrozen(observedArguments)).toBe(true)
- expect(Object.isFrozen((observedArguments as { nested: object }).nested)).toBe(true)
- })
- it('lets argument materialization failure win over a pre-aborted signal', async () => {
- const ctx = await setup()
- let observed = 0
- ctx.on('tools/result', () => { observed += 1 })
- const result = await ctx.tools.execute({
- callId: CallId('invalid-pre-aborted'),
- name: 'missing',
- arguments: { invalid: () => undefined },
- signal: AbortSignal.abort('already cancelled'),
- })
- expect(result).toEqual({
- content: [{ type: 'text', text: 'Error: tool execution arguments must be losslessly JSON-serializable' }],
- isError: true,
- error: { message: 'tool execution arguments must be losslessly JSON-serializable' },
- })
- expect(observed).toBe(1)
- })
- it('a pre-execute deny short-circuits before tools/execute (the seam never runs)', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- let entered = false
- ctx.on('tools/pre-execute', async (_exec, _next): Promise<PreToolDecision> => ({ kind: 'deny', reason: 'nope' }))
- ctx.on('tools/execute', async (_exec: ToolDispatchExecution, next: () => Promise<ToolExecutionResult>): Promise<ToolExecutionResult> => {
- entered = true
- return next()
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: { text: 'hi' } })
- expect(result.isError).toBe(true)
- expect(result.content[0]).toMatchObject({ text: 'Error: nope' })
- expect(entered).toBe(false) // a denied call never enters the around-dispatch seam
- })
- it('a thrown tool is normalized to an isError result BEFORE a tools/execute listener sees next()', async () => {
- const ctx = await setup()
- ctx.tools.register({
- ...echoTool,
- name: 'boom',
- async execute() { throw new HarnessError('kaboom', 'BOOM') },
- })
- let seen: { isError: boolean; error?: unknown } | undefined
- ctx.on('tools/execute', async (_exec: ToolDispatchExecution, next: () => Promise<ToolExecutionResult>): Promise<ToolExecutionResult> => {
- const result = await next()
- // The base next() IS dispatch-with-normalization: the wrapper sees the
- // normalized isError result, never a raw throw from the tool body.
- seen = { isError: result.isError, error: result.error }
- return result
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'boom', arguments: {} })
- expect(seen).toEqual({
- isError: true,
- error: { message: 'kaboom', info: { name: 'HarnessError', code: 'BOOM' } },
- })
- expect(result.isError).toBe(true)
- expect(result.content[0]).toMatchObject({ text: 'Error: kaboom' })
- })
- it('freezes core dispatch outcomes before around and post listeners can observe them', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- const mutationAttempts: boolean[] = []
- ctx.on('tools/execute', async (_exec, next) => {
- const result = await next()
- mutationAttempts.push(Reflect.set(result, 'value', 'around mutation'))
- return result
- })
- ctx.on('tools/post-execute', async (_exec, result, next) => {
- mutationAttempts.push(Reflect.set(result, 'value', 'post mutation'))
- return next()
- })
- const result = await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId('frozen-canonical'), name: 'echo', arguments: { text: 'original' },
- })
- expect(mutationAttempts).toEqual([false, false])
- expect(result.isError ? undefined : result.value).toBe('original')
- })
- it('a thrown tool normalized inside tools/execute still reaches post-execute', async () => {
- const ctx = await setup()
- ctx.tools.register({
- ...echoTool,
- name: 'boom',
- async execute() { throw new Error('exploded') },
- })
- let postSaw: boolean | undefined
- ctx.on('tools/execute', async (_exec: ToolDispatchExecution, next: () => Promise<ToolExecutionResult>): Promise<ToolExecutionResult> => next())
- ctx.on('tools/post-execute', async (_exec, result, next) => {
- postSaw = result.isError
- return next()
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'boom', arguments: {} })
- expect(postSaw).toBe(true) // the normalized isError still flows through post-execute
- expect(result.isError).toBe(true)
- expect(result.content[0]).toMatchObject({ text: 'Error: exploded' })
- })
- it('re-fuses the caller signal with an around-dispatch replacement for the body', async () => {
- const ctx = await setup()
- let seenSignal: AbortSignal | undefined
- ctx.tools.register({
- ...echoTool,
- name: 'signal-probe',
- async execute(_args, exec) {
- seenSignal = exec.signal
- return 'ok'
- },
- })
- const upstream = new AbortController().signal
- const replacement = new AbortController().signal
- ctx.on('tools/execute', async (exec: ToolDispatchExecution, next: () => Promise<ToolExecutionResult>): Promise<ToolExecutionResult> => {
- expect(exec.signal).toBe(upstream)
- // Cordis next() ignores passed arguments, so a wrapper mutates exec in
- // place (the documented "mutate the shared object, then delegate" idiom).
- exec.signal = replacement
- return next()
- })
- await ctx.tools.execute({ callId: CallId('c1'), name: 'signal-probe', arguments: {}, signal: upstream })
- expect(seenSignal).toBeDefined()
- expect(seenSignal).not.toBe(upstream)
- expect(seenSignal).not.toBe(replacement)
- })
- it('a tools/execute listener can short-circuit dispatch by returning a result without next()', async () => {
- const ctx = await setup()
- let dispatched = false
- ctx.tools.register({
- ...echoTool,
- name: 'never-runs',
- async execute() { dispatched = true; return 'unreachable' },
- })
- ctx.on('tools/execute', async (_exec: ToolDispatchExecution, _next: () => Promise<ToolExecutionResult>): Promise<ToolExecutionResult> =>
- ({ content: [{ type: 'text', text: 'ignored authored content' }], isError: false, value: 'short-circuited' }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'never-runs', arguments: {} })
- expect(dispatched).toBe(false) // returning without next() skips core dispatch
- expect(result.content[0]).toMatchObject({ text: 'short-circuited' })
- })
- it('revalidates a cached canonical result returned from a different dispatch', async () => {
- const ctx = await setup()
- ctx.tools.register({ ...echoTool, name: 'string-output', async execute() { return 'cached' } })
- let objectBodyRan = false
- ctx.tools.register(defineTool({
- name: 'object-output',
- description: 'Return one closed object.',
- parameters: {},
- output: {
- schema: {
- type: 'object',
- properties: { ok: { type: 'boolean', required: true } },
- additionalProperties: false,
- },
- render: (_args, value) => [{ type: 'text', text: String(value.ok) }],
- },
- execute() {
- objectBodyRan = true
- return Promise.resolve({ ok: true })
- },
- }))
- let cached: ToolExecutionResult | undefined
- ctx.on('tools/execute', async (exec, next) => {
- if (exec.name === 'string-output') {
- cached = await next()
- return cached
- }
- if (exec.name === 'object-output') {
- if (cached === undefined) throw new Error('expected the first dispatch result')
- return cached
- }
- return next()
- })
- const first = await ctx.tools.execute({
- signal: testToolSignal, callId: CallId('cached-first'), name: 'string-output', arguments: {},
- })
- const second = await ctx.tools.execute({
- signal: testToolSignal, callId: CallId('cached-second'), name: 'object-output', arguments: {},
- })
- expect(first.isError ? undefined : first.value).toBe('cached')
- expect(objectBodyRan).toBe(false)
- expect(second).toMatchObject({
- isError: true,
- error: { info: { name: 'ToolOutputError', code: 'INVALID_TOOL_OUTPUT' } },
- })
- })
- it('preserves additionalContexts supplied by an around-dispatch result', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- ctx.on('tools/execute', async () => ({
- content: [{ type: 'text', text: 'short-circuited with context' }],
- isError: false,
- value: 'short-circuited with context',
- additionalContexts: [createUserMessage({
- content: [{ type: 'text', text: 'from around dispatch' }],
- source: { kind: 'plugin', plugin: 'test' },
- })],
- }))
- const result = await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId('around-context'), name: 'echo', arguments: {},
- })
- expect(result.additionalContexts).toEqual([{
- id: expect.any(String) as unknown,
- role: 'user',
- content: [{ type: 'text', text: 'from around dispatch' }],
- source: { kind: 'plugin', plugin: 'test' },
- }])
- })
- it('returns an isError result when a tools/execute listener throws', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- ctx.on('tools/execute', async () => { throw new Error('wrapper broke') })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: { text: 'hi' } })
- expect(result).toEqual({
- content: [{ type: 'text', text: 'Error: wrapper broke' }],
- error: { message: 'wrapper broke' },
- isError: true,
- })
- })
- it('returns an isError result when a tools/pre-execute listener throws', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- ctx.on('tools/pre-execute', async () => {
- throw new Error('permission hook broke')
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: { text: 'hi' } })
- expect(result).toEqual({
- content: [{ type: 'text', text: 'Error: permission hook broke' }],
- error: { message: 'permission hook broke' },
- isError: true,
- })
- })
- it('returns an isError result when a tools/post-execute listener throws', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- ctx.on('tools/post-execute', async () => {
- throw new Error('post hook broke')
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: { text: 'hi' } })
- expect(result).toEqual({
- content: [{ type: 'text', text: 'Error: post hook broke' }],
- error: { message: 'post hook broke' },
- isError: true,
- })
- })
- it('preserves structured error info when a tools/pre-execute listener throws HarnessError', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- ctx.on('tools/pre-execute', async () => {
- throw new HarnessError('denied', 'DENIED')
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'echo', arguments: { text: 'hi' } })
- expect(result).toMatchObject({
- isError: true,
- error: { message: 'denied', info: { name: 'HarnessError', code: 'DENIED' } },
- })
- })
- it('schemas() snapshots tool schemas instead of exposing registry objects', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- const first = ctx.tools.schemas()
- const firstParameters = first[0]!.parameters as { properties: Record<string, unknown> }
- firstParameters.properties['mutated'] = { type: 'string' }
- first[0]!.description = 'mutated'
- expect(ctx.tools.schemas()).toEqual([{
- name: 'echo',
- description: 'echo arguments back',
- parameters: { type: 'object', properties: { text: { type: 'string' } } },
- }])
- })
- it('schemas() snapshots deeply nested parameters without using structured-clone recursion', async () => {
- const ctx = await setup()
- const depth = 5_000
- let nested: JsonSchemaNode = { type: 'string' }
- for (let index = 0; index < depth; index++) nested = { oneOf: [nested, { type: 'null' }] }
- ctx.tools.register({
- ...echoTool,
- name: 'deep-schema',
- parameters: { type: 'object', properties: { nested } },
- })
- const projected = ctx.tools.schemas()[0]!.parameters as JsonSchemaNode
- let cursor = projected.properties!.nested!
- let layers = 0
- while (cursor.oneOf !== undefined) {
- cursor = cursor.oneOf[0]!
- layers++
- }
- expect(layers).toBe(depth)
- expect(cursor).toEqual({ type: 'string' })
- })
- it('rejects schema projection when a raw registration is not lossless JSON', async () => {
- const ctx = await setup()
- ctx.tools.register({
- ...echoTool,
- name: 'lossy-schema',
- parameters: { type: 'object', default: Number.NaN },
- })
- expect(() => ctx.tools.schemas())
- .toThrow('tool "lossy-schema" parameters must be lossless JSON before schema projection')
- })
- it('rejects a non-positive or non-finite registration timeout', async () => {
- const ctx = await setup()
- expect(() => ctx.tools.register({ ...echoTool, name: 'zero-timeout', timeoutMs: 0 }))
- .toThrow('timeoutMs must be a positive finite number')
- expect(() => ctx.tools.register({ ...echoTool, name: 'infinite-timeout', timeoutMs: Number.POSITIVE_INFINITY }))
- .toThrow('timeoutMs must be a positive finite number')
- })
- it('rejects duplicate names and unregisters on fiber dispose (HMR safety)', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- expect(() => ctx.tools.register(echoTool)).toThrow('already registered')
- const fiber = await ctx.plugin(Object.assign((inner: Context) => {
- inner.tools.register({ ...echoTool, name: 'scoped' })
- }, { inject: ['tools'] }))
- expect(ctx.tools.schemas().map(t => t.name)).toEqual(['echo', 'scoped'])
- await fiber.dispose()
- expect(ctx.tools.schemas().map(t => t.name)).toEqual(['echo'])
- })
- it('returns a callable disposer from register() that unregisters the tool', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- const dispose = ctx.tools.register({ ...echoTool, name: 'disposable' })
- expect(ctx.tools.schemas().map(t => t.name)).toEqual(['echo', 'disposable'])
- dispose()
- expect(ctx.tools.schemas().map(t => t.name)).toEqual(['echo'])
- })
- it('rolls back the tool entry when a tools/change listener throws (P1-1)', async () => {
- const ctx = await setup()
- let threw = false
- ctx.on('tools/change', () => {
- if (!threw) { threw = true; throw new Error('boom change listener') }
- })
- // The throwing emit must roll the entry back, not leak it.
- expect(() => ctx.tools.register(echoTool)).toThrow('boom change listener')
- expect(ctx.tools.get('echo')).toBeUndefined() // rolled back, not leaked
- expect(ctx.tools.schemas()).toHaveLength(0)
- // A subsequent listener-free register of the SAME name succeeds and is
- // exposed exactly once (the duplicate-name check is not wedged).
- const dispose = ctx.tools.register(echoTool)
- expect(ctx.tools.schemas().map(t => t.name)).toEqual(['echo'])
- dispose()
- expect(ctx.tools.get('echo')).toBeUndefined()
- })
- it('register() returns the EXACT effect disposer: a composite yield nests the teardown in order', async () => {
- // Registry methods return the exact Cordis effect disposer so a composite yield places
- // unregistration at its LIFO position. A wrapper would create a concurrent sibling; this async
- // probe yields during earlier teardown and would then observe the tool already removed.
- const ctx = await setup()
- const order: string[] = []
- const fiber = await ctx.plugin(Object.assign((inner: Context) => {
- inner.effect(function* () {
- yield () => { order.push('disposed-last') }
- yield inner.tools.register({ ...echoTool, name: 'nested' })
- order.push('registered')
- yield async () => {
- await new Promise(resolve => setTimeout(resolve, 0))
- order.push(inner.tools.get('nested') ? 'first: still registered' : 'first: already gone')
- }
- })
- }, { inject: ['tools'] }))
- await fiber.dispose()
- expect(order).toEqual(['registered', 'first: still registered', 'disposed-last'])
- expect(ctx.tools.get('nested')).toBeUndefined()
- })
- })
- describe('defineTool / schema DSL', () => {
- it('converts ParameterSchemaSpec to standard JSON Schema with required array', () => {
- const spec = {
- path: { type: 'string', required: true, description: 'Absolute path' },
- offset: { type: 'number' },
- limit: { type: 'number', description: 'Max lines' },
- } satisfies ParameterSchemaSpec
- const jsonSchema = parameterSchemaSpecToJsonSchema(spec)
- expect(jsonSchema).toEqual({
- type: 'object',
- properties: {
- path: { type: 'string', description: 'Absolute path' },
- offset: { type: 'number' },
- limit: { type: 'number', description: 'Max lines' },
- },
- required: ['path'],
- })
- })
- it('handles empty spec (no properties, no required)', () => {
- expect(parameterSchemaSpecToJsonSchema({})).toEqual({
- type: 'object',
- properties: {},
- })
- })
- it('handles nested object spec', () => {
- const spec = {
- config: {
- type: 'object',
- additionalProperties: true,
- required: true,
- properties: {
- host: { type: 'string', required: true },
- port: { type: 'number' },
- },
- },
- } satisfies ParameterSchemaSpec
- const jsonSchema = parameterSchemaSpecToJsonSchema(spec)
- expect(jsonSchema).toEqual({
- type: 'object',
- properties: {
- config: {
- type: 'object',
- additionalProperties: true,
- properties: {
- host: { type: 'string' },
- port: { type: 'number' },
- },
- required: ['host'],
- },
- },
- required: ['config'],
- })
- })
- it('defineTool returns a valid ToolDefinition with typed execute', async () => {
- const ctx = await setup()
- const tool = defineTool({
- name: 'typed-echo',
- description: 'A typed echo tool',
- parameters: {
- text: { type: 'string', required: true },
- uppercase: { type: 'boolean' },
- },
- output: {
- schema: { type: 'string' },
- render: (_args, value) => [{ type: 'text', text: value }],
- },
- async execute(args) {
- // args is typed: { text: string; uppercase?: boolean }
- const result = args.uppercase ? args.text.toUpperCase() : args.text
- return result
- },
- })
- ctx.tools.register(tool)
- expect(ctx.tools.schemas()).toEqual([{
- name: 'typed-echo',
- description: 'A typed echo tool',
- parameters: {
- type: 'object',
- properties: {
- text: { type: 'string' },
- uppercase: { type: 'boolean' },
- },
- required: ['text'],
- },
- }])
- const result = await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId('c1'),
- name: 'typed-echo',
- arguments: { text: 'hello', uppercase: true },
- })
- expect(result.isError).toBe(false)
- expect(result.isError ? undefined : result.value).toBe('HELLO')
- expect(result.content).toEqual([{ type: 'text', text: 'HELLO' }])
- })
- it('type-level: InferArgs maps required properties to non-optional', () => {
- // Compile-time check: if this compiles, InferArgs is correct.
- // args.a is string (required), args.b is number|undefined (optional).
- const tool = defineTool({
- name: 'type-check',
- description: '',
- parameters: { a: { type: 'string' as const, required: true as const }, b: { type: 'number' as const } },
- output: { schema: { type: 'string' }, render: () => [] },
- async execute(args) {
- expect(typeof args.a).toBe('string')
- void args
- return args.a
- },
- })
- void tool
- })
- it('registry round-trips a defineTool definition (register→schemas→execute)', async () => {
- const ctx = await setup()
- ctx.tools.register(defineTool({
- name: 'roundtrip',
- description: 'Round-trip test',
- parameters: {
- req: { type: 'string', required: true },
- opt: { type: 'number', description: 'Optional number' },
- },
- output: {
- schema: { type: 'string' },
- render: (_args, value) => [{ type: 'text', text: value }],
- },
- async execute(args) {
- return `${args.req}:${args.opt ?? 'none'}`
- },
- }))
- // Schema round-trip: schemas() returns standard JSON Schema
- const schemas = ctx.tools.schemas()
- expect(schemas).toHaveLength(1)
- expect(schemas[0]!.parameters).toEqual({
- type: 'object',
- properties: {
- req: { type: 'string' },
- opt: { type: 'number', description: 'Optional number' },
- },
- required: ['req'],
- })
- // Execution round-trip
- const result = await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId('c1'),
- name: 'roundtrip',
- arguments: { req: 'hello' },
- })
- expect(result.isError).toBe(false)
- expect(result.content).toEqual([{ type: 'text', text: 'hello:none' }])
- })
- it('still accepts raw JSON-Schema ToolDefinition directly (MCP interop)', async () => {
- const ctx = await setup()
- ctx.tools.register({
- name: 'raw-tool',
- description: 'Raw JSON Schema tool (like an MCP adapter would register)',
- parameters: {
- type: 'object',
- properties: { path: { type: 'string' } },
- required: ['path'],
- },
- output: {
- schema: { type: 'string' },
- render: (_args, value) => [{ type: 'text', text: value as string }],
- },
- async execute(args: unknown) {
- const p = args as { path: string }
- return p.path
- },
- })
- const schemas = ctx.tools.schemas()
- expect(schemas[0]!.parameters).toEqual({
- type: 'object',
- properties: { path: { type: 'string' } },
- required: ['path'],
- })
- const result = await ctx.tools.execute({
- signal: testToolSignal,
- callId: CallId('c1'),
- name: 'raw-tool',
- arguments: { path: '/tmp' },
- })
- expect(result.isError).toBe(false)
- expect(result.content).toEqual([{ type: 'text', text: '/tmp' }])
- })
- })
- describe('schema DSL edge cases', () => {
- it('emits enum values in JSON Schema property', () => {
- const spec = {
- color: { type: 'string', enum: ['red', 'green', 'blue'], description: 'Color choice' },
- } satisfies ParameterSchemaSpec
- const jsonSchema = parameterSchemaSpecToJsonSchema(spec)
- expect(jsonSchema.properties['color']).toMatchObject({
- type: 'string',
- enum: ['red', 'green', 'blue'],
- description: 'Color choice',
- })
- })
- it('emits default value in JSON Schema property', () => {
- const spec = {
- limit: { type: 'number', default: 25 },
- } satisfies ParameterSchemaSpec
- const jsonSchema = parameterSchemaSpecToJsonSchema(spec)
- expect(jsonSchema.properties['limit']).toMatchObject({
- type: 'number',
- default: 25,
- })
- })
- it('handles array items without nested properties (plain type array)', () => {
- const spec = {
- tags: { type: 'array', items: { type: 'string' } },
- } satisfies ParameterSchemaSpec
- const jsonSchema = parameterSchemaSpecToJsonSchema(spec)
- expect(jsonSchema.properties['tags']).toEqual({
- type: 'array',
- items: { type: 'string' },
- })
- })
- it('handles enum and default together in one property', () => {
- const spec = {
- level: { type: 'string', enum: ['low', 'high'], default: 'low' },
- } satisfies ParameterSchemaSpec
- const jsonSchema = parameterSchemaSpecToJsonSchema(spec)
- expect(jsonSchema.properties['level']).toMatchObject({
- type: 'string',
- enum: ['low', 'high'],
- default: 'low',
- })
- })
- it('omits description, enum, default keys when not specified', () => {
- const spec = {
- bare: { type: 'string' },
- } satisfies ParameterSchemaSpec
- const jsonSchema = parameterSchemaSpecToJsonSchema(spec)
- const prop = jsonSchema.properties['bare'] as Record<string, unknown>
- expect(prop).toEqual({ type: 'string' })
- expect('description' in prop).toBe(false)
- expect('enum' in prop).toBe(false)
- expect('default' in prop).toBe(false)
- })
- it('handles array with no items (items omitted)', () => {
- const spec = {
- raw: { type: 'array' },
- } satisfies ParameterSchemaSpec
- const jsonSchema = parameterSchemaSpecToJsonSchema(spec)
- expect(jsonSchema.properties['raw']).toEqual({
- type: 'array',
- })
- })
- it('handles nested object with all-optional properties (no required array)', () => {
- const spec = {
- config: {
- type: 'object',
- additionalProperties: true,
- properties: {
- host: { type: 'string' },
- port: { type: 'number' },
- },
- },
- } satisfies ParameterSchemaSpec
- const jsonSchema = parameterSchemaSpecToJsonSchema(spec)
- expect(jsonSchema.properties['config']).toMatchObject({
- type: 'object',
- properties: {
- host: { type: 'string' },
- port: { type: 'number' },
- },
- })
- const config = jsonSchema.properties['config'] as Record<string, unknown>
- expect('required' in config).toBe(false)
- })
- })
- describe('schema DSL optional and nested contracts', () => {
- it('InferArgs makes non-required keys genuinely optional (omittable)', () => {
- type Args = InferArgs<{
- path: { type: 'string'; required: true }
- limit: { type: 'number' }
- }>
- expectTypeOf<Args>().toEqualTypeOf<{ path: string; limit?: number }>()
- const omitted: Args = { path: '/tmp' }
- expect(omitted.limit).toBeUndefined()
- })
- it('InferArgs recurses into array items, including arrays of objects', () => {
- type Args = InferArgs<{
- names: { type: 'array'; required: true; items: { type: 'string' } }
- servers: {
- type: 'array'
- items: {
- type: 'object'
- additionalProperties: true
- properties: {
- host: { type: 'string'; required: true }
- port: { type: 'number' }
- }
- }
- }
- }>
- expectTypeOf<Args>().toEqualTypeOf<{
- names: string[]
- servers?: ({ host: string; port?: number } & Record<string, JsonValue>)[]
- }>()
- })
- it('runtime JSON Schema matches the array-of-objects inference', () => {
- const spec = {
- servers: {
- type: 'array',
- items: {
- type: 'object',
- additionalProperties: true,
- properties: {
- host: { type: 'string', required: true },
- port: { type: 'number' },
- },
- },
- },
- } satisfies ParameterSchemaSpec
- expect(parameterSchemaSpecToJsonSchema(spec)).toEqual({
- type: 'object',
- properties: {
- servers: {
- type: 'array',
- items: {
- type: 'object',
- additionalProperties: true,
- properties: {
- host: { type: 'string' },
- port: { type: 'number' },
- },
- required: ['host'],
- },
- },
- },
- })
- })
- it('reports messages from non-Error throws (throw { message })', async () => {
- const ctx = await setup()
- ctx.tools.register({
- ...echoTool,
- name: 'object-thrower',
- async execute() {
- // testing non-Error throws on purpose
- throw { message: 'denied by object' }
- },
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'object-thrower', arguments: {} })
- expect(result.isError).toBe(true)
- expect(result.content[0]).toMatchObject({ text: 'Error: denied by object' })
- })
- it('reports messages from throws of non-objects (throw "string")', async () => {
- const ctx = await setup()
- ctx.tools.register({
- ...echoTool,
- name: 'string-thrower',
- async execute() {
- // testing primitive throws on purpose
- throw 'kaboom'
- },
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'string-thrower', arguments: {} })
- expect(result.isError).toBe(true)
- expect(result.content[0]).toMatchObject({ text: 'Error: kaboom' })
- })
- it('reports messages from throws of objects without message property', async () => {
- const ctx = await setup()
- ctx.tools.register({
- ...echoTool,
- name: 'object-no-message',
- async execute() {
- // testing object throw without .message
- throw { code: 500 }
- },
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'object-no-message', arguments: {} })
- expect(result.isError).toBe(true)
- const firstContent = result.content[0]!
- expect(firstContent.type).toBe('text')
- if (firstContent.type === 'text') {
- expect(firstContent.text).toBe('Error: [object Object]')
- }
- })
- })
- describe('ToolRegistry.get', () => {
- it('get() returns the registered tool definition', async () => {
- const ctx = await setup()
- ctx.tools.register(echoTool)
- const tool = ctx.tools.get('echo')
- expect(tool).toBeDefined()
- expect(tool!.name).toBe('echo')
- })
- it('get() returns undefined for unknown tool names', async () => {
- const ctx = await setup()
- expect(ctx.tools.get('nope')).toBeUndefined()
- })
- })
- describe('validateArgs (the runtime-validation Agent Note, part 1)', () => {
- it('returns [] for valid args and is total over malformed input', () => {
- const spec = {
- path: { type: 'string', required: true },
- limit: { type: 'number' },
- } satisfies ParameterSchemaSpec
- expect(validateArgs(spec, { path: '/tmp' })).toEqual([])
- expect(validateArgs(spec, { path: '/tmp', limit: 5 })).toEqual([])
- // never throws regardless of shape
- expect(validateArgs(spec, null)).toHaveLength(1)
- expect(validateArgs(spec, 'nope')).toHaveLength(1)
- expect(validateArgs(spec, [])).toHaveLength(1)
- })
- it('flags a missing required key and a required key present as undefined', () => {
- const spec = { path: { type: 'string', required: true } } satisfies ParameterSchemaSpec
- expect(validateArgs(spec, {})).toEqual(['missing required property "path"'])
- expect(validateArgs(spec, { path: undefined })).toEqual(['missing required property "path"'])
- })
- it('allows extra keys (no additionalProperties:false) and omitted optionals', () => {
- const spec = { path: { type: 'string', required: true } } satisfies ParameterSchemaSpec
- expect(validateArgs(spec, { path: '/tmp', extra: 1 })).toEqual([])
- })
- it('does not apply defaults (validation only)', () => {
- const spec = { limit: { type: 'number', default: 25 } } satisfies ParameterSchemaSpec
- // absent optional is valid, and validation does not synthesize the default
- expect(validateArgs(spec, {})).toEqual([])
- })
- it('type-checks primitives', () => {
- const spec = {
- s: { type: 'string' },
- n: { type: 'number' },
- b: { type: 'boolean' },
- } satisfies ParameterSchemaSpec
- expect(validateArgs(spec, { s: 1 })).toEqual(['"s" must be a string'])
- expect(validateArgs(spec, { n: 'x' })).toEqual(['"n" must be a number'])
- expect(validateArgs(spec, { b: 'x' })).toEqual(['"b" must be a boolean'])
- })
- it('checks enum membership', () => {
- const spec = { color: { type: 'string', enum: ['red', 'green'] } } satisfies ParameterSchemaSpec
- expect(validateArgs(spec, { color: 'red' })).toEqual([])
- expect(validateArgs(spec, { color: 'blue' })).toEqual(['"color" must be one of ["red","green"]'])
- })
- it('enforces type-correct scalar enum declarations', () => {
- const spec = { n: { type: 'number', enum: [1, 2] } } satisfies ParameterSchemaSpec
- expect(validateArgs(spec, { n: 1 })).toEqual([])
- expect(validateArgs(spec, { n: 3 })).toEqual(['"n" must be one of [1,2]'])
- const invalid = { n: { type: 'number', enum: ['1', '2'] } } as unknown as ParameterSchemaSpec
- expect(() => validateArgs(invalid, { n: 1 })).toThrow(JsonSchemaError)
- })
- it('rejects an unknown schema type at the author boundary', () => {
- const spec = { x: { type: 'weird' } } as unknown as ParameterSchemaSpec
- expect(() => validateArgs(spec, { x: 1 })).toThrow(JsonSchemaError)
- })
- it('recurses into nested objects (and an object without properties only type-checks)', () => {
- const spec = {
- config: {
- type: 'object',
- additionalProperties: true,
- required: true,
- properties: { host: { type: 'string', required: true }, port: { type: 'number' } },
- },
- bag: { type: 'object', additionalProperties: true },
- } satisfies ParameterSchemaSpec
- expect(validateArgs(spec, { config: { host: 'h' }, bag: { anything: true } })).toEqual([])
- expect(validateArgs(spec, { config: { port: 9 }, bag: 5 })).toEqual([
- 'missing required property "config.host"',
- '"bag" must be an object',
- ])
- })
- it('recurses into array items (and an array without items only type-checks)', () => {
- const spec = {
- tags: { type: 'array', items: { type: 'string' } },
- raw: { type: 'array' },
- } satisfies ParameterSchemaSpec
- expect(validateArgs(spec, { tags: ['a', 'b'], raw: [1, {}, 'x'] })).toEqual([])
- expect(validateArgs(spec, { tags: ['a', 2] })).toEqual(['"tags[1]" must be a string'])
- // a non-array value for an array-typed prop
- expect(validateArgs(spec, { tags: 'nope' })).toEqual(['"tags" must be an array'])
- })
- it('validates arrays of objects element-wise', () => {
- const spec = {
- servers: {
- type: 'array',
- items: { type: 'object', additionalProperties: true, properties: { host: { type: 'string', required: true } } },
- },
- } satisfies ParameterSchemaSpec
- expect(validateArgs(spec, { servers: [{ host: 'a' }, {}] })).toEqual([
- 'missing required property "servers[1].host"',
- ])
- })
- })
- describe('defineTool validation (the runtime-validation Agent Note, part 1)', () => {
- it('returns an isError result with the violations when the model sends bad args', async () => {
- const ctx = await setup()
- ctx.tools.register(defineContentToolFixture({
- name: 'reader',
- description: 'reads a path',
- parameters: { path: { type: 'string', required: true } },
- async execute(args) {
- return [{ type: 'text', text: args.path }]
- },
- }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'reader', arguments: {} })
- expect(result.isError).toBe(true)
- expect(result.content[0]).toMatchObject({
- text: 'Error: invalid arguments: missing required property "path"',
- })
- })
- it('runs execute normally when args are valid', async () => {
- const ctx = await setup()
- ctx.tools.register(defineContentToolFixture({
- name: 'reader',
- description: 'reads a path',
- parameters: { path: { type: 'string', required: true } },
- async execute(args) {
- return [{ type: 'text', text: `read ${args.path}` }]
- },
- }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'reader', arguments: { path: '/x' } })
- expect(result).toEqual({
- content: [{ type: 'text', text: 'read /x' }],
- isError: false,
- value: [{ type: 'text', text: 'read /x' }],
- })
- })
- it('ToolArgsError carries a stable code and the violation list', () => {
- const err = new ToolArgsError(['missing required property "a"', '"b" must be a number'])
- expect(err).toBeInstanceOf(Error)
- expect(err.name).toBe('ToolArgsError')
- expect(err.code).toBe('INVALID_ARGS')
- expect(err.violations).toEqual(['missing required property "a"', '"b" must be a number'])
- expect(err.message).toBe('invalid arguments: missing required property "a"; "b" must be a number')
- })
- it('a schema-invalid call surfaces the structured error on the result', async () => {
- const ctx = await setup()
- ctx.tools.register(defineContentToolFixture({
- name: 'reader',
- description: 'reads a path',
- parameters: { path: { type: 'string', required: true } },
- async execute(args) {
- return [{ type: 'text', text: args.path }]
- },
- }))
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'reader', arguments: {} })
- expect(result.isError).toBe(true)
- expect(result.error).toEqual({
- message: 'invalid arguments: missing required property "path"',
- info: { name: 'ToolArgsError', code: 'INVALID_ARGS' },
- })
- })
- it('a tool throwing a HarnessError surfaces its name and code', async () => {
- const { HarnessError } = await import('@deepseek-ai/dsh-llm')
- const ctx = await setup()
- ctx.tools.register({
- ...echoTool,
- name: 'coded',
- async execute() {
- throw new HarnessError('disk full', 'ENOSPC')
- },
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'coded', arguments: {} })
- expect(result.isError).toBe(true)
- expect(result.error).toEqual({ message: 'disk full', info: { name: 'HarnessError', code: 'ENOSPC' } })
- expect(result.content[0]).toMatchObject({ text: 'Error: disk full' })
- })
- it('a non-HarnessError throw retains only its message', async () => {
- const ctx = await setup()
- ctx.tools.register({
- ...echoTool,
- name: 'plain',
- async execute() {
- throw new Error('just a message')
- },
- })
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'plain', arguments: {} })
- expect(result.isError).toBe(true)
- expect(result.error).toEqual({ message: 'just a message' })
- expect(result.content[0]).toMatchObject({ text: 'Error: just a message' })
- })
- it('raw-registered tools are NOT validated by defineTool (MCP keeps its own)', async () => {
- const ctx = await setup()
- // A raw ToolDefinition: no defineTool wrapping, so no validateArgs guard.
- ctx.tools.register({
- name: 'raw',
- description: 'raw tool',
- parameters: { type: 'object', properties: { path: { type: 'string' } }, required: ['path'] },
- output: {
- schema: { type: 'string' },
- render: (_args, value) => [{ type: 'text', text: value as string }],
- },
- async execute(args: unknown) {
- return typeof args
- },
- })
- // Missing the "required" path — but raw tools validate their own input, so
- // this reaches execute rather than being rejected by the harness.
- const result = await ctx.tools.execute({ signal: testToolSignal, callId: CallId('c1'), name: 'raw', arguments: {} })
- expect(result.isError).toBe(false)
- })
- it('attaches a positive-finite timeoutMs to the definition', () => {
- const tool = defineContentToolFixture({
- name: 'x', description: 'd', parameters: {}, timeoutMs: 30_000,
- async execute() { return [{ type: 'text' as const, text: 'ok' }] },
- })
- expect(tool.timeoutMs).toBe(30_000)
- })
- it('omits timeoutMs when not declared', () => {
- const tool = defineContentToolFixture({
- name: 'x', description: 'd', parameters: {},
- async execute() { return [{ type: 'text' as const, text: 'ok' }] },
- })
- expect(tool.timeoutMs).toBeUndefined()
- })
- it('throws when timeoutMs is zero or negative', () => {
- const make = (ms: number) => defineContentToolFixture({
- name: 'x', description: 'd', parameters: {}, timeoutMs: ms,
- async execute() { return [{ type: 'text' as const, text: 'ok' }] },
- })
- expect(() => make(0)).toThrow('timeoutMs must be a positive finite number')
- expect(() => make(-5)).toThrow('positive finite number')
- })
- it('throws when timeoutMs is non-finite', () => {
- expect(() => defineContentToolFixture({
- name: 'x', description: 'd', parameters: {}, timeoutMs: Infinity,
- async execute() { return [{ type: 'text' as const, text: 'ok' }] },
- })).toThrow('positive finite number')
- })
- })
- describe('defineTool presentation (presentCall / presentResult)', () => {
- it('preserves inline enum and const literals in inferred arguments', () => {
- defineTool({
- name: 'literal-args',
- description: 'literal arguments',
- parameters: {
- mode: { type: 'string', enum: ['read', 'write'], required: true },
- attempt: { type: 'integer', const: 1 },
- },
- output: {
- schema: { type: 'null' },
- render: () => [],
- },
- async execute(args) {
- expectTypeOf(args).toEqualTypeOf<{ mode: 'read' | 'write'; attempt?: 1 }>()
- return null
- },
- })
- })
- it('threads presentCall/presentResult onto the ToolDefinition with typed args', () => {
- const tool = defineContentToolFixture({
- name: 'demo',
- description: 'demo',
- parameters: { path: { type: 'string', required: true }, n: { type: 'number' } },
- async execute() { return [{ type: 'text', text: 'ok' }] },
- presentCall(args) {
- // args is typed { path: string; n?: number } — zero casts.
- expectTypeOf(args).toEqualTypeOf<{ path: string; n?: number }>()
- return { card: 'generic', title: `Open ${args.path}`, kind: 'read', rawInput: args.path }
- },
- presentResult(args, result) {
- return { card: 'generic', title: `Opened ${args.path}`, content: result.content }
- },
- })
- expect(tool.presentCall!({ path: '/a', n: 2 })).toEqual({ card: 'generic', title: 'Open /a', kind: 'read', rawInput: '/a' })
- expect(tool.presentResult!({ path: '/a' }, { content: [{ type: 'text', text: 'x' }], isError: false }))
- .toEqual({ card: 'generic', title: 'Opened /a', content: [{ type: 'text', text: 'x' }] })
- })
- it('a tool without presentCall/presentResult leaves them undefined (UI falls back generically)', () => {
- const tool = defineContentToolFixture({
- name: 'plain',
- description: 'plain',
- parameters: { x: { type: 'string', required: true } },
- async execute() { return [] },
- })
- expect(typeof tool.presentCall).toBe('undefined')
- expect(typeof tool.presentResult).toBe('undefined')
- })
- it('presentCall/presentResult validate softly: malformed args return undefined, never throw (display runs on replay)', () => {
- const tool = defineContentToolFixture({
- name: 'demo',
- description: 'demo',
- parameters: { path: { type: 'string', required: true } },
- async execute() { return [] },
- presentCall: args => ({ card: 'generic', title: args.path }),
- presentResult: (args, result) => ({ card: 'generic', title: args.path, content: result.content }),
- })
- // Unlike execute (which throws ToolArgsError on a mismatch), the display
- // methods soft-validate and fall back to undefined so a UI never crashes
- // replaying an old/foreign log entry. The ToolDefinition methods take
- // `unknown`, so malformed shapes pass without a cast.
- expect(tool.presentCall?.({})).toBeUndefined()
- expect(tool.presentResult?.({ wrong: 1 }, { content: [], isError: false })).toBeUndefined()
- })
- })
|