mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-25 00:22:09 +03:00
Validated on a combined board over tip aa128736 (incl. sibling #11081): call-logs-row-filter 4/4 green, typecheck:core clean. The merged-row predicate fix closes a real gap — in-memory (in-flight/recently-completed) rows bypassed every filter except correlationId; rowMatchesFilter() now applies search/model/provider/account/apiKey/status/combo uniformly while DB rows stay idempotent. Thank you @AndrianBalanescu!
48 lines
2.0 KiB
TypeScript
48 lines
2.0 KiB
TypeScript
import test from "node:test";
|
|
import assert from "node:assert/strict";
|
|
import { rowMatchesFilter } from "../../src/app/api/usage/call-logs/route.ts";
|
|
|
|
test.describe("call-logs rowMatchesFilter unit tests", () => {
|
|
const baseRow = {
|
|
id: "log-1",
|
|
status: 200,
|
|
model: "openai/gpt-4o",
|
|
provider: "openai",
|
|
providerDisplay: "OpenAI Main",
|
|
account: "Work Account",
|
|
apiKeyName: "DevKey",
|
|
comboName: "SmartRouter",
|
|
correlationId: "corr-12345",
|
|
path: "/v1/chat/completions",
|
|
error: null,
|
|
};
|
|
|
|
test("status filter matches ok, error, and explicit status codes", () => {
|
|
assert.equal(rowMatchesFilter(baseRow, { status: "ok" }), true);
|
|
assert.equal(rowMatchesFilter(baseRow, { status: "error" }), false);
|
|
assert.equal(rowMatchesFilter(baseRow, { status: 200 }), true);
|
|
assert.equal(rowMatchesFilter(baseRow, { status: 500 }), false);
|
|
|
|
const errorRow = { ...baseRow, status: 500, error: "Internal Error" };
|
|
assert.equal(rowMatchesFilter(errorRow, { status: "ok" }), false);
|
|
assert.equal(rowMatchesFilter(errorRow, { status: "error" }), true);
|
|
});
|
|
|
|
test("provider filter matches provider name and excludes mismatched in-memory rows", () => {
|
|
assert.equal(rowMatchesFilter(baseRow, { provider: "openai" }), true);
|
|
assert.equal(rowMatchesFilter(baseRow, { provider: "anthropic" }), false);
|
|
});
|
|
|
|
test("model filter matches model name and excludes mismatched in-memory rows", () => {
|
|
assert.equal(rowMatchesFilter(baseRow, { model: "gpt-4o" }), true);
|
|
assert.equal(rowMatchesFilter(baseRow, { model: "claude-3-5-sonnet" }), false);
|
|
});
|
|
|
|
test("search query matches across haystack fields", () => {
|
|
assert.equal(rowMatchesFilter(baseRow, { search: "SmartRouter" }), true);
|
|
assert.equal(rowMatchesFilter(baseRow, { search: "DevKey" }), true);
|
|
assert.equal(rowMatchesFilter(baseRow, { search: "corr-12345" }), true);
|
|
assert.equal(rowMatchesFilter(baseRow, { search: "non-existent" }), false);
|
|
});
|
|
});
|