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

推荐订阅源

Hugging Face - Blog
Hugging Face - Blog
宝玉的分享
宝玉的分享
G
Google Developers Blog
T
Tailwind CSS Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
V
Visual Studio Blog
博客园 - Franky
S
SegmentFault 最新的问题
Jina AI
Jina AI
爱范儿
爱范儿
The Cloudflare Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
D
DataBreaches.Net
C
Check Point Blog
月光博客
月光博客
P
Proofpoint News Feed
T
The Blog of Author Tim Ferriss
罗磊的独立博客
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MongoDB | Blog
MongoDB | Blog
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
Martin Fowler
Martin Fowler

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
perf(tests): speed up channel plugin id tests · openclaw/...
steipete · 2026-04-30 · via Recent Commits to openclaw:main

@@ -43,36 +43,17 @@ vi.mock("../channels/config-presence.js", () => ({

4343

hasMeaningfulChannelConfig,

4444

}));

454546-

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

47-

const actual = await importOriginal<typeof import("./manifest-registry.js")>();

48-

return {

49-

...actual,

50-

loadPluginManifestRegistry,

51-

};

52-

});

46+

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

47+

loadPluginManifestRegistryForInstalledIndex,

48+

}));

534954-

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

55-

const actual = await importOriginal<typeof import("./manifest-registry-installed.js")>();

56-

return {

57-

...actual,

58-

loadPluginManifestRegistryForInstalledIndex,

59-

};

60-

});

50+

vi.mock("./plugin-registry-snapshot.js", () => ({ loadPluginRegistrySnapshot }));

615162-

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

63-

const actual = await importOriginal<typeof import("./plugin-registry.js")>();

52+

vi.mock("./plugin-registry-contributions.js", async (importOriginal) => {

53+

const actual = await importOriginal<typeof import("./plugin-registry-contributions.js")>();

6454

return {

6555

...actual,

6656

loadPluginManifestRegistryForPluginRegistry,

67-

loadPluginRegistrySnapshot,

68-

};

69-

});

70-71-

vi.mock("./installed-plugin-index-store.js", async (importOriginal) => {

72-

const actual = await importOriginal<typeof import("./installed-plugin-index-store.js")>();

73-

return {

74-

...actual,

75-

readPersistedInstalledPluginIndexSync: vi.fn(() => null),

7657

};

7758

});

7859

@@ -87,7 +68,9 @@ import {

8768

resolveGatewayStartupPluginIds,

8869

} from "./channel-plugin-ids.js";

897090-

function withManifestLoadPaths<T extends { id: string }>(plugin: T): T {

71+

function withManifestLoadPaths<T extends { id: string }>(

72+

plugin: T,

73+

): T & Pick<PluginManifestRecord, "rootDir" | "source" | "manifestPath" | "skills" | "hooks"> {

9174

return {

9275

rootDir: `/tmp/plugins/${plugin.id}`,

9376

source: `/tmp/plugins/${plugin.id}/index.ts`,

@@ -98,7 +81,7 @@ function withManifestLoadPaths<T extends { id: string }>(plugin: T): T {

9881

};

9982

}

10083101-

function createManifestRegistryFixture() {

84+

function createManifestRegistryFixture(): PluginManifestRegistry {

10285

return {

10386

plugins: [

10487

{

@@ -282,27 +265,27 @@ function createManifestRegistryFixture() {

282265

providers: [],

283266

cliBackends: [],

284267

},

285-

].map(withManifestLoadPaths),

268+

].map(withManifestLoadPaths) as PluginManifestRecord[],

286269

diagnostics: [],

287270

};

288271

}

289272290-

function createManifestRegistryFixtureWithWorkspaceDemoChannel() {

273+

function createManifestRegistryFixtureWithWorkspaceDemoChannel(): PluginManifestRegistry {

291274

const fixture = createManifestRegistryFixture();

292275

return {

293276

...fixture,

294277

plugins: [

295278

...fixture.plugins,

296-

{

279+

withManifestLoadPaths({

297280

id: "workspace-demo-channel-plugin",

298281

channels: ["demo-channel"],

299282

startupDeferConfiguredChannelFullLoadUntilAfterListen: true,

300283

origin: "workspace",

301284

enabledByDefault: undefined,

302285

providers: [],

303286

cliBackends: [],

304-

},

305-

].map(withManifestLoadPaths),

287+

}),

288+

],

306289

};

307290

}

308291

@@ -379,6 +362,15 @@ function filterManifestRegistryForInstalledIndex(params: {

379362

};

380363

}

381364365+

function useManifestRegistryFixture(

366+

registry: PluginManifestRegistry = createManifestRegistryFixture(),

367+

) {

368+

const index = createInstalledPluginIndexFixture(registry);

369+

loadPluginManifestRegistry.mockReset().mockReturnValue(registry);

370+

loadPluginRegistrySnapshot.mockReset().mockReturnValue(index);

371+

return { registry, index };

372+

}

373+382374

function expectStartupPluginIds(params: {

383375

config: OpenClawConfig;

384376

activationSourceConfig?: OpenClawConfig;

@@ -544,10 +536,7 @@ describe("resolveGatewayStartupPluginIds", () => {

544536

}

545537

return true;

546538

});

547-

loadPluginManifestRegistry.mockReset().mockReturnValue(createManifestRegistryFixture());

548-

loadPluginRegistrySnapshot

549-

.mockReset()

550-

.mockImplementation(() => createInstalledPluginIndexFixture());

539+

useManifestRegistryFixture();

551540

loadPluginManifestRegistryForInstalledIndex

552541

.mockReset()

553542

.mockImplementation(filterManifestRegistryForInstalledIndex);

@@ -778,9 +767,7 @@ describe("resolveGatewayStartupPluginIds", () => {

778767

});

779768780769

it("does not let weak channel presence start untrusted workspace channel owners", () => {

781-

loadPluginManifestRegistry

782-

.mockReset()

783-

.mockReturnValue(createManifestRegistryFixtureWithWorkspaceDemoChannel());

770+

useManifestRegistryFixture(createManifestRegistryFixtureWithWorkspaceDemoChannel());

784771

listPotentialConfiguredChannelIds.mockReturnValue(["demo-channel"]);

785772

listPotentialConfiguredChannelPresenceSignals.mockReturnValue([

786773

{ channelId: "demo-channel", source: "env" },

@@ -807,9 +794,7 @@ describe("resolveGatewayStartupPluginIds", () => {

807794

});

808795809796

it("keeps explicitly trusted deferred channel owners eligible at startup", () => {

810-

loadPluginManifestRegistry

811-

.mockReset()

812-

.mockReturnValue(createManifestRegistryFixtureWithWorkspaceDemoChannel());

797+

useManifestRegistryFixture(createManifestRegistryFixtureWithWorkspaceDemoChannel());

813798

expect(

814799

resolveConfiguredDeferredChannelPluginIds({

815800

config: {

@@ -879,9 +864,7 @@ describe("resolveGatewayStartupPluginIds", () => {

879864

});

880865881866

it("does not treat persisted auth alone as deferred channel startup intent", () => {

882-

loadPluginManifestRegistry

883-

.mockReset()

884-

.mockReturnValue(createManifestRegistryFixtureWithWorkspaceDemoChannel());

867+

useManifestRegistryFixture(createManifestRegistryFixtureWithWorkspaceDemoChannel());

885868

listPotentialConfiguredChannelIds.mockImplementation(

886869

(

887870

_config: OpenClawConfig,

@@ -906,9 +889,7 @@ describe("resolveGatewayStartupPluginIds", () => {

906889

});

907890908891

it("does not treat explicitly disabled stale channel config as deferred startup intent", () => {

909-

loadPluginManifestRegistry

910-

.mockReset()

911-

.mockReturnValue(createManifestRegistryFixtureWithWorkspaceDemoChannel());

892+

useManifestRegistryFixture(createManifestRegistryFixtureWithWorkspaceDemoChannel());

912893913894

expect(

914895

resolveConfiguredDeferredChannelPluginIds({

@@ -1090,7 +1071,7 @@ describe("resolveConfiguredChannelPluginIds", () => {

10901071

}

10911072

return false;

10921073

});

1093-

loadPluginManifestRegistry.mockReset().mockReturnValue(createManifestRegistryFixture());

1074+

useManifestRegistryFixture();

10941075

});

1095107610961077

it("uses manifest activation channel ownership before falling back to direct channel lists", () => {

@@ -1268,7 +1249,7 @@ describe("listConfiguredChannelIdsForReadOnlyScope", () => {

12681249

listPotentialConfiguredChannelPresenceSignals.mockReset().mockReturnValue([]);

12691250

hasPotentialConfiguredChannels.mockReset().mockReturnValue(false);

12701251

hasMeaningfulChannelConfig.mockClear();

1271-

loadPluginManifestRegistry.mockReset().mockReturnValue(createManifestRegistryFixture());

1252+

useManifestRegistryFixture();

12721253

});

1273125412741255

it("filters bundled ambient channel triggers through effective activation", () => {