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

推荐订阅源

MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
MyScale Blog
MyScale Blog
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
U
Unit 42
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog
C
Check Point Blog
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
Vercel News
Vercel News
腾讯CDC
GbyAI
GbyAI
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
H
Help Net Security
博客园 - 三生石上(FineUI控件)
D
DataBreaches.Net
Microsoft Security Blog
Microsoft Security 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: clear gateway startup plugin broad matchers · openc...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -162,6 +162,12 @@ function createLog() {

162162

};

163163

}

164164165+

function firstCallArg<T>(mock: { mock: { calls: unknown[][] } }): T {

166+

const call = mock.mock.calls[0];

167+

expect(call).toBeDefined();

168+

return call?.[0] as T;

169+

}

170+165171

describe("prepareGatewayPluginBootstrap startup plugins", () => {

166172

beforeEach(() => {

167173

applyPluginAutoEnable.mockClear();

@@ -254,71 +260,41 @@ describe("prepareGatewayPluginBootstrap startup plugins", () => {

254260

env: process.env,

255261

manifestRegistry: pluginManifestRegistry,

256262

});

257-

expect(loadPluginLookUpTable).toHaveBeenCalledWith(

258-

expect.objectContaining({

259-

activationSourceConfig: sourceConfig,

260-

metadataSnapshot: pluginMetadataSnapshot,

261-

config: expect.objectContaining({

262-

channels: expect.objectContaining({

263-

telegram: expect.objectContaining({

264-

enabled: true,

265-

dmPolicy: "pairing",

266-

groupPolicy: "allowlist",

267-

}),

268-

}),

269-

plugins: expect.objectContaining({

270-

allow: ["bench-plugin"],

271-

entries: expect.objectContaining({

272-

"bench-plugin": expect.objectContaining({

273-

enabled: true,

274-

config: {

275-

runtimeDefault: true,

276-

},

277-

}),

278-

"memory-core": {

279-

config: {

280-

dreaming: {

281-

enabled: false,

282-

},

283-

},

284-

},

285-

}),

286-

}),

287-

}),

288-

}),

289-

);

290-

expect(loadGatewayStartupPlugins).toHaveBeenCalledWith(

291-

expect.objectContaining({

292-

activationSourceConfig: sourceConfig,

293-

cfg: expect.objectContaining({

294-

channels: expect.objectContaining({

295-

telegram: expect.objectContaining({

296-

enabled: true,

297-

dmPolicy: "pairing",

298-

groupPolicy: "allowlist",

299-

}),

300-

}),

301-

plugins: expect.objectContaining({

302-

allow: ["bench-plugin"],

303-

entries: expect.objectContaining({

304-

"bench-plugin": expect.objectContaining({

305-

enabled: true,

306-

config: {

307-

runtimeDefault: true,

308-

},

309-

}),

310-

"memory-core": {

311-

config: {

312-

dreaming: {

313-

enabled: false,

314-

},

315-

},

316-

},

317-

}),

318-

}),

319-

}),

320-

}),

321-

);

263+

const lookupInput = firstCallArg<{

264+

activationSourceConfig?: OpenClawConfig;

265+

metadataSnapshot?: PluginMetadataSnapshot;

266+

config?: OpenClawConfig;

267+

}>(loadPluginLookUpTable);

268+

expect(lookupInput.activationSourceConfig).toBe(sourceConfig);

269+

expect(lookupInput.metadataSnapshot).toBe(pluginMetadataSnapshot);

270+

expect(lookupInput.config?.channels?.telegram?.enabled).toBe(true);

271+

expect(lookupInput.config?.channels?.telegram?.dmPolicy).toBe("pairing");

272+

expect(lookupInput.config?.channels?.telegram?.groupPolicy).toBe("allowlist");

273+

expect(lookupInput.config?.plugins?.allow).toEqual(["bench-plugin"]);

274+

expect(lookupInput.config?.plugins?.entries?.["bench-plugin"]?.enabled).toBe(true);

275+

expect(lookupInput.config?.plugins?.entries?.["bench-plugin"]?.config).toEqual({

276+

runtimeDefault: true,

277+

});

278+

expect(lookupInput.config?.plugins?.entries?.["memory-core"]?.config).toEqual({

279+

dreaming: { enabled: false },

280+

});

281+282+

const startupInput = firstCallArg<{

283+

activationSourceConfig?: OpenClawConfig;

284+

cfg?: OpenClawConfig;

285+

}>(loadGatewayStartupPlugins);

286+

expect(startupInput.activationSourceConfig).toBe(sourceConfig);

287+

expect(startupInput.cfg?.channels?.telegram?.enabled).toBe(true);

288+

expect(startupInput.cfg?.channels?.telegram?.dmPolicy).toBe("pairing");

289+

expect(startupInput.cfg?.channels?.telegram?.groupPolicy).toBe("allowlist");

290+

expect(startupInput.cfg?.plugins?.allow).toEqual(["bench-plugin"]);

291+

expect(startupInput.cfg?.plugins?.entries?.["bench-plugin"]?.enabled).toBe(true);

292+

expect(startupInput.cfg?.plugins?.entries?.["bench-plugin"]?.config).toEqual({

293+

runtimeDefault: true,

294+

});

295+

expect(startupInput.cfg?.plugins?.entries?.["memory-core"]?.config).toEqual({

296+

dreaming: { enabled: false },

297+

});

322298

});

323299

it("bypasses plugin lookup when plugins are globally disabled", async () => {

324300

const cfg = {

@@ -338,29 +314,29 @@ describe("prepareGatewayPluginBootstrap startup plugins", () => {

338314

const log = createLog();

339315

const { prepareGatewayPluginBootstrap } = await import("./server-startup-plugins.js");

340316341-

await expect(

342-

prepareGatewayPluginBootstrap({

343-

cfgAtStart: cfg,

344-

startupRuntimeConfig: cfg,

345-

minimalTestGateway: false,

346-

log,

347-

}),

348-

).resolves.toMatchObject({

349-

startupPluginIds: [],

350-

deferredConfiguredChannelPluginIds: [],

351-

pluginLookUpTable: undefined,

352-

baseGatewayMethods: ["ping"],

317+

const result = await prepareGatewayPluginBootstrap({

318+

cfgAtStart: cfg,

319+

startupRuntimeConfig: cfg,

320+

minimalTestGateway: false,

321+

log,

353322

});

323+

expect(result.startupPluginIds).toEqual([]);

324+

expect(result.deferredConfiguredChannelPluginIds).toEqual([]);

325+

expect(result.pluginLookUpTable).toBeUndefined();

326+

expect(result.baseGatewayMethods).toEqual(["ping"]);

354327355328

expect(loadPluginLookUpTable).not.toHaveBeenCalled();

356-

expect(loadGatewayStartupPlugins).toHaveBeenCalledWith(

357-

expect.objectContaining({

358-

cfg,

359-

pluginIds: [],

360-

pluginLookUpTable: undefined,

361-

preferSetupRuntimeForChannelPlugins: false,

362-

suppressPluginInfoLogs: false,

363-

}),

364-

);

329+

const startupInput = firstCallArg<{

330+

cfg?: OpenClawConfig;

331+

pluginIds?: string[];

332+

pluginLookUpTable?: unknown;

333+

preferSetupRuntimeForChannelPlugins?: boolean;

334+

suppressPluginInfoLogs?: boolean;

335+

}>(loadGatewayStartupPlugins);

336+

expect(startupInput.cfg).toStrictEqual(cfg);

337+

expect(startupInput.pluginIds).toEqual([]);

338+

expect(startupInput.pluginLookUpTable).toBeUndefined();

339+

expect(startupInput.preferSetupRuntimeForChannelPlugins).toBe(false);

340+

expect(startupInput.suppressPluginInfoLogs).toBe(false);

365341

});

366342

});