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

推荐订阅源

V
Visual Studio Blog
罗磊的独立博客
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
博客园_首页
量子位
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美
人人都是产品经理
人人都是产品经理
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
爱范儿
爱范儿
S
SegmentFault 最新的问题
雷峰网
雷峰网
小众软件
小众软件
博客园 - 聂微东
美团技术团队
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - 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: speed up provider and security tests · openclaw/ope...
steipete · 2026-04-26 · via Recent Commits to openclaw:main

@@ -1,88 +1,53 @@

1-

import { afterEach, describe, expect, it, vi } from "vitest";

2-

import { createEmptyPluginRegistry } from "../plugins/registry.js";

3-

import { setActivePluginRegistry } from "../plugins/runtime.js";

1+

import { beforeEach, describe, expect, it, vi } from "vitest";

42

import {

53

buildMediaUnderstandingRegistry,

64

getMediaUnderstandingProvider,

75

} from "./provider-registry.js";

6+

import type { MediaUnderstandingProvider } from "./types.js";

879-

vi.mock("../plugins/capability-provider-runtime.js", async () => {

10-

const actual = await vi.importActual<typeof import("../plugins/capability-provider-runtime.js")>(

11-

"../plugins/capability-provider-runtime.js",

12-

);

13-

const runtime =

14-

await vi.importActual<typeof import("../plugins/runtime.js")>("../plugins/runtime.js");

15-

return {

16-

...actual,

17-

resolvePluginCapabilityProviders: ({ key }: { key: string }) =>

18-

key !== "mediaUnderstandingProviders"

19-

? []

20-

: (() => {

21-

const activeProviders =

22-

runtime

23-

.getActivePluginRegistry()

24-

?.mediaUnderstandingProviders.map((entry) => entry.provider) ?? [];

25-

return activeProviders.length > 0

26-

? activeProviders

27-

: [

28-

{ id: "groq", capabilities: ["image", "audio"] },

29-

{ id: "deepgram", capabilities: ["audio"] },

30-

];

31-

})(),

32-

};

33-

});

8+

const resolvePluginCapabilityProvidersMock = vi.hoisted(() => vi.fn());

9+10+

vi.mock("../plugins/capability-provider-runtime.js", () => ({

11+

resolvePluginCapabilityProviders: resolvePluginCapabilityProvidersMock,

12+

}));

13+14+

function createMediaProvider(

15+

params: Pick<MediaUnderstandingProvider, "id" | "capabilities"> &

16+

Partial<MediaUnderstandingProvider>,

17+

): MediaUnderstandingProvider {

18+

return params;

19+

}

34203521

describe("media-understanding provider registry", () => {

36-

afterEach(() => {

37-

setActivePluginRegistry(createEmptyPluginRegistry());

22+

beforeEach(() => {

23+

resolvePluginCapabilityProvidersMock.mockReset();

24+

resolvePluginCapabilityProvidersMock.mockReturnValue([]);

3825

});

392640-

it("loads bundled providers by default when no active registry is present", () => {

27+

it("loads media providers from the capability runtime", () => {

28+

resolvePluginCapabilityProvidersMock.mockReturnValue([

29+

createMediaProvider({ id: "groq", capabilities: ["image", "audio"] }),

30+

createMediaProvider({ id: "deepgram", capabilities: ["audio"] }),

31+

]);

32+4133

const registry = buildMediaUnderstandingRegistry();

34+4235

expect(getMediaUnderstandingProvider("groq", registry)?.id).toBe("groq");

4336

expect(getMediaUnderstandingProvider("deepgram", registry)?.id).toBe("deepgram");

44-

});

45-46-

it("merges plugin-registered media providers into the active registry", async () => {

47-

const pluginRegistry = createEmptyPluginRegistry();

48-

pluginRegistry.mediaUnderstandingProviders.push({

49-

pluginId: "google",

50-

pluginName: "Google Plugin",

51-

source: "test",

52-

provider: {

53-

id: "google",

54-

capabilities: ["image", "audio", "video"],

55-

describeImage: async () => ({ text: "plugin image" }),

56-

transcribeAudio: async () => ({ text: "plugin audio" }),

57-

describeVideo: async () => ({ text: "plugin video" }),

58-

},

37+

expect(resolvePluginCapabilityProvidersMock).toHaveBeenCalledWith({

38+

key: "mediaUnderstandingProviders",

39+

cfg: undefined,

5940

});

60-

setActivePluginRegistry(pluginRegistry);

61-62-

const registry = buildMediaUnderstandingRegistry();

63-

const provider = getMediaUnderstandingProvider("gemini", registry);

64-65-

expect(provider?.id).toBe("google");

66-

expect(await provider?.describeVideo?.({} as never)).toEqual({ text: "plugin video" });

6741

});

684269-

it("keeps provider id normalization behavior for plugin-owned providers", () => {

70-

const pluginRegistry = createEmptyPluginRegistry();

71-

pluginRegistry.mediaUnderstandingProviders.push({

72-

pluginId: "google",

73-

pluginName: "Google Plugin",

74-

source: "test",

75-

provider: {

76-

id: "google",

77-

capabilities: ["image", "audio", "video"],

78-

},

79-

});

80-

setActivePluginRegistry(pluginRegistry);

43+

it("keeps provider id normalization behavior for capability providers", () => {

44+

resolvePluginCapabilityProvidersMock.mockReturnValue([

45+

createMediaProvider({ id: "google", capabilities: ["image", "audio", "video"] }),

46+

]);

81478248

const registry = buildMediaUnderstandingRegistry();

83-

const provider = getMediaUnderstandingProvider("gemini", registry);

844985-

expect(provider?.id).toBe("google");

50+

expect(getMediaUnderstandingProvider("gemini", registry)?.id).toBe("google");

8651

});

87528853

it("auto-registers media-understanding for config providers with image-capable models (#51392)", () => {

@@ -109,21 +74,15 @@ describe("media-understanding provider registry", () => {

10974

expect(textOnlyProvider).toBeUndefined();

11075

});

11176112-

it("does not override plugin-registered providers when config also has image-capable models", async () => {

113-

const pluginRegistry = createEmptyPluginRegistry();

114-

pluginRegistry.mediaUnderstandingProviders.push({

115-

pluginId: "google",

116-

pluginName: "Google Plugin",

117-

source: "test",

118-

provider: {

77+

it("does not override capability providers when config also has image-capable models", async () => {

78+

resolvePluginCapabilityProvidersMock.mockReturnValue([

79+

createMediaProvider({

11980

id: "google",

12081

capabilities: ["image", "audio", "video"],

12182

describeImage: async () => ({ text: "plugin image" }),

12283

transcribeAudio: async () => ({ text: "plugin audio" }),

123-

},

124-

});

125-

setActivePluginRegistry(pluginRegistry);

126-84+

}),

85+

]);

12786

const cfg = {

12887

models: {

12988

providers: {

@@ -140,6 +99,10 @@ describe("media-understanding provider registry", () => {

14099

expect(provider?.capabilities).toEqual(["image", "audio", "video"]);

141100

expect(await provider?.describeImage?.({} as never)).toEqual({ text: "plugin image" });

142101

expect(await provider?.transcribeAudio?.({} as never)).toEqual({ text: "plugin audio" });

102+

expect(resolvePluginCapabilityProvidersMock).toHaveBeenCalledWith({

103+

key: "mediaUnderstandingProviders",

104+

cfg,

105+

});

143106

});

144107145108

it("does not auto-register providers with audio or video only inputs", () => {