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

推荐订阅源

爱范儿
爱范儿
腾讯CDC
博客园 - 司徒正美
A
About on SuperTechFans
H
Help Net Security
J
Java Code Geeks
C
Check Point Blog
B
Blog RSS Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MongoDB | Blog
MongoDB | Blog
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
MyScale Blog
MyScale Blog
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
博客园 - 聂微东
酷 壳 – CoolShell
酷 壳 – CoolShell
GbyAI
GbyAI
博客园 - 【当耐特】
雷峰网
雷峰网

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
Load provider owner for Codex harness runtime (#83519) · ...
joshavant · 2026-05-18 · via Recent Commits to openclaw:main

@@ -3,22 +3,43 @@ import type { OpenClawConfig } from "../../config/types.openclaw.js";

3344

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

55

ensurePluginRegistryLoaded: vi.fn(),

6+

resolveActivatableProviderOwnerPluginIds: vi.fn(),

7+

resolveBundledProviderCompatPluginIds: vi.fn(),

8+

resolveOwningPluginIdsForProvider: vi.fn(),

69

}));

710811

vi.mock("../../plugins/runtime/runtime-registry-loader.js", () => ({

912

ensurePluginRegistryLoaded: mocks.ensurePluginRegistryLoaded,

1013

}));

111415+

vi.mock("../../plugins/providers.js", () => ({

16+

resolveActivatableProviderOwnerPluginIds: mocks.resolveActivatableProviderOwnerPluginIds,

17+

resolveBundledProviderCompatPluginIds: mocks.resolveBundledProviderCompatPluginIds,

18+

resolveOwningPluginIdsForProvider: mocks.resolveOwningPluginIdsForProvider,

19+

}));

20+1221

describe("ensureSelectedAgentHarnessPlugin", () => {

1322

let ensureSelectedAgentHarnessPlugin: typeof import("./runtime-plugin.js").ensureSelectedAgentHarnessPlugin;

14231524

beforeEach(async () => {

1625

mocks.ensurePluginRegistryLoaded.mockReset();

26+

mocks.resolveActivatableProviderOwnerPluginIds.mockReset();

27+

mocks.resolveBundledProviderCompatPluginIds.mockReset();

28+

mocks.resolveOwningPluginIdsForProvider.mockReset();

29+

mocks.resolveOwningPluginIdsForProvider.mockImplementation(

30+

({ provider }: { provider: string }) =>

31+

provider === "openai" || provider === "openai-codex" ? ["openai"] : undefined,

32+

);

33+

mocks.resolveBundledProviderCompatPluginIds.mockImplementation(

34+

({ onlyPluginIds }: { onlyPluginIds?: readonly string[] }) =>

35+

(onlyPluginIds ?? []).filter((pluginId) => pluginId === "openai"),

36+

);

37+

mocks.resolveActivatableProviderOwnerPluginIds.mockReturnValue([]);

1738

vi.resetModules();

1839

({ ensureSelectedAgentHarnessPlugin } = await import("./runtime-plugin.js"));

1940

});

204121-

it("loads Codex when an explicit runtime override forces the Codex harness", async () => {

42+

it("loads Codex and the provider owner when an explicit runtime override forces the Codex harness", async () => {

2243

await ensureSelectedAgentHarnessPlugin({

2344

provider: "openai",

2445

modelId: "gpt-5.5",

@@ -40,12 +61,12 @@ describe("ensureSelectedAgentHarnessPlugin", () => {

4061

expect.objectContaining({

4162

scope: "all",

4263

workspaceDir: "/tmp/workspace",

43-

onlyPluginIds: ["codex"],

64+

onlyPluginIds: ["codex", "openai"],

4465

}),

4566

);

4667

});

476848-

it("tries to load Codex for the implicit official OpenAI runtime before selection", async () => {

69+

it("loads Codex and the provider owner for the implicit official OpenAI runtime before selection", async () => {

4970

await ensureSelectedAgentHarnessPlugin({

5071

provider: "openai",

5172

modelId: "gpt-5.5",

@@ -62,6 +83,174 @@ describe("ensureSelectedAgentHarnessPlugin", () => {

6283

workspaceDir: "/tmp/workspace",

6384

});

648586+

expect(mocks.ensurePluginRegistryLoaded).toHaveBeenCalledWith(

87+

expect.objectContaining({

88+

scope: "all",

89+

workspaceDir: "/tmp/workspace",

90+

onlyPluginIds: ["codex", "openai"],

91+

}),

92+

);

93+

});

94+95+

it("widens a scoped harness allowlist with the provider owner for openai-codex models", async () => {

96+

await ensureSelectedAgentHarnessPlugin({

97+

provider: "openai-codex",

98+

modelId: "gpt-5.5-pro",

99+

config: {

100+

plugins: {

101+

allow: ["codex"],

102+

entries: {

103+

codex: { enabled: true },

104+

},

105+

},

106+

} as OpenClawConfig,

107+

workspaceDir: "/tmp/workspace",

108+

});

109+110+

expect(mocks.ensurePluginRegistryLoaded).toHaveBeenCalledWith(

111+

expect.objectContaining({

112+

scope: "all",

113+

workspaceDir: "/tmp/workspace",

114+

onlyPluginIds: ["codex", "openai"],

115+

config: expect.objectContaining({

116+

plugins: expect.objectContaining({

117+

allow: ["codex", "openai"],

118+

entries: expect.objectContaining({

119+

codex: expect.objectContaining({ enabled: true }),

120+

openai: expect.objectContaining({ enabled: true }),

121+

}),

122+

}),

123+

}),

124+

}),

125+

);

126+

});

127+128+

it("does not auto-activate untrusted provider owners for Codex harness loads", async () => {

129+

mocks.resolveOwningPluginIdsForProvider.mockReturnValueOnce(["openai", "workspace-openai"]);

130+

mocks.resolveBundledProviderCompatPluginIds.mockReturnValueOnce(["openai"]);

131+

mocks.resolveActivatableProviderOwnerPluginIds.mockReturnValueOnce([]);

132+133+

await ensureSelectedAgentHarnessPlugin({

134+

provider: "openai-codex",

135+

modelId: "gpt-5.5-pro",

136+

config: {

137+

plugins: {

138+

allow: ["codex"],

139+

entries: {

140+

codex: { enabled: true },

141+

},

142+

},

143+

} as OpenClawConfig,

144+

workspaceDir: "/tmp/workspace",

145+

});

146+147+

expect(mocks.resolveBundledProviderCompatPluginIds).toHaveBeenCalledWith({

148+

config: expect.any(Object),

149+

workspaceDir: "/tmp/workspace",

150+

onlyPluginIds: ["openai", "workspace-openai"],

151+

});

152+

expect(mocks.resolveActivatableProviderOwnerPluginIds).toHaveBeenCalledWith({

153+

pluginIds: ["openai", "workspace-openai"],

154+

config: expect.any(Object),

155+

workspaceDir: "/tmp/workspace",

156+

});

157+

expect(mocks.ensurePluginRegistryLoaded).toHaveBeenCalledWith(

158+

expect.objectContaining({

159+

scope: "all",

160+

workspaceDir: "/tmp/workspace",

161+

onlyPluginIds: ["codex", "openai"],

162+

}),

163+

);

164+

});

165+166+

it("does not bypass a restrictive allowlist that omits the Codex harness", async () => {

167+

await ensureSelectedAgentHarnessPlugin({

168+

provider: "openai-codex",

169+

modelId: "gpt-5.5-pro",

170+

config: {

171+

plugins: {

172+

allow: ["telegram"],

173+

entries: {

174+

telegram: { enabled: true },

175+

},

176+

},

177+

} as OpenClawConfig,

178+

workspaceDir: "/tmp/workspace",

179+

});

180+181+

expect(mocks.resolveOwningPluginIdsForProvider).not.toHaveBeenCalled();

182+

expect(mocks.resolveBundledProviderCompatPluginIds).not.toHaveBeenCalled();

183+

expect(mocks.resolveActivatableProviderOwnerPluginIds).not.toHaveBeenCalled();

184+

expect(mocks.ensurePluginRegistryLoaded).toHaveBeenCalledWith(

185+

expect.objectContaining({

186+

scope: "all",

187+

workspaceDir: "/tmp/workspace",

188+

onlyPluginIds: ["codex"],

189+

config: expect.objectContaining({

190+

plugins: expect.objectContaining({

191+

allow: ["telegram"],

192+

entries: expect.not.objectContaining({

193+

codex: expect.anything(),

194+

openai: expect.anything(),

195+

}),

196+

}),

197+

}),

198+

}),

199+

);

200+

});

201+202+

it("honors bundled discovery compat when a legacy allowlist omits the Codex harness", async () => {

203+

await ensureSelectedAgentHarnessPlugin({

204+

provider: "openai-codex",

205+

modelId: "gpt-5.5-pro",

206+

config: {

207+

plugins: {

208+

allow: ["telegram"],

209+

bundledDiscovery: "compat",

210+

entries: {

211+

telegram: { enabled: true },

212+

},

213+

},

214+

} as OpenClawConfig,

215+

workspaceDir: "/tmp/workspace",

216+

});

217+218+

expect(mocks.resolveOwningPluginIdsForProvider).toHaveBeenCalledWith({

219+

provider: "openai-codex",

220+

config: expect.any(Object),

221+

workspaceDir: "/tmp/workspace",

222+

});

223+

expect(mocks.ensurePluginRegistryLoaded).toHaveBeenCalledWith(

224+

expect.objectContaining({

225+

scope: "all",

226+

workspaceDir: "/tmp/workspace",

227+

onlyPluginIds: ["codex", "openai"],

228+

config: expect.objectContaining({

229+

plugins: expect.objectContaining({

230+

allow: ["telegram", "codex", "openai"],

231+

entries: expect.objectContaining({

232+

codex: expect.objectContaining({ enabled: true }),

233+

openai: expect.objectContaining({ enabled: true }),

234+

telegram: expect.objectContaining({ enabled: true }),

235+

}),

236+

}),

237+

}),

238+

}),

239+

);

240+

});

241+242+

it("keeps a Codex scoped load narrow when the provider has no owner plugin", async () => {

243+

mocks.resolveOwningPluginIdsForProvider.mockReturnValueOnce(undefined);

244+245+

await ensureSelectedAgentHarnessPlugin({

246+

provider: "custom-provider",

247+

modelId: "gpt-5.5",

248+

agentHarnessRuntimeOverride: "codex",

249+

workspaceDir: "/tmp/workspace",

250+

});

251+252+

expect(mocks.resolveBundledProviderCompatPluginIds).not.toHaveBeenCalled();

253+

expect(mocks.resolveActivatableProviderOwnerPluginIds).not.toHaveBeenCalled();

65254

expect(mocks.ensurePluginRegistryLoaded).toHaveBeenCalledWith(

66255

expect.objectContaining({

67256

scope: "all",

@@ -89,5 +278,6 @@ describe("ensureSelectedAgentHarnessPlugin", () => {

89278

});

9027991280

expect(mocks.ensurePluginRegistryLoaded).not.toHaveBeenCalled();

281+

expect(mocks.resolveOwningPluginIdsForProvider).not.toHaveBeenCalled();

92282

});

93283

});