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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
I
InfoQ
B
Blog RSS Feed
D
Docker
GbyAI
GbyAI
N
Netflix TechBlog - Medium
Y
Y Combinator Blog
F
Fortinet All Blogs
P
Proofpoint News Feed
Microsoft Azure Blog
Microsoft Azure Blog
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
M
MIT News - Artificial intelligence
C
Check Point Blog
Vercel News
Vercel News
云风的 BLOG
云风的 BLOG
博客园 - Franky
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
V
V2EX
Last Week in AI
Last Week in AI
L
LangChain 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
test: slim secret runtime coverage · openclaw/openclaw@ce...
steipete · 2026-05-06 · via Recent Commits to openclaw:main

@@ -3,14 +3,183 @@ import path from "node:path";

33

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

44

import type { AuthProfileStore } from "../agents/auth-profiles.js";

55

import type { OpenClawConfig } from "../config/config.js";

6-

import type { PluginOrigin } from "../plugins/types.js";

6+

import type {

7+

PluginOrigin,

8+

PluginWebFetchProviderEntry,

9+

PluginWebSearchProviderEntry,

10+

} from "../plugins/types.js";

711

import { getPath, setPathCreateStrict } from "./path-utils.js";

812

import { canonicalizeSecretTargetCoverageId } from "./target-registry-test-helpers.js";

9131014

vi.mock("../plugins/installed-plugin-index-records.js", () => ({

1115

loadInstalledPluginIndexInstallRecordsSync: () => ({}),

1216

}));

131718+

function createCoverageWebSearchProvider(params: {

19+

pluginId: string;

20+

id: string;

21+

envVar: string;

22+

order: number;

23+

}): PluginWebSearchProviderEntry {

24+

const credentialPath = `plugins.entries.${params.pluginId}.config.webSearch.apiKey`;

25+

const readConfiguredCredential = (config?: OpenClawConfig): unknown =>

26+

(config?.plugins?.entries?.[params.pluginId]?.config as { webSearch?: { apiKey?: unknown } })

27+

?.webSearch?.apiKey;

28+

return {

29+

pluginId: params.pluginId,

30+

id: params.id,

31+

label: params.id,

32+

hint: `${params.id} coverage provider`,

33+

envVars: [params.envVar],

34+

placeholder: `${params.id}-key`,

35+

signupUrl: `https://example.com/${params.id}`,

36+

autoDetectOrder: params.order,

37+

credentialPath,

38+

inactiveSecretPaths: [credentialPath],

39+

getCredentialValue: () => undefined,

40+

setCredentialValue: () => {},

41+

getConfiguredCredentialValue: readConfiguredCredential,

42+

setConfiguredCredentialValue: (configTarget, value) => {

43+

setPathCreateStrict(

44+

configTarget,

45+

["plugins", "entries", params.pluginId, "config", "webSearch", "apiKey"],

46+

value,

47+

);

48+

},

49+

createTool: () => null,

50+

};

51+

}

52+53+

function createCoverageWebFetchProvider(params: {

54+

pluginId: string;

55+

id: string;

56+

envVar: string;

57+

}): PluginWebFetchProviderEntry {

58+

const credentialPath = `plugins.entries.${params.pluginId}.config.webFetch.apiKey`;

59+

const readConfiguredCredential = (config?: OpenClawConfig): unknown =>

60+

(config?.plugins?.entries?.[params.pluginId]?.config as { webFetch?: { apiKey?: unknown } })

61+

?.webFetch?.apiKey;

62+

return {

63+

pluginId: params.pluginId,

64+

id: params.id,

65+

label: params.id,

66+

hint: `${params.id} coverage fetch provider`,

67+

envVars: [params.envVar],

68+

placeholder: `${params.id}-key`,

69+

signupUrl: `https://example.com/${params.id}`,

70+

autoDetectOrder: 10,

71+

credentialPath,

72+

inactiveSecretPaths: [credentialPath],

73+

getCredentialValue: () => undefined,

74+

setCredentialValue: () => {},

75+

getConfiguredCredentialValue: readConfiguredCredential,

76+

setConfiguredCredentialValue: (configTarget, value) => {

77+

setPathCreateStrict(

78+

configTarget,

79+

["plugins", "entries", params.pluginId, "config", "webFetch", "apiKey"],

80+

value,

81+

);

82+

},

83+

createTool: () => null,

84+

};

85+

}

86+87+

const COVERAGE_WEB_SEARCH_PROVIDERS = new Map(

88+

[

89+

createCoverageWebSearchProvider({

90+

pluginId: "brave",

91+

id: "brave",

92+

envVar: "BRAVE_API_KEY",

93+

order: 10,

94+

}),

95+

createCoverageWebSearchProvider({

96+

pluginId: "google",

97+

id: "gemini",

98+

envVar: "GEMINI_API_KEY",

99+

order: 20,

100+

}),

101+

createCoverageWebSearchProvider({

102+

pluginId: "xai",

103+

id: "grok",

104+

envVar: "XAI_API_KEY",

105+

order: 30,

106+

}),

107+

createCoverageWebSearchProvider({

108+

pluginId: "moonshot",

109+

id: "kimi",

110+

envVar: "MOONSHOT_API_KEY",

111+

order: 40,

112+

}),

113+

createCoverageWebSearchProvider({

114+

pluginId: "perplexity",

115+

id: "perplexity",

116+

envVar: "PERPLEXITY_API_KEY",

117+

order: 50,

118+

}),

119+

createCoverageWebSearchProvider({

120+

pluginId: "firecrawl",

121+

id: "firecrawl",

122+

envVar: "FIRECRAWL_API_KEY",

123+

order: 60,

124+

}),

125+

createCoverageWebSearchProvider({

126+

pluginId: "exa",

127+

id: "exa",

128+

envVar: "EXA_API_KEY",

129+

order: 65,

130+

}),

131+

createCoverageWebSearchProvider({

132+

pluginId: "minimax",

133+

id: "minimax",

134+

envVar: "MINIMAX_API_KEY",

135+

order: 70,

136+

}),

137+

createCoverageWebSearchProvider({

138+

pluginId: "tavily",

139+

id: "tavily",

140+

envVar: "TAVILY_API_KEY",

141+

order: 80,

142+

}),

143+

].map((provider) => [provider.pluginId, provider]),

144+

);

145+146+

const COVERAGE_WEB_FETCH_PROVIDERS = new Map(

147+

[

148+

createCoverageWebFetchProvider({

149+

pluginId: "firecrawl",

150+

id: "firecrawl",

151+

envVar: "FIRECRAWL_API_KEY",

152+

}),

153+

].map((provider) => [provider.pluginId, provider]),

154+

);

155+156+

vi.mock("../plugins/web-provider-public-artifacts.explicit.js", () => ({

157+

resolveBundledExplicitWebFetchProvidersFromPublicArtifacts: (params: {

158+

onlyPluginIds: readonly string[];

159+

}) => {

160+

const providers = params.onlyPluginIds.map((pluginId) =>

161+

COVERAGE_WEB_FETCH_PROVIDERS.get(pluginId),

162+

);

163+

return providers.every(

164+

(provider): provider is PluginWebFetchProviderEntry => provider !== undefined,

165+

)

166+

? providers

167+

: null;

168+

},

169+

resolveBundledExplicitWebSearchProvidersFromPublicArtifacts: (params: {

170+

onlyPluginIds: readonly string[];

171+

}) => {

172+

const providers = params.onlyPluginIds.map((pluginId) =>

173+

COVERAGE_WEB_SEARCH_PROVIDERS.get(pluginId),

174+

);

175+

return providers.every(

176+

(provider): provider is PluginWebSearchProviderEntry => provider !== undefined,

177+

)

178+

? providers

179+

: null;

180+

},

181+

}));

182+14183

type SecretRegistryEntry = {

15184

id: string;

16185

configFile: "openclaw.json" | "auth-profiles.json";

@@ -159,6 +328,23 @@ function buildCoverageLoadablePluginOrigins(

159328

return origins;

160329

}

161330331+

function resolveCoverageLoadablePluginOrigins(

332+

entries: readonly SecretRegistryEntry[],

333+

): ReadonlyMap<string, PluginOrigin> | undefined {

334+

const origins = new Map<string, PluginOrigin>();

335+

for (const entry of entries) {

336+

if (!entry.id.startsWith("plugins.entries.")) {

337+

continue;

338+

}

339+

const pluginId = entry.id.split(".")[2];

340+

const origin = pluginId ? COVERAGE_LOADABLE_PLUGIN_ORIGINS.get(pluginId) : undefined;

341+

if (pluginId && origin) {

342+

origins.set(pluginId, origin);

343+

}

344+

}

345+

return origins.size > 0 ? origins : undefined;

346+

}

347+162348

function resolveCoverageBatchKey(entry: SecretRegistryEntry): string {

163349

if (entry.id.startsWith("agents.defaults.")) {

164350

return entry.id;

@@ -569,7 +755,7 @@ async function expectOpenClawCoverageEntriesResolved(

569755

const snapshot = await prepareConfigCoverageSnapshot({

570756

config,

571757

env,

572-

loadablePluginOrigins: COVERAGE_LOADABLE_PLUGIN_ORIGINS,

758+

loadablePluginOrigins: resolveCoverageLoadablePluginOrigins(batch),

573759

includeRuntimeWebTools: batchNeedsRuntimeWebTools(batch),

574760

skipConfigCollectors: batchUsesRuntimeWebToolsOnly(batch),

575761

});