mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-31 20:32:20 +03:00
- Add CliCatalogEntrySchema (Zod) + CliCatalogEntry type + CliCatalogSchema in src/shared/schemas/cliCatalog.ts - Add ToolBatchStatus + ToolBatchStatusMap interfaces in src/shared/types/cliBatchStatus.ts - Re-export cliBatchStatus from src/shared/types/index.ts - Extend all CLI_TOOLS entries with 4 new fields: category, vendor, acpSpawnable, baseUrlSupport - Add 13 new entries: roo, jcode, deepseek-tui, smelt, pi (code), aider, forge, gemini-cli, cursor-cli (code), goose, interpreter, warp, agent-deck (agent) - Remove windsurf and amp (MITM backlog plan 11, D17) - Result: 19 visible code entries + 6 agent entries (D15 cardinality) - Add 5 new unit tests: cli-catalog-schema, cli-catalog-counts, cli-catalog-newentries, cli-catalog-removed, cli-catalog-acpspawnable - Update existing tests to align with removed entries
99 lines
3.5 KiB
TypeScript
99 lines
3.5 KiB
TypeScript
/**
|
|
* F1: cli-catalog-counts.test.ts
|
|
* Assert catalog cardinality per plan 14 D15 / §3.1-§3.2.
|
|
*/
|
|
import test from "node:test";
|
|
import assert from "node:assert/strict";
|
|
|
|
const { CLI_TOOLS } = await import("../../src/shared/constants/cliTools.ts");
|
|
const { EXPECTED_CODE_COUNT, EXPECTED_AGENT_COUNT } = await import(
|
|
"../../src/shared/schemas/cliCatalog.ts"
|
|
);
|
|
|
|
const all = Object.values(CLI_TOOLS);
|
|
const codeAll = all.filter((t) => t.category === "code");
|
|
const agentAll = all.filter((t) => t.category === "agent");
|
|
const codeVisible = codeAll.filter((t) => t.baseUrlSupport !== "none");
|
|
|
|
test(`CLI_TOOLS has exactly ${EXPECTED_CODE_COUNT} code entries with baseUrlSupport !== 'none'`, () => {
|
|
assert.equal(
|
|
codeVisible.length,
|
|
EXPECTED_CODE_COUNT,
|
|
`Expected ${EXPECTED_CODE_COUNT} visible code entries, got ${codeVisible.length}: ${codeVisible.map((t) => t.id).join(", ")}`
|
|
);
|
|
});
|
|
|
|
test(`CLI_TOOLS has exactly ${EXPECTED_AGENT_COUNT} agent entries`, () => {
|
|
assert.equal(
|
|
agentAll.length,
|
|
EXPECTED_AGENT_COUNT,
|
|
`Expected ${EXPECTED_AGENT_COUNT} agent entries, got ${agentAll.length}: ${agentAll.map((t) => t.id).join(", ")}`
|
|
);
|
|
});
|
|
|
|
test("CLI_TOOLS total code entries (including none) equals 23 (19 visible + 4 none)", () => {
|
|
// code-none entries: antigravity, kiro, cursor (app), hermes (simple guide)
|
|
const codeNone = codeAll.filter((t) => t.baseUrlSupport === "none");
|
|
assert.equal(
|
|
codeNone.length,
|
|
4,
|
|
`Expected 4 code entries with baseUrlSupport='none', got ${codeNone.length}: ${codeNone.map((t) => t.id).join(", ")}`
|
|
);
|
|
assert.equal(
|
|
codeAll.length,
|
|
23,
|
|
`Expected 23 total code entries, got ${codeAll.length}`
|
|
);
|
|
});
|
|
|
|
test("CLI_TOOLS total (code + agent) = 29", () => {
|
|
assert.equal(all.length, 29, `Expected 29 total entries, got ${all.length}`);
|
|
});
|
|
|
|
test("All code-none entries have configType mitm OR are legacy excluded entries", () => {
|
|
const codeNone = codeAll.filter((t) => t.baseUrlSupport === "none");
|
|
const allowedIds = new Set(["antigravity", "kiro", "cursor", "hermes"]);
|
|
for (const entry of codeNone) {
|
|
assert.ok(
|
|
allowedIds.has(entry.id),
|
|
`Unexpected code entry with baseUrlSupport='none': ${entry.id}`
|
|
);
|
|
}
|
|
});
|
|
|
|
test("All agent entries have baseUrlSupport 'full' or 'partial' (no agent is 'none')", () => {
|
|
for (const entry of agentAll) {
|
|
assert.notEqual(
|
|
entry.baseUrlSupport,
|
|
"none",
|
|
`Agent entry '${entry.id}' has unexpected baseUrlSupport='none'`
|
|
);
|
|
}
|
|
});
|
|
|
|
test("The 19 visible code entries match D15 list exactly", () => {
|
|
const d15List = new Set([
|
|
"claude", "codex", "cline", "kilo", "roo", "continue", "qwen",
|
|
"aider", "forge", "jcode", "deepseek-tui", "opencode", "droid",
|
|
"copilot", "gemini-cli", "cursor-cli", "smelt", "pi", "custom",
|
|
]);
|
|
const visibleIds = new Set(codeVisible.map((t) => t.id));
|
|
for (const id of d15List) {
|
|
assert.ok(visibleIds.has(id), `D15 entry '${id}' not found in visible code list`);
|
|
}
|
|
for (const id of visibleIds) {
|
|
assert.ok(d15List.has(id), `Visible code entry '${id}' not in D15 list`);
|
|
}
|
|
});
|
|
|
|
test("The 6 agent entries match D15 list exactly", () => {
|
|
const d15Agents = new Set(["hermes-agent", "openclaw", "goose", "interpreter", "warp", "agent-deck"]);
|
|
const agentIds = new Set(agentAll.map((t) => t.id));
|
|
for (const id of d15Agents) {
|
|
assert.ok(agentIds.has(id), `D15 agent '${id}' not found in agent entries`);
|
|
}
|
|
for (const id of agentIds) {
|
|
assert.ok(d15Agents.has(id), `Agent entry '${id}' not in D15 agent list`);
|
|
}
|
|
});
|