mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-09-14 19:02:17 +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.
191 lines
6.4 KiB
TypeScript
191 lines
6.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-llamacpp-"));
|
|
process.env.DATA_DIR = TEST_DATA_DIR;
|
|
process.env.REQUIRE_API_KEY = "false";
|
|
process.env.API_KEY_SECRET = process.env.API_KEY_SECRET || "test-llamacpp-secret";
|
|
process.env.OMNIROUTE_ALLOW_PRIVATE_PROVIDER_URLS = "true";
|
|
|
|
const core = await import("../../src/lib/db/core.ts");
|
|
const providersDb = await import("../../src/lib/db/providers.ts");
|
|
const { handleChat } = await import("../../src/sse/handlers/chat.ts");
|
|
const { initTranslators } = await import("../../open-sse/translator/index.ts");
|
|
const { clearInflight } = await import("../../open-sse/services/requestDedup.ts");
|
|
const { BaseExecutor } = await import("../../open-sse/executors/base.ts");
|
|
const { getCircuitBreaker, resetAllCircuitBreakers } =
|
|
await import("../../src/shared/utils/circuitBreaker.ts");
|
|
const { clearProviderFailure } = await import("../../open-sse/services/accountFallback.ts");
|
|
|
|
const originalFetch = globalThis.fetch;
|
|
const originalRetryDelayMs = BaseExecutor.RETRY_CONFIG.delayMs;
|
|
|
|
type FetchCall = {
|
|
url: string;
|
|
method?: string;
|
|
headers: Record<string, string>;
|
|
body: Record<string, any> | null;
|
|
};
|
|
|
|
function toPlainHeaders(headers: HeadersInit | undefined | null) {
|
|
if (!headers) return {};
|
|
if (headers instanceof Headers) return Object.fromEntries(headers.entries());
|
|
if (Array.isArray(headers)) return Object.fromEntries(headers);
|
|
return Object.fromEntries(
|
|
Object.entries(headers).map(([key, value]) => [key, value == null ? "" : String(value)])
|
|
);
|
|
}
|
|
|
|
function buildRequest({
|
|
url = "http://localhost/v1/chat/completions",
|
|
body,
|
|
headers = {},
|
|
}: {
|
|
url?: string;
|
|
body?: unknown;
|
|
headers?: Record<string, string>;
|
|
} = {}) {
|
|
return new Request(url, {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json", ...headers },
|
|
body: JSON.stringify(body),
|
|
});
|
|
}
|
|
|
|
function buildLlamaResponse(text: string, model: string) {
|
|
return new Response(
|
|
JSON.stringify({
|
|
id: "chatcmpl-llamacpp",
|
|
object: "chat.completion",
|
|
model,
|
|
choices: [
|
|
{
|
|
index: 0,
|
|
message: { role: "assistant", content: text },
|
|
finish_reason: "stop",
|
|
},
|
|
],
|
|
usage: { prompt_tokens: 10, completion_tokens: 5, total_tokens: 15 },
|
|
}),
|
|
{ status: 200, headers: { "Content-Type": "application/json" } }
|
|
);
|
|
}
|
|
|
|
test.beforeEach(async () => {
|
|
BaseExecutor.RETRY_CONFIG.delayMs = 0;
|
|
clearInflight();
|
|
resetAllCircuitBreakers();
|
|
core.resetDbInstance();
|
|
await initTranslators();
|
|
});
|
|
|
|
test.afterEach(() => {
|
|
globalThis.fetch = originalFetch;
|
|
BaseExecutor.RETRY_CONFIG.delayMs = originalRetryDelayMs;
|
|
clearInflight();
|
|
resetAllCircuitBreakers();
|
|
core.resetDbInstance();
|
|
fs.rmSync(TEST_DATA_DIR, { recursive: true, force: true, maxRetries: 5, retryDelay: 100 });
|
|
fs.mkdirSync(TEST_DATA_DIR, { recursive: true });
|
|
});
|
|
|
|
test("llama-cpp provider: routes request to custom baseUrl with no auth header", async () => {
|
|
await providersDb.createProviderConnection({
|
|
provider: "llama-cpp",
|
|
authType: "apikey",
|
|
name: "llama-cpp-primary",
|
|
apiKey: null,
|
|
isActive: true,
|
|
testStatus: "active",
|
|
providerSpecificData: { baseUrl: "http://localhost:10965/v1" },
|
|
});
|
|
|
|
const fetchCalls: FetchCall[] = [];
|
|
|
|
globalThis.fetch = async (url, init: RequestInit = {}) => {
|
|
fetchCalls.push({
|
|
url: String(url),
|
|
method: init.method || "GET",
|
|
headers: toPlainHeaders(init.headers),
|
|
body: init.body ? JSON.parse(String(init.body)) : null,
|
|
});
|
|
return buildLlamaResponse("Why did the programmer go broke? Because he used up all his cache!", "unsloth/gemma-4-26B-A4B-it-GGUF:UD-IQ2_M");
|
|
};
|
|
|
|
const response = await handleChat(
|
|
buildRequest({
|
|
body: {
|
|
model: "llamacpp/unsloth/gemma-4-26B-A4B-it-GGUF:UD-IQ2_M",
|
|
stream: false,
|
|
messages: [{ role: "user", content: "Tell me a joke." }],
|
|
},
|
|
})
|
|
);
|
|
|
|
const json = (await response.json()) as any;
|
|
|
|
assert.equal(response.status, 200);
|
|
assert.equal(fetchCalls.length, 1, "should make exactly one upstream call");
|
|
|
|
const upstream = fetchCalls[0];
|
|
assert.match(upstream.url, /^http:\/\/localhost:10965\/v1\/chat\/completions$/);
|
|
assert.equal(upstream.headers.Authorization, undefined, "no auth header for local provider");
|
|
assert.equal(upstream.body.messages[0].content, "Tell me a joke.");
|
|
assert.equal(upstream.body.model, "unsloth/gemma-4-26B-A4B-it-GGUF:UD-IQ2_M");
|
|
assert.equal(json.choices[0].message.content, "Why did the programmer go broke? Because he used up all his cache!");
|
|
});
|
|
|
|
test("llama-cpp provider: alias matching works via model catalog prefix", async () => {
|
|
await providersDb.createProviderConnection({
|
|
provider: "llama-cpp",
|
|
authType: "apikey",
|
|
name: "llama-cpp-secondary",
|
|
apiKey: null,
|
|
isActive: true,
|
|
testStatus: "active",
|
|
providerSpecificData: { baseUrl: "http://localhost:10965/v1" },
|
|
});
|
|
|
|
const fetchCalls: FetchCall[] = [];
|
|
|
|
globalThis.fetch = async (url, init: RequestInit = {}) => {
|
|
fetchCalls.push({ url: String(url), method: init.method, headers: toPlainHeaders(init.headers), body: init.body ? JSON.parse(String(init.body)) : null });
|
|
return buildLlamaResponse("42", "unsloth/gemma-4-26B-A4B-it-GGUF:UD-IQ2_M");
|
|
};
|
|
|
|
const response = await handleChat(
|
|
buildRequest({
|
|
body: {
|
|
model: "llamacpp/unsloth/gemma-4-26B-A4B-it-GGUF:UD-IQ2_M",
|
|
stream: false,
|
|
messages: [{ role: "user", content: "What is the answer?" }],
|
|
},
|
|
})
|
|
);
|
|
|
|
const json = (await response.json()) as any;
|
|
assert.equal(response.status, 200, `expected 200, got ${response.status}: ${JSON.stringify(json)}`);
|
|
assert.equal(json.choices[0].message.content, "42");
|
|
});
|
|
|
|
test("llama-cpp provider: returns 401 when no connection exists", async () => {
|
|
// Upstream port decolua/9router#336: 400 → 404 so combo routing can fall through.
|
|
// #10797: single-model (non-combo) no-credentials now remaps 404 → 401.
|
|
const response = await handleChat(
|
|
buildRequest({
|
|
body: {
|
|
model: "llamacpp/unsloth/gemma-4-26B-A4B-it-GGUF:UD-IQ2_M",
|
|
stream: false,
|
|
messages: [{ role: "user", content: "test" }],
|
|
},
|
|
})
|
|
);
|
|
|
|
assert.equal(response.status, 401);
|
|
const json = (await response.json()) as any;
|
|
assert.match(json.error.message, /No active credentials for provider/);
|
|
});
|