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

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
博客园 - 司徒正美
Vercel News
Vercel News
F
Fortinet All Blogs
月光博客
月光博客
G
Google Developers Blog
博客园 - Franky
GbyAI
GbyAI
The Cloudflare Blog
I
InfoQ
雷峰网
雷峰网
WordPress大学
WordPress大学
罗磊的独立博客
大猫的无限游戏
大猫的无限游戏
T
The Blog of Author Tim Ferriss
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 聂微东
小众软件
小众软件
腾讯CDC
B
Blog
量子位
V
V2EX
S
SegmentFault 最新的问题
Google DeepMind News
Google DeepMind News

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
fix(agents): keep OAuth auth read-through · openclaw/open...
steipete · 2026-04-29 · via Recent Commits to openclaw:main

@@ -1,6 +1,10 @@

11

import fs from "node:fs/promises";

22

import os from "node:os";

33

import path from "node:path";

4+

import {

5+

clearRuntimeAuthProfileStoreSnapshots,

6+

loadAuthProfileStoreForSecretsRuntime,

7+

} from "openclaw/plugin-sdk/agent-runtime";

48

import { upsertAuthProfile } from "openclaw/plugin-sdk/provider-auth";

59

import { afterEach, describe, expect, it, vi } from "vitest";

610

import {

@@ -72,7 +76,7 @@ vi.mock("openclaw/plugin-sdk/agent-runtime", async (importOriginal) => {

7276

if (refreshed?.access) {

7377

oauthCredential = refreshed as typeof oauthCredential;

7478

params.store.profiles[params.profileId] = oauthCredential;

75-

if (params.agentDir) {

79+

if (params.agentDir || process.env.OPENCLAW_STATE_DIR) {

7680

actual.saveAuthProfileStore(params.store, params.agentDir);

7781

}

7882

}

@@ -92,6 +96,7 @@ vi.mock("openclaw/plugin-sdk/agent-runtime", async (importOriginal) => {

92969397

afterEach(() => {

9498

vi.unstubAllEnvs();

99+

clearRuntimeAuthProfileStoreSnapshots();

95100

oauthMocks.refreshOpenAICodexToken.mockReset();

96101

providerRuntimeMocks.formatProviderAuthProfileApiKeyWithPlugin.mockReset();

97102

providerRuntimeMocks.refreshProviderOAuthCredentialWithPlugin.mockClear();

@@ -635,6 +640,132 @@ describe("bridgeCodexAppServerStartOptions", () => {

635640

}

636641

});

637642643+

it("refreshes inherited main Codex OAuth without cloning it into the child store", async () => {

644+

const root = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-codex-app-server-"));

645+

const stateDir = path.join(root, "state");

646+

const childAgentDir = path.join(stateDir, "agents", "worker", "agent");

647+

const childAuthPath = path.join(childAgentDir, "auth-profiles.json");

648+

vi.stubEnv("OPENCLAW_STATE_DIR", stateDir);

649+

vi.stubEnv("OPENCLAW_AGENT_DIR", "");

650+

oauthMocks.refreshOpenAICodexToken.mockResolvedValueOnce({

651+

access: "main-refreshed-access-token",

652+

refresh: "main-refreshed-refresh-token",

653+

expires: Date.now() + 60_000,

654+

accountId: "account-main-refreshed",

655+

});

656+

try {

657+

upsertAuthProfile({

658+

profileId: "openai-codex:work",

659+

credential: {

660+

type: "oauth",

661+

provider: "openai-codex",

662+

access: "main-current-access-token",

663+

refresh: "main-refresh-token",

664+

expires: Date.now() + 60_000,

665+

accountId: "account-main",

666+

email: "main-codex@example.test",

667+

},

668+

});

669+670+

await expect(

671+

refreshCodexAppServerAuthTokens({

672+

agentDir: childAgentDir,

673+

authProfileId: "openai-codex:work",

674+

}),

675+

).resolves.toEqual({

676+

accessToken: "main-refreshed-access-token",

677+

chatgptAccountId: "account-main-refreshed",

678+

chatgptPlanType: null,

679+

});

680+681+

expect(oauthMocks.refreshOpenAICodexToken).toHaveBeenCalledWith("main-refresh-token");

682+

await expect(fs.access(childAuthPath)).rejects.toMatchObject({ code: "ENOENT" });

683+

expect(loadAuthProfileStoreForSecretsRuntime().profiles["openai-codex:work"]).toMatchObject({

684+

type: "oauth",

685+

provider: "openai-codex",

686+

access: "main-refreshed-access-token",

687+

refresh: "main-refreshed-refresh-token",

688+

});

689+

} finally {

690+

await fs.rm(root, { recursive: true, force: true });

691+

}

692+

});

693+694+

it("force-refreshes the owner credential instead of a stale child OAuth clone", async () => {

695+

const root = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-codex-app-server-"));

696+

const stateDir = path.join(root, "state");

697+

const childAgentDir = path.join(stateDir, "agents", "worker", "agent");

698+

const childAuthPath = path.join(childAgentDir, "auth-profiles.json");

699+

vi.stubEnv("OPENCLAW_STATE_DIR", stateDir);

700+

vi.stubEnv("OPENCLAW_AGENT_DIR", "");

701+

oauthMocks.refreshOpenAICodexToken.mockResolvedValueOnce({

702+

access: "main-refreshed-access-token",

703+

refresh: "main-refreshed-refresh-token",

704+

expires: Date.now() + 60_000,

705+

accountId: "account-main-refreshed",

706+

});

707+

try {

708+

upsertAuthProfile({

709+

profileId: "openai-codex:work",

710+

credential: {

711+

type: "oauth",

712+

provider: "openai-codex",

713+

access: "main-current-access-token",

714+

refresh: "main-owner-refresh-token",

715+

expires: Date.now() + 60_000,

716+

accountId: "account-main",

717+

email: "main-codex@example.test",

718+

},

719+

});

720+

await fs.mkdir(childAgentDir, { recursive: true });

721+

await fs.writeFile(

722+

childAuthPath,

723+

JSON.stringify({

724+

version: 1,

725+

profiles: {

726+

"openai-codex:work": {

727+

type: "oauth",

728+

provider: "openai-codex",

729+

access: "child-stale-access-token",

730+

refresh: "child-stale-refresh-token",

731+

expires: Date.now() - 60_000,

732+

accountId: "account-main",

733+

email: "main-codex@example.test",

734+

},

735+

},

736+

}),

737+

);

738+739+

await expect(

740+

refreshCodexAppServerAuthTokens({

741+

agentDir: childAgentDir,

742+

authProfileId: "openai-codex:work",

743+

}),

744+

).resolves.toEqual({

745+

accessToken: "main-refreshed-access-token",

746+

chatgptAccountId: "account-main-refreshed",

747+

chatgptPlanType: null,

748+

});

749+750+

expect(oauthMocks.refreshOpenAICodexToken).toHaveBeenCalledWith("main-owner-refresh-token");

751+

expect(loadAuthProfileStoreForSecretsRuntime().profiles["openai-codex:work"]).toMatchObject({

752+

type: "oauth",

753+

provider: "openai-codex",

754+

access: "main-refreshed-access-token",

755+

refresh: "main-refreshed-refresh-token",

756+

});

757+

const child = JSON.parse(await fs.readFile(childAuthPath, "utf8")) as {

758+

profiles: Record<string, { access?: string; refresh?: string }>;

759+

};

760+

expect(child.profiles["openai-codex:work"]).toMatchObject({

761+

access: "child-stale-access-token",

762+

refresh: "child-stale-refresh-token",

763+

});

764+

} finally {

765+

await fs.rm(root, { recursive: true, force: true });

766+

}

767+

});

768+638769

it("accepts a refreshed Codex OAuth credential when the stored provider is a legacy alias", async () => {

639770

const agentDir = await fs.mkdtemp(path.join(os.tmpdir(), "openclaw-codex-app-server-"));

640771

oauthMocks.refreshOpenAICodexToken.mockResolvedValueOnce({