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

推荐订阅源

MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
DataBreaches.Net
腾讯CDC
GbyAI
GbyAI
I
InfoQ
博客园 - Franky
G
Google Developers Blog
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
Visual Studio Blog
Vercel News
Vercel News
博客园_首页
MyScale Blog
MyScale Blog
Martin Fowler
Martin Fowler
N
Netflix TechBlog - Medium
V
V2EX
T
The Blog of Author Tim Ferriss
M
MIT News - Artificial intelligence
雷峰网
雷峰网
H
Hackread – Cybersecurity News, Data Breaches, AI and More
大猫的无限游戏
大猫的无限游戏
The GitHub Blog
The GitHub Blog

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(cli): resolve web command SecretRefs · openclaw/openc...
steipete · 2026-05-17 · via Recent Commits to openclaw:main

@@ -172,6 +172,103 @@ describe("resolveCommandSecretRefsViaGateway", () => {

172172

expect(readTalkProviderApiKey(result.resolvedConfig)).toBe("sk-live");

173173

});

174174175+

it("passes command provider overrides to gateway secret resolution", async () => {

176+

callGateway.mockResolvedValueOnce({

177+

assignments: [

178+

{

179+

path: TALK_TEST_PROVIDER_API_KEY_PATH,

180+

pathSegments: [...TALK_TEST_PROVIDER_API_KEY_PATH_SEGMENTS],

181+

value: "sk-live",

182+

},

183+

],

184+

diagnostics: [],

185+

});

186+

const config = buildTalkTestProviderConfig({

187+

source: "env",

188+

provider: "default",

189+

id: "TALK_API_KEY",

190+

});

191+192+

await resolveCommandSecretRefsViaGateway({

193+

config,

194+

commandName: "infer web search",

195+

targetIds: new Set(["talk.providers.*.apiKey"]),

196+

providerOverrides: { webSearch: "tavily" },

197+

});

198+199+

expect(callGateway.mock.calls[0]?.[0]?.params).toEqual({

200+

commandName: "infer web search",

201+

targetIds: ["talk.providers.*.apiKey"],

202+

providerOverrides: { webSearch: "tavily" },

203+

});

204+

});

205+206+

it("applies provider overrides during unavailable-gateway local fallback", async () => {

207+

const restoreDeps = commandSecretGatewayTesting.setDepsForTest({

208+

collectConfigAssignments: ({ context }) => {

209+

context.assignments.push({

210+

path: "plugins.entries.google.config.webSearch.apiKey",

211+

} as never);

212+

},

213+

resolveManifestContractOwnerPluginId: (params) =>

214+

params.contract === "webSearchProviders" && params.value === "gemini"

215+

? "google"

216+

: undefined,

217+

});

218+

const envKey = "WEB_SEARCH_GEMINI_OVERRIDE_LOCAL_FALLBACK";

219+

await withEnvValue(envKey, "gemini-override-local-fallback-key", async () => {

220+

try {

221+

callGateway.mockRejectedValueOnce(new Error("gateway closed"));

222+

const result = await resolveCommandSecretRefsViaGateway({

223+

config: {

224+

tools: {

225+

web: {

226+

search: {

227+

provider: "brave",

228+

apiKey: {

229+

source: "env",

230+

provider: "default",

231+

id: "WEB_SEARCH_BRAVE_MISSING_LOCAL_FALLBACK",

232+

},

233+

},

234+

},

235+

},

236+

plugins: {

237+

entries: {

238+

google: {

239+

config: {

240+

webSearch: {

241+

apiKey: { source: "env", provider: "default", id: envKey },

242+

},

243+

},

244+

},

245+

},

246+

},

247+

} as unknown as OpenClawConfig,

248+

commandName: "infer web search",

249+

targetIds: new Set([

250+

"tools.web.search.apiKey",

251+

"plugins.entries.google.config.webSearch.apiKey",

252+

]),

253+

providerOverrides: { webSearch: "gemini" },

254+

});

255+256+

const googleWebSearchConfig = result.resolvedConfig.plugins?.entries?.google?.config as

257+

| { webSearch?: { apiKey?: unknown } }

258+

| undefined;

259+

expect(result.resolvedConfig.tools?.web?.search?.provider).toBe("gemini");

260+

expect(googleWebSearchConfig?.webSearch?.apiKey).toBe("gemini-override-local-fallback-key");

261+

expect(result.targetStatesByPath["plugins.entries.google.config.webSearch.apiKey"]).toBe(

262+

"resolved_local",

263+

);

264+

expect(result.targetStatesByPath["tools.web.search.apiKey"]).toBe("inactive_surface");

265+

expectGatewayUnavailableLocalFallbackDiagnostics(result);

266+

} finally {

267+

restoreDeps();

268+

}

269+

});

270+

});

271+175272

it("enforces unresolved checks only for allowed paths when provided", async () => {

176273

const restoreDeps = commandSecretGatewayTesting.setDepsForTest({

177274

analyzeCommandSecretAssignmentsFromSnapshot: () =>

@@ -425,6 +522,36 @@ describe("resolveCommandSecretRefsViaGateway", () => {

425522

});

426523

});

427524525+

it("falls back to local resolution for legacy web fetch SecretRefs when gateway is unavailable", async () => {

526+

const envKey = "WEB_FETCH_FIRECRAWL_LEGACY_LOCAL_FALLBACK";

527+

await withEnvValue(envKey, "legacy-firecrawl-local-fallback-key", async () => {

528+

callGateway.mockRejectedValueOnce(new Error("gateway closed"));

529+

const result = await resolveCommandSecretRefsViaGateway({

530+

config: {

531+

tools: {

532+

web: {

533+

fetch: {

534+

provider: "firecrawl",

535+

firecrawl: {

536+

apiKey: { source: "env", provider: "default", id: envKey },

537+

},

538+

},

539+

},

540+

},

541+

} as unknown as OpenClawConfig,

542+

commandName: "infer web fetch",

543+

targetIds: new Set(["tools.web.fetch.firecrawl.apiKey"]),

544+

});

545+546+

const resolvedFetch = result.resolvedConfig.tools?.web?.fetch as

547+

| { firecrawl?: { apiKey?: unknown } }

548+

| undefined;

549+

expect(resolvedFetch?.firecrawl?.apiKey).toBe("legacy-firecrawl-local-fallback-key");

550+

expect(result.targetStatesByPath["tools.web.fetch.firecrawl.apiKey"]).toBe("resolved_local");

551+

expectGatewayUnavailableLocalFallbackDiagnostics(result);

552+

});

553+

});

554+428555

it("marks web SecretRefs inactive when the web surface is disabled during local fallback", async () => {

429556

const restoreDeps = commandSecretGatewayTesting.setDepsForTest({

430557

collectConfigAssignments: ({ context }) => {

@@ -467,6 +594,7 @@ describe("resolveCommandSecretRefsViaGateway", () => {

467594

} as OpenClawConfig,

468595

commandName: "agent",

469596

targetIds: new Set(["plugins.entries.google.config.webSearch.apiKey"]),

597+

providerOverrides: { webSearch: "gemini" },

470598

});

471599472600

expect(result.hadUnresolvedTargets).toBe(false);