Spaces:
Runtime error
Runtime error
File size: 6,476 Bytes
cd8bd0a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 | 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 404 when no connection exists", async () => {
// Upstream port decolua/9router#336: 400 → 404 so combo routing can fall through.
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, 404);
const json = (await response.json()) as any;
assert.match(json.error.message, /No active credentials for provider/);
});
|