Files
openclaw/src/commands/zai-endpoint-detect.e2e.test.ts
2026-02-13 14:28:22 +00:00

67 lines
2.4 KiB
TypeScript

import { describe, expect, it } from "vitest";
import { detectZaiEndpoint } from "./zai-endpoint-detect.js";
function makeFetch(map: Record<string, { status: number; body?: unknown }>) {
return (async (url: string) => {
const entry = map[url];
if (!entry) {
throw new Error(`unexpected url: ${url}`);
}
const json = entry.body ?? {};
return new Response(JSON.stringify(json), {
status: entry.status,
headers: { "content-type": "application/json" },
});
}) as typeof fetch;
}
describe("detectZaiEndpoint", () => {
it("prefers global glm-5 when it works", async () => {
const fetchFn = makeFetch({
"https://api.z.ai/api/paas/v4/chat/completions": { status: 200 },
});
const detected = await detectZaiEndpoint({ apiKey: "sk-test", fetchFn });
expect(detected?.endpoint).toBe("global");
expect(detected?.modelId).toBe("glm-5");
});
it("falls back to cn glm-5 when global fails", async () => {
const fetchFn = makeFetch({
"https://api.z.ai/api/paas/v4/chat/completions": {
status: 404,
body: { error: { message: "not found" } },
},
"https://open.bigmodel.cn/api/paas/v4/chat/completions": { status: 200 },
});
const detected = await detectZaiEndpoint({ apiKey: "sk-test", fetchFn });
expect(detected?.endpoint).toBe("cn");
expect(detected?.modelId).toBe("glm-5");
});
it("falls back to coding endpoint with glm-4.7", async () => {
const fetchFn = makeFetch({
"https://api.z.ai/api/paas/v4/chat/completions": { status: 404 },
"https://open.bigmodel.cn/api/paas/v4/chat/completions": { status: 404 },
"https://api.z.ai/api/coding/paas/v4/chat/completions": { status: 200 },
});
const detected = await detectZaiEndpoint({ apiKey: "sk-test", fetchFn });
expect(detected?.endpoint).toBe("coding-global");
expect(detected?.modelId).toBe("glm-4.7");
});
it("returns null when nothing works", async () => {
const fetchFn = makeFetch({
"https://api.z.ai/api/paas/v4/chat/completions": { status: 401 },
"https://open.bigmodel.cn/api/paas/v4/chat/completions": { status: 401 },
"https://api.z.ai/api/coding/paas/v4/chat/completions": { status: 401 },
"https://open.bigmodel.cn/api/coding/paas/v4/chat/completions": { status: 401 },
});
const detected = await detectZaiEndpoint({ apiKey: "sk-test", fetchFn });
expect(detected).toBe(null);
});
});