114 lines
3.8 KiB
TypeScript
114 lines
3.8 KiB
TypeScript
import fs from "node:fs/promises";
|
|
import path from "node:path";
|
|
import { describe, expect, it } from "vitest";
|
|
import { resolveOpenClawAgentDir } from "./agent-paths.js";
|
|
import {
|
|
installModelsConfigTestHooks,
|
|
mockCopilotTokenExchangeSuccess,
|
|
withCopilotGithubToken,
|
|
withUnsetCopilotTokenEnv,
|
|
withModelsTempHome as withTempHome,
|
|
} from "./models-config.e2e-harness.js";
|
|
import { ensureOpenClawModelsJson } from "./models-config.js";
|
|
|
|
installModelsConfigTestHooks({ restoreFetch: true });
|
|
|
|
describe("models-config", () => {
|
|
it("uses the first github-copilot profile when env tokens are missing", async () => {
|
|
await withTempHome(async (home) => {
|
|
await withUnsetCopilotTokenEnv(async () => {
|
|
const fetchMock = mockCopilotTokenExchangeSuccess();
|
|
const agentDir = path.join(home, "agent-profiles");
|
|
await fs.mkdir(agentDir, { recursive: true });
|
|
await fs.writeFile(
|
|
path.join(agentDir, "auth-profiles.json"),
|
|
JSON.stringify(
|
|
{
|
|
version: 1,
|
|
profiles: {
|
|
"github-copilot:alpha": {
|
|
type: "token",
|
|
provider: "github-copilot",
|
|
token: "alpha-token",
|
|
},
|
|
"github-copilot:beta": {
|
|
type: "token",
|
|
provider: "github-copilot",
|
|
token: "beta-token",
|
|
},
|
|
},
|
|
},
|
|
null,
|
|
2,
|
|
),
|
|
);
|
|
|
|
await ensureOpenClawModelsJson({ models: { providers: {} } }, agentDir);
|
|
|
|
const [, opts] = fetchMock.mock.calls[0] as [string, { headers?: Record<string, string> }];
|
|
expect(opts?.headers?.Authorization).toBe("Bearer alpha-token");
|
|
});
|
|
});
|
|
});
|
|
|
|
it("does not override explicit github-copilot provider config", async () => {
|
|
await withTempHome(async () => {
|
|
await withCopilotGithubToken("gh-token", async () => {
|
|
await ensureOpenClawModelsJson({
|
|
models: {
|
|
providers: {
|
|
"github-copilot": {
|
|
baseUrl: "https://copilot.local",
|
|
api: "openai-responses",
|
|
models: [],
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
const agentDir = resolveOpenClawAgentDir();
|
|
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://copilot.local");
|
|
});
|
|
});
|
|
});
|
|
|
|
it("uses tokenRef env var when github-copilot profile omits plaintext token", async () => {
|
|
await withTempHome(async (home) => {
|
|
await withUnsetCopilotTokenEnv(async () => {
|
|
const fetchMock = mockCopilotTokenExchangeSuccess();
|
|
const agentDir = path.join(home, "agent-profiles");
|
|
await fs.mkdir(agentDir, { recursive: true });
|
|
process.env.COPILOT_REF_TOKEN = "token-from-ref-env";
|
|
await fs.writeFile(
|
|
path.join(agentDir, "auth-profiles.json"),
|
|
JSON.stringify(
|
|
{
|
|
version: 1,
|
|
profiles: {
|
|
"github-copilot:default": {
|
|
type: "token",
|
|
provider: "github-copilot",
|
|
tokenRef: { source: "env", provider: "default", id: "COPILOT_REF_TOKEN" },
|
|
},
|
|
},
|
|
},
|
|
null,
|
|
2,
|
|
),
|
|
);
|
|
|
|
await ensureOpenClawModelsJson({ models: { providers: {} } }, agentDir);
|
|
|
|
const [, opts] = fetchMock.mock.calls[0] as [string, { headers?: Record<string, string> }];
|
|
expect(opts?.headers?.Authorization).toBe("Bearer token-from-ref-env");
|
|
delete process.env.COPILOT_REF_TOKEN;
|
|
});
|
|
});
|
|
});
|
|
});
|