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

推荐订阅源

D
DataBreaches.Net
N
Netflix TechBlog - Medium
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
宝玉的分享
宝玉的分享
Y
Y Combinator Blog
博客园 - 聂微东
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
B
Blog RSS Feed
小众软件
小众软件
The GitHub Blog
The GitHub Blog
S
SegmentFault 最新的问题
Hugging Face - Blog
Hugging Face - Blog
Jina AI
Jina AI
Microsoft Azure Blog
Microsoft Azure Blog
V
V2EX
B
Blog
H
Help Net Security
D
Docker
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
罗磊的独立博客
月光博客
月光博客
博客园 - 司徒正美

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: isolate media factory planning imports · openclaw/o...
steipete · 2026-05-06 · via Recent Commits to openclaw:main

@@ -12,9 +12,18 @@ import type { PluginManifestRecord } from "../plugins/manifest-registry.js";

1212

import type { PluginMetadataSnapshot } from "../plugins/plugin-metadata-snapshot.types.js";

1313

import { clearSecretsRuntimeSnapshot } from "../secrets/runtime.js";

1414

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

15-

import { __testing, createOpenClawTools } from "./openclaw-tools.js";

15+

import { resolveOptionalMediaToolFactoryPlan } from "./openclaw-tools.media-factory-plan.js";

1616

import * as pdfModelConfigModule from "./tools/pdf-tool.model-config.js";

171718+

type CreateOpenClawToolsOptions = Parameters<

19+

typeof import("./openclaw-tools.js").createOpenClawTools

20+

>[0];

21+22+

async function createOpenClawToolsForTest(options?: CreateOpenClawToolsOptions) {

23+

const { createOpenClawTools } = await import("./openclaw-tools.js");

24+

return createOpenClawTools(options);

25+

}

26+1827

function createAuthStore(providers: string[] = []): AuthProfileStore {

1928

return {

2029

version: 1,

@@ -180,7 +189,7 @@ describe("optional media tool factory planning", () => {

180189

]);

181190182191

expect(

183-

__testing.resolveOptionalMediaToolFactoryPlan({

192+

resolveOptionalMediaToolFactoryPlan({

184193

config,

185194

authStore: createAuthStore(["github-copilot"]),

186195

}),

@@ -206,7 +215,7 @@ describe("optional media tool factory planning", () => {

206215

installSnapshot(config, []);

207216208217

expect(

209-

__testing.resolveOptionalMediaToolFactoryPlan({

218+

resolveOptionalMediaToolFactoryPlan({

210219

config,

211220

authStore: createAuthStore(),

212221

}),

@@ -234,7 +243,7 @@ describe("optional media tool factory planning", () => {

234243

]);

235244236245

expect(

237-

__testing.resolveOptionalMediaToolFactoryPlan({

246+

resolveOptionalMediaToolFactoryPlan({

238247

config,

239248

authStore: createAuthStore(["image-owner", "anthropic"]),

240249

toolAllowlist: ["image_generate"],

@@ -263,7 +272,7 @@ describe("optional media tool factory planning", () => {

263272

]);

264273265274

expect(

266-

__testing.resolveOptionalMediaToolFactoryPlan({

275+

resolveOptionalMediaToolFactoryPlan({

267276

config,

268277

authStore: createAuthStore(["image-owner", "anthropic"]),

269278

toolDenylist: ["image_generate", "pdf"],

@@ -287,7 +296,7 @@ describe("optional media tool factory planning", () => {

287296

]);

288297289298

expect(

290-

__testing.resolveOptionalMediaToolFactoryPlan({

299+

resolveOptionalMediaToolFactoryPlan({

291300

config,

292301

authStore: createAuthStore(["anthropic"]),

293302

}).pdf,

@@ -320,7 +329,7 @@ describe("optional media tool factory planning", () => {

320329

]);

321330322331

expect(

323-

__testing.resolveOptionalMediaToolFactoryPlan({

332+

resolveOptionalMediaToolFactoryPlan({

324333

config,

325334

authStore: createAuthStore(["image-owner", "video-owner", "music-owner", "anthropic"]),

326335

toolDenylist: ["*_generate", "p*"],

@@ -360,7 +369,7 @@ describe("optional media tool factory planning", () => {

360369

vi.stubEnv("VIDEO_OWNER_API_KEY", "video-key");

361370362371

expect(

363-

__testing.resolveOptionalMediaToolFactoryPlan({

372+

resolveOptionalMediaToolFactoryPlan({

364373

config,

365374

authStore: createAuthStore(["image-owner", "music-owner", "media-owner"]),

366375

}),

@@ -372,12 +381,12 @@ describe("optional media tool factory planning", () => {

372381

});

373382

});

374383375-

it("defers PDF model resolution from the tool-prep hot path", () => {

384+

it("defers PDF model resolution from the tool-prep hot path", async () => {

376385

const config: OpenClawConfig = {};

377386

installSnapshot(config, []);

378387

const resolveSpy = vi.spyOn(pdfModelConfigModule, "resolvePdfModelConfigForTool");

379388380-

const tools = createOpenClawTools({

389+

const tools = await createOpenClawToolsForTest({

381390

config,

382391

agentDir: "/tmp/openclaw-agent-main",

383392

authProfileStore: createAuthStore(["anthropic"]),

@@ -417,7 +426,7 @@ describe("optional media tool factory planning", () => {

417426

]);

418427419428

expect(

420-

__testing.resolveOptionalMediaToolFactoryPlan({

429+

resolveOptionalMediaToolFactoryPlan({

421430

config,

422431

authStore: createAuthStore([

423432

"external-image",

@@ -434,7 +443,7 @@ describe("optional media tool factory planning", () => {

434443

});

435444

});

436445437-

it("keeps manifest-declared image provider auth aliases on the factory path", () => {

446+

it("keeps manifest-declared image provider auth aliases on the factory path", async () => {

438447

const config: OpenClawConfig = {};

439448

const plugins = [

440449

createPlugin({

@@ -463,7 +472,7 @@ describe("optional media tool factory planning", () => {

463472

installSnapshot(config, plugins);

464473465474

expect(

466-

__testing.resolveOptionalMediaToolFactoryPlan({

475+

resolveOptionalMediaToolFactoryPlan({

467476

config,

468477

authStore: createAuthStore(["openai-codex"]),

469478

}),

@@ -472,12 +481,14 @@ describe("optional media tool factory planning", () => {

472481

});

473482

installSnapshot(config, plugins, undefined, process.cwd());

474483

expect(

475-

createOpenClawTools({

476-

config,

477-

workspaceDir: process.cwd(),

478-

authProfileStore: createAuthStore(["openai-codex"]),

479-

pluginToolAllowlist: ["image_generate"],

480-

}).map((tool) => tool.name),

484+

(

485+

await createOpenClawToolsForTest({

486+

config,

487+

workspaceDir: process.cwd(),

488+

authProfileStore: createAuthStore(["openai-codex"]),

489+

pluginToolAllowlist: ["image_generate"],

490+

})

491+

).map((tool) => tool.name),

481492

).toContain("image_generate");

482493

});

483494

@@ -528,7 +539,7 @@ describe("optional media tool factory planning", () => {

528539

]);

529540530541

expect(

531-

__testing.resolveOptionalMediaToolFactoryPlan({

542+

resolveOptionalMediaToolFactoryPlan({

532543

config,

533544

authStore: createAuthStore(),

534545

}),

@@ -539,7 +550,7 @@ describe("optional media tool factory planning", () => {

539550

});

540551

});

541552542-

it("does not expose manifest-backed generation providers when plugins are globally disabled", () => {

553+

it("does not expose manifest-backed generation providers when plugins are globally disabled", async () => {

543554

const config: OpenClawConfig = {

544555

plugins: {

545556

enabled: false,

@@ -587,7 +598,7 @@ describe("optional media tool factory planning", () => {

587598

]);

588599589600

expect(

590-

__testing.resolveOptionalMediaToolFactoryPlan({

601+

resolveOptionalMediaToolFactoryPlan({

591602

config,

592603

authStore: createAuthStore(),

593604

}),

@@ -598,15 +609,17 @@ describe("optional media tool factory planning", () => {

598609

pdf: false,

599610

});

600611

expect(

601-

createOpenClawTools({

602-

config,

603-

authProfileStore: createAuthStore(),

604-

pluginToolAllowlist: ["image_generate", "video_generate", "music_generate"],

605-

}).map((tool) => tool.name),

612+

(

613+

await createOpenClawToolsForTest({

614+

config,

615+

authProfileStore: createAuthStore(),

616+

pluginToolAllowlist: ["image_generate", "video_generate", "music_generate"],

617+

})

618+

).map((tool) => tool.name),

606619

).not.toEqual(expect.arrayContaining(["image_generate", "video_generate", "music_generate"]));

607620

});

608621609-

it("does not count unresolved SecretRef config signals as configured", () => {

622+

it("does not count unresolved SecretRef config signals as configured", async () => {

610623

vi.stubEnv("COMFY_TEST_API_KEY", "");

611624

const workspaceDir = process.cwd();

612625

const config: OpenClawConfig = {

@@ -660,7 +673,7 @@ describe("optional media tool factory planning", () => {

660673

);

661674662675

expect(

663-

__testing.resolveOptionalMediaToolFactoryPlan({

676+

resolveOptionalMediaToolFactoryPlan({

664677

config,

665678

workspaceDir,

666679

authStore: createAuthStore(),

@@ -672,12 +685,14 @@ describe("optional media tool factory planning", () => {

672685

pdf: false,

673686

});

674687

expect(

675-

createOpenClawTools({

676-

config,

677-

workspaceDir,

678-

authProfileStore: createAuthStore(),

679-

pluginToolAllowlist: ["image_generate", "video_generate", "music_generate"],

680-

}).map((tool) => tool.name),

688+

(

689+

await createOpenClawToolsForTest({

690+

config,

691+

workspaceDir,

692+

authProfileStore: createAuthStore(),

693+

pluginToolAllowlist: ["image_generate", "video_generate", "music_generate"],

694+

})

695+

).map((tool) => tool.name),

681696

).not.toEqual(expect.arrayContaining(["image_generate", "video_generate", "music_generate"]));

682697

});

683698

@@ -737,7 +752,7 @@ describe("optional media tool factory planning", () => {

737752

]);

738753739754

expect(

740-

__testing.resolveOptionalMediaToolFactoryPlan({

755+

resolveOptionalMediaToolFactoryPlan({

741756

config,

742757

authStore: createAuthStore(),

743758

}),

@@ -748,7 +763,7 @@ describe("optional media tool factory planning", () => {

748763

});

749764

});

750765751-

it("does not register the image tool without cheap vision availability evidence", () => {

766+

it("does not register the image tool without cheap vision availability evidence", async () => {

752767

const config: OpenClawConfig = {};

753768

installSnapshot(config, [

754769

createPlugin({

@@ -759,12 +774,14 @@ describe("optional media tool factory planning", () => {

759774

]);

760775761776

expect(

762-

createOpenClawTools({

763-

config,

764-

agentDir: "/tmp/openclaw-agent",

765-

authProfileStore: createAuthStore(),

766-

disablePluginTools: true,

767-

}).map((tool) => tool.name),

777+

(

778+

await createOpenClawToolsForTest({

779+

config,

780+

agentDir: "/tmp/openclaw-agent",

781+

authProfileStore: createAuthStore(),

782+

disablePluginTools: true,

783+

})

784+

).map((tool) => tool.name),

768785

).not.toContain("image");

769786

});

770787

@@ -804,14 +821,16 @@ describe("optional media tool factory planning", () => {

804821

},

805822

])(

806823

"registers generation tools from Comfy $name without a current metadata snapshot",

807-

({ config }) => {

824+

async ({ config }) => {

808825

setBundledPluginsDirOverrideForTest(path.join(process.cwd(), "extensions"));

809826810-

const toolNames = createOpenClawTools({

811-

config,

812-

authProfileStore: createAuthStore(),

813-

pluginToolAllowlist: ["image_generate", "video_generate", "music_generate"],

814-

}).map((tool) => tool.name);

827+

const toolNames = (

828+

await createOpenClawToolsForTest({

829+

config,

830+

authProfileStore: createAuthStore(),

831+

pluginToolAllowlist: ["image_generate", "video_generate", "music_generate"],

832+

})

833+

).map((tool) => tool.name);

815834816835

expect(toolNames).toContain("image_generate");

817836

expect(toolNames).toContain("video_generate");

@@ -853,7 +872,7 @@ describe("optional media tool factory planning", () => {

853872

]);

854873855874

expect(

856-

__testing.resolveOptionalMediaToolFactoryPlan({

875+

resolveOptionalMediaToolFactoryPlan({

857876

config,

858877

authStore: createAuthStore(["openai-codex"]),

859878

}),

@@ -878,7 +897,7 @@ describe("optional media tool factory planning", () => {

878897

]);

879898880899

expect(

881-

__testing.resolveOptionalMediaToolFactoryPlan({

900+

resolveOptionalMediaToolFactoryPlan({

882901

config,

883902

authStore: createAuthStore(["external-image"]),

884903

}),

@@ -895,7 +914,7 @@ describe("optional media tool factory planning", () => {

895914

installSnapshot(config, []);

896915897916

expect(

898-

__testing.resolveOptionalMediaToolFactoryPlan({

917+

resolveOptionalMediaToolFactoryPlan({

899918

config,

900919

authStore: createAuthStore(),

901920

}),