import test from "node:test"; import assert from "node:assert/strict"; const { grokCli } = await import("../../src/lib/oauth/providers/grok-cli.ts"); const { GrokCliExecutor } = await import("@omniroute/open-sse/executors/grok-cli"); const { getGrokBuildClientVersion } = await import("@omniroute/open-sse/config/grokBuild.ts"); const { resolvePublicCred } = await import("@omniroute/open-sse/utils/publicCreds"); test("Grok Build OAuth Provider - config", () => { assert.ok(grokCli.config.clientId, "clientId should be defined"); // The public client_id must come from the embedded default (Hard Rule #11), // not a string literal — assert it matches resolvePublicCred("grok_id"). assert.equal( grokCli.config.clientId, resolvePublicCred("grok_id", "GROK_OAUTH_CLIENT_ID"), "clientId must resolve from the embedded grok_id default" ); assert.equal(grokCli.config.tokenUrl, "https://auth.x.ai/oauth2/token"); assert.equal(getGrokBuildClientVersion(), "0.2.106"); }); test("publicCreds: grok_id embedded default is present and decodes", () => { const decoded = resolvePublicCred("grok_id"); assert.ok(decoded.length > 0, "grok_id must decode to a non-empty client id"); }); // #7013 (reworked): grok-cli now ships a browser PKCE flow ALONGSIDE the // pre-existing device_code flow (#7358) and paste-token import — all three // coexist under one registry entry instead of the browser flow replacing // device_code. flowType stays "device_code" so it remains the DEFAULT/primary // method in OAuthModal.tsx and route.ts's device-code/poll action family; // supportsBrowserPkce is the capability marker providers.ts::generateAuthData // and route.ts's exchange codeVerifier guard check to also build/require PKCE // for the browser method. requestDeviceCode/pollToken are restored (see // coexistence assertions below); mapTokens still auto-detects and handles // pasted-token input (see tests below) and the browser-flow OAuth-token shape // (`access_token`+`id_token`) is covered in tests/unit/oauth-grok-cli-browser.test.ts, // which asserts that exact shape dispatches through mapGrokBuildBrowserTokens // (grok-cli-oauth.ts). test("Grok Build OAuth Provider - flowType stays device_code (primary, #7358) with browser PKCE alongside (#7013)", () => { assert.equal(grokCli.flowType, "device_code"); assert.equal(grokCli.supportsBrowserPkce, true); assert.equal(grokCli.config.scope, "openid profile email offline_access grok-cli:access"); }); // #7013 rework coexistence guard: BOTH flows' handlers must be present on the // single grok-cli registry entry — losing either one silently breaks either // the device-code panel (OAuthModal.tsx DEVICE_CODE_PROVIDERS) or the browser // PKCE login (PKCE_CALLBACK_SERVER_PROVIDERS / providers.ts::generateAuthData). test("Grok Build OAuth Provider - device_code AND browser PKCE handlers coexist (#7013)", () => { assert.equal(typeof grokCli.requestDeviceCode, "function", "requestDeviceCode must be present"); assert.equal(typeof grokCli.pollToken, "function", "pollToken must be present"); assert.equal(typeof grokCli.buildAuthUrl, "function", "buildAuthUrl must be present"); assert.equal(typeof grokCli.exchangeToken, "function", "exchangeToken must be present"); assert.equal(typeof grokCli.mapTokens, "function", "mapTokens must be present"); assert.equal(grokCli.pkceVerifierBytes, 96); }); test("Grok Build OAuth Provider - mapTokens from raw JWT", () => { // Create a valid JWT with base64url-encoded payload const payload = { sub: "12345", email: "test@example.com", team_id: "team-67890", tier: 1 }; const payloadBase64 = Buffer.from(JSON.stringify(payload)).toString("base64url"); const mockJwt = `eyJhbGciOiJFUzI1NiJ9.${payloadBase64}.signature`; const result = grokCli.mapTokens(mockJwt, null); assert.equal(result.accessToken, mockJwt); assert.equal(result.refreshToken, null); assert.equal(result.email, "test@example.com"); assert.equal(result.expiresIn, 21600); assert.equal(result.providerSpecificData?.userId, "12345"); assert.equal(result.providerSpecificData?.teamId, "team-67890"); assert.equal(result.providerSpecificData?.tier, 1); }); test("Grok Build OAuth Provider - mapTokens from auth.json", () => { const authJson = { "https://auth.x.ai::clientId": { key: "eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InRlc3RAZXhhbXBsZS5jb20ifQ.signature", refresh_token: "test-refresh-token", }, }; const result = grokCli.mapTokens(authJson, null); assert.ok(result.accessToken.includes("eyJ"), "accessToken should be JWT"); assert.equal(result.refreshToken, "test-refresh-token"); assert.equal(result.email, "test@example.com"); }); test("Grok Build OAuth Provider - mapTokens from empty string", () => { const result = grokCli.mapTokens("", null); assert.equal(result.accessToken, ""); }); test("Grok Build OAuth Provider - mapTokens from object with accessToken", () => { const input = { accessToken: "direct-token" }; const result = grokCli.mapTokens(input, null); assert.equal(result.accessToken, "direct-token"); }); test("Grok Build OAuth Provider - mapTokens from route-wrapped auth.json", () => { // The route handler wraps the token: { accessToken: }. // This simulates what the import-token endpoint passes to mapTokens. const authJson = { "https://auth.x.ai::b1a00492-073a-47ea-816f-4c329264a828": { key: "eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InRlc3RAZXhhbXBsZS5jb20ifQ.signature", refresh_token: "test-refresh-token-wrapped", expires_at: "2026-12-31T00:00:00Z", }, }; const wrapped = { accessToken: authJson }; const result = grokCli.mapTokens(wrapped, null); assert.ok( result.accessToken.startsWith("eyJ"), "accessToken should be JWT from wrapped auth.json" ); assert.equal(result.refreshToken, "test-refresh-token-wrapped"); assert.equal(result.email, "test@example.com"); assert.ok(result.providerSpecificData?.rawAuthJson, "rawAuthJson should be populated"); assert.deepEqual( result.providerSpecificData?.rawAuthJson, authJson, "rawAuthJson should equal the original auth.json" ); }); test("Grok Build OAuth Provider - mapTokens from direct auth.json has rawAuthJson", () => { const authJson = { "https://auth.x.ai::clientId": { key: "eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InRlc3RAZXhhbXBsZS5jb20ifQ.signature", refresh_token: "direct-refresh", }, }; const result = grokCli.mapTokens(authJson, null); assert.ok(result.accessToken.startsWith("eyJ")); assert.equal(result.refreshToken, "direct-refresh"); assert.deepEqual(result.providerSpecificData?.rawAuthJson, authJson); }); test("Grok Build OAuth Provider - prefers the active issuer/client auth.json scope", () => { const otherPayload = Buffer.from(JSON.stringify({ email: "other@example.com" })).toString( "base64url" ); const preferredPayload = Buffer.from(JSON.stringify({ email: "preferred@example.com" })).toString( "base64url" ); const authJson = { "https://auth.x.ai::other-client": { key: `eyJhbGciOiJFUzI1NiJ9.${otherPayload}.signature`, refresh_token: "other-refresh", }, [`https://auth.x.ai::${grokCli.config.clientId}`]: { key: `eyJhbGciOiJFUzI1NiJ9.${preferredPayload}.signature`, refresh_token: "preferred-refresh", }, }; const result = grokCli.mapTokens(authJson, null); assert.equal(result.email, "preferred@example.com"); assert.equal(result.refreshToken, "preferred-refresh"); }); test("Grok Build OAuth Provider - mapTokens from raw JWT has no rawAuthJson", () => { const payload = { sub: "12345", email: "test@example.com" }; const payloadBase64 = Buffer.from(JSON.stringify(payload)).toString("base64url"); const mockJwt = `eyJhbGciOiJFUzI1NiJ9.${payloadBase64}.signature`; const result = grokCli.mapTokens(mockJwt, null); assert.equal(result.accessToken, mockJwt); assert.equal(result.refreshToken, null); assert.equal(result.providerSpecificData?.rawAuthJson, undefined); }); test("Grok Build OAuth Provider - mapTokens extracts expiresIn from JWT exp (dynamic)", () => { const futureSec = Math.floor(Date.now() / 1000) + 1200; // 20 minutes from now const payload = { sub: "12345", email: "test@example.com", exp: futureSec }; const payloadBase64 = Buffer.from(JSON.stringify(payload)).toString("base64url"); const mockJwt = `eyJhbGciOiJFUzI1NiJ9.${payloadBase64}.signature`; const result = grokCli.mapTokens(mockJwt, null); assert.ok(result.expiresIn > 0); assert.ok(Math.abs(result.expiresIn - 1200) <= 2); }); test("Grok Build OAuth Provider - mapTokens extracts expiresIn from JSON expires_at (dynamic)", () => { const futureDateStr = new Date(Date.now() + 1800 * 1000).toISOString(); // 30 minutes from now const authJson = { "https://auth.x.ai::clientId": { key: "eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InRlc3RAZXhhbXBsZS5jb20ifQ.signature", refresh_token: "test-refresh-token", expires_at: futureDateStr, }, }; const result = grokCli.mapTokens(authJson, null); assert.ok(result.expiresIn > 0); assert.ok(Math.abs(result.expiresIn - 1800) <= 2); }); test("Grok Build OAuth Provider - mapTokens falls back to 21600 if no exp or expires_at", () => { const payload = { sub: "12345", email: "test@example.com" }; const payloadBase64 = Buffer.from(JSON.stringify(payload)).toString("base64url"); const mockJwt = `eyJhbGciOiJFUzI1NiJ9.${payloadBase64}.signature`; const result = grokCli.mapTokens(mockJwt, null); assert.equal(result.expiresIn, 21600); }); // #5775 follow-up: an already-expired token must NOT produce a negative expiresIn. // A negative value is truthy in the import-token route (route.ts), yielding a PAST // expiresAt that AutoCombo (virtualFactory.ts) reads as "already expired" and excludes // the connection immediately — instead of clamping to a tiny positive TTL so the token // is treated as due-for-refresh. Clamp with Math.max(1, …). test("Grok Build OAuth Provider - mapTokens clamps expired JWT exp to a positive expiresIn", () => { const pastSec = Math.floor(Date.now() / 1000) - 3600; // expired 1h ago const payload = { sub: "12345", email: "test@example.com", exp: pastSec }; const payloadBase64 = Buffer.from(JSON.stringify(payload)).toString("base64url"); const mockJwt = `eyJhbGciOiJFUzI1NiJ9.${payloadBase64}.signature`; const result = grokCli.mapTokens(mockJwt, null); assert.ok(result.expiresIn >= 1, `expected expiresIn >= 1, got ${result.expiresIn}`); }); test("Grok Build OAuth Provider - mapTokens clamps expired JSON expires_at to a positive expiresIn", () => { const pastDateStr = new Date(Date.now() - 3600 * 1000).toISOString(); // expired 1h ago const authJson = { "https://auth.x.ai::clientId": { key: "eyJhbGciOiJFUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InRlc3RAZXhhbXBsZS5jb20ifQ.signature", refresh_token: "test-refresh-token", expires_at: pastDateStr, }, }; const result = grokCli.mapTokens(authJson, null); assert.ok(result.expiresIn >= 1, `expected expiresIn >= 1, got ${result.expiresIn}`); }); test("Grok Build executor refresh forwards principal metadata and preserves token rotation", async (t) => { const originalFetch = globalThis.fetch; t.after(() => { globalThis.fetch = originalFetch; }); let requestUrl = ""; let requestInit: RequestInit | undefined; globalThis.fetch = (async (input, init) => { requestUrl = String(input); requestInit = init; return new Response( JSON.stringify({ access_token: "new-access-token", refresh_token: "rotated-refresh-token", expires_in: 900, }), { status: 200, headers: { "Content-Type": "application/json" } } ); }) as typeof fetch; const result = await new GrokCliExecutor().refreshCredentials({ refreshToken: "old-refresh-token", providerSpecificData: { principalType: "Team", principalId: "team-123" }, }); const body = new URLSearchParams(String(requestInit?.body)); assert.equal(requestUrl, "https://auth.x.ai/oauth2/token"); assert.equal(body.get("grant_type"), "refresh_token"); assert.equal(body.get("refresh_token"), "old-refresh-token"); assert.equal(body.get("principal_type"), "Team"); assert.equal(body.get("principal_id"), "team-123"); assert.equal(result?.accessToken, "new-access-token"); assert.equal(result?.refreshToken, "rotated-refresh-token"); }); test("Grok Build executor retries transient refresh failures", async (t) => { const originalFetch = globalThis.fetch; t.after(() => { globalThis.fetch = originalFetch; }); let calls = 0; globalThis.fetch = (async () => { calls++; if (calls === 1) { return new Response(JSON.stringify({ error: "temporarily_unavailable" }), { status: 503, headers: { "Content-Type": "application/json" }, }); } return new Response(JSON.stringify({ access_token: "recovered-access-token" }), { status: 200, headers: { "Content-Type": "application/json" }, }); }) as typeof fetch; const result = await new GrokCliExecutor().refreshCredentials({ refreshToken: "refresh-token", }); assert.equal(calls, 2); assert.equal(result?.accessToken, "recovered-access-token"); assert.equal(result?.refreshToken, "refresh-token"); }); test("Grok Build executor does not retry terminal refresh failures", async (t) => { const originalFetch = globalThis.fetch; t.after(() => { globalThis.fetch = originalFetch; }); let calls = 0; globalThis.fetch = (async () => { calls++; return new Response(JSON.stringify({ error: "invalid_grant" }), { status: 400, headers: { "Content-Type": "application/json" }, }); }) as typeof fetch; const result = await new GrokCliExecutor().refreshCredentials({ refreshToken: "revoked-refresh-token", }); assert.equal(calls, 1); assert.equal(result, null); });