Files
OmniRoute/tests/integration/agent-bridge-routes.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

290 lines
12 KiB
TypeScript

/**
* Integration tests: AgentBridge REST routes — happy paths + LOCAL_ONLY + Zod 400
*
* Covers:
* - GET /api/tools/agent-bridge/state
* - POST /api/tools/agent-bridge/server (invalid body → 400)
* - GET /api/tools/agent-bridge/agents
* - GET /api/tools/agent-bridge/agents/[id]
* - PATCH /api/tools/agent-bridge/agents/[id] (setup_completed)
* - GET /api/tools/agent-bridge/agents/[id]/detect
* - GET /api/tools/agent-bridge/upstream-ca
* - POST /api/tools/agent-bridge/upstream-ca (path validation)
*
* LOCAL_ONLY enforcement: request with non-loopback Host header → 403
* (tested via routeGuard helper)
*/
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-ab-routes-"));
process.env.DATA_DIR = TEST_DATA_DIR;
process.env.DISABLE_SQLITE_AUTO_BACKUP = "true";
// Import db core first to allow reset
const core = await import("../../src/lib/db/core.ts");
// Import routes under test
const stateRoute = await import("../../src/app/api/tools/agent-bridge/state/route.ts");
const serverRoute = await import("../../src/app/api/tools/agent-bridge/server/route.ts");
const agentsRoute = await import("../../src/app/api/tools/agent-bridge/agents/route.ts");
const agentIdRoute = await import("../../src/app/api/tools/agent-bridge/agents/[id]/route.ts");
const detectRoute =
await import("../../src/app/api/tools/agent-bridge/agents/[id]/detect/route.ts");
const upstreamCaRoute = await import("../../src/app/api/tools/agent-bridge/upstream-ca/route.ts");
const routeGuard = await import("../../src/server/authz/routeGuard.ts");
function resetDb() {
core.resetDbInstance();
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
fs.mkdirSync(TEST_DATA_DIR, { recursive: true });
}
test.beforeEach(() => {
resetDb();
});
test.after(() => {
try {
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
} catch {
/* noop */
}
});
// ── routeGuard classification ──────────────────────────────────────────────
test("routeGuard: /api/tools/agent-bridge/ is LOCAL_ONLY", () => {
assert.equal(routeGuard.isLocalOnlyPath("/api/tools/agent-bridge/"), true);
assert.equal(routeGuard.isLocalOnlyPath("/api/tools/agent-bridge/state"), true);
assert.equal(routeGuard.isLocalOnlyPath("/api/tools/agent-bridge/agents"), true);
});
test("routeGuard: /api/tools/agent-bridge/ is SPAWN_CAPABLE", () => {
const { SPAWN_CAPABLE_PREFIXES } = routeGuard;
const found = (SPAWN_CAPABLE_PREFIXES as ReadonlyArray<string>).some(
(p) => p === "/api/tools/agent-bridge/"
);
assert.equal(found, true, "Expected /api/tools/agent-bridge/ in SPAWN_CAPABLE_PREFIXES");
});
// ── GET /state ─────────────────────────────────────────────────────────────
test("GET /state: returns both legacy (server/agents) and new (serverState/agentStates) keys (#8656)", async () => {
const res = await stateRoute.GET();
assert.equal(res.status, 200);
const body = (await res.json()) as Record<string, unknown>;
// Legacy keys (integration test + settings/mitm depend on these)
assert.ok("server" in body, "body.server missing — breaks backward compat");
assert.ok("agents" in body, "body.agents missing");
assert.ok(Array.isArray(body.agents), "agents should be array");
// New keys (#8656 fix — what UI actually reads)
assert.ok("serverState" in body, "body.serverState missing");
assert.ok("agentStates" in body, "body.agentStates missing");
assert.ok(Array.isArray(body.agentStates), "agentStates should be array");
assert.ok("bypassPatterns" in body, "body.bypassPatterns missing");
assert.ok(Array.isArray(body.bypassPatterns), "bypassPatterns should be array");
assert.ok("mappings" in body, "body.mappings missing");
assert.equal(typeof body.mappings, "object", "mappings should be object");
});
test("GET /state: error responses do not leak stack traces", async () => {
// Routine GET — should always succeed in test env; just verify if it errors it's clean
const res = await stateRoute.GET();
const text = await res.text();
assert.ok(!text.includes("at /"), "stack trace leaked in GET /state response");
});
// ── POST /server (Zod validation) ─────────────────────────────────────────
test("POST /server: invalid body returns 400", async () => {
const res = await serverRoute.POST(
new Request("http://localhost/api/tools/agent-bridge/server", {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify({ action: "invalid-action" }),
})
);
assert.equal(res.status, 400);
const body = (await res.json()) as Record<string, unknown>;
assert.ok("error" in body);
const errMsg = (body.error as Record<string, unknown>)?.message as string;
assert.ok(typeof errMsg === "string");
assert.ok(!errMsg.includes("at /"), "stack trace leaked in 400 error message");
});
test("POST /server: missing body returns 400", async () => {
const res = await serverRoute.POST(
new Request("http://localhost/api/tools/agent-bridge/server", {
method: "POST",
headers: { "content-type": "application/json" },
body: "not-json",
})
);
assert.equal(res.status, 400);
});
// ── GET /agents ────────────────────────────────────────────────────────────
test("GET /agents: returns agents array with expected shape", async () => {
const res = await agentsRoute.GET();
assert.equal(res.status, 200);
const body = (await res.json()) as { agents: unknown[] };
assert.ok(Array.isArray(body.agents));
assert.ok(body.agents.length >= 9, `Expected ≥9 agents, got ${body.agents.length}`);
const first = body.agents[0] as Record<string, unknown>;
assert.ok("id" in first);
assert.ok("name" in first);
assert.ok("hosts" in first);
assert.ok("viability" in first);
assert.ok("state" in first);
});
// ── GET /agents/[id] ───────────────────────────────────────────────────────
test("GET /agents/[id]: returns 404 for unknown id", async () => {
const res = await agentIdRoute.GET(new Request("http://localhost/"), {
params: { id: "nonexistent-agent" },
});
assert.equal(res.status, 404);
const body = (await res.json()) as Record<string, unknown>;
const errMsg = (body.error as Record<string, unknown>)?.message as string;
assert.ok(!errMsg.includes("at /"), "stack trace leaked in 404 message");
});
test("GET /agents/[id]: returns agent detail for 'copilot'", async () => {
const res = await agentIdRoute.GET(new Request("http://localhost/"), {
params: { id: "copilot" },
});
// resolveTarget searches by hostname, not agent id directly; 'copilot' may return 404
// if resolveTarget doesn't match by id. In current implementation resolveTarget checks hosts.
// Acceptable: either 200 with agent or 404 — but NOT a 500.
assert.ok(res.status === 200 || res.status === 404, `Unexpected status: ${res.status}`);
if (res.status === 200) {
const body = (await res.json()) as Record<string, unknown>;
assert.ok("detection" in body);
}
});
// ── PATCH /agents/[id] ────────────────────────────────────────────────────
test("PATCH /agents/[id]: invalid body returns 400", async () => {
const res = await agentIdRoute.PATCH(
new Request("http://localhost/", {
method: "PATCH",
headers: { "content-type": "application/json" },
body: JSON.stringify({ setup_completed: "not-a-boolean" }),
}),
{ params: { id: "antigravity" } }
);
assert.equal(res.status, 400);
const body = (await res.json()) as Record<string, unknown>;
const errMsg = (body.error as Record<string, unknown>)?.message as string;
assert.ok(!errMsg.includes("at /"), "stack trace in 400 error");
});
test("PATCH /agents/[id]: valid body persists setup_completed", async () => {
const res = await agentIdRoute.PATCH(
new Request("http://localhost/", {
method: "PATCH",
headers: { "content-type": "application/json" },
body: JSON.stringify({ setup_completed: true }),
}),
{ params: { id: "antigravity" } }
);
assert.equal(res.status, 200);
const body = (await res.json()) as Record<string, unknown>;
assert.equal((body as Record<string, unknown>).ok, true);
});
// ── GET /agents/[id]/detect ────────────────────────────────────────────────
test("GET /detect: returns installed:false for unknown id", async () => {
const res = await detectRoute.GET(new Request("http://localhost/"), {
params: { id: "unknown-agent-xyz" },
});
assert.equal(res.status, 404);
});
test("GET /detect: returns detection result for valid id", async () => {
const res = await detectRoute.GET(new Request("http://localhost/"), {
params: { id: "copilot" },
});
assert.equal(res.status, 200);
const body = (await res.json()) as Record<string, unknown>;
assert.ok("installed" in body);
assert.ok(typeof body.installed === "boolean");
});
test("GET /detect: error response does not leak stack trace", async () => {
const res = await detectRoute.GET(new Request("http://localhost/"), {
params: { id: "unknown-id-test" },
});
const text = await res.text();
assert.ok(!text.includes("at /"), "stack trace leaked in detect response");
});
// ── GET + POST /upstream-ca ────────────────────────────────────────────────
test("GET /upstream-ca: returns null when not configured", async () => {
delete process.env.AGENTBRIDGE_UPSTREAM_CA_CERT;
const res = await upstreamCaRoute.GET();
assert.equal(res.status, 200);
const body = (await res.json()) as { path: string | null };
// path is either null or whatever AGENTBRIDGE_UPSTREAM_CA_CERT is set to
assert.ok(body.path === null || typeof body.path === "string");
});
test("POST /upstream-ca: non-existent file returns 400", async () => {
const res = await upstreamCaRoute.POST(
new Request("http://localhost/", {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify({ path: "/nonexistent/path/ca.pem" }),
})
);
assert.equal(res.status, 400);
const body = (await res.json()) as Record<string, unknown>;
const errMsg = (body.error as Record<string, unknown>)?.message as string;
assert.ok(!errMsg.includes("at /"), "stack trace leaked in 400 body");
});
test("POST /upstream-ca: valid file persists path", async () => {
// Create a temp PEM file
const tmpFile = path.join(TEST_DATA_DIR, "test-ca.pem");
fs.writeFileSync(tmpFile, "-----BEGIN CERTIFICATE-----\nfake\n-----END CERTIFICATE-----\n");
const res = await upstreamCaRoute.POST(
new Request("http://localhost/", {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify({ path: tmpFile }),
})
);
assert.equal(res.status, 200);
const body = (await res.json()) as Record<string, unknown>;
assert.equal(body.ok, true);
assert.equal(body.path, tmpFile);
// Verify GET returns the stored path
const getRes = await upstreamCaRoute.GET();
const getBody = (await getRes.json()) as { path: string | null };
assert.equal(getBody.path, tmpFile);
});
test("POST /upstream-ca: invalid JSON returns 400", async () => {
const res = await upstreamCaRoute.POST(
new Request("http://localhost/", {
method: "POST",
headers: { "content-type": "application/json" },
body: "not-json",
})
);
assert.equal(res.status, 400);
});