mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-01 04:42:10 +03:00
* perf: extract recharts into dynamic import wrappers
Bundle recharts behind next/dynamic boundaries to prevent its
large module graph from being included in the initial JS payload.
- CostOverviewTab.tsx → dynamic(() => import('./components/CostCharts'))
- ProviderUtilizationTab.tsx → dynamic(() => import('./components/ProviderCharts'))
- BurnRateChart.tsx → dynamic(() => import('./components/BurnRateChartInner'))
- Created 3 wrapper files with 'use client' and all recharts imports
Reduces initial bundle by ~35 kB (recharts + dependencies).
* perf: add pagination (limit/offset) to apiKeys, combos, providers, provider-nodes
Add optional limit/offset parameters to DB list functions and their
API route handlers. All list functions now return { items, total } when
called with parameters; backward compatible when called without args.
Affected modules:
- lib/db/apiKeys.ts - listApiKeys, getApiKeysByGroup
- lib/db/combos.ts - listCombos
- lib/db/providers.ts - listProviders, getProvidersByGroup
- lib/db/providers/nodes.ts - listProviderNodes, getProviderNodesByGroup
- Corresponding API routes pass through query params
Reduces memory pressure on large datasets by returning one page at a time.
* perf: add pagination (limit/offset) to webhooks, proxies, modelComboMappings, playgroundPresets
Add optional limit/offset parameters to DB list functions and their
API route handlers for the remaining data modules.
Affected modules:
- lib/db/webhooks.ts - getWebhooks returns { webhooks, total }
- lib/db/proxies.ts - listProxies
- lib/db/modelComboMappings.ts - listMappings
- lib/db/playgroundPresets.ts - listPresets
- Corresponding API routes pass through query params
- Re-exports updated: lib/localDb.ts, models/index.ts
Backward compatible: calling without args returns all rows.
* perf: batch pool building and add pagination to quotaPools
Replace per-pool N+1 queries with batch-loading pattern.
- Added batchBuildPools(rows) — collects all pool IDs, does 2 batch
queries (allocations + connections) instead of 2N individual queries
- getPoolsByGroup and listPools now use batchBuildPools
- Added optional limit/offset pagination params
- Fixed SQLite OFFSET-syntax bug: only emit OFFSET when LIMIT also present
- Added quota-pools.test.ts with 10 tests covering pagination edge cases,
batch loading, and the offset-without-limit guard
Reduces pool-page query count from 2N+1 to 3 (constant).
* perf: replace manual offset/limit parsing with Zod paginationSchema in combos GET handler
* fix: replace manual Number()/parseInt pagination with paginationSchema
Endpoints: model-combo-mappings, playground/presets, provider-nodes.
Uses existing Zod schema with z.coerce.number() for proper validation.
* chore: bump proxies.ts frozen baseline 1177->1208 for perf/api-pagination
PR #7046 backward-compatible pagination refactor grew proxies.ts
by +31 lines (1177->1208). Entries return plain array when no
pagination params provided, {items,total} when pagination requested.
* fix(db): finish listProxies()/getWebhooks() pagination shape migration
The pagination refactor changed listProxies(), listPools(),
getModelComboMappings(), listPlaygroundPresets() and getWebhooks() to
return a paginated envelope ({ items, total } / { webhooks, total })
instead of a bare array, but left three real production callers and
several tests on the old array-shaped API:
- src/lib/proxyEgress.ts (validateProxyPool default listProxies impl)
iterated the envelope directly -> "is not iterable" at runtime, hit
by /api/settings/proxies/egress (no injected deps).
- src/lib/proxyHealth/scheduler.ts (sweep()) read proxies.length on the
envelope (undefined), so the health-check sweep silently processed
zero proxies every run.
- open-sse/utils/proxyFallback.ts (getProxyCandidates()) iterated the
envelope inside a try/catch that swallowed the resulting TypeError,
so every user-configured proxy silently vanished from the fallback
candidate list.
Also fixes two TS2558/TS2339 typecheck errors in proxies.ts/webhooks.ts
(db.prepare<T>() generic not supported by this DB wrapper — cast the
query result instead, matching the existing pattern in both files) and
trims one blank re-export separator line in localDb.ts to stay within
the frozen file-size ratchet after 4 new *Count() exports.
Updates the pre-existing unit tests that called the changed functions
directly (db-quota-pools, quota-groups-migration, quota-pool-connections,
quota-pool-delete-prune, db-webhooks, model-combo-mappings-db,
db-playground-presets, db-proxies-crud, proxy-batch-routes-5918,
proxy-registry, error-message-sanitization) to destructure the new
envelope shape instead of treating the result as an array.
Implements the small, well-scoped performance-mark/measure
instrumentation ("omni-pipeline-start"/"omni-pipeline-end"/"omni-pipeline")
that tests/unit/chatcore-streaming-pipeline.test.ts already asserted for
assembleStreamingPipeline() but that had no corresponding source change.
Adds three new regression tests (TDD: each reproduces its bug against
the pre-fix code before the corresponding fix, then passes) covering
the three real production callers above:
tests/unit/proxy-egress-validate-pool-default.test.ts,
tests/unit/proxy-health-scheduler-listproxies-shape.test.ts,
tests/unit/proxy-fallback-candidates-listproxies-shape.test.ts.
Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com>
* fix: resolve rebase conflict in proxies.ts — keep hasBlockingProxyAssignment but drop duplicate extraction leftovers
- Removed duplicate resolveScopePoolInternal, resolveProxyForConnectionFromRegistry,
resolveProxyForScopeFromRegistry already extracted to proxies/rotation.ts
- Removed duplicate hasBlockingProxyAssignment function body already re-exported from proxies/guards.ts
- Removed duplicate PROXY_ALIVE_PREDICATE import
- All typechecks and 45 affected tests pass
* fix(test): account for _reorderConnections in pagination test expectedOrder
createProviderConnection calls _reorderConnections after every insert
which reassigns priorities sequentially. The test was assuming creation
order determines priority order, leading to incorrect expected results.
Fix: query the DB after all inserts and use the actual priority order.
Also removes debug console.log from getRawProviderConnections.
* chore: remove debug tmp-*.mjs files left in PR branch
* test(proxy): migrate the dedup test to the paginated listProxies() shape
#7046 changed listProxies() to return { items, total }, and updated every
production caller plus three of the four test files — tests/unit/proxy-bulk-import-dedup-7594.test.ts
was missed, so its four `listed.length` assertions read `undefined` and the
file went red on the merge train (it passes on the pure release tip).
Test-only: destructure `{ items: listed }` at the four callsites. Verified
proxyEgress.ts needs no change — its local deps shim already unwraps .items,
and tests/unit/proxy-egress-validate-pool-default.test.ts guards exactly that.
Co-authored-by: diegosouzapw <8016841+diegosouzapw@users.noreply.github.com>
---------
Co-authored-by: oyi77 <oyi77@users.noreply.github.com>
Co-authored-by: diegosouzapw <diegosouza.pw@gmail.com>
Co-authored-by: diegosouzapw <8016841+diegosouzapw@users.noreply.github.com>
226 lines
7.9 KiB
TypeScript
226 lines
7.9 KiB
TypeScript
/**
|
|
* tests/unit/quota-groups-migration.test.ts
|
|
*
|
|
* Task B1 — first-class quota Group entity.
|
|
*
|
|
* Coverage:
|
|
* - Migration file 088_quota_groups.sql exists and contains the expected SQL.
|
|
* - After migrations run (fresh DB), quota_groups has a 'group-demo' row.
|
|
* - createPool without groupId → pool.groupId === 'group-demo'.
|
|
* - createPool with groupId: 'g1' (group pre-inserted) → pool.groupId === 'g1'.
|
|
* - getPool and listPools both surface groupId.
|
|
* - updatePool with groupId updates the group assignment.
|
|
*/
|
|
|
|
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";
|
|
|
|
// ── DB harness (mirrors quota-pool-connections.test.ts) ─────────────────────
|
|
const TEST_DATA_DIR = fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-quota-groups-"));
|
|
process.env.DATA_DIR = TEST_DATA_DIR;
|
|
|
|
const core = await import("../../src/lib/db/core.ts");
|
|
const poolsDb = await import("../../src/lib/db/quotaPools.ts");
|
|
|
|
async function resetStorage() {
|
|
core.resetDbInstance();
|
|
for (let attempt = 0; attempt < 10; attempt++) {
|
|
try {
|
|
if (fs.existsSync(TEST_DATA_DIR)) {
|
|
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true });
|
|
}
|
|
break;
|
|
} catch (err: any) {
|
|
if ((err?.code === "EBUSY" || err?.code === "EPERM") && attempt < 9) {
|
|
await new Promise((resolve) => setTimeout(resolve, 50 * (attempt + 1)));
|
|
} else {
|
|
throw err;
|
|
}
|
|
}
|
|
}
|
|
fs.mkdirSync(TEST_DATA_DIR, { recursive: true });
|
|
}
|
|
|
|
test.beforeEach(async () => {
|
|
await resetStorage();
|
|
});
|
|
|
|
test.after(async () => {
|
|
core.resetDbInstance();
|
|
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true });
|
|
});
|
|
|
|
// Helper to get a raw DB handle for inspection / seeding.
|
|
function getDb() {
|
|
return core.getDbInstance() as unknown as {
|
|
prepare: <TRow = unknown>(sql: string) => {
|
|
all: (...params: unknown[]) => TRow[];
|
|
get: (...params: unknown[]) => TRow | undefined;
|
|
run: (...params: unknown[]) => { changes: number };
|
|
};
|
|
};
|
|
}
|
|
|
|
// ── B1.1: Migration file content ─────────────────────────────────────────────
|
|
|
|
test("migration 087 file exists", () => {
|
|
const migrationPath = path.resolve("src/lib/db/migrations/088_quota_groups.sql");
|
|
assert.ok(fs.existsSync(migrationPath), `migration file not found: ${migrationPath}`);
|
|
});
|
|
|
|
test("migration 087 contains quota_groups CREATE TABLE", () => {
|
|
const sql = fs.readFileSync(
|
|
path.resolve("src/lib/db/migrations/088_quota_groups.sql"),
|
|
"utf8"
|
|
);
|
|
assert.ok(sql.includes("quota_groups"), "migration SQL should reference quota_groups");
|
|
assert.ok(
|
|
sql.includes("CREATE TABLE IF NOT EXISTS quota_groups"),
|
|
"migration SQL should create quota_groups with IF NOT EXISTS"
|
|
);
|
|
});
|
|
|
|
test("migration 087 seeds group-demo", () => {
|
|
const sql = fs.readFileSync(
|
|
path.resolve("src/lib/db/migrations/088_quota_groups.sql"),
|
|
"utf8"
|
|
);
|
|
assert.ok(
|
|
sql.includes("group-demo"),
|
|
"migration SQL should insert the 'group-demo' seed row"
|
|
);
|
|
assert.ok(
|
|
sql.includes("INSERT OR IGNORE INTO quota_groups"),
|
|
"migration SQL should use INSERT OR IGNORE for idempotency"
|
|
);
|
|
});
|
|
|
|
test("migration 087 adds group_id column to quota_pools", () => {
|
|
const sql = fs.readFileSync(
|
|
path.resolve("src/lib/db/migrations/088_quota_groups.sql"),
|
|
"utf8"
|
|
);
|
|
assert.ok(
|
|
sql.includes("ALTER TABLE quota_pools ADD COLUMN group_id"),
|
|
"migration SQL should ALTER TABLE quota_pools to add group_id"
|
|
);
|
|
});
|
|
|
|
test("migration 087 contains backfill UPDATE for existing pools", () => {
|
|
const sql = fs.readFileSync(
|
|
path.resolve("src/lib/db/migrations/088_quota_groups.sql"),
|
|
"utf8"
|
|
);
|
|
assert.ok(
|
|
sql.includes("UPDATE quota_pools SET group_id = 'group-demo'"),
|
|
"migration SQL should backfill existing pools to group-demo"
|
|
);
|
|
assert.ok(
|
|
sql.includes("group_id IS NULL OR group_id = ''"),
|
|
"backfill should only touch pools without a group"
|
|
);
|
|
});
|
|
|
|
// ── B1.2: Schema after migration ──────────────────────────────────────────────
|
|
|
|
test("after migrations run, quota_groups has a group-demo row named GroupDemo", () => {
|
|
// Trigger DB initialisation (runs all migrations including 087).
|
|
const db = getDb();
|
|
|
|
const row = db
|
|
.prepare<{ id: string; name: string }>(
|
|
"SELECT id, name FROM quota_groups WHERE id = 'group-demo'"
|
|
)
|
|
.get();
|
|
|
|
assert.ok(row, "group-demo row should exist in quota_groups");
|
|
assert.equal(row!.id, "group-demo");
|
|
assert.equal(row!.name, "GroupDemo");
|
|
});
|
|
|
|
test("quota_pools has a group_id column after migration", () => {
|
|
const db = getDb();
|
|
const cols = db
|
|
.prepare<{ name: string }>("PRAGMA table_info(quota_pools)")
|
|
.all()
|
|
.map((r) => r.name);
|
|
assert.ok(cols.includes("group_id"), "quota_pools should have a group_id column");
|
|
});
|
|
|
|
// ── B1.3: createPool defaults ─────────────────────────────────────────────────
|
|
|
|
test("createPool without groupId → pool.groupId === 'group-demo'", () => {
|
|
// Ensure migrations have run.
|
|
getDb();
|
|
|
|
const pool = poolsDb.createPool({
|
|
connectionId: "conn-1",
|
|
name: "Default Group Pool",
|
|
});
|
|
|
|
assert.equal(pool.groupId, "group-demo", "groupId should default to 'group-demo'");
|
|
|
|
// Re-read from DB to confirm persistence.
|
|
const reread = poolsDb.getPool(pool.id);
|
|
assert.ok(reread, "pool should be findable after creation");
|
|
assert.equal(reread!.groupId, "group-demo", "persisted groupId should be 'group-demo'");
|
|
});
|
|
|
|
test("createPool with explicit groupId persists the given group", () => {
|
|
const db = getDb();
|
|
|
|
// Seed a custom group first (raw SQL, as quotaGroups module is not yet implemented).
|
|
db.prepare("INSERT OR IGNORE INTO quota_groups (id, name) VALUES ('g1', 'Group One')").run();
|
|
|
|
const pool = poolsDb.createPool({
|
|
connectionId: "conn-g1",
|
|
name: "G1 Pool",
|
|
groupId: "g1",
|
|
});
|
|
|
|
assert.equal(pool.groupId, "g1", "groupId should be 'g1'");
|
|
|
|
const reread = poolsDb.getPool(pool.id);
|
|
assert.ok(reread, "pool should be findable after creation");
|
|
assert.equal(reread!.groupId, "g1", "persisted groupId should be 'g1'");
|
|
});
|
|
|
|
// ── B1.4: listPools surfaces groupId ─────────────────────────────────────────
|
|
|
|
test("listPools returns groupId on every pool", () => {
|
|
const db = getDb();
|
|
db.prepare("INSERT OR IGNORE INTO quota_groups (id, name) VALUES ('g2', 'Group Two')").run();
|
|
|
|
poolsDb.createPool({ connectionId: "lp-1", name: "Pool Default" });
|
|
poolsDb.createPool({ connectionId: "lp-2", name: "Pool G2", groupId: "g2" });
|
|
|
|
const { items: pools } = poolsDb.listPools();
|
|
assert.equal(pools.length, 2);
|
|
|
|
const pDef = pools.find((p) => p.name === "Pool Default")!;
|
|
assert.equal(pDef.groupId, "group-demo");
|
|
|
|
const pG2 = pools.find((p) => p.name === "Pool G2")!;
|
|
assert.equal(pG2.groupId, "g2");
|
|
});
|
|
|
|
// ── B1.5: updatePool groupId ──────────────────────────────────────────────────
|
|
|
|
test("updatePool with groupId updates the group assignment", () => {
|
|
const db = getDb();
|
|
db.prepare("INSERT OR IGNORE INTO quota_groups (id, name) VALUES ('g3', 'Group Three')").run();
|
|
|
|
const pool = poolsDb.createPool({ connectionId: "up-1", name: "Update Group Pool" });
|
|
assert.equal(pool.groupId, "group-demo");
|
|
|
|
const updated = poolsDb.updatePool(pool.id, { groupId: "g3" });
|
|
assert.ok(updated, "updatePool should return the updated pool");
|
|
assert.equal(updated!.groupId, "g3", "groupId should be updated to 'g3'");
|
|
|
|
const reread = poolsDb.getPool(pool.id);
|
|
assert.equal(reread!.groupId, "g3", "persisted groupId should be 'g3'");
|
|
});
|