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

推荐订阅源

Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
Google DeepMind News
Google DeepMind News
aimingoo的专栏
aimingoo的专栏
Recent Announcements
Recent Announcements
A
About on SuperTechFans
U
Unit 42
MyScale Blog
MyScale Blog
J
Java Code Geeks
博客园_首页
Blog — PlanetScale
Blog — PlanetScale
D
Docker
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 司徒正美
量子位
月光博客
月光博客
G
Google Developers Blog
V
V2EX
博客园 - 聂微东
宝玉的分享
宝玉的分享
IT之家
IT之家
Vercel News
Vercel 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(codex): stop materializing auth bridges · openclaw/op...
steipete · 2026-04-24 · via Recent Commits to openclaw:main

@@ -1,7 +1,6 @@

11

import fs from "node:fs/promises";

22

import os from "node:os";

33

import path from "node:path";

4-

import { saveAuthProfileStore } from "openclaw/plugin-sdk/agent-runtime";

54

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

65

import { prepareAcpxCodexAuthConfig } from "./codex-auth-bridge.js";

76

import { resolveAcpxPluginConfig } from "./config.js";

@@ -28,10 +27,6 @@ function restoreEnv(name: keyof typeof previousEnv): void {

2827

}

2928

}

302931-

function unquoteCommandPath(command: string): string {

32-

return command.replace(/^'|'$/g, "").replace(/'\\''/g, "'");

33-

}

34-3530

afterEach(async () => {

3631

restoreEnv("CODEX_HOME");

3732

restoreEnv("OPENCLAW_AGENT_DIR");

@@ -42,28 +37,10 @@ afterEach(async () => {

4237

});

43384439

describe("prepareAcpxCodexAuthConfig", () => {

45-

it("wraps built-in Codex ACP with an isolated CODEX_HOME from canonical OpenClaw OAuth", async () => {

40+

it("does not synthesize a Codex ACP auth home from canonical OpenClaw OAuth", async () => {

4641

const root = await makeTempDir();

4742

const agentDir = path.join(root, "agent");

4843

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

49-

saveAuthProfileStore(

50-

{

51-

version: 1,

52-

profiles: {

53-

"openai-codex:default": {

54-

type: "oauth",

55-

provider: "openai-codex",

56-

access: "access-token",

57-

refresh: "refresh-token",

58-

expires: Date.now() + 60_000,

59-

accountId: "acct-123",

60-

idToken: "id-token",

61-

},

62-

},

63-

},

64-

agentDir,

65-

{ filterExternalAuthProfiles: false },

66-

);

6744

process.env.OPENCLAW_AGENT_DIR = agentDir;

6845

delete process.env.PI_CODING_AGENT_DIR;

6946

@@ -76,44 +53,16 @@ describe("prepareAcpxCodexAuthConfig", () => {

7653

stateDir,

7754

});

785579-

const wrapperPath = unquoteCommandPath(resolved.agents.codex ?? "");

80-

expect(wrapperPath).toBe(path.join(stateDir, "acpx", "codex-acp-wrapper.mjs"));

81-

await expect(fs.access(wrapperPath)).resolves.toBeUndefined();

82-83-

const bridgeRoot = path.join(agentDir, "acp-auth", "codex");

84-

const bridgeDirs = await fs.readdir(bridgeRoot);

85-

expect(bridgeDirs).toHaveLength(1);

86-

const bridgeDir = bridgeDirs[0];

87-

if (!bridgeDir) {

88-

throw new Error("expected one Codex auth bridge directory");

89-

}

90-

const isolatedAuthPath = path.join(bridgeRoot, bridgeDir, "auth.json");

91-

const copiedAuth = JSON.parse(await fs.readFile(isolatedAuthPath, "utf8")) as {

92-

auth_mode?: string;

93-

tokens?: Record<string, unknown>;

94-

};

95-

expect(copiedAuth).toEqual({

96-

auth_mode: "chatgpt",

97-

tokens: {

98-

id_token: "id-token",

99-

access_token: "access-token",

100-

refresh_token: "refresh-token",

101-

account_id: "acct-123",

102-

},

103-

last_refresh: expect.any(String),

104-

});

105-

expect((await fs.stat(isolatedAuthPath)).mode & 0o777).toBe(0o600);

56+

expect(resolved.agents.codex).toBeUndefined();

10657

await expect(

107-

fs.access(path.join(agentDir, "acp-auth", "codex-source", "auth.json")),

58+

fs.access(path.join(stateDir, "acpx", "codex-acp-wrapper.mjs")),

59+

).rejects.toMatchObject({ code: "ENOENT" });

60+

await expect(

61+

fs.access(path.join(agentDir, "acp-auth", "codex", "auth.json")),

10862

).rejects.toMatchObject({ code: "ENOENT" });

109-110-

const wrapper = await fs.readFile(wrapperPath, "utf8");

111-

expect(wrapper).toContain(`CODEX_HOME: ${JSON.stringify(path.dirname(isolatedAuthPath))}`);

112-

expect(wrapper).toContain("for (const key of [])");

113-

expect(wrapper).not.toContain("access-token");

11463

});

11564116-

it("does not copy source Codex auth when canonical OpenClaw OAuth is unavailable", async () => {

65+

it("does not copy source Codex auth", async () => {

11766

const root = await makeTempDir();

11867

const sourceCodexHome = path.join(root, "source-codex");

11968

const agentDir = path.join(root, "agent");

@@ -139,6 +88,9 @@ describe("prepareAcpxCodexAuthConfig", () => {

13988

await expect(

14089

fs.access(path.join(agentDir, "acp-auth", "codex-source", "auth.json")),

14190

).rejects.toMatchObject({ code: "ENOENT" });

91+

await expect(

92+

fs.access(path.join(agentDir, "acp-auth", "codex", "auth.json")),

93+

).rejects.toMatchObject({ code: "ENOENT" });

14294

});

1439514496

it("does not override an explicitly configured Codex agent command", async () => {