Files
OmniRoute/tests/unit/settings-api.test.ts
diegosouzapw b3f6f697ef 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.
2026-09-01 00:16:48 -03:00

255 lines
9.1 KiB
TypeScript

import { describe, test, beforeEach, afterEach, after } from "node:test";
import assert from "node:assert/strict";
import fs from "node:fs";
import os from "node:os";
import path from "node:path";
// --- Create harness function (similar to _chatPipelineHarness pattern) ---
async function createSettingsApiHarness() {
const testDataDir = fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-settings-api-"));
process.env.DATA_DIR = testDataDir;
process.env.REQUIRE_API_KEY = "false";
if (!process.env.API_KEY_SECRET) {
process.env.API_KEY_SECRET = "test-settings-api-secret-" + Date.now();
}
// --- Dynamic imports AFTER env setup ---
const core = await import("../../src/lib/db/core.ts");
const { getSettings, updateSettings } = await import("../../src/lib/db/settings.ts");
const settingsRoute = await import("../../src/app/api/settings/route.ts");
async function resetStorage() {
core.resetDbInstance();
fs.rmSync(testDataDir, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
fs.mkdirSync(testDataDir, { recursive: true });
}
function cleanup() {
core.resetDbInstance();
fs.rmSync(testDataDir, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
}
return {
testDataDir,
core,
getSettings,
updateSettings,
settingsRoute,
resetStorage,
cleanup,
};
}
// --- Initialize harness ---
const harness = await createSettingsApiHarness();
// --- Static import for helper (doesn't depend on DB) ---
import { makeManagementSessionRequest } from "../helpers/managementSession.ts";
beforeEach(async () => {
await harness.resetStorage();
});
afterEach(async () => {
await harness.resetStorage();
});
after(() => {
harness.cleanup();
});
describe("Settings API - persisted preferences", () => {
test("getSettings defaults Responses previous_response_id handling to auto", async () => {
const settings = await harness.getSettings();
assert.strictEqual(settings.responsesPreviousResponseIdMode, "auto");
});
describe("debugMode", () => {
test("updateSettings with debugMode=true succeeds", async () => {
const result = await harness.updateSettings({ debugMode: true });
assert.ok(result, "updateSettings should return truthy result");
const settings = await harness.getSettings();
assert.strictEqual(settings.debugMode, true, "debugMode should be true");
});
test("updateSettings with debugMode=false succeeds", async () => {
const result = await harness.updateSettings({ debugMode: false });
assert.ok(result, "updateSettings should return truthy result");
const settings = await harness.getSettings();
assert.strictEqual(settings.debugMode, false, "debugMode should be false");
});
});
describe("hiddenSidebarItems", () => {
test("updateSettings with hiddenSidebarItems=['translator'] succeeds", async () => {
const result = await harness.updateSettings({ hiddenSidebarItems: ["translator"] });
assert.ok(result, "updateSettings should return truthy result");
const settings = await harness.getSettings();
assert.deepStrictEqual(
settings.hiddenSidebarItems,
["translator"],
"hiddenSidebarItems should contain translator"
);
});
test("updateSettings with empty hiddenSidebarItems succeeds", async () => {
const result = await harness.updateSettings({ hiddenSidebarItems: [] });
assert.ok(result, "updateSettings should return truthy result");
const settings = await harness.getSettings();
assert.deepStrictEqual(
settings.hiddenSidebarItems,
[],
"hiddenSidebarItems should be empty array"
);
});
});
describe("hiddenSidebarGroupLabels", () => {
test("updateSettings with hiddenSidebarGroupLabels=['logs','audit'] succeeds", async () => {
const result = await harness.updateSettings({ hiddenSidebarGroupLabels: ["logs", "audit"] });
assert.ok(result, "updateSettings should return truthy result");
const settings = await harness.getSettings();
assert.deepStrictEqual(
settings.hiddenSidebarGroupLabels,
["logs", "audit"],
"hiddenSidebarGroupLabels should contain logs and audit"
);
});
test("PATCH /api/settings persists hiddenSidebarGroupLabels", async () => {
const response = await harness.settingsRoute.PATCH(
await makeManagementSessionRequest("http://localhost/api/settings", {
method: "PATCH",
body: { hiddenSidebarGroupLabels: ["system"] },
})
);
const body = (await response.json()) as Record<string, unknown>;
assert.equal(response.status, 200);
assert.deepEqual(body.hiddenSidebarGroupLabels, ["system"]);
const settings = await harness.getSettings();
assert.deepEqual(settings.hiddenSidebarGroupLabels, ["system"]);
});
});
describe("combined updates", () => {
test("updateSettings with both debugMode and hiddenSidebarItems succeeds", async () => {
const result = await harness.updateSettings({
debugMode: true,
hiddenSidebarItems: ["translator"],
});
assert.ok(result, "updateSettings should return truthy result");
const settings = await harness.getSettings();
assert.strictEqual(settings.debugMode, true, "debugMode should be true");
assert.deepStrictEqual(
settings.hiddenSidebarItems,
["translator"],
"hiddenSidebarItems should be updated"
);
});
test("updateSettings persists antigravitySignatureCacheMode", async () => {
const result = await harness.updateSettings({
antigravitySignatureCacheMode: "bypass-strict",
});
assert.ok(result, "updateSettings should return truthy result");
const settings = await harness.getSettings();
assert.strictEqual(
settings.antigravitySignatureCacheMode,
"bypass-strict",
"antigravitySignatureCacheMode should be updated"
);
});
test("PATCH /api/settings persists endpoint tunnel visibility", async () => {
const response = await harness.settingsRoute.PATCH(
await makeManagementSessionRequest("http://localhost/api/settings", {
method: "PATCH",
body: {
hideEndpointCloudflaredTunnel: true,
hideEndpointTailscaleFunnel: true,
hideEndpointNgrokTunnel: true,
},
})
);
const body = (await response.json()) as Record<string, unknown>;
assert.equal(response.status, 200);
assert.equal(body.hideEndpointCloudflaredTunnel, true);
assert.equal(body.hideEndpointTailscaleFunnel, true);
assert.equal(body.hideEndpointNgrokTunnel, true);
const settings = await harness.getSettings();
assert.equal(settings.hideEndpointCloudflaredTunnel, true);
assert.equal(settings.hideEndpointTailscaleFunnel, true);
assert.equal(settings.hideEndpointNgrokTunnel, true);
});
test("PATCH /api/settings persists Responses previous_response_id handling", async () => {
const response = await harness.settingsRoute.PATCH(
await makeManagementSessionRequest("http://localhost/api/settings", {
method: "PATCH",
body: { responsesPreviousResponseIdMode: "strip" },
})
);
const body = (await response.json()) as Record<string, unknown>;
assert.equal(response.status, 200);
assert.equal(body.responsesPreviousResponseIdMode, "strip");
const settings = await harness.getSettings();
assert.equal(settings.responsesPreviousResponseIdMode, "strip");
});
test("GET /api/settings returns Cache-Control: no-store (ported from upstream #951)", async () => {
const response = await harness.settingsRoute.GET(
await makeManagementSessionRequest("http://localhost/api/settings", {
method: "GET",
})
);
assert.equal(response.status, 200);
assert.equal(
response.headers.get("Cache-Control"),
"no-store",
"GET /api/settings must return Cache-Control: no-store so persisted settings stay fresh after refresh/restart"
);
});
test("PATCH /api/settings returns Cache-Control: no-store (ported from upstream #951)", async () => {
const response = await harness.settingsRoute.PATCH(
await makeManagementSessionRequest("http://localhost/api/settings", {
method: "PATCH",
body: { debugMode: true },
})
);
assert.equal(response.status, 200);
assert.equal(
response.headers.get("Cache-Control"),
"no-store",
"PATCH /api/settings must return Cache-Control: no-store"
);
});
test("PUT /api/settings reuses the PATCH update flow", async () => {
const response = await harness.settingsRoute.PUT(
await makeManagementSessionRequest("http://localhost/api/settings", {
method: "PUT",
body: { antigravitySignatureCacheMode: "bypass" },
})
);
const body = (await response.json()) as Record<string, unknown>;
assert.equal(response.status, 200);
assert.equal(body.antigravitySignatureCacheMode, "bypass");
});
});
});