mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-26 09:52:11 +03:00
* feat(api-keys): add rename support in permissions modal Add an editable key name field at the top of the permissions modal, allowing users to rename API keys alongside existing permission settings. The backend already supported name updates via PATCH /api/keys/:id — this wires the UI to send the name field and refreshes the key list on success. Changes: - Add keyName state and text input to PermissionsModal - Update handleUpdatePermissions to validate and send name in PATCH body - Add integration test for rename via PATCH (valid, empty, too-long names) - Update E2E mock to handle PATCH requests * chore(release): bump version to 3.7.6 * chore(release): v3.7.6 — merge API key rename feature and sync docs * chore(release): expand contributor credits to 155 PRs across full project history - Expanded acknowledgment table from 29 to 53 contributors - Added 100+ previously uncredited PRs from project inception through v3.7.5 - Moved contributor credits section to v3.7.6 (current release) - Synced llm.txt version to 3.7.6 * fix: resolve security ReDoS in codex and bugs #1797 #1789 * feat(dashboard): implement remaining v3.7.6 dashboard features and fixes * fix(xiaomi-mimo): update models to V2.5, fix Token Plan validation and default region (#1823) Integrated into release/v3.7.6 * fix(dashboard): correct loadPresets ReferenceError in CostOverviewTab * fix(codex): omit compact client metadata (#1822) Integrated into release/v3.7.6 * feat(chatgpt-web): support thinking_effort (Standard/Extended) for thinking-capable models (#1821) Integrated into release/v3.7.6 * Fix endpoint visibility, A2A status, and API catalog (#1806) Integrated into release/v3.7.6 * fix(analytics): use pure SQL aggregations — no history rows loaded (#1802) Integrated into release/v3.7.6 * fix(stability): resolve codex input validation, enable combo circuit breaker, and fix broken unit tests * docs(changelog): update for stability bug fixes #1804 #1805 * fix: clear active requests and recover providers (#1824) Integrated into release/v3.7.6 * feat: inject fallback tool names to prevent upstream 400 errors (#1775) * feat: auto-restore probe-failed database to prevent data loss (#1810) * fix: safely cast inputs to strings before calling trim() to avoid crashes on numeric fields in proxy modal (#1825) * chore(release): v3.7.6 — final stability patches for production * test: update expected db probe-failure error message for auto-restore feature * chore(workflow): mandate implementation plan generation in resolve-issues * docs(changelog): rewrite v3.7.6 with complete commit-accurate entries * feat(analytics): add cost-based usage insights and activity streaks Expand usage analytics to report total cost, per-series cost totals, API key counts, and current activity streaks using pricing-aware token calculations. Also make probe-failed database recovery choose the newest backup by its embedded timestamp instead of filesystem mtime so auto-restore selects the intended snapshot reliably. * fix(mitm): enforce transparent interception on port 443 only Reject non-443 MITM port updates in the settings API and normalize stored configuration back to the required transparent interception port. Lock the dashboard port field to 443, update the validation copy, and add integration coverage to prevent stale custom ports from being accepted or surfaced. * docs(changelog): update for analytics and mitm features --------- Co-authored-by: Andrew Munsell <andrew@wizardapps.net> Co-authored-by: Antigravity Assistant <bot@antigravity.local> Co-authored-by: Gi99lin <74502520+Gi99lin@users.noreply.github.com> Co-authored-by: Sergey Morozov <tr0st@bk.ru> Co-authored-by: payne <baboialex95@gmail.com> Co-authored-by: Randi <55005611+rdself@users.noreply.github.com> Co-authored-by: Paijo <14921983+oyi77@users.noreply.github.com> Co-authored-by: ipanghu <bypanghu@163.com>
275 lines
7.7 KiB
TypeScript
275 lines
7.7 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";
|
|
|
|
const TEST_DATA_DIR = fs.mkdtempSync(path.join(os.tmpdir(), "omniroute-auth-terminal-"));
|
|
process.env.DATA_DIR = TEST_DATA_DIR;
|
|
|
|
const core = await import("../../src/lib/db/core.ts");
|
|
const providersDb = await import("../../src/lib/db/providers.ts");
|
|
const auth = await import("../../src/sse/services/auth.ts");
|
|
const accountFallback = await import("../../open-sse/services/accountFallback.ts");
|
|
|
|
async function resetStorage() {
|
|
core.resetDbInstance();
|
|
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true });
|
|
fs.mkdirSync(TEST_DATA_DIR, { recursive: true });
|
|
}
|
|
|
|
test.after(() => {
|
|
core.resetDbInstance();
|
|
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true });
|
|
});
|
|
|
|
test("getProviderCredentials skips credits_exhausted connections", async () => {
|
|
await resetStorage();
|
|
|
|
const exhausted = await providersDb.createProviderConnection({
|
|
provider: "openai",
|
|
authType: "apikey",
|
|
apiKey: "sk-exhausted",
|
|
isActive: true,
|
|
testStatus: "credits_exhausted",
|
|
});
|
|
|
|
const healthy = await providersDb.createProviderConnection({
|
|
provider: "openai",
|
|
authType: "apikey",
|
|
apiKey: "sk-healthy",
|
|
isActive: true,
|
|
testStatus: "active",
|
|
});
|
|
|
|
const selected = await auth.getProviderCredentials("openai");
|
|
assert.ok(selected);
|
|
assert.equal(selected.connectionId, healthy.id);
|
|
assert.notEqual(selected.connectionId, exhausted.id);
|
|
});
|
|
|
|
test("getProviderCredentials returns null when all active connections are terminal", async () => {
|
|
await resetStorage();
|
|
|
|
await providersDb.createProviderConnection({
|
|
provider: "openai",
|
|
authType: "apikey",
|
|
apiKey: "sk-only-exhausted",
|
|
isActive: true,
|
|
testStatus: "credits_exhausted",
|
|
});
|
|
|
|
const selected = await auth.getProviderCredentials("openai");
|
|
assert.equal(selected, null);
|
|
});
|
|
|
|
test("getProviderCredentials can reuse a locally suppressed connection for combo live tests", async () => {
|
|
await resetStorage();
|
|
|
|
const conn = await providersDb.createProviderConnection({
|
|
provider: "openai",
|
|
authType: "apikey",
|
|
apiKey: "sk-live-test",
|
|
isActive: true,
|
|
testStatus: "credits_exhausted",
|
|
rateLimitedUntil: new Date(Date.now() + 60_000).toISOString(),
|
|
});
|
|
|
|
const selected = await auth.getProviderCredentials("openai", null, null, null, {
|
|
allowSuppressedConnections: true,
|
|
bypassQuotaPolicy: true,
|
|
});
|
|
|
|
assert.ok(selected);
|
|
assert.equal(selected.connectionId, conn.id);
|
|
});
|
|
|
|
test("markAccountUnavailable does not overwrite terminal status", async () => {
|
|
await resetStorage();
|
|
|
|
const conn = await providersDb.createProviderConnection({
|
|
provider: "openai",
|
|
authType: "apikey",
|
|
apiKey: "sk-terminal",
|
|
isActive: true,
|
|
testStatus: "credits_exhausted",
|
|
lastError: "insufficient_quota",
|
|
});
|
|
|
|
const result = await auth.markAccountUnavailable(
|
|
(conn as any).id,
|
|
503,
|
|
"temporary upstream error",
|
|
"openai",
|
|
"gpt-4.1"
|
|
);
|
|
|
|
assert.equal(result.shouldFallback, true);
|
|
assert.equal(result.cooldownMs, 0);
|
|
|
|
const after = await providersDb.getProviderConnectionById((conn as any).id);
|
|
assert.equal(after.testStatus, "credits_exhausted");
|
|
});
|
|
|
|
test("markAccountUnavailable marks 401 connections as expired without adding cooldown", async () => {
|
|
await resetStorage();
|
|
|
|
const conn = await providersDb.createProviderConnection({
|
|
provider: "openai",
|
|
authType: "apikey",
|
|
apiKey: "sk-expired",
|
|
isActive: true,
|
|
testStatus: "active",
|
|
});
|
|
|
|
const result = await auth.markAccountUnavailable(
|
|
(conn as any).id,
|
|
401,
|
|
"unauthorized",
|
|
"openai",
|
|
"gpt-4.1"
|
|
);
|
|
const after = await providersDb.getProviderConnectionById((conn as any).id);
|
|
|
|
assert.equal(result.shouldFallback, true);
|
|
assert.equal(result.cooldownMs, 0);
|
|
assert.equal(after.testStatus, "expired");
|
|
assert.ok(!after.rateLimitedUntil);
|
|
});
|
|
|
|
test("markAccountUnavailable marks 402 connections as credits_exhausted without adding cooldown", async () => {
|
|
await resetStorage();
|
|
|
|
const conn = await providersDb.createProviderConnection({
|
|
provider: "openai",
|
|
authType: "apikey",
|
|
apiKey: "sk-credits",
|
|
isActive: true,
|
|
testStatus: "active",
|
|
});
|
|
|
|
const result = await auth.markAccountUnavailable(
|
|
(conn as any).id,
|
|
402,
|
|
"payment required",
|
|
"openai",
|
|
"gpt-4.1"
|
|
);
|
|
const after = await providersDb.getProviderConnectionById((conn as any).id);
|
|
|
|
assert.equal(result.shouldFallback, true);
|
|
assert.equal(result.cooldownMs, 0);
|
|
assert.equal(after.testStatus, "credits_exhausted");
|
|
assert.ok(!after.rateLimitedUntil);
|
|
});
|
|
|
|
test("markAccountUnavailable treats API-key 403 as a recoverable cooldown", async () => {
|
|
await resetStorage();
|
|
|
|
const conn = await providersDb.createProviderConnection({
|
|
provider: "glm",
|
|
authType: "apikey",
|
|
apiKey: "sk-recoverable",
|
|
isActive: true,
|
|
testStatus: "active",
|
|
});
|
|
|
|
const result = await auth.markAccountUnavailable(
|
|
(conn as any).id,
|
|
403,
|
|
"forbidden",
|
|
"glm",
|
|
"glm-5.1"
|
|
);
|
|
const after = await providersDb.getProviderConnectionById((conn as any).id);
|
|
|
|
assert.equal(result.shouldFallback, true);
|
|
assert.ok(result.cooldownMs > 0);
|
|
assert.equal(after.testStatus, "unavailable");
|
|
assert.ok(after.rateLimitedUntil);
|
|
assert.equal(after.lastErrorType ?? null, null);
|
|
});
|
|
|
|
test("markAccountUnavailable keeps Grok Web alias 403 errors mode-local", async () => {
|
|
await resetStorage();
|
|
|
|
const conn = await providersDb.createProviderConnection({
|
|
provider: "grok-web",
|
|
authType: "cookie",
|
|
apiKey: "sso=grok-cookie",
|
|
isActive: true,
|
|
testStatus: "active",
|
|
});
|
|
|
|
const result = await auth.markAccountUnavailable(
|
|
(conn as any).id,
|
|
403,
|
|
"forbidden",
|
|
"gw",
|
|
"heavy"
|
|
);
|
|
const after = await providersDb.getProviderConnectionById((conn as any).id);
|
|
const lockout = accountFallback.getModelLockoutInfo("gw", (conn as any).id, "heavy");
|
|
|
|
assert.equal(result.shouldFallback, true);
|
|
assert.ok(result.cooldownMs > 0);
|
|
assert.equal(after.testStatus, "active");
|
|
assert.equal(after.lastErrorType, "forbidden");
|
|
assert.ok(!after.rateLimitedUntil);
|
|
assert.equal(lockout?.reason, "forbidden");
|
|
});
|
|
|
|
test("markAccountUnavailable keeps project-route 403 errors non-terminal", async () => {
|
|
await resetStorage();
|
|
|
|
const conn = await providersDb.createProviderConnection({
|
|
provider: "openai",
|
|
authType: "apikey",
|
|
apiKey: "sk-project-route",
|
|
isActive: true,
|
|
testStatus: "active",
|
|
});
|
|
|
|
const result = await auth.markAccountUnavailable(
|
|
(conn as any).id,
|
|
403,
|
|
"The service has not been used in project",
|
|
"openai",
|
|
"gpt-4.1"
|
|
);
|
|
const after = await providersDb.getProviderConnectionById((conn as any).id);
|
|
|
|
assert.equal(result.shouldFallback, true);
|
|
assert.equal(result.cooldownMs, 0);
|
|
assert.equal(after.testStatus, "active");
|
|
assert.equal(after.lastErrorType, "project_route_error");
|
|
assert.ok(!after.rateLimitedUntil);
|
|
});
|
|
|
|
test("markAccountUnavailable keeps oauth-invalid 401 errors non-terminal", async () => {
|
|
await resetStorage();
|
|
|
|
const conn = await providersDb.createProviderConnection({
|
|
provider: "openai",
|
|
authType: "apikey",
|
|
apiKey: "sk-oauth-invalid",
|
|
isActive: true,
|
|
testStatus: "active",
|
|
});
|
|
|
|
const result = await auth.markAccountUnavailable(
|
|
(conn as any).id,
|
|
401,
|
|
"Invalid authentication credentials provided",
|
|
"openai",
|
|
"gpt-4.1"
|
|
);
|
|
const after = await providersDb.getProviderConnectionById((conn as any).id);
|
|
|
|
assert.equal(result.shouldFallback, true);
|
|
assert.equal(result.cooldownMs, 0);
|
|
assert.equal(after.testStatus, "active");
|
|
assert.equal(after.lastErrorType, "oauth_invalid_token");
|
|
assert.ok(!after.rateLimitedUntil);
|
|
});
|