Files
OmniRoute/tests/unit/plugins-config-route.test.ts
Diego Rodrigues de Sa e Souza 3d4f3e4960 test(infra): retry recursive temp-dir removal instead of failing a shard on ENOTEMPTY (#11966) (#11968)
* test(infra): retry recursive temp-dir removal instead of failing a shard on ENOTEMPTY (#11966)

Two shards on release/v3.8.51 went red in one day with the same signature —
"ENOTEMPTY, Directory not empty: /tmp/omniroute-<test>-XXXXXX" — from
combo-same-provider-cascade (Unit Tests fast-path 4/4, on a PR that touches only
.github/) and auth-policy-embeddings-webfetch-7785 (the 20k-test TIA step). Both pass
alone and on re-run: the cleanup races something still writing into the directory
(SQLite WAL/-shm checkpoint, a worker, the backup) and under a loaded hosted runner
the window opens. 1154 test files do their own cleanup with
fs.rmSync(dir, { recursive: true, force: true }); 57 already asked for retries.

One-shot codemod (scripts/ad-hoc/codemod-rm-maxretries.mjs, kept for the record):
every rm / rmSync / rmdirSync option object with `recursive: true` and no
`maxRetries` gains `maxRetries: 5, retryDelay: 100` — Node itself then retries
ENOTEMPTY/EBUSY/EPERM for up to ~0.5 s before giving up. 2243 call sites in 1292
files under tests/, the shared tests/_setup/isolateDataDir.ts exit hook included.
Only the option object changes: no call site, assertion or import is touched.

Validation: prettier and ESLint (with the frozen suppressions) clean on all 1292
files; a random 20-file sample runs green (quota-redis-store hangs identically on
the untouched tree — it needs a Redis on localhost, an environment matter). The
four unit shards on this PR are the full run.

* fix(quality): let check-forgotten-sibling-tests read a 1,000-file diff

The gate shells out to `git diff` through execFileSync with Node's default 1 MB
maxBuffer; the 1,292-file codemod in this PR is the first diff large enough to
overflow it, and the gate died with `spawnSync git ENOBUFS` before comparing
anything. 64 MB is far above any real PR and costs nothing when unused.
2026-08-29 01:17:40 -03:00

265 lines
8.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";
// ── Temp dirs ──
const TEST_DATA_DIR = fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-plugins-config-"));
process.env.DATA_DIR = TEST_DATA_DIR;
// ── Dynamic imports (after DATA_DIR set) ──
const core = await import("../../src/lib/db/core.ts");
const dbPlugins = await import("../../src/lib/db/plugins.ts");
// ── Extract validation logic for direct testing ──
// We replicate the route's validation logic here since Next.js route handlers
// are hard to test without the full Next.js runtime.
interface ConfigField {
type: string;
default?: unknown;
min?: number;
max?: number;
enum?: string[];
description?: string;
}
function validateConfig(
config: Record<string, unknown>,
configSchema: Record<string, ConfigField>
): { valid: true } | { valid: false; error: string } {
if (!configSchema || typeof configSchema !== "object") return { valid: true };
const typeChecks: Record<string, (v: unknown) => boolean> = {
string: (v) => typeof v === "string",
number: (v) => typeof v === "number",
boolean: (v) => typeof v === "boolean",
};
for (const [key, def] of Object.entries(configSchema)) {
const val = config[key];
if (val === undefined) continue;
const check = typeChecks[def.type];
if (check && !check(val)) {
return { valid: false, error: `Config key '${key}' must be a ${def.type}` };
}
if (def.enum && !(def.enum as unknown[]).includes(val)) {
return {
valid: false,
error: `Config key '${key}' must be one of: ${(def.enum as string[]).join(", ")}`,
};
}
if (def.min !== undefined) {
const limit = def.min;
const size = typeof val === "string" ? val.length : typeof val === "number" ? val : undefined;
if (size !== undefined && size < limit) {
return {
valid: false,
error: `Config key '${key}' must be at least ${limit}${typeof val === "string" ? " characters" : ""}`,
};
}
}
if (def.max !== undefined && typeof val === "number" && val > def.max) {
return { valid: false, error: `Config key '${key}' must be at most ${def.max}` };
}
}
return { valid: true };
}
// ── Lifecycle ──
test.beforeEach(() => {
core.resetDbInstance();
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
fs.mkdirSync(TEST_DATA_DIR, { recursive: true });
});
test.after(() => {
core.resetDbInstance();
try {
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
} catch {}
});
// ── Test schema ──
const testSchema: Record<string, ConfigField> = {
apiUrl: { type: "string", description: "API endpoint" },
maxRetries: { type: "number", min: 1, max: 10, default: 3 },
debug: { type: "boolean", default: false },
mode: { type: "string", enum: ["fast", "slow", "auto"], default: "auto" },
};
// ── DB operations (same as route GET/PUT) ──
test("GET: returns config and schema for existing plugin", () => {
dbPlugins.insertPlugin({
id: "test-1",
name: "config-get-test",
version: "1.0.0",
main: "index.js",
pluginDir: "/tmp/test",
manifest: {},
config: { apiUrl: "https://api.test.com" },
configSchema: testSchema,
});
const plugin = dbPlugins.getPluginByName("config-get-test");
assert.ok(plugin);
const config = JSON.parse(plugin!.config || "{}");
const configSchema = JSON.parse(plugin!.configSchema || "{}");
assert.equal(config.apiUrl, "https://api.test.com");
assert.equal(configSchema.apiUrl.type, "string");
assert.equal(configSchema.maxRetries.min, 1);
});
test("GET: returns null for nonexistent plugin", () => {
const plugin = dbPlugins.getPluginByName("no-such-plugin");
assert.equal(plugin, null);
});
test("PUT: updates config via updatePluginConfig", () => {
dbPlugins.insertPlugin({
id: "test-2",
name: "config-put-test",
version: "1.0.0",
main: "index.js",
pluginDir: "/tmp/test",
manifest: {},
config: {},
configSchema: testSchema,
});
const success = dbPlugins.updatePluginConfig("config-put-test", {
apiUrl: "https://new.api.com",
});
assert.ok(success);
const plugin = dbPlugins.getPluginByName("config-put-test");
const config = JSON.parse(plugin!.config);
assert.equal(config.apiUrl, "https://new.api.com");
});
test("PUT: returns false for nonexistent plugin", () => {
const success = dbPlugins.updatePluginConfig("ghost", { key: "value" });
assert.equal(success, false);
});
// ── Validation logic ──
test("validation: accepts valid string config", () => {
const result = validateConfig({ apiUrl: "https://example.com" }, testSchema);
assert.equal(result.valid, true);
});
test("validation: rejects non-string for string field", () => {
const result = validateConfig({ apiUrl: 123 }, testSchema);
assert.equal(result.valid, false);
if (!result.valid) {
assert.ok(result.error.includes("must be a string"));
}
});
test("validation: accepts valid number config", () => {
const result = validateConfig({ maxRetries: 5 }, testSchema);
assert.equal(result.valid, true);
});
test("validation: rejects non-number for number field", () => {
const result = validateConfig({ maxRetries: "five" }, testSchema);
assert.equal(result.valid, false);
if (!result.valid) {
assert.ok(result.error.includes("must be a number"));
}
});
test("validation: accepts valid boolean config", () => {
const result = validateConfig({ debug: true }, testSchema);
assert.equal(result.valid, true);
});
test("validation: rejects non-boolean for boolean field", () => {
const result = validateConfig({ debug: "yes" }, testSchema);
assert.equal(result.valid, false);
if (!result.valid) {
assert.ok(result.error.includes("must be a boolean"));
}
});
test("validation: accepts valid enum value", () => {
const result = validateConfig({ mode: "fast" }, testSchema);
assert.equal(result.valid, true);
});
test("validation: rejects invalid enum value", () => {
const result = validateConfig({ mode: "turbo" }, testSchema);
assert.equal(result.valid, false);
if (!result.valid) {
assert.ok(result.error.includes("must be one of: fast, slow, auto"));
}
});
test("validation: accepts number within min/max range", () => {
const result = validateConfig({ maxRetries: 5 }, testSchema);
assert.equal(result.valid, true);
});
test("validation: rejects number below min", () => {
const result = validateConfig({ maxRetries: 0 }, testSchema);
assert.equal(result.valid, false);
if (!result.valid) {
assert.ok(result.error.includes("must be at least 1"));
}
});
test("validation: rejects number above max", () => {
const result = validateConfig({ maxRetries: 15 }, testSchema);
assert.equal(result.valid, false);
if (!result.valid) {
assert.ok(result.error.includes("must be at most 10"));
}
});
test("validation: accepts string meeting min length", () => {
const schema: Record<string, ConfigField> = { name: { type: "string", min: 3 } };
const result = validateConfig({ name: "abc" }, schema);
assert.equal(result.valid, true);
});
test("validation: rejects string below min length", () => {
const schema: Record<string, ConfigField> = { name: { type: "string", min: 3 } };
const result = validateConfig({ name: "ab" }, schema);
assert.equal(result.valid, false);
if (!result.valid) {
assert.ok(result.error.includes("must be at least 3 characters"));
}
});
test("validation: skips undefined keys", () => {
const result = validateConfig({}, testSchema);
assert.equal(result.valid, true);
});
test("validation: passes with empty schema", () => {
const result = validateConfig({ anything: "goes" }, {});
assert.equal(result.valid, true);
});
test("validation: passes with null schema", () => {
const result = validateConfig({ anything: "goes" }, null as any);
assert.equal(result.valid, true);
});
test("validation: handles multiple field errors (reports first)", () => {
const result = validateConfig({ apiUrl: 123, debug: "yes" }, testSchema);
assert.equal(result.valid, false);
// Should report the first error found
if (!result.valid) {
assert.ok(result.error.includes("must be a"));
}
});