Files
OmniRoute/tests/unit/cli-completion-dynamic.test.ts
Xiangzhe 0a74bfbdea feat(cli): relay-like CLI closure — target manifest, Codex TOML, Gemini launcher, guards
- canonical executable manifest (bin/cli/cli-manifest.mjs): run/configure/completion
  derive targets, aliases and --model wiring from one table; drift test cross-checks
  manifest x cliRuntime x UI catalog (tests/unit/cli/cli-manifest-drift.test.ts)
- dashboard Codex generator converged to ~/.codex/config.toml (modern Codex v0.137+,
  verified against codex-cli 0.147.0): conservative merge, env_key auth (key never
  written), refuses invalid TOML, reports legacy config.yaml as migration note
- omniroute run gemini: launcher over OmniRoute's /v1beta surface via
  GOOGLE_GEMINI_BASE_URL + isolated GEMINI_CLI_HOME forcing gemini-api-key auth
  (contract proven against @google/gemini-cli 0.50.0); ACP registration kept distinct
- opt-in real smoke harness for upstream CLIs (RUN_CLI_SMOKE=1, credential by env
  NAME, redacted output): tests/integration/upstream-cli-smoke.int.test.ts
- container-guard homologation for POST /api/cli-tools/apply (422 in container,
  dry-run preview allowed, host write passes) + docs; guard untouched
- typecheck: omniglyphAdapter union narrowing, usageTracking typed signatures
  (UsageLike, no any), models.ts isValidModel params — typecheck:core and
  typecheck:noimplicit:core now clean
- relay core (prior session of this effort): omniroute run for 6 CLIs, configure
  picker with per-context favorites/recents, contexts with optional keychain +
  0600 fallback, provider CRUD with recursive redaction, completion updates, docs
2026-08-18 08:25:16 -03:00

119 lines
4.3 KiB
TypeScript

import test from "node:test";
import assert from "node:assert/strict";
test("completion.mjs pode ser importado sem erro", async () => {
const mod = await import("../../bin/cli/commands/completion.mjs");
assert.equal(typeof mod.registerCompletion, "function");
assert.equal(typeof mod.runCompletionCommand, "function");
});
test("runCompletionCommand bash retorna 0 e string não-vazia", async () => {
const chunks: string[] = [];
const orig = process.stdout.write.bind(process.stdout);
(process.stdout as any).write = (c: string | Uint8Array) => {
if (typeof c === "string") chunks.push(c);
return true;
};
try {
const { runCompletionCommand } = await import("../../bin/cli/commands/completion.mjs");
const code = await runCompletionCommand("bash");
assert.equal(code, 0);
} finally {
(process.stdout as any).write = orig;
}
const out = chunks.join("");
assert.ok(out.includes("omniroute"), "bash script should mention omniroute");
assert.ok(out.includes("_omniroute"), "bash script should define _omniroute function");
});
test("runCompletionCommand zsh contém compdef", async () => {
const chunks: string[] = [];
const orig = process.stdout.write.bind(process.stdout);
(process.stdout as any).write = (c: string | Uint8Array) => {
if (typeof c === "string") chunks.push(c);
return true;
};
try {
const { runCompletionCommand } = await import("../../bin/cli/commands/completion.mjs");
const code = await runCompletionCommand("zsh");
assert.equal(code, 0);
} finally {
(process.stdout as any).write = orig;
}
const out = chunks.join("");
assert.ok(out.includes("compdef"), "zsh script should contain compdef");
});
test("runCompletionCommand fish retorna 0", async () => {
const chunks: string[] = [];
const orig = process.stdout.write.bind(process.stdout);
(process.stdout as any).write = (c: string | Uint8Array) => {
if (typeof c === "string") chunks.push(c);
return true;
};
try {
const { runCompletionCommand } = await import("../../bin/cli/commands/completion.mjs");
const code = await runCompletionCommand("fish");
assert.equal(code, 0);
} finally {
(process.stdout as any).write = orig;
}
const out = chunks.join("");
assert.ok(out.includes("omniroute"), "fish script should mention omniroute");
});
test("runCompletionCommand shell inválido retorna 1", async () => {
const orig = process.stderr.write.bind(process.stderr);
(process.stderr as any).write = () => true;
try {
const { runCompletionCommand } = await import("../../bin/cli/commands/completion.mjs");
const code = await runCompletionCommand("powershell" as any);
assert.equal(code, 1);
} finally {
(process.stderr as any).write = orig;
}
});
test("completion scripts incluem combos/providers/models no cache dinamicamente", async () => {
const { runCompletionCommand } = await import("../../bin/cli/commands/completion.mjs");
const chunks: string[] = [];
const orig = process.stdout.write.bind(process.stdout);
(process.stdout as any).write = (c: string | Uint8Array) => {
if (typeof c === "string") chunks.push(c);
return true;
};
try {
await runCompletionCommand("zsh");
} finally {
(process.stdout as any).write = orig;
}
const out = chunks.join("");
assert.ok(
out.includes("completion-cache.json") || out.includes("omniroute_get_cache"),
"should reference cache"
);
});
test("completion scripts expõem os alvos de execução e configuração", async () => {
const { runCompletionCommand } = await import("../../bin/cli/commands/completion.mjs");
const expected = ["connect", "contexts", "configure", "launch", "launch-codex", "run", "repair"];
for (const shell of ["bash", "zsh", "fish"] as const) {
const chunks: string[] = [];
const originalWrite = process.stdout.write.bind(process.stdout);
process.stdout.write = ((chunk: unknown) => {
if (typeof chunk === "string") chunks.push(chunk);
return true;
}) as typeof process.stdout.write;
try {
assert.equal(await runCompletionCommand(shell), 0);
} finally {
process.stdout.write = originalWrite;
}
const output = chunks.join("");
for (const command of expected) {
assert.ok(output.includes(command), `${shell} completion should include ${command}`);
}
}
});