| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- /**
- * Guarantee tests for the tool-schema catalog generator (`scripts/gen-tool-catalog.ts`).
- */
- import { describe, expect, it } from 'vitest'
- import {
- assertManifestComplete,
- collectToolCatalog,
- render,
- type ToolCatalog,
- } from '../../../../scripts/gen-tool-catalog.ts'
- /** JSON Schema shape enough to reach the values AST extraction can't. */
- interface JsonSchema {
- type: string
- properties?: Record<string, JsonSchema>
- items?: JsonSchema
- enum?: string[]
- required?: string[]
- }
- describe('gen-tool-catalog collectToolCatalog', () => {
- it('boots every shipped tool package and harvests its model-facing schemas', async () => {
- const catalog = await collectToolCatalog()
- const names = catalog.flatMap(entry => entry.schemas.map(s => s.name)).sort()
- expect(names).toEqual(['ask_user_question', 'bash', 'bash', 'cordis_inspect', 'cordis_mount', 'cordis_unmount', 'create_goal', 'edit', 'exit_plan_mode', 'get_goal', 'glob', 'grep', 'list_agents', 'lsp', 'pwsh', 'ralph', 'read', 'report', 'run_code', 'send_message', 'session_event_read', 'session_event_search', 'session_event_trace', 'session_search', 'session_trace', 'skill', 'str_replace_editor', 'subagent', 'task_kill', 'task_list', 'task_output', 'terminal_close', 'terminal_list', 'terminal_open', 'terminal_read', 'terminal_send', 'terminal_signal', 'todo_write', 'update_goal', 'web_fetch', 'web_search', 'workflow', 'write'])
- // Every tool carries a JSON-Schema `parameters` object (what the model sees).
- for (const entry of catalog) {
- for (const schema of entry.schemas) {
- expect((schema.parameters as unknown as JsonSchema).type).toBe('object')
- }
- }
- })
- it('resolves a runtime-spread enum to its literal members (the payoff over AST)', async () => {
- const catalog = await collectToolCatalog()
- const todo = catalog
- .flatMap(entry => entry.schemas)
- .find(s => s.name === 'todo_write')
- // `todo-todo` writes `enum: [...STATUSES]` — a source AST would see the
- // spread, not the values. Booting yields the shipped enum literals.
- const status = (((todo?.parameters as unknown as JsonSchema).properties?.todos)?.items)?.properties?.status
- expect(status?.enum).toEqual(['pending', 'in_progress', 'completed'])
- })
- it('attributes each harvested tool with its registering plugin source', async () => {
- const catalog = await collectToolCatalog()
- const bash = catalog.find(entry => entry.pkg === '@deepseek-ai/dsh-tool-bash')
- expect(bash?.sources.bash).toBe('packages/bash/tool-bash/src/index.ts')
- const control = catalog.find(entry => entry.pkg === '@deepseek-ai/dsh-tool-subagent-control')
- expect(control?.sources).toEqual({
- list_agents: 'packages/subagent/tool-subagent-control/src/list-agents.ts',
- send_message: 'packages/subagent/tool-subagent-control/src/index.ts',
- })
- })
- it('harvests search tools without depending on the generator process PATH', async () => {
- const oldPath = process.env.PATH
- try {
- process.env.PATH = ''
- const catalog = await collectToolCatalog()
- const search = catalog.find(entry => entry.pkg === '@deepseek-ai/dsh-tool-fs-search')
- expect(search?.schemas.map(s => s.name).sort()).toEqual(['glob', 'grep'])
- } finally {
- if (oldPath === undefined) delete process.env.PATH
- else process.env.PATH = oldPath
- }
- })
- it('records the shipped `subagent_fork` alias in a note (config-driven tool name)', async () => {
- // `tool-subagent`'s registered name is the load-time `toolName` config, so the shipped
- // agents surface this one package as both `subagent` and `subagent_fork`.
- const catalog = await collectToolCatalog()
- const subagent = catalog.find(entry => entry.pkg === '@deepseek-ai/dsh-tool-subagent')
- expect(subagent?.schemas.map(s => s.name)).toEqual(['subagent'])
- expect(subagent?.note).toMatch(/subagent_fork/)
- })
- })
- describe('gen-tool-catalog assertManifestComplete', () => {
- it('passes when the manifest lists every on-disk tool package (the default)', () => {
- expect(() => { assertManifestComplete() }).not.toThrow()
- })
- it('throws, naming the omitted package, when a tool package is missing from the manifest', () => {
- // An empty manifest scanned against the real tree: every `tool-*` package
- // is unlisted, so the guard must fire and name them.
- expect(() => { assertManifestComplete([]) }).toThrow(/not in the boot manifest/)
- expect(() => { assertManifestComplete([]) }).toThrow(/tool-bash/)
- })
- })
- describe('gen-tool-catalog render', () => {
- it('emits a package heading, a tool heading, and a json schema fence', () => {
- const catalog: ToolCatalog = [
- {
- pkg: '@deepseek-ai/dsh-tool-demo',
- sources: { demo: 'packages/demo/tool-demo/src/index.ts' },
- requires: ['ctx.tools'],
- writes: ['tool/result'],
- schemas: [{ name: 'demo', description: 'A demo tool.', parameters: { type: 'object', properties: {} } }],
- },
- ]
- const md = render(catalog)
- expect(md).toContain('| `@deepseek-ai/dsh-tool-demo` | `demo` | `ctx.tools` | `tool/result` |')
- expect(md).toContain('## `@deepseek-ai/dsh-tool-demo`')
- expect(md).toContain('### `demo`')
- expect(md).toContain('A demo tool.')
- expect(md).toContain('```json')
- expect(md).toContain('Source: [`packages/demo/tool-demo/src/index.ts`]')
- })
- })
|