mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-09-17 12:22:34 +03:00
Merged after a maintainer rework that kept every one of @HouMinXi's commits intact. **What the rework added on top of the contribution:** the new DB health-check behaviour is gated behind a default-off feature flag (`src/shared/constants/featureFlagDefinitions.ts`, `defaultValue: "false"`), documented in `docs/reference/FEATURE_FLAGS.md` with the description key carried into all 66 locales, so the release default is unchanged and the new bounds only apply when an operator opts in. The optional-FTS5 migration set was reconciled by hand with the "180" entry that landed meanwhile (`src/lib/db/migrationRunner/constants.ts`). **Carried from your rebased head:** the `/api/db/health` local-only classification in `src/server/authz/routeGuard.ts` plus its `routeGuard` assertion — `runManagedDbHealthCheck()` forks native diagnostics into a child process, so Hard Rules #15/#17 apply. Re-verified here: 37 pass / 0 fail. Validated as a combined board first (this PR merged with the 21 siblings of the same wave on the release tip): eslint with the frozen suppressions, typecheck:core, check:open-sse-typecheck, complexity, cognitive-complexity, changelog-integrity, i18n new-key coverage, docs-counts, docs-sync, migration-numbering, provider-consistency and a duplicate-identifier audit all green, plus 176 passing / 0 failing focused node:test cases across the 25 test files the wave touches and the dashboard test under Vitest (2/0). Then re-validated alone on the fresh tip before this merge: conflicts re-resolved, file sizes rebaselined for this PR's own growth, eslint and this PR's focused tests re-run. Thank you for the depth of this one — the resource-bounds suite and the sql.js startup/backup coverage are the kind of tests that keep a database layer honest.
141 lines
5.2 KiB
TypeScript
141 lines
5.2 KiB
TypeScript
import { describe, it, before, after, beforeEach } from "node:test";
|
|
import assert from "node:assert/strict";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
import fs from "node:fs";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
|
|
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-test-flag-loop-"));
|
|
process.env.DATA_DIR = tmpDir;
|
|
|
|
const { FEATURE_FLAG_DEFINITIONS } =
|
|
await import("../../src/shared/constants/featureFlagDefinitions.ts");
|
|
const { setFeatureFlagOverride, clearAllFeatureFlagOverrides } =
|
|
await import("../../src/lib/db/featureFlags.ts");
|
|
const { isServerOwnedToolLoopEnabled } = await import("../../src/shared/utils/featureFlags.ts");
|
|
|
|
describe("SERVER_OWNED_TOOL_LOOP_ENABLED flag definition", () => {
|
|
it("exists in FEATURE_FLAG_DEFINITIONS", () => {
|
|
const def = FEATURE_FLAG_DEFINITIONS.find((d) => d.key === "SERVER_OWNED_TOOL_LOOP_ENABLED");
|
|
assert.ok(def, "SERVER_OWNED_TOOL_LOOP_ENABLED should exist");
|
|
assert.equal(def.category, "runtime");
|
|
assert.equal(def.defaultValue, "false");
|
|
assert.equal(def.requiresRestart, false);
|
|
assert.equal(def.descriptionI18nKey, "featureFlagServerOwnedToolLoopDescription");
|
|
});
|
|
});
|
|
|
|
describe("isServerOwnedToolLoopEnabled wrapper", () => {
|
|
beforeEach(() => {
|
|
clearAllFeatureFlagOverrides();
|
|
});
|
|
|
|
it("returns false when no override is set (default)", () => {
|
|
assert.equal(isServerOwnedToolLoopEnabled(), false);
|
|
});
|
|
|
|
it("returns true when DB override is set to true", () => {
|
|
setFeatureFlagOverride("SERVER_OWNED_TOOL_LOOP_ENABLED", "true");
|
|
assert.equal(isServerOwnedToolLoopEnabled(), true);
|
|
});
|
|
|
|
it("returns false and logs when injected reader throws", () => {
|
|
const logs: unknown[] = [];
|
|
const origError = console.error;
|
|
console.error = (...args: unknown[]) => {
|
|
logs.push(args);
|
|
};
|
|
try {
|
|
const throwingReader = () => {
|
|
throw new Error("flag read failed");
|
|
};
|
|
const result = isServerOwnedToolLoopEnabled(throwingReader);
|
|
assert.equal(result, false);
|
|
assert.ok(logs.length >= 1, "console.error should be called at least once");
|
|
assert.ok(
|
|
logs.some((args) =>
|
|
String(args).includes("Failed to resolve SERVER_OWNED_TOOL_LOOP_ENABLED")
|
|
),
|
|
"error log should mention the flag key"
|
|
);
|
|
} finally {
|
|
console.error = origError;
|
|
}
|
|
});
|
|
});
|
|
|
|
describe("feature-flags-settings count update", () => {
|
|
it("flag count matches updated expected value", () => {
|
|
assert.equal(FEATURE_FLAG_DEFINITIONS.length, 71);
|
|
});
|
|
});
|
|
|
|
describe("i18n key parity for SERVER_OWNED_TOOL_LOOP_ENABLED", () => {
|
|
let enMessages: Record<string, unknown>;
|
|
let ptBrMessages: Record<string, unknown>;
|
|
|
|
before(async () => {
|
|
const enRaw = fs.readFileSync(
|
|
path.resolve(__dirname, "../../src/i18n/messages/en.json"),
|
|
"utf8"
|
|
);
|
|
enMessages = JSON.parse(enRaw);
|
|
const ptBrRaw = fs.readFileSync(
|
|
path.resolve(__dirname, "../../src/i18n/messages/pt-BR.json"),
|
|
"utf8"
|
|
);
|
|
ptBrMessages = JSON.parse(ptBrRaw);
|
|
});
|
|
|
|
it("en.json has nested featureFlags.definitions.SERVER_OWNED_TOOL_LOOP_ENABLED.label", () => {
|
|
const defs = enMessages.featureFlags as Record<string, unknown> | undefined;
|
|
assert.ok(defs, "en.json should have featureFlags section");
|
|
const definitions = (defs as Record<string, unknown>).definitions as
|
|
Record<string, unknown> | undefined;
|
|
assert.ok(definitions, "en.json featureFlags should have definitions");
|
|
const flagDef = definitions.SERVER_OWNED_TOOL_LOOP_ENABLED as
|
|
Record<string, unknown> | undefined;
|
|
assert.ok(flagDef, "definitions should contain SERVER_OWNED_TOOL_LOOP_ENABLED");
|
|
assert.equal(flagDef.label, "Server-Owned Tool Loop");
|
|
assert.equal(
|
|
flagDef.description,
|
|
"Continue non-streaming server-owned tool calls until the model returns a client-usable response."
|
|
);
|
|
});
|
|
|
|
it("pt-BR.json has nested featureFlags.definitions.SERVER_OWNED_TOOL_LOOP_ENABLED.label", () => {
|
|
const defs = ptBrMessages.featureFlags as Record<string, unknown> | undefined;
|
|
assert.ok(defs, "pt-BR.json should have featureFlags section");
|
|
const definitions = (defs as Record<string, unknown>).definitions as
|
|
Record<string, unknown> | undefined;
|
|
assert.ok(definitions, "pt-BR.json featureFlags should have definitions");
|
|
const flagDef = definitions.SERVER_OWNED_TOOL_LOOP_ENABLED as
|
|
Record<string, unknown> | undefined;
|
|
assert.ok(flagDef, "definitions should contain SERVER_OWNED_TOOL_LOOP_ENABLED");
|
|
assert.equal(flagDef.label, "Server-Owned Tool Loop");
|
|
assert.equal(typeof flagDef.description, "string");
|
|
assert.ok(
|
|
((flagDef.description as string) || "").length > 0,
|
|
"description should be non-empty"
|
|
);
|
|
});
|
|
|
|
it("en.json does NOT have stale top-level featureFlagServerOwnedToolLoopDescription", () => {
|
|
assert.equal(
|
|
(enMessages as Record<string, unknown>).featureFlagServerOwnedToolLoopDescription,
|
|
undefined,
|
|
"top-level key should be removed"
|
|
);
|
|
});
|
|
});
|
|
|
|
after(() => {
|
|
try {
|
|
fs.rmSync(tmpDir, { recursive: true, force: true });
|
|
} catch {
|
|
// ignore
|
|
}
|
|
});
|