mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-09-14 19:02:17 +03:00
Landed with the design call resolved per the owner's pick — **option 1**: the synced store is now endpoint-agnostic (persistDiscoveredModels and managedModelImport no longer drop non-chat models at write time), and chat selectability moved to read time (auto-pool expansion in autoStrategy applies filterChatSelectableModels; the models-route projection already had its chatOnly filter). Your discovery test now passes end-to-end (3/3): /api/show capabilities persist per connection and image/embedding requests route through the advertising host. Reconciliation notes: conflicted areas merged onto the current tip (adobe discovery import, requestedModel preflight signature, resolvedProvider fast-path coexists with the synced-route override — explicit resolution wins); carried base-red drains (#10055 memoization, #11071 test variants) dropped as already-landed; the managed-model-import exclusion test was propagated to the new contract (image/video models persist; the read filter still hides them from chat pickers — pinned by a new assertion). Full battery: 205/206 focused (the one red is a confirmed periodic-timer timing flake on the loaded devbox — 20/20 isolated), autoCombo vitest 30/30, combo suites 46/46, gates + typecheck clean. Thank you @yourspraveen — the capability probe + routing design was right; it just needed the store contract opened up. Fixes #11087.
86 lines
3.5 KiB
JavaScript
86 lines
3.5 KiB
JavaScript
import test from "node:test";
|
|
import assert from "node:assert/strict";
|
|
import fs from "node:fs";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
import { execFileSync } from "node:child_process";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
// Gera o export estável do catálogo (scripts/release/radar-export.mjs) e valida
|
|
// o contrato consumido pelo OmniRoute Radar + a proveniência (D16: desconhecido
|
|
// permanece `null`, nunca inventado).
|
|
|
|
const DIR = path.dirname(fileURLToPath(import.meta.url));
|
|
const REPO = path.resolve(DIR, "../.."); // …/OmniRoute
|
|
const SCRIPT = path.join(REPO, "scripts/release/radar-export.mjs");
|
|
|
|
function runExport(extraEnv = {}) {
|
|
const outDir = fs.mkdtempSync(path.join(os.tmpdir(), "radar-export-"));
|
|
const outPath = path.join(outDir, "export-omniroute.json");
|
|
execFileSync("node", ["--import", "tsx/esm", SCRIPT, outPath], {
|
|
cwd: REPO,
|
|
stdio: ["ignore", "ignore", "inherit"],
|
|
// Base limpa: sem herdar GITHUB_* do ambiente do CI que roda os testes.
|
|
env: {
|
|
PATH: process.env.PATH,
|
|
HOME: process.env.HOME,
|
|
GITHUB_SHA: undefined,
|
|
GITHUB_REF_NAME: undefined,
|
|
GITHUB_REF: undefined,
|
|
GITHUB_ACTIONS: undefined,
|
|
GITHUB_SERVER_URL: undefined,
|
|
GITHUB_REPOSITORY: undefined,
|
|
GITHUB_RUN_ID: undefined,
|
|
...extraEnv,
|
|
},
|
|
});
|
|
const parsed = JSON.parse(fs.readFileSync(outPath, "utf8"));
|
|
fs.rmSync(outDir, { recursive: true, force: true });
|
|
return parsed;
|
|
}
|
|
|
|
test("radar export satisfies the Radar consumer contract with a fresh catalog", () => {
|
|
const data = runExport();
|
|
// Contrato mínimo de src/feed/exportSource.ts: budgets[] não-vazio + geradoEm.
|
|
assert.ok(Array.isArray(data.budgets) && data.budgets.length > 0, "budgets não-vazio");
|
|
assert.ok(Array.isArray(data.registry) && data.registry.length > 0, "registry não-vazio");
|
|
assert.ok(
|
|
typeof data.geradoEm === "string" && !Number.isNaN(Date.parse(data.geradoEm)),
|
|
"geradoEm ISO válido"
|
|
);
|
|
assert.ok(data.totais && typeof data.totais === "object", "totais presente");
|
|
// registry ordenado e sem duplicatas (chaves de provider).
|
|
assert.deepEqual(data.registry, [...data.registry].sort());
|
|
});
|
|
|
|
test("radar export provenance never fabricates unknown fields", () => {
|
|
const data = runExport();
|
|
const p = data.provenance;
|
|
assert.ok(p && typeof p === "object", "provenance presente");
|
|
assert.equal(p.generatedAt, data.geradoEm);
|
|
assert.equal(p.generator, "scripts/release/radar-export.mjs");
|
|
// Fora de um runner do GitHub Actions: manual, e ref/runUrl desconhecidos = null.
|
|
assert.equal(p.generatedBy, "manual");
|
|
assert.equal(p.sourceRef, null);
|
|
assert.equal(p.runUrl, null);
|
|
// sourceCommit: SHA de 40 hex (via git no checkout) ou null se indisponível.
|
|
assert.ok(p.sourceCommit === null || /^[0-9a-f]{40}$/.test(p.sourceCommit), "sourceCommit sha|null");
|
|
});
|
|
|
|
test("radar export provenance reflects the GitHub Actions environment when present", () => {
|
|
const sha = "0123456789abcdef0123456789abcdef01234567";
|
|
const data = runExport({
|
|
GITHUB_ACTIONS: "true",
|
|
GITHUB_SHA: sha,
|
|
GITHUB_REF_NAME: "release/v9.9.9",
|
|
GITHUB_SERVER_URL: "https://github.com",
|
|
GITHUB_REPOSITORY: "diegosouzapw/OmniRoute",
|
|
GITHUB_RUN_ID: "42",
|
|
});
|
|
const p = data.provenance;
|
|
assert.equal(p.generatedBy, "github-actions");
|
|
assert.equal(p.sourceCommit, sha);
|
|
assert.equal(p.sourceRef, "release/v9.9.9");
|
|
assert.equal(p.runUrl, "https://github.com/diegosouzapw/OmniRoute/actions/runs/42");
|
|
});
|