Files
openclaw/extensions/openai/usage.test.ts
Peter Steinberger a17058d191 feat(usage): show the account email with plan windows in the chat context popover (#106200)
* feat(usage): surface plan windows and account email in the chat context popover

The context-window popover now shows which account a session runs on:
provider usage snapshots carry an accountEmail resolved from the auth
profile when stored, the ChatGPT access-token JWT claims (openai/codex),
or the Claude CLI config file (~/.claude.json oauthAccount) for
keychain-synced logins. models.authStatus embeds it, quota groups keep
distinct accounts separate, and the popover renders the email under the
plan header for local CLI sessions and OpenClaw-configured subscriptions
alike.

* test(openai): assemble the fake usage JWT from parts

* test(usage): keep fixture tokens and identity plumbing scanner-safe

* fix(usage): verify the Claude CLI login before labeling usage with its email

Review findings: the CLI-config email fallback now requires the usage token
to match the cached CLI credential (and honors CLAUDE_CONFIG_DIR), so an
ambient login for another account never labels a snapshot; token-type
credentials propagate their stored email alongside oauth ones.

* style(anthropic): scanner-safe local for the CLI login read

* fix(usage): capture the Claude CLI account email on the credential

Review findings: reading ambient CLI config at usage-fetch time could not
verify keychain-only logins and could go stale across account switches.
The credential reader now captures oauthAccount.emailAddress next to the
credential it belongs to, the synced claude-cli profile carries it, and
the anthropic fetcher uses only the credential-borne identity.

* style(usage): scanner-safe credential fixtures and helper naming

* fix(auth): backfill the CLI account email onto existing synced profiles

Profiles synced before identity capture stay usable and skip CLI reads,
so upgraded installs would never gain the email until token rotation.
While the stored token material matches the CLI login, merge the
non-secret email onto the stored profile.

* style(test): scanner-safe email assertion

* test(auth): pin the no-reread invariant to identity-complete profiles
2026-07-13 03:39:16 -07:00

176 lines
5.4 KiB
TypeScript

import { describe, expect, it, vi } from "vitest";
import { fetchOpenAIAdminUsage, fetchOpenAIUsage, resolveOpenAIUsageAuth } from "./usage.js";
function requestUrl(input: string | URL | Request): URL {
return new URL(input instanceof Request ? input.url : input);
}
describe("OpenAI provider usage", () => {
it("aggregates provider-reported costs, tokens, models, and categories", async () => {
const fetchFn = vi.fn(async (input: string | URL | Request, _init?: RequestInit) => {
const url = requestUrl(input);
if (url.pathname.endsWith("/organization/costs")) {
return new Response(
JSON.stringify({
data: [
{
start_time: 1_783_296_000,
end_time: 1_783_382_400,
results: [{ amount: { value: "12.34", currency: "usd" }, line_item: "Responses" }],
},
],
has_more: false,
}),
{ status: 200 },
);
}
return new Response(
JSON.stringify({
data: [
{
start_time: 1_783_296_000,
end_time: 1_783_382_400,
results: [
{
input_tokens: 1_000,
input_cached_tokens: 400,
output_tokens: 250,
num_model_requests: 8,
model: "gpt-5.5",
},
],
},
],
has_more: false,
}),
{ status: 200 },
);
});
const result = await fetchOpenAIAdminUsage({
apiKey: "sk-admin-test",
projectId: "proj_test",
timeoutMs: 5_000,
fetchFn: fetchFn as typeof fetch,
now: Date.parse("2026-07-06T12:00:00Z"),
periodDays: 2,
});
expect(result).toMatchObject({
provider: "openai",
plan: "Admin API · proj_test",
billing: [{ type: "spend", amount: 12.34, unit: "USD", period: "2d" }],
costHistory: {
unit: "USD",
periodDays: 2,
scope: "Project proj_test",
daily: [
{
date: "2026-07-06",
amount: 12.34,
requests: 8,
inputTokens: 600,
cacheReadTokens: 400,
outputTokens: 250,
totalTokens: 1_250,
},
],
models: [
{
name: "gpt-5.5",
requests: 8,
inputTokens: 600,
cacheReadTokens: 400,
totalTokens: 1_250,
},
],
categories: [{ name: "Responses", amount: 12.34 }],
},
});
expect(fetchFn).toHaveBeenCalledTimes(2);
for (const [input, init] of fetchFn.mock.calls) {
const url = requestUrl(input);
expect(url.searchParams.get("project_ids")).toBe("proj_test");
expect(url.searchParams.get("bucket_width")).toBe("1d");
expect((init as RequestInit).headers).toMatchObject({
Authorization: "Bearer sk-admin-test",
});
}
});
it("reports when organization usage rejects a non-admin key", async () => {
const result = await fetchOpenAIAdminUsage({
apiKey: "sk-proj-test",
timeoutMs: 5_000,
fetchFn: vi.fn(async () => new Response("", { status: 403 })) as typeof fetch,
});
expect(result.error).toBe("Admin API key required");
});
it("prefers an explicit admin key over ChatGPT OAuth", async () => {
const result = await resolveOpenAIUsageAuth({
config: {
models: {
providers: {
openai: {
baseUrl: "https://proxy.example.test/v1",
models: [],
},
},
},
},
env: { OPENAI_ADMIN_KEY: "sk-admin-explicit" },
provider: "openai",
resolveApiKeyFromConfigAndStore: () => "sk-proj-fallback",
resolveOAuthToken: async () => ({ token: "oauth-token" }),
});
expect(result).toEqual({
token: 'openclaw:openai-admin:v1:{"token":"sk-admin-explicit"}',
});
});
it("attaches the ChatGPT account email from the access-token claims", async () => {
// Assembled parts keep the fixture from reading as a real credential.
const claims = Buffer.from(
JSON.stringify({ "https://api.openai.com/profile": { email: "codex@example.com" } }),
"utf8",
).toString("base64url");
const accessToken = ["fake-header", claims, "fake-sig"].join(".");
const fetchFn = vi.fn(
async () =>
new Response(
JSON.stringify({
plan_type: "pro",
rate_limit: { primary_window: { limit_window_seconds: 18_000, used_percent: 12 } },
}),
{ status: 200 },
),
) as typeof fetch;
const snapshot = await fetchOpenAIUsage({
config: {},
env: {},
provider: "openai",
token: accessToken,
timeoutMs: 5_000,
fetchFn,
});
expect(snapshot.accountEmail).toBe("codex@example.com");
expect(snapshot.windows.length).toBeGreaterThan(0);
});
it("does not repurpose inference credentials for organization usage", async () => {
const resolveCandidates = vi.fn(async () => ["sk-admin-secretref"]);
const result = await resolveOpenAIUsageAuth({
config: {},
env: {},
provider: "openai",
resolveApiKeyFromConfigAndStore: () => "sk-proj-inference",
resolveApiKeyCandidatesFromConfigAndStore: resolveCandidates,
resolveOAuthToken: async () => null,
});
expect(result).toEqual({ handled: true });
expect(resolveCandidates).not.toHaveBeenCalled();
});
});