mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-09-14 19:02:17 +03:00
* test(infra): retry recursive temp-dir removal on main (main twin of #11968)
`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.
* chore(scripts): carry the rm-maxretries codemod onto main alongside its output
The codemod that generated the previous commit lives in the repo on
release/v3.8.51 (added by #11968) but was never on main. Bringing it over keeps
the tool next to the change it produced, so the transformation stays
reproducible and auditable from either branch.
154 lines
5.3 KiB
TypeScript
154 lines
5.3 KiB
TypeScript
// ENVIRONMENT NOTE (sandbox better-sqlite3 / glibc limitation, not a code defect):
|
|
// This test constructs or exercises a real better-sqlite3-backed SQLite database.
|
|
// better-sqlite3 is a native addon; production and CI load it normally, but some
|
|
// sandboxes/dev boxes ship a system glibc older than the prebuilt binary requires
|
|
// ("GLIBC_2.29 not found"), so the native module fails to dlopen and any test that
|
|
// reaches better-sqlite3 directly (or asserts stdout that the load-failure warning
|
|
// would pollute) fails HERE while passing in CI. This is a known environment
|
|
// limitation, not a defect in the code under test: the OmniRoute runtime itself
|
|
// cascades to node:sqlite/sql.js when better-sqlite3 is unavailable. See
|
|
// tests/unit/_helpers/betterSqlite3Availability.ts for a guard 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";
|
|
import Database from "better-sqlite3";
|
|
|
|
const ORIGINAL_DATA_DIR = process.env.DATA_DIR;
|
|
const ORIGINAL_STORAGE_ENCRYPTION_KEY = process.env.STORAGE_ENCRYPTION_KEY;
|
|
const ORIGINAL_FETCH = globalThis.fetch;
|
|
|
|
interface ProviderConnectionRow {
|
|
provider: string;
|
|
auth_type: string;
|
|
name: string;
|
|
api_key: string;
|
|
is_active: number;
|
|
created_at: string;
|
|
updated_at: string;
|
|
}
|
|
|
|
interface CountRow {
|
|
count: number;
|
|
}
|
|
|
|
function createTempDataDir() {
|
|
return fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-cli-keys-"));
|
|
}
|
|
|
|
async function withCliKeysEnv(fn: (dataDir: string, dbPath: string) => Promise<void>) {
|
|
const dataDir = createTempDataDir();
|
|
const dbPath = path.join(dataDir, "storage.sqlite");
|
|
process.env.DATA_DIR = dataDir;
|
|
delete process.env.STORAGE_ENCRYPTION_KEY;
|
|
globalThis.fetch = (async () => {
|
|
throw new Error("server offline");
|
|
}) as typeof fetch;
|
|
|
|
const originalLog = console.log;
|
|
console.log = () => {};
|
|
|
|
try {
|
|
new Database(dbPath).close();
|
|
await fn(dataDir, dbPath);
|
|
} finally {
|
|
console.log = originalLog;
|
|
globalThis.fetch = ORIGINAL_FETCH;
|
|
fs.rmSync(dataDir, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
|
|
|
|
if (ORIGINAL_DATA_DIR === undefined) delete process.env.DATA_DIR;
|
|
else process.env.DATA_DIR = ORIGINAL_DATA_DIR;
|
|
|
|
if (ORIGINAL_STORAGE_ENCRYPTION_KEY === undefined) delete process.env.STORAGE_ENCRYPTION_KEY;
|
|
else process.env.STORAGE_ENCRYPTION_KEY = ORIGINAL_STORAGE_ENCRYPTION_KEY;
|
|
}
|
|
}
|
|
|
|
test("keys add writes provider_connection row to DB when server is offline", async () => {
|
|
await withCliKeysEnv(async (_dataDir, dbPath) => {
|
|
const { runKeysAddCommand } = await import("../../bin/cli/commands/keys.mjs");
|
|
|
|
const result = await runKeysAddCommand("openai", "sk-test-cli-key", {});
|
|
assert.equal(result, 0);
|
|
|
|
const db = new Database(dbPath);
|
|
const row = db
|
|
.prepare(
|
|
"SELECT provider, auth_type, name, api_key, is_active, created_at, updated_at FROM provider_connections WHERE provider = ?"
|
|
)
|
|
.get("openai") as ProviderConnectionRow | undefined;
|
|
db.close();
|
|
|
|
assert.ok(row, "row should exist");
|
|
assert.equal(row.provider, "openai");
|
|
assert.equal(row.auth_type, "apikey");
|
|
assert.equal(row.name, "openai");
|
|
assert.equal(row.is_active, 1);
|
|
assert.ok(row.created_at);
|
|
assert.ok(row.updated_at);
|
|
});
|
|
});
|
|
|
|
test("keys list returns 0 and shows no keys on empty DB", async () => {
|
|
await withCliKeysEnv(async () => {
|
|
const { runKeysListCommand } = await import("../../bin/cli/commands/keys.mjs");
|
|
const result = await runKeysListCommand({});
|
|
assert.equal(result, 0);
|
|
});
|
|
});
|
|
|
|
test("keys list --json returns structured output", async () => {
|
|
await withCliKeysEnv(async () => {
|
|
const { runKeysAddCommand, runKeysListCommand } =
|
|
await import("../../bin/cli/commands/keys.mjs");
|
|
|
|
await runKeysAddCommand("openai", "sk-list-json-test", {});
|
|
|
|
const lines: string[] = [];
|
|
const originalLog = console.log;
|
|
console.log = (msg: string) => lines.push(msg);
|
|
const result = await runKeysListCommand({ json: true });
|
|
console.log = originalLog;
|
|
|
|
assert.equal(result, 0);
|
|
const parsed = JSON.parse(lines.join("\n"));
|
|
assert.ok(Array.isArray(parsed.keys));
|
|
assert.equal(parsed.keys.length, 1);
|
|
assert.equal(parsed.keys[0].provider, "openai");
|
|
});
|
|
});
|
|
|
|
test("keys remove deletes the provider_connection row", async () => {
|
|
await withCliKeysEnv(async (_dataDir, dbPath) => {
|
|
const { runKeysAddCommand, runKeysRemoveCommand } =
|
|
await import("../../bin/cli/commands/keys.mjs");
|
|
|
|
await runKeysAddCommand("openai", "sk-remove-test", {});
|
|
|
|
const result = await runKeysRemoveCommand("openai", { yes: true });
|
|
assert.equal(result, 0);
|
|
|
|
const db = new Database(dbPath);
|
|
const countRow = db
|
|
.prepare("SELECT COUNT(*) AS count FROM provider_connections WHERE provider = ?")
|
|
.get("openai") as CountRow;
|
|
db.close();
|
|
|
|
assert.equal(countRow.count, 0);
|
|
});
|
|
});
|
|
|
|
test("keys add fails gracefully with missing API key argument", async () => {
|
|
await withCliKeysEnv(async () => {
|
|
const { runKeysAddCommand } = await import("../../bin/cli/commands/keys.mjs");
|
|
|
|
const originalError = console.error;
|
|
console.error = () => {};
|
|
const result = await runKeysAddCommand("openai", undefined as unknown as string, {});
|
|
console.error = originalError;
|
|
|
|
assert.equal(result, 1);
|
|
});
|
|
});
|