mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-05-05 09:46:30 +00:00
Introduce a runtime settings layer that hydrates persisted config at startup and reapplies aliases, payload rules, cache behavior, CLI compatibility, usage tuning, and related switches when settings change or SQLite updates. Replace the legacy prompt injection middleware path with a guardrail registry that supports prompt injection detection, PII masking, disabled guardrail overrides, and post-call response handling across the chat pipeline. Add a metadata registry for model catalog and alias resolution so catalog endpoints return enriched capabilities plus diagnostic headers and typed alias errors instead of ad hoc responses. Convert unsupported built-in web_search tools into an OmniRoute fallback tool, execute them through builtin skills, and preserve Responses API function call output with sanitized usage fields. Centralize provider header fingerprints for GitHub, Cursor, Qwen, Qoder, Kiro, and Antigravity, and migrate management passwords from env or plaintext storage into persisted bcrypt hashes during startup and login.
142 lines
5.2 KiB
TypeScript
142 lines
5.2 KiB
TypeScript
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-config-hot-reload-"));
|
|
process.env.DATA_DIR = TEST_DATA_DIR;
|
|
process.env.OMNIROUTE_CONFIG_HOT_RELOAD_MS = "100";
|
|
|
|
const core = await import("../../src/lib/db/core.ts");
|
|
const settingsDb = await import("../../src/lib/db/settings.ts");
|
|
const { getDbInstance } = core;
|
|
const { applyRuntimeSettings, resetRuntimeSettingsStateForTests } =
|
|
await import("../../src/lib/config/runtimeSettings.ts");
|
|
const { startRuntimeConfigHotReload, stopRuntimeConfigHotReloadForTests } =
|
|
await import("../../src/lib/config/hotReload.ts");
|
|
const { getCliCompatProviders } = await import("../../open-sse/config/cliFingerprints.ts");
|
|
const { getCustomAliases, setCustomAliases } =
|
|
await import("../../open-sse/services/modelDeprecation.ts");
|
|
const {
|
|
getBackgroundDegradationConfig,
|
|
getDefaultDegradationMap,
|
|
getDefaultDetectionPatterns,
|
|
setBackgroundDegradationConfig,
|
|
} = await import("../../open-sse/services/backgroundTaskDetector.ts");
|
|
const { clearGeminiThoughtSignatures, getGeminiThoughtSignatureMode } =
|
|
await import("../../open-sse/services/geminiThoughtSignatureStore.ts");
|
|
const { getPayloadRulesConfig, resetPayloadRulesConfigForTests } =
|
|
await import("../../open-sse/services/payloadRules.ts");
|
|
const { getCacheControlSettings, invalidateCacheControlSettingsCache } =
|
|
await import("../../src/lib/cacheControlSettings.ts");
|
|
|
|
async function resetStorage() {
|
|
stopRuntimeConfigHotReloadForTests();
|
|
resetRuntimeSettingsStateForTests();
|
|
resetPayloadRulesConfigForTests();
|
|
clearGeminiThoughtSignatures();
|
|
setCustomAliases({});
|
|
setBackgroundDegradationConfig({
|
|
enabled: false,
|
|
degradationMap: getDefaultDegradationMap(),
|
|
detectionPatterns: getDefaultDetectionPatterns(),
|
|
});
|
|
invalidateCacheControlSettingsCache();
|
|
core.resetDbInstance();
|
|
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true });
|
|
fs.mkdirSync(TEST_DATA_DIR, { recursive: true });
|
|
}
|
|
|
|
async function waitFor(check: () => Promise<boolean> | boolean, timeoutMs = 3000) {
|
|
const deadline = Date.now() + timeoutMs;
|
|
while (Date.now() < deadline) {
|
|
if (await check()) return;
|
|
await new Promise((resolve) => setTimeout(resolve, 50));
|
|
}
|
|
|
|
assert.fail("Timed out waiting for hot-reload condition");
|
|
}
|
|
|
|
test.beforeEach(async () => {
|
|
await resetStorage();
|
|
});
|
|
|
|
test.after(async () => {
|
|
await resetStorage();
|
|
});
|
|
|
|
test("updateSettings applies runtime settings incrementally without restart", async () => {
|
|
await applyRuntimeSettings(await settingsDb.getSettings(), {
|
|
force: true,
|
|
source: "test:startup",
|
|
});
|
|
|
|
await settingsDb.updateSettings({
|
|
cliCompatProviders: ["OpenAI", "claude"],
|
|
modelAliases: JSON.stringify({ "team-default": "openai/gpt-4o-mini" }),
|
|
backgroundDegradation: {
|
|
enabled: true,
|
|
degradationMap: { "gpt-4o": "gpt-4o-mini" },
|
|
detectionPatterns: ["summarize this"],
|
|
},
|
|
payloadRules: {
|
|
override: [
|
|
{
|
|
models: [{ name: "gpt-*", protocol: "openai" }],
|
|
params: { temperature: 0.1 },
|
|
},
|
|
],
|
|
},
|
|
alwaysPreserveClientCache: "always",
|
|
antigravitySignatureCacheMode: "bypass",
|
|
});
|
|
|
|
assert.deepEqual(getCliCompatProviders().sort(), ["claude", "openai"]);
|
|
assert.deepEqual(getCustomAliases(), { "team-default": "openai/gpt-4o-mini" });
|
|
assert.equal(getBackgroundDegradationConfig().enabled, true);
|
|
assert.equal(getBackgroundDegradationConfig().degradationMap["gpt-4o"], "gpt-4o-mini");
|
|
assert.deepEqual(getBackgroundDegradationConfig().detectionPatterns, ["summarize this"]);
|
|
assert.equal((await getPayloadRulesConfig()).override[0].params.temperature, 0.1);
|
|
assert.equal(await getCacheControlSettings(), "always");
|
|
assert.equal(getGeminiThoughtSignatureMode(), "bypass");
|
|
|
|
await settingsDb.updateSettings({
|
|
cliCompatProviders: [],
|
|
modelAliases: {},
|
|
backgroundDegradation: null,
|
|
payloadRules: null,
|
|
alwaysPreserveClientCache: "auto",
|
|
antigravitySignatureCacheMode: "enabled",
|
|
});
|
|
|
|
assert.deepEqual(getCliCompatProviders(), []);
|
|
assert.deepEqual(getCustomAliases(), {});
|
|
assert.equal(getBackgroundDegradationConfig().enabled, false);
|
|
assert.equal((await getPayloadRulesConfig()).override.length, 0);
|
|
assert.equal(await getCacheControlSettings(), "auto");
|
|
assert.equal(getGeminiThoughtSignatureMode(), "enabled");
|
|
});
|
|
|
|
test("hot-reload watcher picks up external sqlite changes via polling fallback", async () => {
|
|
await applyRuntimeSettings(await settingsDb.getSettings(), {
|
|
force: true,
|
|
source: "test:startup",
|
|
});
|
|
startRuntimeConfigHotReload({ pollIntervalMs: 100 });
|
|
|
|
const db = getDbInstance();
|
|
db.prepare(
|
|
"INSERT OR REPLACE INTO key_value (namespace, key, value) VALUES ('settings', 'cliCompatProviders', ?)"
|
|
).run(JSON.stringify(["github", "openai"]));
|
|
db.prepare(
|
|
"INSERT OR REPLACE INTO key_value (namespace, key, value) VALUES ('settings', 'antigravitySignatureCacheMode', ?)"
|
|
).run(JSON.stringify("bypass-strict"));
|
|
|
|
await waitFor(
|
|
() =>
|
|
getCliCompatProviders().includes("github") &&
|
|
getCliCompatProviders().includes("openai") &&
|
|
getGeminiThoughtSignatureMode() === "bypass-strict"
|
|
);
|
|
});
|