9993c96907
Move provider auth and OAuth flows onto pi-ai Models, compose models.json and extension overlays through ModelRuntime, and retain ModelRegistry as an extension compatibility facade.
445 lines
13 KiB
TypeScript
445 lines
13 KiB
TypeScript
import { afterEach, describe, expect, it, vi } from "vitest";
|
|
import { InMemoryCredentialStore } from "../src/auth/credential-store.ts";
|
|
import { githubCopilotOAuth } from "../src/auth/oauth/github-copilot.ts";
|
|
import { createModels } from "../src/models.ts";
|
|
import { githubCopilotProvider } from "../src/providers/github-copilot.ts";
|
|
|
|
function jsonResponse(body: unknown, status: number = 200): Response {
|
|
return new Response(JSON.stringify(body), {
|
|
status,
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
});
|
|
}
|
|
|
|
function getUrl(input: unknown): string {
|
|
if (typeof input === "string") {
|
|
return input;
|
|
}
|
|
if (input instanceof URL) {
|
|
return input.toString();
|
|
}
|
|
if (input instanceof Request) {
|
|
return input.url;
|
|
}
|
|
throw new Error(`Unsupported fetch input: ${String(input)}`);
|
|
}
|
|
|
|
function loginGitHubCopilotForTest(options: {
|
|
onDeviceCode(info: {
|
|
userCode: string;
|
|
verificationUri: string;
|
|
intervalSeconds?: number;
|
|
expiresInSeconds?: number;
|
|
}): void;
|
|
onPrompt(prompt: { message: string; placeholder?: string; allowEmpty?: boolean }): Promise<string>;
|
|
onProgress?(message: string): void;
|
|
signal?: AbortSignal;
|
|
}) {
|
|
return githubCopilotOAuth.login({
|
|
signal: options.signal,
|
|
prompt: (prompt) => {
|
|
if (prompt.type !== "text") throw new Error(`Unexpected prompt: ${prompt.type}`);
|
|
return options.onPrompt({ message: prompt.message, placeholder: prompt.placeholder, allowEmpty: true });
|
|
},
|
|
notify: (event) => {
|
|
if (event.type === "device_code") {
|
|
const { type: _, ...info } = event;
|
|
options.onDeviceCode(info);
|
|
}
|
|
if (event.type === "progress") options.onProgress?.(event.message);
|
|
},
|
|
});
|
|
}
|
|
|
|
describe("GitHub Copilot OAuth device flow", () => {
|
|
afterEach(() => {
|
|
vi.unstubAllGlobals();
|
|
vi.useRealTimers();
|
|
});
|
|
|
|
it("filters models to the authenticated account picker catalog", async () => {
|
|
const fetchMock = vi.fn(async (input: unknown, init?: RequestInit): Promise<Response> => {
|
|
const url = getUrl(input);
|
|
|
|
if (url.includes("/copilot_internal/v2/token")) {
|
|
return jsonResponse({
|
|
token: "tid=test;exp=9999999999;proxy-ep=proxy.individual.githubcopilot.com;",
|
|
expires_at: 9999999999,
|
|
});
|
|
}
|
|
|
|
if (url === "https://api.individual.githubcopilot.com/models") {
|
|
expect(init?.headers).toMatchObject({
|
|
Authorization: "Bearer tid=test;exp=9999999999;proxy-ep=proxy.individual.githubcopilot.com;",
|
|
});
|
|
return jsonResponse({
|
|
data: [
|
|
{
|
|
id: "gpt-4.1",
|
|
model_picker_enabled: true,
|
|
capabilities: { supports: { tool_calls: true } },
|
|
},
|
|
{
|
|
id: "claude-opus-4.7",
|
|
model_picker_enabled: true,
|
|
policy: { state: "disabled" },
|
|
capabilities: { supports: { tool_calls: true } },
|
|
},
|
|
{
|
|
id: "gpt-5.4-nano",
|
|
model_picker_enabled: false,
|
|
capabilities: { supports: { tool_calls: true } },
|
|
},
|
|
],
|
|
});
|
|
}
|
|
|
|
throw new Error(`Unexpected fetch URL: ${url}`);
|
|
});
|
|
|
|
vi.stubGlobal("fetch", fetchMock);
|
|
|
|
const credentials = await githubCopilotOAuth.refresh({
|
|
type: "oauth",
|
|
access: "old-access-token",
|
|
refresh: "ghu_refresh_token",
|
|
expires: 0,
|
|
});
|
|
expect(credentials.availableModelIds).toEqual(["gpt-4.1"]);
|
|
|
|
const store = new InMemoryCredentialStore();
|
|
await store.modify("github-copilot", async () => ({ ...credentials, type: "oauth" }));
|
|
const models = createModels({ credentials: store });
|
|
models.setProvider(githubCopilotProvider());
|
|
expect((await models.getAvailable("github-copilot")).map((model) => model.id)).toEqual(["gpt-4.1"]);
|
|
});
|
|
|
|
it("reports device-code details through onDeviceCode", async () => {
|
|
vi.useFakeTimers();
|
|
vi.setSystemTime(new Date("2026-03-09T00:00:00Z"));
|
|
|
|
const fetchMock = vi.fn(async (input: unknown): Promise<Response> => {
|
|
const url = getUrl(input);
|
|
|
|
if (url.endsWith("/login/device/code")) {
|
|
return jsonResponse({
|
|
device_code: "device-code",
|
|
user_code: "ABCD-EFGH",
|
|
verification_uri: "https://github.com/login/device",
|
|
interval: 1,
|
|
expires_in: 900,
|
|
});
|
|
}
|
|
|
|
if (url.endsWith("/login/oauth/access_token")) {
|
|
return jsonResponse({ access_token: "ghu_refresh_token" });
|
|
}
|
|
|
|
if (url.includes("/copilot_internal/v2/token")) {
|
|
return jsonResponse({
|
|
token: "tid=test;exp=9999999999;proxy-ep=proxy.individual.githubcopilot.com;",
|
|
expires_at: 9999999999,
|
|
});
|
|
}
|
|
|
|
if (url.endsWith("/models")) {
|
|
return jsonResponse({ data: [] });
|
|
}
|
|
|
|
if (url.includes("/models/") && url.endsWith("/policy")) {
|
|
return new Response("", { status: 200 });
|
|
}
|
|
|
|
throw new Error(`Unexpected fetch URL: ${url}`);
|
|
});
|
|
|
|
vi.stubGlobal("fetch", fetchMock);
|
|
|
|
const onDeviceCode = vi.fn();
|
|
const loginPromise = loginGitHubCopilotForTest({
|
|
onDeviceCode,
|
|
onPrompt: async () => "",
|
|
});
|
|
|
|
await vi.advanceTimersByTimeAsync(0);
|
|
|
|
expect(onDeviceCode).toHaveBeenCalledWith({
|
|
userCode: "ABCD-EFGH",
|
|
verificationUri: "https://github.com/login/device",
|
|
intervalSeconds: 1,
|
|
expiresInSeconds: 900,
|
|
});
|
|
await vi.advanceTimersByTimeAsync(1000);
|
|
await loginPromise;
|
|
});
|
|
|
|
it("rejects a non-http(s) verification_uri before it reaches onDeviceCode", async () => {
|
|
// A malicious enterprise OAuth server could return a verification_uri that
|
|
// the browser launcher would otherwise hand to the OS. Ensure such values
|
|
// are rejected at the deserialization boundary.
|
|
const fetchMock = vi.fn(async (input: unknown): Promise<Response> => {
|
|
const url = getUrl(input);
|
|
if (url.endsWith("/login/device/code")) {
|
|
return jsonResponse({
|
|
device_code: "device-code",
|
|
user_code: "ABCD-EFGH",
|
|
verification_uri: "$(id>/tmp/pwned)",
|
|
interval: 1,
|
|
expires_in: 900,
|
|
});
|
|
}
|
|
throw new Error(`Unexpected fetch URL: ${url}`);
|
|
});
|
|
|
|
vi.stubGlobal("fetch", fetchMock);
|
|
|
|
const onDeviceCode = vi.fn();
|
|
await expect(
|
|
loginGitHubCopilotForTest({
|
|
onDeviceCode,
|
|
onPrompt: async () => "",
|
|
}),
|
|
).rejects.toThrow(/Untrusted verification_uri/);
|
|
expect(onDeviceCode).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("normalizes verification_uri before it reaches onDeviceCode", async () => {
|
|
vi.useFakeTimers();
|
|
vi.setSystemTime(new Date("2026-03-09T00:00:00Z"));
|
|
|
|
const rawVerificationUri = "https://github.com/login/\x1b]8;;evil";
|
|
const normalizedVerificationUri = new URL(rawVerificationUri).href;
|
|
expect(normalizedVerificationUri).not.toBe(rawVerificationUri);
|
|
|
|
const fetchMock = vi.fn(async (input: unknown): Promise<Response> => {
|
|
const url = getUrl(input);
|
|
|
|
if (url.endsWith("/login/device/code")) {
|
|
return jsonResponse({
|
|
device_code: "device-code",
|
|
user_code: "ABCD-EFGH",
|
|
verification_uri: rawVerificationUri,
|
|
interval: 1,
|
|
expires_in: 900,
|
|
});
|
|
}
|
|
|
|
if (url.endsWith("/login/oauth/access_token")) {
|
|
return jsonResponse({ access_token: "ghu_refresh_token" });
|
|
}
|
|
|
|
if (url.includes("/copilot_internal/v2/token")) {
|
|
return jsonResponse({
|
|
token: "tid=test;exp=9999999999;proxy-ep=proxy.individual.githubcopilot.com;",
|
|
expires_at: 9999999999,
|
|
});
|
|
}
|
|
|
|
if (url.endsWith("/models")) {
|
|
return jsonResponse({ data: [] });
|
|
}
|
|
|
|
if (url.includes("/models/") && url.endsWith("/policy")) {
|
|
return new Response("", { status: 200 });
|
|
}
|
|
|
|
throw new Error(`Unexpected fetch URL: ${url}`);
|
|
});
|
|
|
|
vi.stubGlobal("fetch", fetchMock);
|
|
|
|
const onDeviceCode = vi.fn();
|
|
const loginPromise = loginGitHubCopilotForTest({
|
|
onDeviceCode,
|
|
onPrompt: async () => "",
|
|
});
|
|
|
|
await vi.advanceTimersByTimeAsync(0);
|
|
|
|
expect(onDeviceCode).toHaveBeenCalledWith({
|
|
userCode: "ABCD-EFGH",
|
|
verificationUri: normalizedVerificationUri,
|
|
intervalSeconds: 1,
|
|
expiresInSeconds: 900,
|
|
});
|
|
expect(onDeviceCode).not.toHaveBeenCalledWith(expect.objectContaining({ verificationUri: rawVerificationUri }));
|
|
|
|
await vi.advanceTimersByTimeAsync(1000);
|
|
await loginPromise;
|
|
});
|
|
|
|
it("waits before polling and increases the interval after slow_down", async () => {
|
|
vi.useFakeTimers();
|
|
const startTime = new Date("2026-03-09T00:00:00Z");
|
|
vi.setSystemTime(startTime);
|
|
|
|
const accessTokenPollTimes: number[] = [];
|
|
const accessTokenResponses = [
|
|
jsonResponse({ error: "authorization_pending", error_description: "pending" }),
|
|
jsonResponse({ error: "slow_down", error_description: "slow down", interval: 7 }),
|
|
jsonResponse({ access_token: "ghu_refresh_token" }),
|
|
];
|
|
|
|
const fetchMock = vi.fn(async (input: unknown, init?: RequestInit): Promise<Response> => {
|
|
const url = getUrl(input);
|
|
|
|
if (url.endsWith("/login/device/code")) {
|
|
expect(init?.method).toBe("POST");
|
|
expect(init?.headers).toMatchObject({
|
|
Accept: "application/json",
|
|
"Content-Type": "application/x-www-form-urlencoded",
|
|
});
|
|
expect(String(init?.body)).toContain("client_id=");
|
|
expect(String(init?.body)).toContain("scope=read%3Auser");
|
|
return jsonResponse({
|
|
device_code: "device-code",
|
|
user_code: "ABCD-EFGH",
|
|
verification_uri: "https://github.com/login/device",
|
|
interval: 5,
|
|
expires_in: 900,
|
|
});
|
|
}
|
|
|
|
if (url.endsWith("/login/oauth/access_token")) {
|
|
accessTokenPollTimes.push(Date.now());
|
|
expect(init?.method).toBe("POST");
|
|
expect(init?.headers).toMatchObject({
|
|
Accept: "application/json",
|
|
"Content-Type": "application/x-www-form-urlencoded",
|
|
});
|
|
expect(String(init?.body)).toContain("client_id=");
|
|
expect(String(init?.body)).toContain("device_code=device-code");
|
|
expect(String(init?.body)).toContain("grant_type=urn%3Aietf%3Aparams%3Aoauth%3Agrant-type%3Adevice_code");
|
|
const response = accessTokenResponses.shift();
|
|
if (!response) {
|
|
throw new Error("Unexpected extra access token poll");
|
|
}
|
|
return response;
|
|
}
|
|
|
|
if (url.includes("/copilot_internal/v2/token")) {
|
|
return jsonResponse({
|
|
token: "tid=test;exp=9999999999;proxy-ep=proxy.individual.githubcopilot.com;",
|
|
expires_at: 9999999999,
|
|
});
|
|
}
|
|
|
|
if (url.endsWith("/models")) {
|
|
return jsonResponse({ data: [] });
|
|
}
|
|
|
|
if (url.includes("/models/") && url.endsWith("/policy")) {
|
|
return new Response("", { status: 200 });
|
|
}
|
|
|
|
throw new Error(`Unexpected fetch URL: ${url}`);
|
|
});
|
|
|
|
vi.stubGlobal("fetch", fetchMock);
|
|
|
|
const loginPromise = loginGitHubCopilotForTest({
|
|
onDeviceCode: () => {},
|
|
onPrompt: async () => "",
|
|
onProgress: () => {},
|
|
});
|
|
|
|
await vi.advanceTimersByTimeAsync(0);
|
|
expect(accessTokenPollTimes).toHaveLength(0);
|
|
|
|
await vi.advanceTimersByTimeAsync(4999);
|
|
expect(accessTokenPollTimes).toHaveLength(0);
|
|
|
|
await vi.advanceTimersByTimeAsync(1);
|
|
expect(accessTokenPollTimes).toHaveLength(1);
|
|
|
|
await vi.advanceTimersByTimeAsync(4999);
|
|
expect(accessTokenPollTimes).toHaveLength(1);
|
|
|
|
await vi.advanceTimersByTimeAsync(1);
|
|
expect(accessTokenPollTimes).toHaveLength(2);
|
|
|
|
// slow_down carried a server-provided interval of 7 seconds.
|
|
await vi.advanceTimersByTimeAsync(6999);
|
|
expect(accessTokenPollTimes).toHaveLength(2);
|
|
|
|
await vi.advanceTimersByTimeAsync(1);
|
|
await loginPromise;
|
|
|
|
expect(accessTokenPollTimes).toEqual([
|
|
startTime.getTime() + 5000,
|
|
startTime.getTime() + 10000,
|
|
startTime.getTime() + 17000,
|
|
]);
|
|
});
|
|
|
|
it("times out after repeated slow_down responses", async () => {
|
|
vi.useFakeTimers();
|
|
const startTime = new Date("2026-03-09T00:00:00Z");
|
|
vi.setSystemTime(startTime);
|
|
|
|
const accessTokenPollTimes: number[] = [];
|
|
const accessTokenResponses = [
|
|
jsonResponse({ error: "slow_down", error_description: "slow down" }),
|
|
jsonResponse({ error: "slow_down", error_description: "still too fast" }),
|
|
jsonResponse({ error: "authorization_pending", error_description: "pending" }),
|
|
];
|
|
|
|
const fetchMock = vi.fn(async (input: unknown): Promise<Response> => {
|
|
const url = getUrl(input);
|
|
|
|
if (url.endsWith("/login/device/code")) {
|
|
return jsonResponse({
|
|
device_code: "device-code",
|
|
user_code: "ABCD-EFGH",
|
|
verification_uri: "https://github.com/login/device",
|
|
interval: 5,
|
|
expires_in: 25,
|
|
});
|
|
}
|
|
|
|
if (url.endsWith("/login/oauth/access_token")) {
|
|
accessTokenPollTimes.push(Date.now());
|
|
const response = accessTokenResponses.shift();
|
|
if (!response) {
|
|
throw new Error("Unexpected extra access token poll");
|
|
}
|
|
return response;
|
|
}
|
|
|
|
throw new Error(`Unexpected fetch URL: ${url}`);
|
|
});
|
|
|
|
vi.stubGlobal("fetch", fetchMock);
|
|
|
|
const loginPromise = loginGitHubCopilotForTest({
|
|
onDeviceCode: () => {},
|
|
onPrompt: async () => "",
|
|
});
|
|
const rejection = expect(loginPromise).rejects.toThrow(
|
|
/Device flow timed out after one or more slow_down responses/,
|
|
);
|
|
|
|
await vi.advanceTimersByTimeAsync(4999);
|
|
expect(accessTokenPollTimes).toEqual([]);
|
|
|
|
await vi.advanceTimersByTimeAsync(1);
|
|
expect(accessTokenPollTimes).toEqual([startTime.getTime() + 5000]);
|
|
|
|
await vi.advanceTimersByTimeAsync(9999);
|
|
expect(accessTokenPollTimes).toEqual([startTime.getTime() + 5000]);
|
|
|
|
await vi.advanceTimersByTimeAsync(1);
|
|
expect(accessTokenPollTimes).toEqual([startTime.getTime() + 5000, startTime.getTime() + 15000]);
|
|
|
|
await vi.advanceTimersByTimeAsync(9999);
|
|
expect(accessTokenPollTimes).toEqual([startTime.getTime() + 5000, startTime.getTime() + 15000]);
|
|
|
|
await vi.advanceTimersByTimeAsync(1);
|
|
await rejection;
|
|
|
|
expect(accessTokenPollTimes).toEqual([startTime.getTime() + 5000, startTime.getTime() + 15000]);
|
|
});
|
|
});
|