mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-09-15 11:22:15 +03:00
* test(infra): retry recursive temp-dir removal on main (main twin of #11968)
`main` has been red since b342c1a361 on the vitest and integration gates:
✖ tests/unit/autoCombo/provider-family-combos.test.ts > auto/<family>
✖ chat pipeline applies Codex OAuth fingerprint and priority tier inside combos
Both call resetStorage() from beforeEach, which does an fs.rmSync(TEST_DATA_DIR,
{recursive: true, force: true}) with no retry, and intermittently loses the race
with a not-yet-released SQLite handle (ENOTEMPTY).
release/v3.8.51 fixed this in #11968 with a mechanical codemod adding
maxRetries/retryDelay to every recursive rm/rmSync/rmdirSync under tests/, but
that PR landed only on the release branch. Because main only receives work at
the release squash, it stayed broken for the whole cycle — and repo-wide gates
then turn every open PR into main red on checks unrelated to their diff.
This is the --base main twin: re-runs the same codemod that already shipped on
the release branch (scripts/ad-hoc/codemod-rm-maxretries.mjs), so the two
branches converge on identical test-teardown semantics. Test-only; no product
logic is touched.
The remaining three failures reported on #12133 (unit full suite exceeding its
4800s ceiling, package-artifact exceeding 1200s, and the boot-smoke that is
skipped as a consequence) are runner-contention timeouts, not code defects —
validate-release-green.mjs runs those heavy gates concurrently on one shared
hosted runner. There is no fix to port for those.
* chore(scripts): carry the rm-maxretries codemod onto main alongside its output
The codemod that generated the previous commit lives in the repo on
release/v3.8.51 (added by #11968) but was never on main. Bringing it over keeps
the tool next to the change it produced, so the transformation stays
reproducible and auditable from either branch.
141 lines
5.4 KiB
TypeScript
141 lines
5.4 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-aihorde-key-"));
|
|
process.env.DATA_DIR = TEST_DATA_DIR;
|
|
process.env.API_KEY_SECRET = process.env.API_KEY_SECRET || "aihorde-optional-key-test-secret";
|
|
|
|
const core = await import("../../src/lib/db/core.ts");
|
|
const providersDb = await import("../../src/lib/db/providers.ts");
|
|
const { getProviderCredentials } = await import("../../src/sse/services/auth.ts");
|
|
const { supportsApiKeyOnFreeProvider, providerAllowsOptionalApiKey } =
|
|
await import("../../src/shared/constants/providers.ts");
|
|
const { getCredentialRequirement } =
|
|
await import("../../src/shared/utils/providerCredentialRequirement.ts");
|
|
const { DefaultExecutor } = await import("../../open-sse/executors/default.ts");
|
|
const { isManagedProviderConnectionId } = await import("../../src/lib/providers/catalog.ts");
|
|
|
|
test.after(() => {
|
|
core.resetDbInstance();
|
|
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
|
|
});
|
|
|
|
test("aihorde treats a registered key as optional, not required", () => {
|
|
assert.equal(providerAllowsOptionalApiKey("aihorde"), true);
|
|
assert.equal(supportsApiKeyOnFreeProvider("aihorde"), true);
|
|
assert.equal(getCredentialRequirement("aihorde"), "optional");
|
|
assert.equal(isManagedProviderConnectionId("aihorde"), true);
|
|
});
|
|
|
|
test("aihorde without a stored key still uses the synthetic no-auth path", async () => {
|
|
const creds = await getProviderCredentials("aihorde");
|
|
assert.ok(creds);
|
|
assert.equal((creds as { connectionId?: string }).connectionId, "noauth");
|
|
assert.equal((creds as { apiKey?: unknown }).apiKey, null);
|
|
});
|
|
|
|
let registeredKeyConnectionId: string | undefined;
|
|
|
|
test("aihorde prefers a stored API key over the anonymous fallback", async () => {
|
|
const created = await providersDb.createProviderConnection({
|
|
provider: "aihorde",
|
|
authType: "apikey",
|
|
name: "Horde kudos key",
|
|
apiKey: "horde-registered-key-123",
|
|
});
|
|
assert.ok(created?.id);
|
|
registeredKeyConnectionId = created.id;
|
|
|
|
const creds = await getProviderCredentials("aihorde");
|
|
assert.ok(creds);
|
|
assert.equal((creds as { apiKey?: string }).apiKey, "horde-registered-key-123");
|
|
assert.equal((creds as { connectionId?: string }).connectionId, created.id);
|
|
});
|
|
|
|
test("aihorde falls back to anonymous when the only stored key is rate-limited", async () => {
|
|
// Deactivate the healthy connection from the prior test so it cannot mask
|
|
// the fallback behavior being exercised here.
|
|
assert.ok(registeredKeyConnectionId);
|
|
await providersDb.updateProviderConnection(registeredKeyConnectionId, { isActive: false });
|
|
|
|
const created = await providersDb.createProviderConnection({
|
|
provider: "aihorde",
|
|
authType: "apikey",
|
|
name: "Horde cooling-down key",
|
|
apiKey: "horde-cooling-down-key",
|
|
});
|
|
assert.ok(created?.id);
|
|
await providersDb.updateProviderConnection(created.id, {
|
|
rateLimitedUntil: new Date(Date.now() + 60_000).toISOString(),
|
|
testStatus: "unavailable",
|
|
});
|
|
|
|
const creds = await getProviderCredentials("aihorde");
|
|
assert.ok(creds);
|
|
assert.equal((creds as { connectionId?: string }).connectionId, "noauth");
|
|
assert.equal((creds as { apiKey?: unknown }).apiKey, null);
|
|
});
|
|
|
|
test("aihorde falls back to anonymous when the only stored key is terminally banned", async () => {
|
|
const created = await providersDb.createProviderConnection({
|
|
provider: "aihorde",
|
|
authType: "apikey",
|
|
name: "Horde banned key",
|
|
apiKey: "horde-banned-key",
|
|
});
|
|
assert.ok(created?.id);
|
|
await providersDb.updateProviderConnection(created.id, { testStatus: "banned" });
|
|
|
|
const creds = await getProviderCredentials("aihorde");
|
|
assert.ok(creds);
|
|
assert.equal((creds as { connectionId?: string }).connectionId, "noauth");
|
|
assert.equal((creds as { apiKey?: unknown }).apiKey, null);
|
|
});
|
|
|
|
test("aihorde rotates past an unhealthy stored key to the next healthy one", async () => {
|
|
const unhealthy = await providersDb.createProviderConnection({
|
|
provider: "aihorde",
|
|
authType: "apikey",
|
|
name: "Horde unhealthy key",
|
|
apiKey: "horde-unhealthy-key",
|
|
priority: 1,
|
|
});
|
|
assert.ok(unhealthy?.id);
|
|
await providersDb.updateProviderConnection(unhealthy.id, {
|
|
rateLimitedUntil: new Date(Date.now() + 60_000).toISOString(),
|
|
testStatus: "unavailable",
|
|
});
|
|
|
|
const healthy = await providersDb.createProviderConnection({
|
|
provider: "aihorde",
|
|
authType: "apikey",
|
|
name: "Horde healthy key",
|
|
apiKey: "horde-healthy-key",
|
|
priority: 2,
|
|
});
|
|
assert.ok(healthy?.id);
|
|
|
|
const creds = await getProviderCredentials("aihorde");
|
|
assert.ok(creds);
|
|
assert.equal((creds as { apiKey?: string }).apiKey, "horde-healthy-key");
|
|
assert.equal((creds as { connectionId?: string }).connectionId, healthy.id);
|
|
});
|
|
|
|
test("DefaultExecutor uses a stored Horde key for chat, else the anonymous key", () => {
|
|
const executor = new DefaultExecutor("aihorde");
|
|
const withKey = executor.buildHeaders(
|
|
{ apiKey: "horde-registered-key-123", accessToken: null } as never,
|
|
true
|
|
) as Record<string, string>;
|
|
assert.equal(withKey.Authorization, "Bearer horde-registered-key-123");
|
|
|
|
const anonymous = executor.buildHeaders(
|
|
{ apiKey: null, accessToken: null } as never,
|
|
true
|
|
) as Record<string, string>;
|
|
assert.equal(anonymous.Authorization, "Bearer 0000000000");
|
|
});
|