mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-19 11:08:37 +00:00
80 lines
2.7 KiB
TypeScript
80 lines
2.7 KiB
TypeScript
import fs from "node:fs/promises";
|
|
import path from "node:path";
|
|
import { describe, expect, it, vi } from "vitest";
|
|
import { DEFAULT_COPILOT_API_BASE_URL } from "../providers/github-copilot-token.js";
|
|
import { captureEnv } from "../test-utils/env.js";
|
|
import {
|
|
installModelsConfigTestHooks,
|
|
mockCopilotTokenExchangeSuccess,
|
|
withUnsetCopilotTokenEnv,
|
|
withModelsTempHome as withTempHome,
|
|
} from "./models-config.e2e-harness.js";
|
|
import { ensureOpenClawModelsJson } from "./models-config.js";
|
|
|
|
installModelsConfigTestHooks({ restoreFetch: true });
|
|
|
|
describe("models-config", () => {
|
|
it("falls back to default baseUrl when token exchange fails", async () => {
|
|
await withTempHome(async () => {
|
|
const envSnapshot = captureEnv(["COPILOT_GITHUB_TOKEN"]);
|
|
process.env.COPILOT_GITHUB_TOKEN = "gh-token";
|
|
const fetchMock = vi.fn().mockResolvedValue({
|
|
ok: false,
|
|
status: 500,
|
|
json: async () => ({ message: "boom" }),
|
|
});
|
|
globalThis.fetch = fetchMock as unknown as typeof fetch;
|
|
|
|
try {
|
|
await ensureOpenClawModelsJson({ models: { providers: {} } });
|
|
|
|
const agentDir = path.join(process.env.HOME ?? "", ".openclaw", "agents", "main", "agent");
|
|
const raw = await fs.readFile(path.join(agentDir, "models.json"), "utf8");
|
|
const parsed = JSON.parse(raw) as {
|
|
providers: Record<string, { baseUrl?: string }>;
|
|
};
|
|
|
|
expect(parsed.providers["github-copilot"]?.baseUrl).toBe(DEFAULT_COPILOT_API_BASE_URL);
|
|
} finally {
|
|
envSnapshot.restore();
|
|
}
|
|
});
|
|
});
|
|
|
|
it("uses agentDir override auth profiles for copilot injection", async () => {
|
|
await withTempHome(async (home) => {
|
|
await withUnsetCopilotTokenEnv(async () => {
|
|
mockCopilotTokenExchangeSuccess();
|
|
const agentDir = path.join(home, "agent-override");
|
|
await fs.mkdir(agentDir, { recursive: true });
|
|
await fs.writeFile(
|
|
path.join(agentDir, "auth-profiles.json"),
|
|
JSON.stringify(
|
|
{
|
|
version: 1,
|
|
profiles: {
|
|
"github-copilot:github": {
|
|
type: "token",
|
|
provider: "github-copilot",
|
|
token: "gh-profile-token",
|
|
},
|
|
},
|
|
},
|
|
null,
|
|
2,
|
|
),
|
|
);
|
|
|
|
await ensureOpenClawModelsJson({ models: { providers: {} } }, agentDir);
|
|
|
|
const raw = await fs.readFile(path.join(agentDir, "models.json"), "utf8");
|
|
const parsed = JSON.parse(raw) as {
|
|
providers: Record<string, { baseUrl?: string }>;
|
|
};
|
|
|
|
expect(parsed.providers["github-copilot"]?.baseUrl).toBe("https://api.copilot.example");
|
|
});
|
|
});
|
|
});
|
|
});
|