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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
量子位
T
Tailwind CSS Blog
Vercel News
Vercel News
I
InfoQ
Stack Overflow Blog
Stack Overflow Blog
U
Unit 42
Engineering at Meta
Engineering at Meta
L
LangChain Blog
大猫的无限游戏
大猫的无限游戏
D
Docker
博客园_首页
P
Proofpoint News Feed
月光博客
月光博客
T
The Blog of Author Tim Ferriss
MyScale Blog
MyScale Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Martin Fowler
Martin Fowler
腾讯CDC
N
Netflix TechBlog - Medium
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

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: preserve Codex binding OAuth transport · openclaw/op...
keshavbotage · 2026-05-04 · via Recent Commits to openclaw:main

@@ -1,10 +1,18 @@

11

import fs from "node:fs/promises";

22

import os from "node:os";

33

import path from "node:path";

4-

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

4+

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

5+6+

const sharedClientMocks = vi.hoisted(() => ({

7+

getSharedCodexAppServerClient: vi.fn(),

8+

}));

9+10+

vi.mock("./app-server/shared-client.js", () => sharedClientMocks);

11+512

import {

613

handleCodexConversationBindingResolved,

714

handleCodexConversationInboundClaim,

15+

startCodexConversationThread,

816

} from "./conversation-binding.js";

9171018

let tempDir: string;

@@ -15,9 +23,58 @@ describe("codex conversation binding", () => {

1523

});

16241725

afterEach(async () => {

26+

sharedClientMocks.getSharedCodexAppServerClient.mockReset();

1827

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

1928

});

202930+

it("preserves Codex auth and omits the public OpenAI provider for native bind threads", async () => {

31+

const sessionFile = path.join(tempDir, "session.jsonl");

32+

await fs.writeFile(

33+

`${sessionFile}.codex-app-server.json`,

34+

JSON.stringify({

35+

schemaVersion: 1,

36+

threadId: "thread-old",

37+

cwd: tempDir,

38+

authProfileId: "openai-codex:work",

39+

modelProvider: "openai",

40+

}),

41+

);

42+

const requests: Array<{ method: string; params: Record<string, unknown> }> = [];

43+

sharedClientMocks.getSharedCodexAppServerClient.mockResolvedValue({

44+

request: vi.fn(async (method: string, requestParams: Record<string, unknown>) => {

45+

requests.push({ method, params: requestParams });

46+

return {

47+

thread: { id: "thread-new", cwd: tempDir },

48+

model: "gpt-5.4-mini",

49+

modelProvider: "openai",

50+

};

51+

}),

52+

});

53+54+

await startCodexConversationThread({

55+

sessionFile,

56+

workspaceDir: tempDir,

57+

model: "gpt-5.4-mini",

58+

modelProvider: "openai",

59+

});

60+61+

expect(sharedClientMocks.getSharedCodexAppServerClient).toHaveBeenCalledWith(

62+

expect.objectContaining({ authProfileId: "openai-codex:work" }),

63+

);

64+

expect(requests).toHaveLength(1);

65+

expect(requests[0]).toMatchObject({

66+

method: "thread/start",

67+

params: expect.objectContaining({ model: "gpt-5.4-mini" }),

68+

});

69+

expect(requests[0]?.params).not.toHaveProperty("modelProvider");

70+

await expect(fs.readFile(`${sessionFile}.codex-app-server.json`, "utf8")).resolves.toContain(

71+

'"authProfileId": "openai-codex:work"',

72+

);

73+

await expect(

74+

fs.readFile(`${sessionFile}.codex-app-server.json`, "utf8"),

75+

).resolves.not.toContain('"modelProvider": "openai"');

76+

});

77+2178

it("clears the Codex app-server sidecar when a pending bind is denied", async () => {

2279

const sessionFile = path.join(tempDir, "session.jsonl");

2380

const sidecar = `${sessionFile}.codex-app-server.json`;

@@ -73,4 +130,76 @@ describe("codex conversation binding", () => {

7313074131

expect(result).toEqual({ handled: true });

75132

});

133+134+

it("returns a clean failure reply when app-server turn start rejects", async () => {

135+

const sessionFile = path.join(tempDir, "session.jsonl");

136+

await fs.writeFile(

137+

`${sessionFile}.codex-app-server.json`,

138+

JSON.stringify({

139+

schemaVersion: 1,

140+

threadId: "thread-1",

141+

cwd: tempDir,

142+

authProfileId: "openai-codex:work",

143+

}),

144+

);

145+

const unhandledRejections: unknown[] = [];

146+

const onUnhandledRejection = (reason: unknown) => {

147+

unhandledRejections.push(reason);

148+

};

149+

process.on("unhandledRejection", onUnhandledRejection);

150+

sharedClientMocks.getSharedCodexAppServerClient.mockResolvedValue({

151+

request: vi.fn(async (method: string) => {

152+

if (method === "turn/start") {

153+

throw new Error(

154+

"unexpected status 401 Unauthorized: Missing bearer or basic authentication in header",

155+

);

156+

}

157+

throw new Error(`unexpected method: ${method}`);

158+

}),

159+

addNotificationHandler: vi.fn(() => () => undefined),

160+

addRequestHandler: vi.fn(() => () => undefined),

161+

});

162+163+

try {

164+

const result = await handleCodexConversationInboundClaim(

165+

{

166+

content: "hi",

167+

bodyForAgent: "hi",

168+

channel: "telegram",

169+

isGroup: false,

170+

commandAuthorized: true,

171+

},

172+

{

173+

channelId: "telegram",

174+

pluginBinding: {

175+

bindingId: "binding-1",

176+

pluginId: "codex",

177+

pluginRoot: tempDir,

178+

channel: "telegram",

179+

accountId: "default",

180+

conversationId: "5185575566",

181+

boundAt: Date.now(),

182+

data: {

183+

kind: "codex-app-server-session",

184+

version: 1,

185+

sessionFile,

186+

workspaceDir: tempDir,

187+

},

188+

},

189+

},

190+

{ timeoutMs: 50 },

191+

);

192+

await new Promise<void>((resolve) => setImmediate(resolve));

193+194+

expect(result).toEqual({

195+

handled: true,

196+

reply: {

197+

text: "Codex app-server turn failed: unexpected status 401 Unauthorized: Missing bearer or basic authentication in header",

198+

},

199+

});

200+

expect(unhandledRejections).toEqual([]);

201+

} finally {

202+

process.off("unhandledRejection", onUnhandledRejection);

203+

}

204+

});

76205

});