mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-18 21:22:28 +03:00
- 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
171 lines
6.2 KiB
TypeScript
171 lines
6.2 KiB
TypeScript
import test from "node:test";
|
|
import assert from "node:assert/strict";
|
|
import { chmod, mkdtemp, readFile, rm, writeFile } from "node:fs/promises";
|
|
import { existsSync } from "node:fs";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
|
|
import { runCliTarget } from "../../../bin/cli/commands/run.mjs";
|
|
|
|
const originalFetch = globalThis.fetch;
|
|
const originalPath = process.env.PATH;
|
|
|
|
async function makeFakeCli(name: string, body: string) {
|
|
const dir = await mkdtemp(path.join(os.tmpdir(), "omniroute-run-cli-"));
|
|
const file = path.join(dir, name);
|
|
await writeFile(file, `#!/usr/bin/env node\n${body}\n`, { mode: 0o755 });
|
|
await chmod(file, 0o755);
|
|
return { dir, file };
|
|
}
|
|
|
|
async function withReachableOmniRoute<T>(run: () => Promise<T>): Promise<T> {
|
|
globalThis.fetch = async () => new Response("{}", { status: 200 });
|
|
try {
|
|
return await run();
|
|
} finally {
|
|
globalThis.fetch = originalFetch;
|
|
}
|
|
}
|
|
|
|
test("run executes a generic target with isolated env and propagates its exit code", async (t) => {
|
|
if (process.platform === "win32") {
|
|
t.skip("POSIX fake executable; Windows shim behavior is covered by launch tests");
|
|
return;
|
|
}
|
|
|
|
const capture = await mkdtemp(path.join(os.tmpdir(), "omniroute-run-capture-"));
|
|
const capturePath = path.join(capture, "aider.json");
|
|
const fake = await makeFakeCli(
|
|
"aider",
|
|
`const fs = await import("node:fs");
|
|
fs.writeFileSync(process.env.CAPTURE_PATH, JSON.stringify({
|
|
argv: process.argv.slice(2),
|
|
base: process.env.OPENAI_API_BASE,
|
|
key: process.env.OPENAI_API_KEY,
|
|
}));
|
|
process.exit(7);`
|
|
);
|
|
process.env.PATH = `${fake.dir}${path.delimiter}${originalPath || ""}`;
|
|
process.env.CAPTURE_PATH = capturePath;
|
|
|
|
try {
|
|
const code = await withReachableOmniRoute(() =>
|
|
runCliTarget(
|
|
"aider",
|
|
{ remote: "https://relay.example.test", apiKey: "sk_private", model: "glm/glm-5.2" },
|
|
["--message", "reply OK"]
|
|
)
|
|
);
|
|
assert.equal(code, 7);
|
|
const result = JSON.parse(await readFile(capturePath, "utf8"));
|
|
assert.deepEqual(result.argv.slice(0, 2), ["--model", "openai/glm/glm-5.2"]);
|
|
assert.deepEqual(result.argv.slice(2), ["--message", "reply OK"]);
|
|
assert.equal(result.base, "https://relay.example.test");
|
|
assert.equal(result.key, "sk_private");
|
|
} finally {
|
|
if (originalPath === undefined) delete process.env.PATH;
|
|
else process.env.PATH = originalPath;
|
|
delete process.env.CAPTURE_PATH;
|
|
await rm(fake.dir, { recursive: true, force: true });
|
|
await rm(capture, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test("run gives Gemini an isolated GEMINI_CLI_HOME forcing api-key auth and removes it", async (t) => {
|
|
if (process.platform === "win32") {
|
|
t.skip("POSIX fake executable; Windows shim behavior is covered by launch tests");
|
|
return;
|
|
}
|
|
|
|
const capture = await mkdtemp(path.join(os.tmpdir(), "omniroute-run-gemini-capture-"));
|
|
const capturePath = path.join(capture, "gemini.json");
|
|
const fake = await makeFakeCli(
|
|
"gemini",
|
|
`const fs = await import("node:fs");
|
|
const path = await import("node:path");
|
|
const home = process.env.GEMINI_CLI_HOME;
|
|
const settings = JSON.parse(fs.readFileSync(path.join(home, ".gemini", "settings.json"), "utf8"));
|
|
fs.writeFileSync(process.env.CAPTURE_PATH, JSON.stringify({
|
|
home,
|
|
argv: process.argv.slice(2),
|
|
baseUrl: process.env.GOOGLE_GEMINI_BASE_URL,
|
|
key: process.env.GEMINI_API_KEY,
|
|
defaultAuth: process.env.GEMINI_DEFAULT_AUTH_TYPE,
|
|
selectedType: settings.security?.auth?.selectedType,
|
|
}));`
|
|
);
|
|
process.env.PATH = `${fake.dir}${path.delimiter}${originalPath || ""}`;
|
|
process.env.CAPTURE_PATH = capturePath;
|
|
|
|
try {
|
|
const code = await withReachableOmniRoute(() =>
|
|
runCliTarget(
|
|
"gemini",
|
|
{ remote: "https://relay.example.test", apiKey: "sk_private", model: "glm/glm-5.2" },
|
|
["-p", "reply OK"]
|
|
)
|
|
);
|
|
assert.equal(code, 0);
|
|
const result = JSON.parse(await readFile(capturePath, "utf8"));
|
|
assert.deepEqual(result.argv, ["--model", "glm/glm-5.2", "-p", "reply OK"]);
|
|
assert.equal(result.baseUrl, "https://relay.example.test");
|
|
assert.equal(result.key, "sk_private");
|
|
assert.equal(result.defaultAuth, "gemini-api-key");
|
|
assert.equal(result.selectedType, "gemini-api-key");
|
|
assert.equal(existsSync(result.home), false);
|
|
} finally {
|
|
if (originalPath === undefined) delete process.env.PATH;
|
|
else process.env.PATH = originalPath;
|
|
delete process.env.CAPTURE_PATH;
|
|
await rm(fake.dir, { recursive: true, force: true });
|
|
await rm(capture, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test("run gives Qwen an isolated temporary home and removes it after exit", async (t) => {
|
|
if (process.platform === "win32") {
|
|
t.skip("POSIX fake executable; Windows shim behavior is covered by launch tests");
|
|
return;
|
|
}
|
|
|
|
const capture = await mkdtemp(path.join(os.tmpdir(), "omniroute-run-qwen-capture-"));
|
|
const capturePath = path.join(capture, "qwen.json");
|
|
const fake = await makeFakeCli(
|
|
"qwen",
|
|
`const fs = await import("node:fs");
|
|
const path = await import("node:path");
|
|
const home = process.env.QWEN_HOME;
|
|
const settings = JSON.parse(fs.readFileSync(path.join(home, "settings.json"), "utf8"));
|
|
fs.writeFileSync(process.env.CAPTURE_PATH, JSON.stringify({
|
|
home,
|
|
argv: process.argv.slice(2),
|
|
model: settings.model?.name,
|
|
baseUrl: settings.model?.baseUrl,
|
|
}));`
|
|
);
|
|
process.env.PATH = `${fake.dir}${path.delimiter}${originalPath || ""}`;
|
|
process.env.CAPTURE_PATH = capturePath;
|
|
|
|
try {
|
|
const code = await withReachableOmniRoute(() =>
|
|
runCliTarget(
|
|
"qwen",
|
|
{ remote: "https://relay.example.test", apiKey: "sk_private", model: "glm/glm-5.2" },
|
|
["-p", "reply OK"]
|
|
)
|
|
);
|
|
assert.equal(code, 0);
|
|
const result = JSON.parse(await readFile(capturePath, "utf8"));
|
|
assert.deepEqual(result.argv, ["--model", "glm/glm-5.2", "-p", "reply OK"]);
|
|
assert.equal(result.model, "glm/glm-5.2");
|
|
assert.equal(result.baseUrl, "https://relay.example.test/v1");
|
|
assert.equal(existsSync(result.home), false);
|
|
} finally {
|
|
if (originalPath === undefined) delete process.env.PATH;
|
|
else process.env.PATH = originalPath;
|
|
delete process.env.CAPTURE_PATH;
|
|
await rm(fake.dir, { recursive: true, force: true });
|
|
await rm(capture, { recursive: true, force: true });
|
|
}
|
|
});
|