惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
F
Fortinet All Blogs
Martin Fowler
Martin Fowler
M
MIT News - Artificial intelligence
G
Google Developers Blog
P
Proofpoint News Feed
Recent Announcements
Recent Announcements
MyScale Blog
MyScale Blog
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
月光博客
月光博客
爱范儿
爱范儿
罗磊的独立博客
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
Vercel News
Vercel News
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog
C
Check Point Blog
美团技术团队
宝玉的分享
宝玉的分享
Microsoft Security Blog
Microsoft Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
test: tighten codex oauth fallback assertions · openclaw/...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -93,6 +93,25 @@ function resolveOpenAICodexProfile(params: { profileId: string; agentDir: string

9393

});

9494

}

959596+

function requireOAuthProfile(store: AuthProfileStore, profileId: string): OAuthCredential {

97+

const profile = store.profiles[profileId];

98+

expect(profile?.type).toBe("oauth");

99+

if (!profile || profile.type !== "oauth") {

100+

throw new Error(`expected OAuth profile ${profileId}`);

101+

}

102+

return profile;

103+

}

104+105+

function requireOAuthContext(context: unknown): OAuthCredential {

106+

expect(context && typeof context === "object").toBe(true);

107+

if (!context || typeof context !== "object") {

108+

throw new Error("expected OAuth credential context");

109+

}

110+

const credential = context as OAuthCredential;

111+

expect(credential.type).toBe("oauth");

112+

return credential;

113+

}

114+96115

describe("resolveApiKeyForProfile openai-codex refresh fallback", () => {

97116

const envSnapshot = captureEnv(OAUTH_AGENT_ENV_KEYS);

98117

let tempRoot = "";

@@ -214,13 +233,11 @@ describe("resolveApiKeyForProfile openai-codex refresh fallback", () => {

214233

});

215234216235

const persisted = await readPersistedStore(agentDir);

217-

expect(persisted.profiles[profileId]).toMatchObject({

218-

type: "oauth",

219-

provider: "openai-codex",

220-

access: "rotated-access-token",

221-

refresh: "rotated-refresh-token",

222-

accountId: "acct-rotated",

223-

});

236+

const profile = requireOAuthProfile(persisted, profileId);

237+

expect(profile.provider).toBe("openai-codex");

238+

expect(profile.access).toBe("rotated-access-token");

239+

expect(profile.refresh).toBe("rotated-refresh-token");

240+

expect(profile.accountId).toBe("acct-rotated");

224241

});

225242226243

it("refreshes imported Codex credentials into the canonical auth store without writing back to .codex", async () => {

@@ -269,19 +286,12 @@ describe("resolveApiKeyForProfile openai-codex refresh fallback", () => {

269286

email: undefined,

270287

});

271288

const persisted = await readPersistedStore(agentDir);

272-

expect(persisted.profiles[profileId]).toMatchObject({

273-

type: "oauth",

274-

provider: "openai-codex",

275-

access: "rotated-cli-access-token",

276-

refresh: "rotated-cli-refresh-token",

277-

accountId: "acct-rotated",

278-

});

279-

expect(persisted.profiles[profileId]).not.toEqual(

280-

expect.objectContaining({

281-

provider: "openai-codex",

282-

access: "expired-access-token",

283-

}),

284-

);

289+

const profile = requireOAuthProfile(persisted, profileId);

290+

expect(profile.provider).toBe("openai-codex");

291+

expect(profile.access).toBe("rotated-cli-access-token");

292+

expect(profile.refresh).toBe("rotated-cli-refresh-token");

293+

expect(profile.accountId).toBe("acct-rotated");

294+

expect(profile.access).not.toBe("expired-access-token");

285295

});

286296287297

it("ignores mismatched fresh Codex CLI credentials when canonical local auth is bound to another account", async () => {

@@ -306,11 +316,10 @@ describe("resolveApiKeyForProfile openai-codex refresh fallback", () => {

306316

});

307317

refreshProviderOAuthCredentialWithPluginMock.mockImplementationOnce(

308318

async (params?: { context?: unknown }) => {

309-

expect(params?.context).toMatchObject({

310-

access: "expired-local-access-token",

311-

refresh: "local-refresh-token",

312-

accountId: "acct-local",

313-

});

319+

const context = requireOAuthContext(params?.context);

320+

expect(context.access).toBe("expired-local-access-token");

321+

expect(context.refresh).toBe("local-refresh-token");

322+

expect(context.accountId).toBe("acct-local");

314323

return {

315324

type: "oauth",

316325

provider: "openai-codex",

@@ -335,18 +344,13 @@ describe("resolveApiKeyForProfile openai-codex refresh fallback", () => {

335344

});

336345337346

const persisted = await readPersistedStore(agentDir);

338-

expect(persisted.profiles[profileId]).toMatchObject({

339-

access: "fresh-local-access-token",

340-

refresh: "fresh-local-refresh-token",

341-

accountId: "acct-local",

342-

});

343-

expect(persisted.profiles[profileId]).not.toEqual(

344-

expect.objectContaining({

345-

access: "fresh-cli-access-token",

346-

refresh: "fresh-cli-refresh-token",

347-

accountId: "acct-external",

348-

}),

349-

);

347+

const profile = requireOAuthProfile(persisted, profileId);

348+

expect(profile.access).toBe("fresh-local-access-token");

349+

expect(profile.refresh).toBe("fresh-local-refresh-token");

350+

expect(profile.accountId).toBe("acct-local");

351+

expect(profile.access).not.toBe("fresh-cli-access-token");

352+

expect(profile.refresh).not.toBe("fresh-cli-refresh-token");

353+

expect(profile.accountId).not.toBe("acct-external");

350354

});

351355352356

it("keeps the canonical refresh token when imported Codex CLI state is expired", async () => {

@@ -376,10 +380,9 @@ describe("resolveApiKeyForProfile openai-codex refresh fallback", () => {

376380

});

377381

refreshProviderOAuthCredentialWithPluginMock.mockImplementationOnce(

378382

async (params?: { context?: unknown }) => {

379-

expect(params?.context).toMatchObject({

380-

access: "expired-local-access-token",

381-

refresh: "stale-local-refresh-token",

382-

});

383+

const context = requireOAuthContext(params?.context);

384+

expect(context.access).toBe("expired-local-access-token");

385+

expect(context.refresh).toBe("stale-local-refresh-token");

383386

return {

384387

type: "oauth",

385388

provider: "openai-codex",

@@ -403,15 +406,10 @@ describe("resolveApiKeyForProfile openai-codex refresh fallback", () => {

403406

});

404407405408

const persisted = await readPersistedStore(agentDir);

406-

expect(persisted.profiles[profileId]).toMatchObject({

407-

access: "fresh-access-token",

408-

refresh: "fresh-refresh-token",

409-

});

410-

expect(persisted.profiles[profileId]).not.toEqual(

411-

expect.objectContaining({

412-

refresh: "fresh-cli-refresh-token",

413-

}),

414-

);

409+

const profile = requireOAuthProfile(persisted, profileId);

410+

expect(profile.access).toBe("fresh-access-token");

411+

expect(profile.refresh).toBe("fresh-refresh-token");

412+

expect(profile.refresh).not.toBe("fresh-cli-refresh-token");

415413

});

416414417415

it("adopts fresher stored credentials after refresh_token_reused", async () => {

@@ -516,10 +514,9 @@ describe("resolveApiKeyForProfile openai-codex refresh fallback", () => {

516514517515

expect(getOAuthApiKeyMock).toHaveBeenCalledTimes(2);

518516

const persisted = await readPersistedStore(agentDir);

519-

expect(persisted.profiles[profileId]).toMatchObject({

520-

access: "retried-access-token",

521-

refresh: "retried-refresh-token",

522-

});

517+

const profile = requireOAuthProfile(persisted, profileId);

518+

expect(profile.access).toBe("retried-access-token");

519+

expect(profile.refresh).toBe("retried-refresh-token");

523520

});

524521525522

it("keeps throwing for non-codex providers on the same refresh error", async () => {