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

推荐订阅源

人人都是产品经理
人人都是产品经理
博客园_首页
IT之家
IT之家
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Vercel News
Vercel News
美团技术团队
D
Docker
WordPress大学
WordPress大学
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
The Cloudflare Blog
Y
Y Combinator Blog
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
G
Google Developers Blog
爱范儿
爱范儿
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
MongoDB | Blog
MongoDB | Blog
S
SegmentFault 最新的问题
GbyAI
GbyAI
Hugging Face - Blog
Hugging Face - Blog
Microsoft Azure Blog
Microsoft Azure Blog
A
About on SuperTechFans

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(secrets): resolve plugin env metadata cold · openclaw...
vincentkoc · 2026-04-26 · via Recent Commits to openclaw:main

@@ -25,23 +25,37 @@ type MockManifestRegistry = {

2525

diagnostics: unknown[];

2626

};

272728-

const loadPluginManifestRegistry = vi.hoisted(() =>

29-

vi.fn<() => MockManifestRegistry>(() => ({ plugins: [], diagnostics: [] })),

30-

);

28+

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

29+

loadPluginManifestRegistryForInstalledIndex: vi.fn<() => MockManifestRegistry>(() => ({

30+

plugins: [],

31+

diagnostics: [],

32+

})),

33+

loadPluginRegistrySnapshot: vi.fn(() => ({ plugins: [] })),

34+

}));

35+36+

vi.mock("../plugins/manifest-registry-installed.js", () => ({

37+

loadPluginManifestRegistryForInstalledIndex:

38+

pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex,

39+

}));

314032-

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

33-

loadPluginManifestRegistry,

41+

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

42+

loadPluginRegistrySnapshot: pluginRegistryMocks.loadPluginRegistrySnapshot,

3443

}));

35443645

describe("provider env vars dynamic manifest metadata", () => {

3746

beforeEach(() => {

38-

loadPluginManifestRegistry.mockReset();

39-

loadPluginManifestRegistry.mockReturnValue({ plugins: [], diagnostics: [] });

47+

pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex.mockReset();

48+

pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex.mockReturnValue({

49+

plugins: [],

50+

diagnostics: [],

51+

});

52+

pluginRegistryMocks.loadPluginRegistrySnapshot.mockReset();

53+

pluginRegistryMocks.loadPluginRegistrySnapshot.mockReturnValue({ plugins: [] });

4054

__testing.resetProviderEnvVarCachesForTests();

4155

});

42564357

it("includes later-installed plugin env vars without a bundled generated map", async () => {

44-

loadPluginManifestRegistry.mockReturnValue({

58+

pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex.mockReturnValue({

4559

plugins: [

4660

{

4761

id: "external-fireworks",

@@ -64,7 +78,7 @@ describe("provider env vars dynamic manifest metadata", () => {

6478

});

65796680

it("includes setup provider env vars without loading setup runtime", async () => {

67-

loadPluginManifestRegistry.mockReturnValue({

81+

pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex.mockReturnValue({

6882

plugins: [

6983

{

7084

id: "external-model-studio",

@@ -88,7 +102,7 @@ describe("provider env vars dynamic manifest metadata", () => {

88102

});

8910390104

it("appends setup provider env vars after explicit provider auth env vars", async () => {

91-

loadPluginManifestRegistry.mockReturnValue({

105+

pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex.mockReturnValue({

92106

plugins: [

93107

{

94108

id: "external-fireworks",

@@ -113,7 +127,7 @@ describe("provider env vars dynamic manifest metadata", () => {

113127

});

114128115129

it("keeps lazy manifest-backed exports cold until accessed and resolves them once", async () => {

116-

loadPluginManifestRegistry.mockReturnValue({

130+

pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex.mockReturnValue({

117131

plugins: [

118132

{

119133

id: "external-fireworks",

@@ -126,19 +140,22 @@ describe("provider env vars dynamic manifest metadata", () => {

126140

diagnostics: [],

127141

});

128142129-

expect(loadPluginManifestRegistry).not.toHaveBeenCalled();

143+

expect(pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex).not.toHaveBeenCalled();

130144

expect(PROVIDER_ENV_VARS.fireworks).toEqual(["FIREWORKS_ALT_API_KEY"]);

131145

expect(PROVIDER_AUTH_ENV_VAR_CANDIDATES.fireworks).toEqual(["FIREWORKS_ALT_API_KEY"]);

132-

const initialLoads = loadPluginManifestRegistry.mock.calls.length;

146+

const initialLoads =

147+

pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex.mock.calls.length;

133148

expect(initialLoads).toBeGreaterThan(0);

134149135150

void PROVIDER_ENV_VARS.fireworks;

136151

void PROVIDER_AUTH_ENV_VAR_CANDIDATES.fireworks;

137-

expect(loadPluginManifestRegistry).toHaveBeenCalledTimes(initialLoads);

152+

expect(pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex).toHaveBeenCalledTimes(

153+

initialLoads,

154+

);

138155

});

139156140157

it("reuses the lazy default lookup cache for repeated provider env var reads", async () => {

141-

loadPluginManifestRegistry.mockReturnValue({

158+

pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex.mockReturnValue({

142159

plugins: [

143160

{

144161

id: "external-fireworks",

@@ -152,14 +169,17 @@ describe("provider env vars dynamic manifest metadata", () => {

152169

});

153170154171

expect(getProviderEnvVars("fireworks")).toEqual(["FIREWORKS_ALT_API_KEY"]);

155-

const initialLoads = loadPluginManifestRegistry.mock.calls.length;

172+

const initialLoads =

173+

pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex.mock.calls.length;

156174

expect(initialLoads).toBeGreaterThan(0);

157175

expect(getProviderEnvVars("fireworks")).toEqual(["FIREWORKS_ALT_API_KEY"]);

158-

expect(loadPluginManifestRegistry).toHaveBeenCalledTimes(initialLoads);

176+

expect(pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex).toHaveBeenCalledTimes(

177+

initialLoads,

178+

);

159179

});

160180161181

it("keeps workspace plugin env vars in default lookups", async () => {

162-

loadPluginManifestRegistry.mockReturnValue({

182+

pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex.mockReturnValue({

163183

plugins: [

164184

{

165185

id: "workspace-audio",

@@ -179,7 +199,7 @@ describe("provider env vars dynamic manifest metadata", () => {

179199

});

180200181201

it("excludes untrusted workspace plugin env vars when requested", async () => {

182-

loadPluginManifestRegistry.mockReturnValue({

202+

pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex.mockReturnValue({

183203

plugins: [

184204

{

185205

id: "workspace-audio",

@@ -229,7 +249,7 @@ describe("provider env vars dynamic manifest metadata", () => {

229249

});

230250231251

it("keeps explicitly trusted workspace plugin env vars when requested", async () => {

232-

loadPluginManifestRegistry.mockReturnValue({

252+

pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex.mockReturnValue({

233253

plugins: [

234254

{

235255

id: "workspace-audio",

@@ -257,7 +277,7 @@ describe("provider env vars dynamic manifest metadata", () => {

257277

});

258278259279

it("does not trust arbitrary workspace plugin ids from the context engine slot", async () => {

260-

loadPluginManifestRegistry.mockReturnValue({

280+

pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex.mockReturnValue({

261281

plugins: [

262282

{

263283

id: "workspace-audio",

@@ -287,7 +307,7 @@ describe("provider env vars dynamic manifest metadata", () => {

287307

});

288308289309

it("keeps selected workspace context engine env vars when requested", async () => {

290-

loadPluginManifestRegistry.mockReturnValue({

310+

pluginRegistryMocks.loadPluginManifestRegistryForInstalledIndex.mockReturnValue({

291311

plugins: [

292312

{

293313

id: "workspace-engine",