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

推荐订阅源

J
Java Code Geeks
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
U
Unit 42
A
About on SuperTechFans
Vercel News
Vercel News
B
Blog
Martin Fowler
Martin Fowler
MyScale Blog
MyScale Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
腾讯CDC
D
Docker
V
Visual Studio Blog
博客园 - 叶小钗
The Cloudflare Blog
Jina AI
Jina AI
B
Blog RSS Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
WordPress大学
WordPress大学
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏

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 channel setup broad matchers · openclaw/openc...
steipete · 2026-05-10 · via Recent Commits to openclaw:main

@@ -78,6 +78,22 @@ function makePluginRegistry(overrides: Partial<PluginRegistry> = {}): PluginRegi

7878

} as unknown as PluginRegistry;

7979

}

808081+

function callArg<T>(mock: { mock: { calls: unknown[][] } }, index = 0): T {

82+

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

83+

expect(call).toBeDefined();

84+

return call?.[0] as T;

85+

}

86+87+

function expectExternalCatalogInstallCall(index = 0) {

88+

const input = callArg<{

89+

entry?: { id?: string; install?: { npmSpec?: string } };

90+

autoConfirmSingleSource?: boolean;

91+

}>(ensureChannelSetupPluginInstalled, index);

92+

expect(input.entry?.id).toBe("external-chat");

93+

expect(input.entry?.install?.npmSpec).toBe("@vendor/external-chat-plugin");

94+

expect(input.autoConfirmSingleSource).toBe(true);

95+

}

96+8197

const resolveAgentWorkspaceDir = vi.hoisted(() =>

8298

vi.fn((_cfg?: unknown, _agentId?: unknown) => "/tmp/openclaw-workspace"),

8399

);

@@ -237,19 +253,19 @@ describe("setupChannels workspace shadow exclusion", () => {

237253

} as never,

238254

);

239255240-

expect(listTrustedChannelPluginCatalogEntries).toHaveBeenCalledWith(

241-

expect.objectContaining({

242-

cfg: {},

243-

workspaceDir: "/tmp/openclaw-workspace",

244-

}),

245-

);

246-

expect(loadChannelSetupPluginRegistrySnapshotForChannel).toHaveBeenCalledWith(

247-

expect.objectContaining({

248-

channel: "external-chat",

249-

pluginId: "@vendor/external-chat-plugin",

250-

workspaceDir: "/tmp/openclaw-workspace",

251-

}),

256+

const trustedInput = callArg<{ cfg?: unknown; workspaceDir?: string }>(

257+

listTrustedChannelPluginCatalogEntries,

252258

);

259+

expect(trustedInput.cfg).toEqual({});

260+

expect(trustedInput.workspaceDir).toBe("/tmp/openclaw-workspace");

261+

const registryInput = callArg<{

262+

channel?: string;

263+

pluginId?: string;

264+

workspaceDir?: string;

265+

}>(loadChannelSetupPluginRegistrySnapshotForChannel);

266+

expect(registryInput.channel).toBe("external-chat");

267+

expect(registryInput.pluginId).toBe("@vendor/external-chat-plugin");

268+

expect(registryInput.workspaceDir).toBe("/tmp/openclaw-workspace");

253269

});

254270255271

it("keeps trusted workspace overrides eligible during preload", async () => {

@@ -271,13 +287,14 @@ describe("setupChannels workspace shadow exclusion", () => {

271287

} as never,

272288

);

273289274-

expect(loadChannelSetupPluginRegistrySnapshotForChannel).toHaveBeenCalledWith(

275-

expect.objectContaining({

276-

channel: "external-chat",

277-

pluginId: "trusted-external-chat-shadow",

278-

workspaceDir: "/tmp/openclaw-workspace",

279-

}),

280-

);

290+

const registryInput = callArg<{

291+

channel?: string;

292+

pluginId?: string;

293+

workspaceDir?: string;

294+

}>(loadChannelSetupPluginRegistrySnapshotForChannel);

295+

expect(registryInput.channel).toBe("external-chat");

296+

expect(registryInput.pluginId).toBe("trusted-external-chat-shadow");

297+

expect(registryInput.workspaceDir).toBe("/tmp/openclaw-workspace");

281298

});

282299283300

it("defers status and setup-plugin loads until a channel is selected", async () => {

@@ -298,7 +315,7 @@ describe("setupChannels workspace shadow exclusion", () => {

298315

},

299316

);

300317301-

expect(select).toHaveBeenCalledWith(expect.objectContaining({ message: "Select a channel" }));

318+

expect(callArg<{ message?: string }>(select).message).toBe("Select a channel");

302319

expect(collectChannelStatus).not.toHaveBeenCalled();

303320

expect(listTrustedChannelPluginCatalogEntries).not.toHaveBeenCalled();

304321

expect(listChannelSetupPlugins).not.toHaveBeenCalled();

@@ -334,11 +351,9 @@ describe("setupChannels workspace shadow exclusion", () => {

334351

},

335352

);

336353337-

expect(resolveChannelSetupEntries).toHaveBeenCalledWith(

338-

expect.objectContaining({

339-

installedPlugins: [activePlugin],

340-

}),

341-

);

354+

expect(

355+

callArg<{ installedPlugins?: unknown[] }>(resolveChannelSetupEntries).installedPlugins,

356+

).toEqual([activePlugin]);

342357

expect(listChannelSetupPlugins).not.toHaveBeenCalled();

343358

expect(collectChannelStatus).not.toHaveBeenCalled();

344359

});

@@ -398,11 +413,7 @@ describe("setupChannels workspace shadow exclusion", () => {

398413

);

399414400415

expect(loadChannelSetupPluginRegistrySnapshotForChannel).not.toHaveBeenCalled();

401-

expect(setupWizard.configure).toHaveBeenCalledWith(

402-

expect.objectContaining({

403-

cfg: {},

404-

}),

405-

);

416+

expect(callArg<{ cfg?: unknown }>(setupWizard.configure).cfg).toEqual({});

406417

expect(next).toEqual({

407418

channels: {

408419

"custom-chat": { token: "secret" },

@@ -472,30 +483,27 @@ describe("setupChannels workspace shadow exclusion", () => {

472483

);

473484474485

expect(loadChannelSetupPluginRegistrySnapshotForChannel).toHaveBeenCalledTimes(2);

475-

expect(loadChannelSetupPluginRegistrySnapshotForChannel).toHaveBeenNthCalledWith(

476-

1,

477-

expect.objectContaining({

478-

channel: "external-chat",

479-

pluginId: "external-chat",

480-

workspaceDir: "/tmp/openclaw-workspace",

481-

forceSetupOnlyChannelPlugins: true,

482-

}),

483-

);

484-

expect(loadChannelSetupPluginRegistrySnapshotForChannel).toHaveBeenNthCalledWith(

485-

2,

486-

expect.objectContaining({

487-

channel: "external-chat",

488-

workspaceDir: "/tmp/openclaw-workspace",

489-

forceSetupOnlyChannelPlugins: true,

490-

}),

491-

);

486+

const firstRegistryInput = callArg<{

487+

channel?: string;

488+

pluginId?: string;

489+

workspaceDir?: string;

490+

forceSetupOnlyChannelPlugins?: boolean;

491+

}>(loadChannelSetupPluginRegistrySnapshotForChannel, 0);

492+

expect(firstRegistryInput.channel).toBe("external-chat");

493+

expect(firstRegistryInput.pluginId).toBe("external-chat");

494+

expect(firstRegistryInput.workspaceDir).toBe("/tmp/openclaw-workspace");

495+

expect(firstRegistryInput.forceSetupOnlyChannelPlugins).toBe(true);

496+

const secondRegistryInput = callArg<{

497+

channel?: string;

498+

workspaceDir?: string;

499+

forceSetupOnlyChannelPlugins?: boolean;

500+

}>(loadChannelSetupPluginRegistrySnapshotForChannel, 1);

501+

expect(secondRegistryInput.channel).toBe("external-chat");

502+

expect(secondRegistryInput.workspaceDir).toBe("/tmp/openclaw-workspace");

503+

expect(secondRegistryInput.forceSetupOnlyChannelPlugins).toBe(true);

492504

expect(getChannelSetupPlugin).not.toHaveBeenCalled();

493505

expect(collectChannelStatus).not.toHaveBeenCalled();

494-

expect(configure).toHaveBeenCalledWith(

495-

expect.objectContaining({

496-

cfg: {},

497-

}),

498-

);

506+

expect(callArg<{ cfg?: unknown }>(configure).cfg).toEqual({});

499507

expect(next).toEqual({

500508

channels: {

501509

"external-chat": { token: "secret" },

@@ -747,15 +755,7 @@ describe("setupChannels workspace shadow exclusion", () => {

747755

);

748756749757

expect(ensureChannelSetupPluginInstalled).toHaveBeenCalledTimes(1);

750-

expect(ensureChannelSetupPluginInstalled).toHaveBeenCalledWith(

751-

expect.objectContaining({

752-

entry: expect.objectContaining({

753-

id: "external-chat",

754-

install: expect.objectContaining({ npmSpec: "@vendor/external-chat-plugin" }),

755-

}),

756-

autoConfirmSingleSource: true,

757-

}),

758-

);

758+

expectExternalCatalogInstallCall();

759759

expect(note).not.toHaveBeenCalledWith("external-chat plugin not available.", "Channel setup");

760760

expect(configure).toHaveBeenCalledTimes(1);

761761

},

@@ -909,20 +909,13 @@ describe("setupChannels workspace shadow exclusion", () => {

909909

},

910910

);

911911912-

expect(getTrustedChannelPluginCatalogEntry).toHaveBeenCalledWith(

913-

"external-chat",

914-

expect.objectContaining({ workspaceDir: "/tmp/openclaw-workspace" }),

915-

);

912+

expect(getTrustedChannelPluginCatalogEntry.mock.calls[0]?.[0]).toBe("external-chat");

913+

expect(

914+

(getTrustedChannelPluginCatalogEntry.mock.calls[0]?.[1] as { workspaceDir?: string })

915+

?.workspaceDir,

916+

).toBe("/tmp/openclaw-workspace");

916917

expect(ensureChannelSetupPluginInstalled).toHaveBeenCalledTimes(1);

917-

expect(ensureChannelSetupPluginInstalled).toHaveBeenCalledWith(

918-

expect.objectContaining({

919-

entry: expect.objectContaining({

920-

id: "external-chat",

921-

install: expect.objectContaining({ npmSpec: "@vendor/external-chat-plugin" }),

922-

}),

923-

autoConfirmSingleSource: true,

924-

}),

925-

);

918+

expectExternalCatalogInstallCall();

926919

expect(note).not.toHaveBeenCalledWith("external-chat plugin not available.", "Channel setup");

927920

expect(configure).toHaveBeenCalledTimes(1);

928921

},