Files
OmniRoute/tests/unit/zed-hosted-models-discovery-route.test.ts
Diego Rodrigues de Sa e Souza 3d4f3e4960 test(infra): retry recursive temp-dir removal instead of failing a shard on ENOTEMPTY (#11966) (#11968)
* test(infra): retry recursive temp-dir removal instead of failing a shard on ENOTEMPTY (#11966)

Two shards on release/v3.8.51 went red in one day with the same signature —
"ENOTEMPTY, Directory not empty: /tmp/omniroute-<test>-XXXXXX" — from
combo-same-provider-cascade (Unit Tests fast-path 4/4, on a PR that touches only
.github/) and auth-policy-embeddings-webfetch-7785 (the 20k-test TIA step). Both pass
alone and on re-run: the cleanup races something still writing into the directory
(SQLite WAL/-shm checkpoint, a worker, the backup) and under a loaded hosted runner
the window opens. 1154 test files do their own cleanup with
fs.rmSync(dir, { recursive: true, force: true }); 57 already asked for retries.

One-shot codemod (scripts/ad-hoc/codemod-rm-maxretries.mjs, kept for the record):
every rm / rmSync / rmdirSync option object with `recursive: true` and no
`maxRetries` gains `maxRetries: 5, retryDelay: 100` — Node itself then retries
ENOTEMPTY/EBUSY/EPERM for up to ~0.5 s before giving up. 2243 call sites in 1292
files under tests/, the shared tests/_setup/isolateDataDir.ts exit hook included.
Only the option object changes: no call site, assertion or import is touched.

Validation: prettier and ESLint (with the frozen suppressions) clean on all 1292
files; a random 20-file sample runs green (quota-redis-store hangs identically on
the untouched tree — it needs a Redis on localhost, an environment matter). The
four unit shards on this PR are the full run.

* fix(quality): let check-forgotten-sibling-tests read a 1,000-file diff

The gate shells out to `git diff` through execFileSync with Node's default 1 MB
maxBuffer; the 1,292-file codemod in this PR is the first diff large enough to
overflow it, and the gate died with `spawnSync git ENOBUFS` before comparing
anything. 64 MB is far above any real PR and costs nothing when unused.
2026-08-29 01:17:40 -03:00

238 lines
8.5 KiB
TypeScript

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";
const TEST_DATA_DIR = fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-zed-hosted-models-"));
process.env.DATA_DIR = TEST_DATA_DIR;
const core = await import("../../src/lib/db/core.ts");
const providersDb = await import("../../src/lib/db/providers.ts");
const zedAuth = await import("../../open-sse/shared/zedAuth.ts");
const providerModelsRoute = await import("../../src/app/api/providers/[id]/models/route.ts");
type SeenRequest = {
url: string;
method: string;
authorization: string | null;
body: string | null;
};
type RouteBody = {
provider?: string;
models?: Array<{ id: string; name?: string; [key: string]: unknown }>;
source?: string;
warning?: string;
error?: string;
};
const originalFetch = globalThis.fetch;
// Zed's LLM-token + model caches are module-level and keyed by
// `${userId}:${organizationId}:${accessToken.slice(-16)}`; each test uses its own
// token AND clears the caches so no test can be served a neighbour's catalog.
async function resetStorage() {
globalThis.fetch = originalFetch;
zedAuth.clearZedCaches();
core.resetDbInstance();
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
fs.mkdirSync(TEST_DATA_DIR, { recursive: true });
}
async function seedZedConnection(accessToken: string) {
return providersDb.createProviderConnection({
provider: "zed-hosted",
authType: "oauth",
name: `zed-${Math.random().toString(16).slice(2, 8)}`,
accessToken,
isActive: true,
testStatus: "active",
providerSpecificData: { userId: 4242, organizationId: "org-personal" },
});
}
async function callRoute(connectionId: string, search = "?refresh=true") {
return providerModelsRoute.GET(
new Request(`http://localhost/api/providers/${connectionId}/models${search}`),
{ params: { id: connectionId } }
);
}
test.beforeEach(async () => {
await resetStorage();
});
test.after(async () => {
globalThis.fetch = originalFetch;
zedAuth.clearZedCaches();
core.resetDbInstance();
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
});
test("zed-hosted model discovery mints an LLM token and lists the live catalog", async () => {
const accessToken = "zed-account-token-happy-path";
const connection = await seedZedConnection(accessToken);
const seen: SeenRequest[] = [];
globalThis.fetch = async (url, init) => {
const requestUrl = String(url);
const headers = new Headers(init?.headers as HeadersInit | undefined);
seen.push({
url: requestUrl,
method: (init?.method || "GET").toUpperCase(),
authorization: headers.get("authorization"),
body: typeof init?.body === "string" ? init.body : null,
});
if (requestUrl.endsWith("/client/llm_tokens")) {
// Zed authorizes the mint with its own `<userId> <accessToken>` scheme.
if (headers.get("authorization") !== `4242 ${accessToken}`) {
return new Response("Invalid Authorization header", { status: 401 });
}
return Response.json({ token: "zed-llm-token-abc" });
}
if (requestUrl.endsWith("/models")) {
// The catalog endpoint only accepts the minted LLM token.
if (headers.get("authorization") !== "Bearer zed-llm-token-abc") {
return new Response("Invalid Authorization header", { status: 401 });
}
return Response.json({
models: [
{
id: "claude-sonnet-4.5",
display_name: "Claude Sonnet 4.5",
max_token_count: 200000,
max_output_tokens: 64000,
supports_tools: true,
supports_images: true,
},
{
id: "gpt-5",
display_name: "GPT-5",
max_token_count: 400000,
supports_tools: true,
},
{
id: "retired-model",
display_name: "Retired",
is_disabled: true,
},
],
default_model: "claude-sonnet-4.5",
});
}
throw new Error(`Unexpected fetch: ${requestUrl}`);
};
const response = await callRoute(connection.id);
const body = (await response.json()) as RouteBody;
assert.equal(response.status, 200);
assert.equal(body.source, "api", `expected live discovery, got ${JSON.stringify(body)}`);
const ids = (body.models || []).map((model) => model.id);
assert.deepEqual(ids.sort(), ["claude-sonnet-4.5", "gpt-5"]);
const sonnet = (body.models || []).find((model) => model.id === "claude-sonnet-4.5");
assert.equal(sonnet?.name, "Claude Sonnet 4.5");
// The regression this guards: before the fix the route fell through to the
// registry `modelsUrl` path, which sends `Bearer <accessToken>` straight to
// cloud.zed.dev/models and always 401s. Assert the token exchange happened and
// that the catalog call carried the minted LLM token, never the account token.
const mint = seen.find((request) => request.url.endsWith("/client/llm_tokens"));
assert.ok(mint, "expected POST /client/llm_tokens");
assert.equal(mint.method, "POST");
assert.equal(mint.authorization, `4242 ${accessToken}`);
assert.equal(JSON.parse(mint.body || "{}").organization_id, "org-personal");
const catalog = seen.find((request) => request.url.endsWith("/models"));
assert.ok(catalog, "expected GET /models");
assert.equal(catalog.authorization, "Bearer zed-llm-token-abc");
assert.notEqual(catalog.authorization, `Bearer ${accessToken}`);
});
test("zed-hosted model discovery resolves the organization when the connection has none", async () => {
// The OAuth import stores `organizationId: tokens.organization_id || undefined`
// (src/lib/oauth/providers/zed-hosted.ts) — a connection can legitimately land
// without one, in which case the mint has to discover it via /client/users/me.
const accessToken = "zed-account-token-no-org";
const connection = await providersDb.createProviderConnection({
provider: "zed-hosted",
authType: "oauth",
name: `zed-${Math.random().toString(16).slice(2, 8)}`,
accessToken,
isActive: true,
testStatus: "active",
providerSpecificData: { userId: 4242 },
});
const seen: string[] = [];
globalThis.fetch = async (url, init) => {
const requestUrl = String(url);
const headers = new Headers(init?.headers as HeadersInit | undefined);
seen.push(requestUrl);
if (requestUrl.endsWith("/client/users/me")) {
return Response.json({
id: 4242,
organizations: [{ id: "org-discovered", is_personal: true }],
});
}
if (requestUrl.endsWith("/client/llm_tokens")) {
const body = JSON.parse(typeof init?.body === "string" ? init.body : "{}");
if (body.organization_id !== "org-discovered") {
return new Response("Unknown organization", { status: 403 });
}
return Response.json({ token: "zed-llm-token-xyz" });
}
if (requestUrl.endsWith("/models")) {
if (headers.get("authorization") !== "Bearer zed-llm-token-xyz") {
return new Response("Invalid Authorization header", { status: 401 });
}
return Response.json({ models: [{ id: "gpt-5", display_name: "GPT-5" }] });
}
throw new Error(`Unexpected fetch: ${requestUrl}`);
};
const response = await callRoute(connection.id);
const body = (await response.json()) as RouteBody;
assert.equal(response.status, 200);
assert.equal(body.source, "api", `expected live discovery, got ${JSON.stringify(body)}`);
assert.deepEqual(
(body.models || []).map((model) => model.id),
["gpt-5"]
);
assert.ok(
seen.some((url) => url.endsWith("/client/users/me")),
"expected the organization lookup"
);
});
test("zed-hosted model discovery degrades to the local catalog when Zed rejects the token", async () => {
const accessToken = "zed-account-token-rejected";
const connection = await seedZedConnection(accessToken);
globalThis.fetch = async (url) => {
const requestUrl = String(url);
if (requestUrl.endsWith("/client/llm_tokens")) {
return new Response("Invalid Authorization header", { status: 401 });
}
throw new Error(`Unexpected fetch: ${requestUrl}`);
};
const response = await callRoute(connection.id);
const body = (await response.json()) as RouteBody;
assert.notEqual(response.status, 500);
assert.notEqual(body.source, "api");
// Never leak a stack trace through the discovery error path (Hard Rule #12).
const serialized = JSON.stringify(body);
assert.ok(!serialized.includes("at /"), serialized);
assert.ok(!serialized.includes(".ts:"), serialized);
});