Files
OmniRoute/tests/unit/lib/managementCliToken.test.ts
Praveen K Palaniswamy 65e81158ab fix(ollama): route models by advertised capability (#11088)
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.
2026-08-23 11:45:01 -03:00

137 lines
4.8 KiB
TypeScript

import { test, mock } from "node:test";
import assert from "node:assert/strict";
import fs from "node:fs";
import os from "node:os";
import path from "node:path";
// Hermetic auth context (6A re-wire fix): the "rejects ..." assertions assume
// login protection is ON — on a fresh DB (CI) isAuthRequired() is false and the
// policy anonymous-allows before any token check. Locally this only passed
// because the dev DATA_DIR had a real password. Isolate + enable protection.
const TEST_DATA_DIR = fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-mgmt-cli-token-"));
const originalDataDir = process.env.DATA_DIR;
process.env.DATA_DIR = TEST_DATA_DIR;
const core = await import("../../../src/lib/db/core.ts");
const settingsDb = await import("../../../src/lib/db/settings.ts");
await settingsDb.updateSettings({
requireLogin: true,
setupComplete: true,
password: "test-password-hash",
});
const { getLegacyCliTokenSync, getMachineTokenSync } =
await import("../../../src/lib/machineToken.ts");
const { requireManagementAuth } = await import("../../../src/lib/api/requireManagementAuth.ts");
const { managementPolicy } = await import("../../../src/server/authz/policies/management.ts");
const { CLI_TOKEN_HEADER } = await import("../../../src/server/authz/headers.ts");
test.after(() => {
core.resetDbInstance();
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true });
if (originalDataDir === undefined) delete process.env.DATA_DIR;
else process.env.DATA_DIR = originalDataDir;
});
function makeCtx(headers: Record<string, string>, requestExtras: Record<string, unknown> = {}) {
return {
request: {
method: "GET",
headers: new Headers(headers),
cookies: { get: () => undefined },
nextUrl: { pathname: "/api/settings" },
url: "http://localhost:20128/api/settings",
...requestExtras,
},
classification: {
routeClass: "MANAGEMENT" as const,
normalizedPath: "/api/settings",
method: "GET",
},
requestId: "test-req",
};
}
test("management policy allows valid CLI token from localhost", async () => {
const token = getMachineTokenSync();
const ctx = makeCtx(
{ host: "localhost", [CLI_TOKEN_HEADER]: token },
{ socket: { remoteAddress: "127.0.0.1" } }
);
const outcome = await managementPolicy.evaluate(ctx);
assert.equal(outcome.allow, true);
if (outcome.allow) {
assert.equal(outcome.subject.id, "cli");
}
});
test("management policy accepts legacy 32-character CLI token from localhost", async () => {
const token = getLegacyCliTokenSync();
assert.equal(token.length, 32);
const ctx = makeCtx(
{
host: "localhost",
[CLI_TOKEN_HEADER]: token,
},
{ socket: { remoteAddress: "127.0.0.1" } }
);
const outcome = await managementPolicy.evaluate(ctx);
assert.equal(outcome.allow, true);
if (outcome.allow) {
assert.equal(outcome.subject.id, "cli");
}
});
test("management policy rejects valid token from non-localhost", async () => {
const token = getMachineTokenSync();
const ctx = makeCtx(
{ host: "localhost", [CLI_TOKEN_HEADER]: token },
{ socket: { remoteAddress: "192.168.1.100" } }
);
const outcome = await managementPolicy.evaluate(ctx);
assert.equal(outcome.allow, false);
});
test("management policy rejects wrong CLI token from localhost", async () => {
const ctx = makeCtx(
{
host: "localhost",
[CLI_TOKEN_HEADER]: "deadbeefdeadbeefdeadbeefdeadbeef",
},
{ socket: { remoteAddress: "127.0.0.1" } }
);
const outcome = await managementPolicy.evaluate(ctx);
assert.equal(outcome.allow, false);
});
test("route-level auth trusts only the central local-CLI subject stamp", async () => {
const request = new Request("http://localhost/api/cli/whoami", {
headers: {
"x-omniroute-auth-kind": "management_key",
"x-omniroute-auth-label": "local-cli-token",
},
});
assert.equal(await requireManagementAuth(request, { alwaysRequireAuth: true }), null);
const spoofedLabelOnly = new Request("http://localhost/api/cli/whoami", {
headers: { "x-omniroute-auth-label": "local-cli-token" },
});
assert.notEqual(await requireManagementAuth(spoofedLabelOnly, { alwaysRequireAuth: true }), null);
});
test("management policy rejects machine tokens when CLI-token auth is disabled", async () => {
const previous = process.env.OMNIROUTE_DISABLE_CLI_TOKEN;
process.env.OMNIROUTE_DISABLE_CLI_TOKEN = "true";
try {
const ctx = makeCtx(
{ host: "localhost", [CLI_TOKEN_HEADER]: getMachineTokenSync() },
{ socket: { remoteAddress: "127.0.0.1" } }
);
const outcome = await managementPolicy.evaluate(ctx);
assert.equal(outcome.allow, false);
} finally {
if (previous === undefined) delete process.env.OMNIROUTE_DISABLE_CLI_TOKEN;
else process.env.OMNIROUTE_DISABLE_CLI_TOKEN = previous;
}
});