mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-08-28 05:25:25 +00:00
389 lines
18 KiB
TypeScript
389 lines
18 KiB
TypeScript
/**
|
|
* Unit Tests: MCP Tool Definitions
|
|
*
|
|
* Tests: GITNEXUS_TOOLS from tools.ts
|
|
* - All 17 tools are defined (per-repo + group_list/group_sync)
|
|
* - Each tool has valid name, description, inputSchema
|
|
* - Required fields are correct
|
|
* - Optional repo parameter is present on tools that need it
|
|
*/
|
|
import { describe, it, expect } from 'vitest';
|
|
import {
|
|
GITNEXUS_TOOLS,
|
|
LIST_REPOS_DEFAULT_LIMIT,
|
|
LIST_REPOS_MAX_LIMIT,
|
|
} from '../../src/mcp/tools.js';
|
|
|
|
const GROUP_TOOLS = new Set(['group_list', 'group_sync']);
|
|
const MUTATING_TOOLS = new Set(['rename', 'group_sync']);
|
|
// Read-only tools that legitimately reach external systems. Add a tool name
|
|
// here when introducing a read-only tool that needs openWorldHint: true.
|
|
const OPEN_WORLD_READ_ONLY_TOOLS = new Set(['query']);
|
|
|
|
describe('GITNEXUS_TOOLS', () => {
|
|
it('exports all tools (8 base + 1 explain + 1 pdg_query + 3 route/tool/shape + 1 api_impact + 1 trace + 2 group)', () => {
|
|
expect(GITNEXUS_TOOLS).toHaveLength(17);
|
|
});
|
|
|
|
it('contains all expected tool names', () => {
|
|
const names = GITNEXUS_TOOLS.map((t) => t.name);
|
|
expect(names).toEqual(
|
|
expect.arrayContaining([
|
|
'list_repos',
|
|
'query',
|
|
'cypher',
|
|
'context',
|
|
'detect_changes',
|
|
'check',
|
|
'rename',
|
|
'impact',
|
|
'explain',
|
|
'pdg_query',
|
|
'api_impact',
|
|
'trace',
|
|
]),
|
|
);
|
|
});
|
|
|
|
it('each tool has name, description, and inputSchema', () => {
|
|
for (const tool of GITNEXUS_TOOLS) {
|
|
expect(tool.name).toBeTruthy();
|
|
expect(typeof tool.name).toBe('string');
|
|
expect(tool.description).toBeTruthy();
|
|
expect(typeof tool.description).toBe('string');
|
|
expect(tool.annotations).toBeDefined();
|
|
expect(tool.inputSchema).toBeDefined();
|
|
expect(tool.inputSchema.type).toBe('object');
|
|
expect(tool.inputSchema.properties).toBeDefined();
|
|
expect(Array.isArray(tool.inputSchema.required)).toBe(true);
|
|
}
|
|
});
|
|
|
|
it('each tool exposes all MCP safety annotations', () => {
|
|
for (const tool of GITNEXUS_TOOLS) {
|
|
expect(typeof tool.annotations.readOnlyHint).toBe('boolean');
|
|
expect(typeof tool.annotations.destructiveHint).toBe('boolean');
|
|
expect(typeof tool.annotations.idempotentHint).toBe('boolean');
|
|
expect(typeof tool.annotations.openWorldHint).toBe('boolean');
|
|
}
|
|
});
|
|
|
|
it('read-only tools are marked non-destructive and idempotent', () => {
|
|
for (const tool of GITNEXUS_TOOLS) {
|
|
if (MUTATING_TOOLS.has(tool.name)) continue;
|
|
|
|
expect(tool.annotations.readOnlyHint).toBe(true);
|
|
expect(tool.annotations.destructiveHint).toBe(false);
|
|
expect(tool.annotations.idempotentHint).toBe(true);
|
|
expect(tool.annotations.openWorldHint).toBe(OPEN_WORLD_READ_ONLY_TOOLS.has(tool.name));
|
|
}
|
|
});
|
|
|
|
it('query is marked open-world because it may use external embeddings', () => {
|
|
const queryTool = GITNEXUS_TOOLS.find((t) => t.name === 'query')!;
|
|
expect(queryTool.annotations).toEqual({
|
|
readOnlyHint: true,
|
|
destructiveHint: false,
|
|
idempotentHint: true,
|
|
openWorldHint: true,
|
|
});
|
|
});
|
|
|
|
it('rename and group_sync are marked mutating and non-idempotent', () => {
|
|
for (const name of ['rename', 'group_sync'] as const) {
|
|
const tool = GITNEXUS_TOOLS.find((t) => t.name === name)!;
|
|
expect(tool.annotations).toEqual({
|
|
readOnlyHint: false,
|
|
destructiveHint: true,
|
|
idempotentHint: false,
|
|
openWorldHint: false,
|
|
});
|
|
}
|
|
});
|
|
|
|
it('query tool requires "search_query" parameter (renamed from "query" for #2175)', () => {
|
|
const queryTool = GITNEXUS_TOOLS.find((t) => t.name === 'query')!;
|
|
expect(queryTool.inputSchema.required).toContain('search_query');
|
|
// The legacy "query" key must NOT be advertised — Claude Code drops it (#2175).
|
|
expect(queryTool.inputSchema.required).not.toContain('query');
|
|
expect(queryTool.inputSchema.properties.query).toBeUndefined();
|
|
expect(queryTool.inputSchema.properties.search_query).toBeDefined();
|
|
expect(queryTool.inputSchema.properties.search_query.type).toBe('string');
|
|
});
|
|
|
|
it('cypher tool requires "statement" parameter (renamed from "query" for #2175)', () => {
|
|
const cypherTool = GITNEXUS_TOOLS.find((t) => t.name === 'cypher')!;
|
|
expect(cypherTool.inputSchema.required).toContain('statement');
|
|
expect(cypherTool.inputSchema.required).not.toContain('query');
|
|
expect(cypherTool.inputSchema.properties.query).toBeUndefined();
|
|
expect(cypherTool.inputSchema.properties.statement).toBeDefined();
|
|
expect(cypherTool.inputSchema.properties.statement.type).toBe('string');
|
|
expect(cypherTool.inputSchema.properties.params).toBeDefined();
|
|
expect(cypherTool.inputSchema.properties.params.type).toBe('object');
|
|
expect(cypherTool.inputSchema.properties.params.description).toContain('prepared statement');
|
|
});
|
|
|
|
it('context tool has no required parameters', () => {
|
|
const contextTool = GITNEXUS_TOOLS.find((t) => t.name === 'context')!;
|
|
expect(contextTool.inputSchema.required).toEqual([]);
|
|
});
|
|
|
|
it('context tool advertises file as a compatibility alias for file_path', () => {
|
|
const contextTool = GITNEXUS_TOOLS.find((t) => t.name === 'context')!;
|
|
expect(contextTool.inputSchema.properties.file_path).toBeDefined();
|
|
expect(contextTool.inputSchema.properties.file).toMatchObject({ type: 'string' });
|
|
});
|
|
|
|
it('api_impact tool avoids top-level schema combinators for Bedrock compatibility (#2487)', () => {
|
|
const apiImpactTool = GITNEXUS_TOOLS.find((t) => t.name === 'api_impact')!;
|
|
expect(apiImpactTool.inputSchema).not.toHaveProperty('anyOf');
|
|
expect(apiImpactTool.inputSchema).not.toHaveProperty('oneOf');
|
|
expect(apiImpactTool.inputSchema).not.toHaveProperty('allOf');
|
|
// route/file stay optional in the transport schema; callTool keeps the
|
|
// runtime guard so providers that reject top-level combinators can load it.
|
|
expect(apiImpactTool.inputSchema.required).toEqual([]);
|
|
expect(apiImpactTool.description).toContain('Requires at least "route" or "file"');
|
|
});
|
|
|
|
it('impact tool requires direction and advertises target, name, or symbol without combinators', () => {
|
|
const impactTool = GITNEXUS_TOOLS.find((t) => t.name === 'impact')!;
|
|
expect(impactTool.inputSchema.required).toContain('direction');
|
|
expect(impactTool.inputSchema.required).not.toContain('target');
|
|
expect(impactTool.inputSchema.properties.name).toMatchObject({ type: 'string' });
|
|
expect(impactTool.inputSchema.properties.symbol).toMatchObject({ type: 'string' });
|
|
expect(impactTool.inputSchema).not.toHaveProperty('anyOf');
|
|
expect(impactTool.inputSchema).not.toHaveProperty('oneOf');
|
|
expect(impactTool.inputSchema).not.toHaveProperty('allOf');
|
|
});
|
|
|
|
it('impact tool advertises the PDG-only `line` statement anchor (integer, min 0, not required)', () => {
|
|
const impactTool = GITNEXUS_TOOLS.find((t) => t.name === 'impact')!;
|
|
const line = (impactTool.inputSchema.properties as Record<string, any>).line;
|
|
expect(line).toBeDefined();
|
|
expect(line.type).toBe('integer');
|
|
// minimum is 0 (not 1) so strict adapters that materialize an omitted
|
|
// optional numeric field as `0` are not rejected client-side (#2279); a
|
|
// positive line is enforced backend-side for a real pdg anchor.
|
|
expect(line.minimum).toBe(0);
|
|
// Statement-anchored slice is optional — never required.
|
|
expect(impactTool.inputSchema.required).not.toContain('line');
|
|
// The description names the mode:'pdg' statement-anchor semantics and the
|
|
// literal-0 compatibility convention — without contradicting the top-level
|
|
// "omit line for whole-symbol pdg" contract (#2283).
|
|
expect(line.description).toMatch(/statement anchor/i);
|
|
expect(line.description).toMatch(/pdg/i);
|
|
expect(line.description).toMatch(/literal 0 is tolerated only .* on the callgraph path/i);
|
|
expect(line.description).toMatch(/omit line for whole-symbol pdg/i);
|
|
// Must NOT claim pdg "requires a positive line" — that contradicts the valid
|
|
// no-line whole-symbol pdg call documented in the top-level description.
|
|
expect(line.description).not.toMatch(/requires a positive line/i);
|
|
// The top-level description mentions the statement-anchored slice and result shape.
|
|
expect(impactTool.description).toMatch(/statement-anchored|STATEMENT-ANCHORED/);
|
|
expect(impactTool.description).toContain('affectedStatements');
|
|
expect(impactTool.description).toContain('target metadata');
|
|
expect(impactTool.description).toContain('truncatedBy');
|
|
});
|
|
|
|
it.each(['query', 'context', 'impact'])(
|
|
'%s advertises an optional positive maxTokens budget',
|
|
(name) => {
|
|
const tool = GITNEXUS_TOOLS.find((definition) => definition.name === name)!;
|
|
const maxTokens = tool.inputSchema.properties.maxTokens;
|
|
expect(maxTokens).toMatchObject({ type: 'integer', minimum: 1 });
|
|
expect(tool.inputSchema.required).not.toContain('maxTokens');
|
|
},
|
|
);
|
|
|
|
it('rename tool requires new_name', () => {
|
|
const renameTool = GITNEXUS_TOOLS.find((t) => t.name === 'rename')!;
|
|
expect(renameTool.inputSchema.required).toContain('new_name');
|
|
});
|
|
|
|
it('trace tool advertises cross-repo @group support plus pdg/crossDepth flags (U3)', () => {
|
|
const traceTool = GITNEXUS_TOOLS.find((t) => t.name === 'trace')!;
|
|
const props = traceTool.inputSchema.properties as Record<
|
|
string,
|
|
{ type?: string; default?: unknown; minimum?: number; description?: string }
|
|
>;
|
|
// Experimental cross-repo flags are advertised and optional.
|
|
expect(props.pdg).toBeDefined();
|
|
expect(props.pdg.type).toBe('boolean');
|
|
expect(props.crossDepth).toBeDefined();
|
|
expect(props.crossDepth.type).toBe('number');
|
|
expect(traceTool.inputSchema.required).toEqual([]);
|
|
// The repo param and top-level description both name the @group entry point.
|
|
expect(props.repo.description).toMatch(/@groupName/);
|
|
expect(traceTool.description).toMatch(/CROSS-REPO/i);
|
|
expect(traceTool.description).toContain('ContractLink');
|
|
expect(traceTool.description).toContain('crossings');
|
|
});
|
|
|
|
it('detect_changes tool has no required parameters', () => {
|
|
const detectTool = GITNEXUS_TOOLS.find((t) => t.name === 'detect_changes')!;
|
|
expect(detectTool.inputSchema.required).toEqual([]);
|
|
});
|
|
|
|
it('list_repos tool exposes optional limit/offset pagination params', () => {
|
|
const listTool = GITNEXUS_TOOLS.find((t) => t.name === 'list_repos')!;
|
|
const props = listTool.inputSchema.properties;
|
|
expect(props.limit).toBeDefined();
|
|
expect(props.limit.type).toBe('integer');
|
|
expect(props.offset).toBeDefined();
|
|
expect(props.offset.type).toBe('integer');
|
|
// Pagination is opt-in: zero-arg callers must still be valid.
|
|
expect(listTool.inputSchema.required).toEqual([]);
|
|
// No `repo` param on list_repos (it lists all repos).
|
|
expect(props.repo).toBeUndefined();
|
|
// Description must teach an LLM to page through every repository.
|
|
expect(listTool.description.toLowerCase()).toContain('paginat');
|
|
expect(listTool.description).toContain('nextOffset');
|
|
expect(listTool.description).toContain('hasMore');
|
|
});
|
|
|
|
it('list_repos schema bounds match the exported pagination constants', () => {
|
|
const listTool = GITNEXUS_TOOLS.find((t) => t.name === 'list_repos')!;
|
|
const { limit, offset } = listTool.inputSchema.properties;
|
|
expect(limit.minimum).toBe(1);
|
|
expect(limit.maximum).toBe(LIST_REPOS_MAX_LIMIT);
|
|
expect(limit.default).toBe(LIST_REPOS_DEFAULT_LIMIT);
|
|
expect(offset.minimum).toBe(0);
|
|
expect(offset.default).toBe(0);
|
|
// Sane, documented bounds (guards against accidental constant drift).
|
|
expect(LIST_REPOS_DEFAULT_LIMIT).toBeLessThanOrEqual(LIST_REPOS_MAX_LIMIT);
|
|
expect(LIST_REPOS_DEFAULT_LIMIT).toBeGreaterThan(0);
|
|
});
|
|
|
|
it('per-repo tools have optional repo parameter for backend selection', () => {
|
|
for (const tool of GITNEXUS_TOOLS) {
|
|
if (tool.name === 'list_repos') continue;
|
|
if (GROUP_TOOLS.has(tool.name)) continue;
|
|
expect(tool.inputSchema.properties.repo).toBeDefined();
|
|
expect(tool.inputSchema.properties.repo.type).toBe('string');
|
|
expect(tool.inputSchema.required).not.toContain('repo');
|
|
}
|
|
});
|
|
|
|
it('per-repo tools have an optional branch scope param (#2106); group/list tools do not', () => {
|
|
for (const tool of GITNEXUS_TOOLS) {
|
|
if (tool.name === 'list_repos' || GROUP_TOOLS.has(tool.name)) {
|
|
expect(tool.inputSchema.properties.branch).toBeUndefined();
|
|
continue;
|
|
}
|
|
expect(tool.inputSchema.properties.branch, tool.name).toBeDefined();
|
|
expect(tool.inputSchema.properties.branch.type).toBe('string');
|
|
// Optional — omitting it keeps the default/primary-branch behavior.
|
|
expect(tool.inputSchema.required).not.toContain('branch');
|
|
}
|
|
});
|
|
|
|
it('group tools without backend repo param omit repo property', () => {
|
|
for (const name of ['group_list', 'group_sync'] as const) {
|
|
const tool = GITNEXUS_TOOLS.find((t) => t.name === name)!;
|
|
expect(tool.inputSchema.properties).not.toHaveProperty('repo');
|
|
}
|
|
});
|
|
|
|
it('impact, query, and context expose optional service with minLength', () => {
|
|
for (const n of ['impact', 'query', 'context'] as const) {
|
|
const tool = GITNEXUS_TOOLS.find((t) => t.name === n)!;
|
|
const svc = tool.inputSchema.properties.service;
|
|
expect(svc, n).toBeDefined();
|
|
expect(svc!.minLength).toBe(1);
|
|
}
|
|
});
|
|
|
|
it('impact schema bounds match cross-impact validation ranges', () => {
|
|
const impact = GITNEXUS_TOOLS.find((t) => t.name === 'impact')!;
|
|
expect(impact.inputSchema.properties.maxDepth.minimum).toBe(1);
|
|
expect(impact.inputSchema.properties.maxDepth.maximum).toBe(32);
|
|
expect(impact.inputSchema.properties.minConfidence.minimum).toBe(0);
|
|
expect(impact.inputSchema.properties.minConfidence.maximum).toBe(1);
|
|
expect(impact.inputSchema.properties.timeoutMs.maximum).toBe(3600000);
|
|
});
|
|
|
|
it('detect_changes scope has correct enum values', () => {
|
|
const detectTool = GITNEXUS_TOOLS.find((t) => t.name === 'detect_changes')!;
|
|
const scopeProp = detectTool.inputSchema.properties.scope;
|
|
expect(scopeProp.enum).toEqual(['unstaged', 'staged', 'all', 'compare']);
|
|
});
|
|
|
|
// ─── explain (#2083 M3 U6) ─────────────────────────────────────────
|
|
|
|
it('explain tool is anchorless-optional with a bounded limit and a branch scope', () => {
|
|
const explainTool = GITNEXUS_TOOLS.find((t) => t.name === 'explain')!;
|
|
expect(explainTool).toBeDefined();
|
|
// Anchorless calls (enumerate all findings) must be valid.
|
|
expect(explainTool.inputSchema.required).toEqual([]);
|
|
expect(explainTool.inputSchema.properties.target).toBeDefined();
|
|
expect(explainTool.inputSchema.properties.target.type).toBe('string');
|
|
const limit = explainTool.inputSchema.properties.limit;
|
|
expect(limit).toBeDefined();
|
|
expect(limit.type).toBe('integer');
|
|
expect(limit.minimum).toBe(1);
|
|
expect(limit.maximum).toBeGreaterThan(0);
|
|
// Branch-scoped per #2106 (injected via BRANCH_SCOPED_TOOLS).
|
|
expect(explainTool.inputSchema.properties.branch).toBeDefined();
|
|
});
|
|
|
|
it('explain description names the --pdg requirement and the KTD10 contract caveats', () => {
|
|
const explainTool = GITNEXUS_TOOLS.find((t) => t.name === 'explain')!;
|
|
const d = explainTool.description;
|
|
expect(d).toContain('--pdg');
|
|
expect(d).toContain('intra-procedural');
|
|
// The named blind-spot classes (plan KTD10) must reach the consumer.
|
|
expect(d.toLowerCase()).toContain('closure/callback');
|
|
expect(d.toLowerCase()).toContain('property/field');
|
|
expect(d.toLowerCase()).toContain('guard-style');
|
|
expect(d.toLowerCase()).toContain('cross-function');
|
|
expect(d.toLowerCase()).toContain('commonjs');
|
|
expect(d.toLowerCase()).toContain('exception');
|
|
});
|
|
|
|
it('api_impact tool has no required parameters', () => {
|
|
const apiImpactTool = GITNEXUS_TOOLS.find((t) => t.name === 'api_impact')!;
|
|
expect(apiImpactTool).toBeDefined();
|
|
expect(apiImpactTool.inputSchema.required).toEqual([]);
|
|
expect(apiImpactTool.inputSchema.properties.route).toBeDefined();
|
|
expect(apiImpactTool.inputSchema.properties.file).toBeDefined();
|
|
expect(apiImpactTool.inputSchema.properties.repo).toBeDefined();
|
|
});
|
|
|
|
it('impact relationTypes is array of strings', () => {
|
|
const impactTool = GITNEXUS_TOOLS.find((t) => t.name === 'impact')!;
|
|
const relProp = impactTool.inputSchema.properties.relationTypes;
|
|
expect(relProp.type).toBe('array');
|
|
expect(relProp.items).toEqual({ type: 'string' });
|
|
});
|
|
|
|
it('impact advertises a mode param (callgraph default; pdg opt-in) — not a new tool (KTD1)', () => {
|
|
// KTD1: pdg impact ships as a PARAM on the existing tool, so the tool count
|
|
// must NOT change (asserted at 17 above) and `impact` must expose `mode`.
|
|
const impactTool = GITNEXUS_TOOLS.find((t) => t.name === 'impact')!;
|
|
const modeProp = impactTool.inputSchema.properties.mode;
|
|
expect(modeProp).toBeDefined();
|
|
expect(modeProp.type).toBe('string');
|
|
expect(modeProp.enum).toEqual(['callgraph', 'pdg']);
|
|
expect(modeProp.default).toBe('callgraph');
|
|
// The description must teach the opt-in / intra-procedural / --pdg contract.
|
|
expect(modeProp.description).toContain('pdg');
|
|
expect(modeProp.description).toContain('--pdg');
|
|
expect(modeProp.description.toLowerCase()).toContain('intra-procedural');
|
|
expect(modeProp.description).toContain('affectedStatements');
|
|
expect(modeProp.description).toContain('UNKNOWN-risk');
|
|
// The tool-level description must mention the mode so an LLM discovers it.
|
|
expect(impactTool.description.toLowerCase()).toContain('mode');
|
|
expect(impactTool.description).toContain('pdg');
|
|
});
|
|
|
|
it('route_map description defers to api_impact for pre-change analysis', () => {
|
|
const routeMapTool = GITNEXUS_TOOLS.find((t) => t.name === 'route_map')!;
|
|
expect(routeMapTool.description).toContain('api_impact');
|
|
expect(routeMapTool.description).toContain('pre-change analysis');
|
|
});
|
|
|
|
it('shape_check description defers to api_impact for pre-change analysis', () => {
|
|
const shapeCheckTool = GITNEXUS_TOOLS.find((t) => t.name === 'shape_check')!;
|
|
expect(shapeCheckTool.description).toContain('api_impact');
|
|
expect(shapeCheckTool.description).toContain('pre-change analysis');
|
|
});
|
|
});
|