254 lines
7.7 KiB
TypeScript
254 lines
7.7 KiB
TypeScript
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
|
import type { OpenClawConfig } from "../config/config.js";
|
|
import { createEmptyPluginRegistry } from "./registry.js";
|
|
import { setActivePluginRegistry } from "./runtime.js";
|
|
import {
|
|
resolveBundledPluginWebSearchProviders,
|
|
resolvePluginWebSearchProviders,
|
|
resolveRuntimeWebSearchProviders,
|
|
} from "./web-search-providers.js";
|
|
|
|
const BUNDLED_WEB_SEARCH_PROVIDERS = [
|
|
{ pluginId: "baidu", id: "baidu", order: 5 },
|
|
{ pluginId: "brave", id: "brave", order: 10 },
|
|
{ pluginId: "google", id: "gemini", order: 20 },
|
|
{ pluginId: "xai", id: "grok", order: 30 },
|
|
{ pluginId: "moonshot", id: "kimi", order: 40 },
|
|
{ pluginId: "perplexity", id: "perplexity", order: 50 },
|
|
{ pluginId: "firecrawl", id: "firecrawl", order: 60 },
|
|
{ pluginId: "tavily", id: "tavily", order: 70 },
|
|
] as const;
|
|
|
|
const { loadOpenClawPluginsMock } = vi.hoisted(() => ({
|
|
loadOpenClawPluginsMock: vi.fn((params?: { config?: { plugins?: Record<string, unknown> } }) => {
|
|
const plugins = params?.config?.plugins as
|
|
| {
|
|
enabled?: boolean;
|
|
allow?: string[];
|
|
entries?: Record<string, { enabled?: boolean }>;
|
|
}
|
|
| undefined;
|
|
if (plugins?.enabled === false) {
|
|
return { webSearchProviders: [] };
|
|
}
|
|
const allow = Array.isArray(plugins?.allow) && plugins.allow.length > 0 ? plugins.allow : null;
|
|
const entries = plugins?.entries ?? {};
|
|
const webSearchProviders = BUNDLED_WEB_SEARCH_PROVIDERS.filter((provider) => {
|
|
if (allow && !allow.includes(provider.pluginId)) {
|
|
return false;
|
|
}
|
|
if (entries[provider.pluginId]?.enabled === false) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}).map((provider) => ({
|
|
pluginId: provider.pluginId,
|
|
pluginName: provider.pluginId,
|
|
source: "test" as const,
|
|
provider: {
|
|
id: provider.id,
|
|
label: provider.id,
|
|
hint: `${provider.id} provider`,
|
|
envVars: [`${provider.id.toUpperCase()}_API_KEY`],
|
|
placeholder: `${provider.id}-...`,
|
|
signupUrl: `https://example.com/${provider.id}`,
|
|
autoDetectOrder: provider.order,
|
|
credentialPath: `plugins.entries.${provider.pluginId}.config.webSearch.apiKey`,
|
|
getCredentialValue: () => "configured",
|
|
setCredentialValue: () => {},
|
|
applySelectionConfig:
|
|
provider.id === "firecrawl" ? (config: OpenClawConfig) => config : undefined,
|
|
resolveRuntimeMetadata:
|
|
provider.id === "perplexity"
|
|
? () => ({
|
|
perplexityTransport: "search_api" as const,
|
|
})
|
|
: undefined,
|
|
createTool: () => ({
|
|
description: provider.id,
|
|
parameters: {},
|
|
execute: async () => ({}),
|
|
}),
|
|
},
|
|
}));
|
|
return { webSearchProviders };
|
|
}),
|
|
}));
|
|
|
|
vi.mock("./loader.js", () => ({
|
|
loadOpenClawPlugins: loadOpenClawPluginsMock,
|
|
}));
|
|
|
|
describe("resolvePluginWebSearchProviders", () => {
|
|
beforeEach(() => {
|
|
loadOpenClawPluginsMock.mockClear();
|
|
});
|
|
|
|
afterEach(() => {
|
|
setActivePluginRegistry(createEmptyPluginRegistry());
|
|
});
|
|
|
|
it("returns bundled providers in auto-detect order", () => {
|
|
const providers = resolvePluginWebSearchProviders({});
|
|
|
|
expect(providers.map((provider) => `${provider.pluginId}:${provider.id}`)).toEqual([
|
|
"baidu:baidu",
|
|
"brave:brave",
|
|
"google:gemini",
|
|
"xai:grok",
|
|
"moonshot:kimi",
|
|
"perplexity:perplexity",
|
|
"firecrawl:firecrawl",
|
|
"tavily:tavily",
|
|
]);
|
|
expect(providers.map((provider) => provider.credentialPath)).toEqual([
|
|
"plugins.entries.baidu.config.webSearch.apiKey",
|
|
"plugins.entries.brave.config.webSearch.apiKey",
|
|
"plugins.entries.google.config.webSearch.apiKey",
|
|
"plugins.entries.xai.config.webSearch.apiKey",
|
|
"plugins.entries.moonshot.config.webSearch.apiKey",
|
|
"plugins.entries.perplexity.config.webSearch.apiKey",
|
|
"plugins.entries.firecrawl.config.webSearch.apiKey",
|
|
"plugins.entries.tavily.config.webSearch.apiKey",
|
|
]);
|
|
expect(providers.find((provider) => provider.id === "firecrawl")?.applySelectionConfig).toEqual(
|
|
expect.any(Function),
|
|
);
|
|
expect(
|
|
providers.find((provider) => provider.id === "perplexity")?.resolveRuntimeMetadata,
|
|
).toEqual(expect.any(Function));
|
|
});
|
|
|
|
it("can augment restrictive allowlists for bundled compatibility", () => {
|
|
const providers = resolvePluginWebSearchProviders({
|
|
config: {
|
|
plugins: {
|
|
allow: ["openrouter"],
|
|
},
|
|
},
|
|
bundledAllowlistCompat: true,
|
|
});
|
|
|
|
expect(providers.map((provider) => provider.pluginId)).toEqual([
|
|
"baidu",
|
|
"brave",
|
|
"google",
|
|
"xai",
|
|
"moonshot",
|
|
"perplexity",
|
|
"firecrawl",
|
|
"tavily",
|
|
]);
|
|
});
|
|
|
|
it("does not return bundled providers excluded by a restrictive allowlist without compat", () => {
|
|
const providers = resolvePluginWebSearchProviders({
|
|
config: {
|
|
plugins: {
|
|
allow: ["openrouter"],
|
|
},
|
|
},
|
|
});
|
|
|
|
expect(providers).toEqual([]);
|
|
});
|
|
|
|
it("preserves explicit bundled provider entry state", () => {
|
|
const providers = resolvePluginWebSearchProviders({
|
|
config: {
|
|
plugins: {
|
|
entries: {
|
|
perplexity: { enabled: false },
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
expect(providers.map((provider) => provider.pluginId)).not.toContain("perplexity");
|
|
});
|
|
|
|
it("returns no providers when plugins are globally disabled", () => {
|
|
const providers = resolvePluginWebSearchProviders({
|
|
config: {
|
|
plugins: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
});
|
|
|
|
expect(providers).toEqual([]);
|
|
});
|
|
|
|
it("can resolve bundled providers without the plugin loader", () => {
|
|
const providers = resolveBundledPluginWebSearchProviders({
|
|
bundledAllowlistCompat: true,
|
|
});
|
|
|
|
expect(providers.map((provider) => `${provider.pluginId}:${provider.id}`)).toEqual([
|
|
"baidu:baidu",
|
|
"brave:brave",
|
|
"google:gemini",
|
|
"xai:grok",
|
|
"moonshot:kimi",
|
|
"perplexity:perplexity",
|
|
"firecrawl:firecrawl",
|
|
"tavily:tavily",
|
|
]);
|
|
expect(loadOpenClawPluginsMock).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("can scope bundled resolution to one plugin id", () => {
|
|
const providers = resolveBundledPluginWebSearchProviders({
|
|
config: {
|
|
tools: {
|
|
web: {
|
|
search: {
|
|
provider: "gemini",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
bundledAllowlistCompat: true,
|
|
onlyPluginIds: ["google"],
|
|
});
|
|
|
|
expect(providers.map((provider) => `${provider.pluginId}:${provider.id}`)).toEqual([
|
|
"google:gemini",
|
|
]);
|
|
expect(loadOpenClawPluginsMock).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("prefers the active plugin registry for runtime resolution", () => {
|
|
const registry = createEmptyPluginRegistry();
|
|
registry.webSearchProviders.push({
|
|
pluginId: "custom-search",
|
|
pluginName: "Custom Search",
|
|
provider: {
|
|
id: "custom",
|
|
label: "Custom Search",
|
|
hint: "Custom runtime provider",
|
|
envVars: ["CUSTOM_SEARCH_API_KEY"],
|
|
placeholder: "custom-...",
|
|
signupUrl: "https://example.com/signup",
|
|
autoDetectOrder: 1,
|
|
credentialPath: "tools.web.search.custom.apiKey",
|
|
getCredentialValue: () => "configured",
|
|
setCredentialValue: () => {},
|
|
createTool: () => ({
|
|
description: "custom",
|
|
parameters: {},
|
|
execute: async () => ({}),
|
|
}),
|
|
},
|
|
source: "test",
|
|
});
|
|
setActivePluginRegistry(registry);
|
|
|
|
const providers = resolveRuntimeWebSearchProviders({});
|
|
|
|
expect(providers.map((provider) => `${provider.pluginId}:${provider.id}`)).toEqual([
|
|
"custom-search:custom",
|
|
]);
|
|
});
|
|
});
|