Files
OmniRoute/tests/unit/capture-critical-db-state.test.ts
Markus Hartung 04dba0460e fix(responses-continuation): recover a real id/output for passthrough and translate-mode replies (#11434)
Retargetado para release/v3.8.51 (release/v3.8.50 está congelada — freeze issue #11439). Validado em lote combinado (batch-0824h2, junto de #11435/#11436/#11437) contra o tip de release/v3.8.51: typecheck:core limpo, gates estáticos OK, 127/127 testes focados passando.

Investigação sólida com repro real via container isolado, três causas independentes identificadas e corrigidas com testes de regressão dedicados para cada uma. Obrigado pela contribuição!
2026-08-24 19:57:12 -03:00

177 lines
6.4 KiB
TypeScript

import { before, after, 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";
// Single shared tempDir for all tests — DATA_DIR/SQLITE_FILE are module-level consts
// resolved once at first import, so we must create the temp dir and set DATA_DIR
// BEFORE importing core.ts.
const tempDir = fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-db-test-"));
const originalDataDir = process.env.DATA_DIR;
process.env.DATA_DIR = tempDir;
// Import resetDbInstance ONCE at the top with the same ESM specifier the tests use,
// so cleanup() operates on the real singleton (not a stale CJS require).
// This is the FIRST import of core.ts, so DATA_DIR resolves to our tempDir.
import {
getDbInstance,
resetDbInstance,
ensureDbInitialized,
closeDbInstance,
} from "../../src/lib/db/core.ts";
before(async () => {
// Clear any singleton left by a previous test file in the same shard.
closeDbInstance();
// Create a fresh DB in the temp dir (handles async driver initialization).
await ensureDbInitialized();
});
after(() => {
// Let reset errors surface — no silent swallowing.
resetDbInstance();
if (originalDataDir !== undefined) {
process.env.DATA_DIR = originalDataDir;
} else {
delete process.env.DATA_DIR;
}
try {
fs.rmSync(tempDir, { recursive: true, force: true });
} catch {
// ignore cleanup errors
}
});
test("getDbInstance returns a valid database handle", async () => {
const db = getDbInstance();
assert.ok(db, "db should be defined");
assert.equal(typeof db.prepare, "function", "db.prepare should be a function");
assert.equal(typeof db.exec, "function", "db.exec should be a function");
assert.equal(typeof db.pragma, "function", "db.pragma should be a function");
assert.equal(db.open !== false, true, "db should be open");
});
test("getDbInstance creates tables from SCHEMA_SQL (proves initialization succeeded with captureSucceeded sentinel)", async () => {
const db = getDbInstance();
const tables = db
.prepare("SELECT name FROM sqlite_master WHERE type='table' ORDER BY name")
.all() as Array<{ name: string }>;
const tableNames = new Set(tables.map((t) => t.name));
const expectedTables = [
"provider_connections",
"provider_nodes",
"key_value",
"combos",
"api_keys",
"db_meta",
"usage_history",
"call_logs",
"domain_circuit_breakers",
"semantic_cache",
"_omniroute_migrations",
];
for (const name of expectedTables) {
assert.ok(tableNames.has(name), `table "${name}" should exist`);
}
// The preservedCriticalState sentinel is captureSucceeded: true on fresh DB
// (no existing file = no corruption path = initialized with default sentinel).
// Verify this indirectly: the DB is fully functional and migrations ran.
const migrationCount = db.prepare("SELECT COUNT(*) as c FROM _omniroute_migrations").get() as {
c: number;
};
assert.ok(migrationCount.c >= 1, "at least one migration should be recorded");
});
test("getDbInstance supports basic CRUD operations after startup", async () => {
const db = getDbInstance();
// Insert into key_value
db.prepare("INSERT INTO key_value (namespace, key, value) VALUES (?, ?, ?)").run(
"test_ns",
"test_key",
JSON.stringify({ hello: "world" })
);
const row = db
.prepare("SELECT value FROM key_value WHERE namespace = ? AND key = ?")
.get("test_ns", "test_key") as { value: string };
assert.ok(row, "row should exist");
assert.deepEqual(JSON.parse(row.value), { hello: "world" });
// Update
db.prepare("UPDATE key_value SET value = ? WHERE namespace = ? AND key = ?").run(
JSON.stringify({ hello: "updated" }),
"test_ns",
"test_key"
);
const updated = db
.prepare("SELECT value FROM key_value WHERE namespace = ? AND key = ?")
.get("test_ns", "test_key") as { value: string };
assert.deepEqual(JSON.parse(updated.value), { hello: "updated" });
// Delete
db.prepare("DELETE FROM key_value WHERE namespace = ? AND key = ?").run("test_ns", "test_key");
const deleted = db
.prepare("SELECT value FROM key_value WHERE namespace = ? AND key = ?")
.get("test_ns", "test_key");
assert.equal(deleted, undefined, "row should be deleted");
});
test("getDbInstance returns same singleton on repeated calls", async () => {
const db1 = getDbInstance();
const db2 = getDbInstance();
assert.equal(db1, db2, "should return the same singleton instance");
});
test("resetDbInstance clears the singleton so next call creates a new DB", async () => {
const db1 = getDbInstance();
// Write a marker row so we can prove the post-reset handle reopens the same
// on-disk file through a freshly opened connection (not the cached one).
db1
.prepare("INSERT INTO key_value (namespace, key, value) VALUES (?, ?, ?)")
.run("reset_ns", "marker", JSON.stringify({ v: 1 }));
// Close the previous handle explicitly before resetting, so the file descriptor
// is released before the next reopen (POSIX allows open fds to survive fs.rmSync,
// but we want honest isolation, not accidental survival).
closeDbInstance();
resetDbInstance();
// Re-initialize after reset — drivers may need async pre-init (sql.js WASM)
await ensureDbInitialized();
const db2 = getDbInstance();
assert.notEqual(db1, db2, "reset must swap the cached singleton for a new handle");
// The new handle reopens the same DATA_DIR file, so the persisted marker
// survives while the object identity does not.
const row = db2
.prepare("SELECT value FROM key_value WHERE namespace = ? AND key = ?")
.get("reset_ns", "marker") as { value: string } | undefined;
assert.ok(row, "persisted row should survive a singleton reset");
assert.deepEqual(JSON.parse(row.value), { v: 1 });
});
test("getDbInstance sets WAL journal mode", async () => {
const db = getDbInstance();
const mode = db.pragma("journal_mode", { simple: true }) as string;
assert.equal(String(mode).toLowerCase(), "wal", "on-disk DB should open in WAL journal mode");
});
test("getDbInstance stores schema_version in db_meta", async () => {
const db = getDbInstance();
const row = db.prepare("SELECT value FROM db_meta WHERE key = 'schema_version'").get() as
{ value: string } | undefined;
assert.ok(row, "db_meta should hold a schema_version row after init");
assert.equal(row.value, "1", "schema_version should be seeded to '1'");
});