mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-09-15 03:12:36 +03:00
`main` has been red since b342c1a361 on the vitest and integration gates:
✖ tests/unit/autoCombo/provider-family-combos.test.ts > auto/<family>
✖ chat pipeline applies Codex OAuth fingerprint and priority tier inside combos
Both call resetStorage() from beforeEach, which does an fs.rmSync(TEST_DATA_DIR,
{recursive: true, force: true}) with no retry, and intermittently loses the race
with a not-yet-released SQLite handle (ENOTEMPTY).
release/v3.8.51 fixed this in #11968 with a mechanical codemod adding
maxRetries/retryDelay to every recursive rm/rmSync/rmdirSync under tests/, but
that PR landed only on the release branch. Because main only receives work at
the release squash, it stayed broken for the whole cycle — and repo-wide gates
then turn every open PR into main red on checks unrelated to their diff.
This is the --base main twin: re-runs the same codemod that already shipped on
the release branch (scripts/ad-hoc/codemod-rm-maxretries.mjs), so the two
branches converge on identical test-teardown semantics. Test-only; no product
logic is touched.
The remaining three failures reported on #12133 (unit full suite exceeding its
4800s ceiling, package-artifact exceeding 1200s, and the boot-smoke that is
skipped as a consequence) are runner-contention timeouts, not code defects —
validate-release-green.mjs runs those heavy gates concurrently on one shared
hosted runner. There is no fix to port for those.
104 lines
3.9 KiB
TypeScript
104 lines
3.9 KiB
TypeScript
/**
|
|
* Integration tests — GET /api/memory/engine-status
|
|
* Tests: 200 + valid MemoryEngineStatusSchema shape, 401 unauth.
|
|
*
|
|
* NOTE: We use the real engineStatus() here (no mocking) because:
|
|
* 1. engineStatus() is a named ESM export that cannot be redefined via mock.method
|
|
* 2. engineStatus() returns a valid structure even with no providers/embeddings configured
|
|
*/
|
|
|
|
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 { createManagementSessionHeaders } from "../helpers/managementSession.ts";
|
|
|
|
const TEST_DATA_DIR = fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-engine-status-"));
|
|
process.env.DATA_DIR = TEST_DATA_DIR;
|
|
process.env.API_KEY_SECRET = "test-secret-engine-status";
|
|
|
|
const core = await import("../../src/lib/db/core.ts");
|
|
const localDb = await import("../../src/lib/localDb.ts");
|
|
|
|
// Import route AFTER setting DATA_DIR
|
|
const engineStatusRoute = await import(
|
|
"../../src/app/api/memory/engine-status/route.ts"
|
|
);
|
|
const { GET } = engineStatusRoute;
|
|
|
|
// ── Helpers ──
|
|
|
|
async function resetStorage() {
|
|
core.resetDbInstance();
|
|
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
|
|
fs.mkdirSync(TEST_DATA_DIR, { recursive: true });
|
|
}
|
|
|
|
// ── Test lifecycle ──
|
|
|
|
test.beforeEach(async () => {
|
|
await resetStorage();
|
|
await localDb.updateSettings({ requireLogin: false });
|
|
});
|
|
|
|
test.after(async () => {
|
|
await resetStorage();
|
|
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
|
|
});
|
|
|
|
// ── Tests ──
|
|
|
|
test("GET /api/memory/engine-status — 200 + valid MemoryEngineStatusSchema shape", async () => {
|
|
const headers = await createManagementSessionHeaders();
|
|
const req = new Request("http://localhost/api/memory/engine-status", {
|
|
method: "GET",
|
|
headers: Object.fromEntries(headers.entries()),
|
|
});
|
|
|
|
const res = await GET(req);
|
|
assert.strictEqual(res.status, 200);
|
|
|
|
const body = await res.json();
|
|
|
|
// Validate shape matches MemoryEngineStatusSchema
|
|
assert.ok(body.keyword, "should have keyword section");
|
|
assert.strictEqual(body.keyword.available, true, "keyword.available should be true");
|
|
assert.strictEqual(body.keyword.backend, "FTS5", "keyword.backend should be FTS5");
|
|
|
|
assert.ok(body.embedding, "should have embedding section");
|
|
assert.strictEqual(typeof body.embedding.available, "boolean", "embedding.available should be boolean");
|
|
assert.ok(typeof body.embedding.reason === "string", "embedding.reason should be a string");
|
|
assert.ok(body.embedding.cacheStats, "should have cacheStats in embedding");
|
|
assert.strictEqual(typeof body.embedding.cacheStats.hits, "number");
|
|
assert.strictEqual(typeof body.embedding.cacheStats.misses, "number");
|
|
assert.strictEqual(typeof body.embedding.cacheStats.size, "number");
|
|
|
|
assert.ok(body.vectorStore, "should have vectorStore section");
|
|
assert.ok(
|
|
["sqlite-vec", "qdrant", "none"].includes(body.vectorStore.backend),
|
|
`vectorStore.backend should be valid: ${body.vectorStore.backend}`,
|
|
);
|
|
assert.strictEqual(typeof body.vectorStore.available, "boolean");
|
|
assert.strictEqual(typeof body.vectorStore.rowCount, "number");
|
|
assert.strictEqual(typeof body.vectorStore.needsReindex, "number");
|
|
|
|
assert.ok(body.qdrant, "should have qdrant section");
|
|
assert.strictEqual(typeof body.qdrant.enabled, "boolean");
|
|
|
|
assert.ok(body.rerank, "should have rerank section");
|
|
assert.strictEqual(typeof body.rerank.enabled, "boolean");
|
|
assert.strictEqual(typeof body.rerank.available, "boolean");
|
|
});
|
|
|
|
test("GET /api/memory/engine-status — 401 without auth when requireLogin=true", async () => {
|
|
await localDb.updateSettings({ requireLogin: true, password: "hashed-pw" });
|
|
|
|
const req = new Request("http://localhost/api/memory/engine-status", {
|
|
method: "GET",
|
|
});
|
|
|
|
const res = await GET(req);
|
|
assert.strictEqual(res.status, 401);
|
|
});
|