mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-02 13:22:11 +03:00
## New Features - Combo Builder v2 wizard UI (multi-stage: Basics → Steps → Strategy → Review) - Combo Step Architecture Schema v2 (ComboModelStep, ComboRefStep, pinned accounts) - Composite Tiers system for tiered model routing with fallback chains - Model Capabilities Registry (unified resolver merging specs + registry + synced data) - Observability module (buildHealthPayload, buildTelemetryPayload, buildSessionsSummary) - Session & Quota Monitor panels on Health dashboard - Combo Health per-target analytics via resolveNestedComboTargets() - Combo Builder Options API (GET /api/combos/builder/options) ## Performance - Middleware lazy loading (apiAuth, db/settings, modelSyncScheduler) - E2E auth bypass mode (NEXT_PUBLIC_OMNIROUTE_E2E_MODE) ## Bug Fixes - P2C credential selection with quota headroom awareness - Fixed-account combo steps bypass model cooldowns/circuit breakers - Combo metrics per-target tracking (byTarget with executionKey) - Call logs schema expansion (7 new columns + composite index) - Quota monitor lifecycle enrichment (status, snapshots, summary) - Codex quota fetcher hardening ## Maintenance - DB migration 021 (combo_call_log_targets) - Combo CRUD normalization on read - Playwright config + build script improvements - OpenAPI spec version sync to 3.6.4 ## Tests - 16 new test suites + 12 existing test updates - 86 files changed, +8318 -1378 lines
120 lines
3.4 KiB
JavaScript
120 lines
3.4 KiB
JavaScript
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";
|
|
|
|
const playwrightRunner = await import("../../scripts/run-next-playwright.mjs");
|
|
|
|
test("resolvePlaywrightAppBackupDir uses a per-run backup when a stale backup already exists", () => {
|
|
const cwd = "/tmp/omniroute-playwright-runner";
|
|
|
|
assert.equal(
|
|
playwrightRunner.resolvePlaywrightAppBackupDir({
|
|
cwd,
|
|
baseBackupExists: false,
|
|
appDirExists: true,
|
|
pid: 123,
|
|
now: 456,
|
|
}),
|
|
path.join(cwd, "app.__qa_backup")
|
|
);
|
|
|
|
assert.equal(
|
|
playwrightRunner.resolvePlaywrightAppBackupDir({
|
|
cwd,
|
|
baseBackupExists: true,
|
|
appDirExists: true,
|
|
pid: 123,
|
|
now: 456,
|
|
}),
|
|
path.join(cwd, "app.__qa_backup.123.456")
|
|
);
|
|
});
|
|
|
|
test("shouldUseWebpackForPlaywrightDev only opts into webpack when turbopack is disabled", () => {
|
|
assert.equal(
|
|
playwrightRunner.shouldUseWebpackForPlaywrightDev({
|
|
mode: "dev",
|
|
env: { OMNIROUTE_USE_TURBOPACK: "1" },
|
|
}),
|
|
false
|
|
);
|
|
|
|
assert.equal(
|
|
playwrightRunner.shouldUseWebpackForPlaywrightDev({
|
|
mode: "dev",
|
|
env: { OMNIROUTE_USE_TURBOPACK: "0" },
|
|
}),
|
|
true
|
|
);
|
|
|
|
assert.equal(
|
|
playwrightRunner.shouldUseWebpackForPlaywrightDev({
|
|
mode: "start",
|
|
env: { OMNIROUTE_USE_TURBOPACK: "1" },
|
|
}),
|
|
false
|
|
);
|
|
});
|
|
|
|
test("standalone asset helpers detect and rehydrate missing standalone static assets", () => {
|
|
const tempRoot = fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-playwright-assets-"));
|
|
const standaloneServerPath = path.join(tempRoot, ".next", "standalone", "server.js");
|
|
const rootStaticDirPath = path.join(tempRoot, ".next", "static");
|
|
const standaloneStaticDirPath = path.join(tempRoot, ".next", "standalone", ".next", "static");
|
|
const rootPublicDirPath = path.join(tempRoot, "public");
|
|
const standalonePublicDirPath = path.join(tempRoot, ".next", "standalone", "public");
|
|
|
|
fs.mkdirSync(path.dirname(standaloneServerPath), { recursive: true });
|
|
fs.writeFileSync(standaloneServerPath, "server");
|
|
fs.mkdirSync(rootStaticDirPath, { recursive: true });
|
|
fs.mkdirSync(rootPublicDirPath, { recursive: true });
|
|
fs.writeFileSync(path.join(rootStaticDirPath, "chunk.js"), "console.log('chunk');");
|
|
fs.writeFileSync(path.join(rootPublicDirPath, "favicon.svg"), "<svg />");
|
|
|
|
assert.equal(
|
|
playwrightRunner.standaloneAssetsNeedSync({
|
|
standaloneServerPath,
|
|
rootStaticDirPath,
|
|
standaloneStaticDirPath,
|
|
}),
|
|
true
|
|
);
|
|
|
|
const logs = [];
|
|
const changed = playwrightRunner.syncStandaloneRuntimeAssets({
|
|
standaloneServerPath,
|
|
rootStaticDirPath,
|
|
standaloneStaticDirPath,
|
|
rootPublicDirPath,
|
|
standalonePublicDirPath,
|
|
log: {
|
|
log(message) {
|
|
logs.push(message);
|
|
},
|
|
},
|
|
});
|
|
|
|
assert.equal(changed, true);
|
|
assert.equal(
|
|
fs.readFileSync(path.join(standaloneStaticDirPath, "chunk.js"), "utf8"),
|
|
"console.log('chunk');"
|
|
);
|
|
assert.equal(
|
|
fs.readFileSync(path.join(standalonePublicDirPath, "favicon.svg"), "utf8"),
|
|
"<svg />"
|
|
);
|
|
assert.equal(
|
|
playwrightRunner.standaloneAssetsNeedSync({
|
|
standaloneServerPath,
|
|
rootStaticDirPath,
|
|
standaloneStaticDirPath,
|
|
}),
|
|
false
|
|
);
|
|
assert.match(logs[0] || "", /Rehydrated standalone static\/public assets/);
|
|
|
|
fs.rmSync(tempRoot, { recursive: true, force: true });
|
|
});
|