73 lines
2.6 KiB
TypeScript
73 lines
2.6 KiB
TypeScript
import fs from "node:fs/promises";
|
|
import path from "node:path";
|
|
import { describe, expect, it, vi } from "vitest";
|
|
import { captureEnv } from "../test-utils/env.js";
|
|
import {
|
|
installModelsConfigTestHooks,
|
|
withModelsTempHome as withTempHome,
|
|
} from "./models-config.e2e-harness.js";
|
|
import { ensureOpenClawModelsJson } from "./models-config.js";
|
|
|
|
installModelsConfigTestHooks({ restoreFetch: true });
|
|
|
|
describe("models-config", () => {
|
|
it("auto-injects github-copilot provider when token is present", async () => {
|
|
await withTempHome(async (home) => {
|
|
const envSnapshot = captureEnv(["COPILOT_GITHUB_TOKEN"]);
|
|
process.env.COPILOT_GITHUB_TOKEN = "gh-token";
|
|
const fetchMock = vi.fn().mockResolvedValue({
|
|
ok: true,
|
|
status: 200,
|
|
json: async () => ({
|
|
token: "copilot-token;proxy-ep=proxy.copilot.example",
|
|
expires_at: Math.floor(Date.now() / 1000) + 3600,
|
|
}),
|
|
});
|
|
globalThis.fetch = fetchMock as unknown as typeof fetch;
|
|
|
|
try {
|
|
const agentDir = path.join(home, "agent-default-base-url");
|
|
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; models?: unknown[] }>;
|
|
};
|
|
|
|
expect(parsed.providers["github-copilot"]?.baseUrl).toBe("https://api.copilot.example");
|
|
expect(parsed.providers["github-copilot"]?.models?.length ?? 0).toBe(0);
|
|
} finally {
|
|
envSnapshot.restore();
|
|
}
|
|
});
|
|
});
|
|
|
|
it("prefers COPILOT_GITHUB_TOKEN over GH_TOKEN and GITHUB_TOKEN", async () => {
|
|
await withTempHome(async () => {
|
|
const envSnapshot = captureEnv(["COPILOT_GITHUB_TOKEN", "GH_TOKEN", "GITHUB_TOKEN"]);
|
|
process.env.COPILOT_GITHUB_TOKEN = "copilot-token";
|
|
process.env.GH_TOKEN = "gh-token";
|
|
process.env.GITHUB_TOKEN = "github-token";
|
|
|
|
const fetchMock = vi.fn().mockResolvedValue({
|
|
ok: true,
|
|
status: 200,
|
|
json: async () => ({
|
|
token: "copilot-token;proxy-ep=proxy.copilot.example",
|
|
expires_at: Math.floor(Date.now() / 1000) + 3600,
|
|
}),
|
|
});
|
|
globalThis.fetch = fetchMock as unknown as typeof fetch;
|
|
|
|
try {
|
|
await ensureOpenClawModelsJson({ models: { providers: {} } });
|
|
|
|
const [, opts] = fetchMock.mock.calls[0] as [string, { headers?: Record<string, string> }];
|
|
expect(opts?.headers?.Authorization).toBe("Bearer copilot-token");
|
|
} finally {
|
|
envSnapshot.restore();
|
|
}
|
|
});
|
|
});
|
|
});
|