Files
OmniRoute/tests/integration/llama-cpp-provider.test.ts
Praveen K Palaniswamy 65e81158ab fix(ollama): route models by advertised capability (#11088)
Landed with the design call resolved per the owner's pick — **option 1**: the synced store is now endpoint-agnostic (persistDiscoveredModels and managedModelImport no longer drop non-chat models at write time), and chat selectability moved to read time (auto-pool expansion in autoStrategy applies filterChatSelectableModels; the models-route projection already had its chatOnly filter). Your discovery test now passes end-to-end (3/3): /api/show capabilities persist per connection and image/embedding requests route through the advertising host.

Reconciliation notes: conflicted areas merged onto the current tip (adobe discovery import, requestedModel preflight signature, resolvedProvider fast-path coexists with the synced-route override — explicit resolution wins); carried base-red drains (#10055 memoization, #11071 test variants) dropped as already-landed; the managed-model-import exclusion test was propagated to the new contract (image/video models persist; the read filter still hides them from chat pickers — pinned by a new assertion). Full battery: 205/206 focused (the one red is a confirmed periodic-timer timing flake on the loaded devbox — 20/20 isolated), autoCombo vitest 30/30, combo suites 46/46, gates + typecheck clean.

Thank you @yourspraveen — the capability probe + routing design was right; it just needed the store contract opened up. Fixes #11087.
2026-08-23 11:45:01 -03:00

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 });
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/);
});