170 lines
4.8 KiB
TypeScript
170 lines
4.8 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";
|
|
|
|
import { updateSettings } from "../../src/lib/db/settings";
|
|
|
|
const TEST_LOG_DIR = fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-console-log-levels-"));
|
|
const TEST_LOG_PATH = path.join(TEST_LOG_DIR, "app.log");
|
|
process.once("exit", () => {
|
|
try {
|
|
fs.rmSync(TEST_LOG_DIR, { recursive: true, force: true, maxRetries: 3, retryDelay: 50 });
|
|
} catch {
|
|
// Best-effort cleanup only; tmpdir residue must not fail otherwise-passing tests.
|
|
}
|
|
});
|
|
|
|
const originalLogFilePath = process.env.APP_LOG_FILE_PATH;
|
|
process.env.APP_LOG_FILE_PATH = TEST_LOG_PATH;
|
|
|
|
const route = await import("../../src/app/api/logs/console/route.ts");
|
|
|
|
interface ConsoleLogApiEntry {
|
|
level?: string;
|
|
timestamp?: unknown;
|
|
msg?: string;
|
|
message?: string;
|
|
correlationId?: string;
|
|
}
|
|
|
|
test.before(async () => {
|
|
await updateSettings({ requireLogin: false });
|
|
});
|
|
|
|
test.after(async () => {
|
|
await updateSettings({ requireLogin: true });
|
|
if (originalLogFilePath === undefined) {
|
|
delete process.env.APP_LOG_FILE_PATH;
|
|
} else {
|
|
process.env.APP_LOG_FILE_PATH = originalLogFilePath;
|
|
}
|
|
});
|
|
|
|
test("console log API normalizes numeric pino levels correctly", async () => {
|
|
fs.writeFileSync(
|
|
TEST_LOG_PATH,
|
|
[
|
|
JSON.stringify({
|
|
timestamp: new Date().toISOString(),
|
|
level: 30,
|
|
module: "probe",
|
|
msg: "info entry",
|
|
}),
|
|
JSON.stringify({
|
|
timestamp: new Date().toISOString(),
|
|
level: 40,
|
|
module: "probe",
|
|
msg: "warn entry",
|
|
}),
|
|
].join("\n") + "\n",
|
|
"utf8"
|
|
);
|
|
|
|
const response = await route.GET(
|
|
new Request("http://localhost/api/logs/console?level=info&limit=10")
|
|
);
|
|
const body = (await response.json()) as ConsoleLogApiEntry[];
|
|
|
|
assert.equal(response.status, 200);
|
|
assert.deepEqual(
|
|
body.map((entry) => entry.level),
|
|
["info", "warn"]
|
|
);
|
|
});
|
|
|
|
test("console log API filters by component, time window, and result limit", async () => {
|
|
fs.writeFileSync(
|
|
TEST_LOG_PATH,
|
|
[
|
|
JSON.stringify({
|
|
time: new Date(Date.now() - 2 * 60 * 60 * 1000).toISOString(),
|
|
level: "warn",
|
|
component: "router",
|
|
msg: "too old",
|
|
}),
|
|
"not-json",
|
|
JSON.stringify({
|
|
time: new Date().toISOString(),
|
|
level: "debug",
|
|
component: "router",
|
|
msg: "below level",
|
|
}),
|
|
JSON.stringify({
|
|
time: new Date().toISOString(),
|
|
level: "error",
|
|
component: "router-core",
|
|
msg: "match one",
|
|
}),
|
|
JSON.stringify({
|
|
timestamp: new Date().toISOString(),
|
|
level: "fatal",
|
|
module: "router-worker",
|
|
msg: "match two",
|
|
}),
|
|
].join("\n") + "\n",
|
|
"utf8"
|
|
);
|
|
|
|
const response = await route.GET(
|
|
new Request("http://localhost/api/logs/console?level=warn&component=router&limit=1")
|
|
);
|
|
const body = (await response.json()) as ConsoleLogApiEntry[];
|
|
|
|
assert.equal(response.status, 200);
|
|
assert.equal(body.length, 1);
|
|
assert.equal(body[0].level, "fatal");
|
|
assert.equal(body[0].timestamp !== undefined, true);
|
|
});
|
|
|
|
test("console log API serializes structured messages for the viewer", async () => {
|
|
fs.writeFileSync(
|
|
TEST_LOG_PATH,
|
|
JSON.stringify({
|
|
time: new Date().toISOString(),
|
|
level: 40,
|
|
module: "guardrail",
|
|
msg: {
|
|
detections: [
|
|
{ pattern: "system_override", severity: "high" },
|
|
{ pattern: "system_prompt_leak", severity: "high" },
|
|
],
|
|
},
|
|
correlationId: 12345,
|
|
}) + "\n",
|
|
"utf8"
|
|
);
|
|
|
|
const response = await route.GET(new Request("http://localhost/api/logs/console?limit=10"));
|
|
const body = (await response.json()) as ConsoleLogApiEntry[];
|
|
|
|
assert.equal(response.status, 200);
|
|
assert.equal(typeof body[0].msg, "string");
|
|
assert.match(body[0].msg, /system_override/);
|
|
assert.equal(body[0].message, body[0].msg);
|
|
assert.equal(body[0].correlationId, "12345");
|
|
});
|
|
|
|
test("console log API returns an empty list for a missing file and surfaces read errors", async () => {
|
|
fs.rmSync(TEST_LOG_PATH, { force: true });
|
|
|
|
const missingResponse = await route.GET(new Request("http://localhost/api/logs/console"));
|
|
assert.equal(missingResponse.status, 200);
|
|
assert.deepEqual(await missingResponse.json(), []);
|
|
|
|
const brokenPath = path.join(TEST_LOG_DIR, "dir-log");
|
|
fs.mkdirSync(brokenPath, { recursive: true });
|
|
process.env.APP_LOG_FILE_PATH = brokenPath;
|
|
|
|
try {
|
|
const brokenResponse = await route.GET(new Request("http://localhost/api/logs/console"));
|
|
assert.equal(brokenResponse.status, 500);
|
|
const payload = (await brokenResponse.json()) as { error?: string };
|
|
assert.equal(typeof payload.error, "string");
|
|
assert.equal(payload.error.length > 0, true);
|
|
} finally {
|
|
process.env.APP_LOG_FILE_PATH = TEST_LOG_PATH;
|
|
}
|
|
});
|