mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-20 00:11:37 +00:00
Some checks failed
Scorecard / Scorecard analysis (push) Has been cancelled
CodeQL / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Gitleaks / gitleaks (push) Has been cancelled
Publish / Classify release event (push) Has been cancelled
Trivy Image Scan / Trivy (gitnexus-cli) (push) Has been cancelled
Trivy Image Scan / Trivy (gitnexus-web) (push) Has been cancelled
Publish / RC guard (marker + release-PR skip) (push) Has been cancelled
Publish / ci (push) Has been cancelled
Publish / Publish to npm (push) Has been cancelled
Publish / Build & Push RC Docker images (push) Has been cancelled
* fix(mcp): stabilize api_impact response shape for same-URL multi-verb routes After #2302 made Route identity method-aware, a same URL exposes one Route node per HTTP verb, so a bare-URL api_impact lookup could silently flip from a direct route object to the wrapped { routes, total } envelope. Surface each route's `method` (via the shared fetch) so multi-verb results are distinguishable, and add an optional `method` selector that narrows a multi-verb URL/file to one verb and forces the singular shape. A verb that matches no route returns a clear error. Document the match-count contract in the tool schema. Refs #2308 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * test(mcp): cover same-URL multi-verb api_impact contract Regression coverage for #2308: bare-URL and bare-file lookups of a same-URL GET+POST pair return the wrapped form with distinct per-route methods; the method selector collapses to the singular shape (case-insensitively); an unmatched verb returns a verb-not-found error; and verbless routes surface a null method. Refs #2308 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(review): apply autofix feedback - tools.ts: correct api_impact contract docs — `method` narrows to one verb but the singular shape only holds when exactly one route remains after filtering (substring route/file matches can still wrap); cover file lookups; enumerate verbs. - local-backend.ts: surface `method` in route_map and shape_check output (the shared fetch already returns it; agents discover verbs there before api_impact). - local-backend.ts: compute routeCountByHandler from the unfiltered match so a method-scoped api_impact still flags a multi-verb handler's partial middleware. - tests: add file+method and verbless-exclusion cases; assert unconditionally via toMatchObject; lowercase the verb-not-found input to exercise error uppercasing. Refs #2308 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * fix(mcp): treat wildcard '*' routes as matching any api_impact method selector (#2308) Method-agnostic routes (Django function views) persist with Route method '*', not null. The api_impact method selector used exact verb equality, so '*' routes were excluded and api_impact({route, method:'POST'}) falsely reported 'No routes found' for a route that handles every verb. Treat '*' as matching any requested verb, and correct the comment + tool-description strings that wrongly grouped Django wildcards with null/verbless routes. * fix(mcp): harden api_impact method input against non-string and empty values (#2308) The MCP envelope is not schema-validated, so a non-string `method` reached `.toUpperCase()` and threw a TypeError. Widen the param to `unknown` and guard it with a typeof check that returns a structured error (mirroring the resolveAliasString pattern from #2175), and collapse empty/whitespace verbs to no selector. * fix(mcp): distinguish url-not-found from verb-not-found in api_impact error (#2308) The verb-not-found error appended 'with method "X"' even when the URL/file itself did not exist, implying the URL exists with other verbs. Gate the verb clause on matched.length > 0 so a non-existent URL/file gets the plain message. * fix(mcp): clarify api_impact middlewareNote wording for verbless siblings (#2308) The partial-middleware note claimed 'other methods in this handler' even when the co-located sibling is a verbless (null) route rather than another HTTP verb. Refer to 'other route exports' instead, which covers both cases. * docs(mcp): document and test the method field on route_map and shape_check (#2308) The shared fetchRoutesWithConsumers change surfaced a method key on route_map and shape_check responses too, but their tool descriptions never mentioned it and no test covered it. Document the field on both descriptions and add unit tests asserting it (shape_check rows carry responseKeys + a consumer so they survive shape_check's keys-and-consumers filter). * test(mcp): cover middlewareDetection 'partial' survival under a method filter (#2308) The diff's core behavioral line counts verbs-per-handler from the unfiltered match set so a method-scoped query still flags a multi-verb handler's partial middleware, but no test exercised it (every verbRow hardcoded middleware:null). Add a middleware param to verbRow and a test that fails if the count is taken from the post-filter set instead. Verified via mutation: matched->routes fails it. * test(mcp): add live-LadybugDB integration coverage for route method round-trip (#2308) The new n.method query column was only unit-mocked. Add a self-contained integration suite that seeds GET+POST /api/orders and a method-agnostic '*' Django route, then asserts api_impact surfaces method, narrows by verb, and matches the '*' route end-to-end (the U1 fix), plus route_map surfacing. Own seed + no FTS so it neither perturbs api-impact-e2e nor silently skips. * refactor(mcp): type the api_impact response shape instead of Promise<any> (#2308) Replace apiImpact's Promise<any> with an explicit ApiImpactResult union (single route | wrapped { routes, total } | { error }) and a typed ApiImpactRoute. The results.map is annotated so the response builder is checked against the declared shape. Behavior unchanged; sibling MCP methods keep their Promise<any> convention. * fix(mcp): express the route-or-file requirement in the api_impact schema (#2308) The inputSchema left route/file as bare optionals, so the 'at least one of route/file' rule the handler enforces was invisible to clients. Add an optional anyOf to ToolDefinition (forwarded verbatim by the ListTools handler) and an anyOf:[{required:[route]},{required:[file]}] on api_impact. Matches runtime (both allowed, route wins); 'at least one' not 'exactly one'. --------- Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
367 lines
17 KiB
TypeScript
367 lines
17 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('api_impact tool expresses the route-or-file requirement via anyOf (#2308)', () => {
|
|
const apiImpactTool = GITNEXUS_TOOLS.find((t) => t.name === 'api_impact')!;
|
|
expect(apiImpactTool.inputSchema.anyOf).toEqual([
|
|
{ required: ['route'] },
|
|
{ required: ['file'] },
|
|
]);
|
|
// route/file stay optional in `required` (anyOf carries the cross-field rule)
|
|
expect(apiImpactTool.inputSchema.required).toEqual([]);
|
|
});
|
|
|
|
it('impact tool requires target and direction', () => {
|
|
const impactTool = GITNEXUS_TOOLS.find((t) => t.name === 'impact')!;
|
|
expect(impactTool.inputSchema.required).toContain('target');
|
|
expect(impactTool.inputSchema.required).toContain('direction');
|
|
});
|
|
|
|
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('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');
|
|
});
|
|
});
|