mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-29 19:01:44 +00:00
62 lines
1.9 KiB
TypeScript
62 lines
1.9 KiB
TypeScript
import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
|
|
import { createBundledBrowserPluginFixture } from "../../test/helpers/browser-bundled-plugin-fixture.js";
|
|
import type { OpenClawConfig } from "../config/config.js";
|
|
import { clearPluginDiscoveryCache } from "../plugins/discovery.js";
|
|
import { clearPluginLoaderCache } from "../plugins/loader.js";
|
|
import { clearPluginManifestRegistryCache } from "../plugins/manifest-registry.js";
|
|
import { resetPluginRuntimeStateForTest } from "../plugins/runtime.js";
|
|
import { createOpenClawTools } from "./openclaw-tools.js";
|
|
|
|
function resetPluginState() {
|
|
clearPluginLoaderCache();
|
|
clearPluginDiscoveryCache();
|
|
clearPluginManifestRegistryCache();
|
|
resetPluginRuntimeStateForTest();
|
|
}
|
|
|
|
describe("createOpenClawTools browser plugin integration", () => {
|
|
let bundledFixture: ReturnType<typeof createBundledBrowserPluginFixture> | null = null;
|
|
|
|
beforeEach(() => {
|
|
bundledFixture = createBundledBrowserPluginFixture();
|
|
vi.stubEnv("OPENCLAW_BUNDLED_PLUGINS_DIR", bundledFixture.rootDir);
|
|
resetPluginState();
|
|
});
|
|
|
|
afterEach(() => {
|
|
resetPluginState();
|
|
vi.unstubAllEnvs();
|
|
bundledFixture?.cleanup();
|
|
bundledFixture = null;
|
|
});
|
|
|
|
it("loads the bundled browser plugin through normal plugin resolution", () => {
|
|
const tools = createOpenClawTools({
|
|
config: {
|
|
plugins: {
|
|
allow: ["browser"],
|
|
},
|
|
} as OpenClawConfig,
|
|
});
|
|
|
|
expect(tools.map((tool) => tool.name)).toContain("browser");
|
|
});
|
|
|
|
it("omits the browser tool when the bundled browser plugin is disabled", () => {
|
|
const tools = createOpenClawTools({
|
|
config: {
|
|
plugins: {
|
|
allow: ["browser"],
|
|
entries: {
|
|
browser: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
},
|
|
} as OpenClawConfig,
|
|
});
|
|
|
|
expect(tools.map((tool) => tool.name)).not.toContain("browser");
|
|
});
|
|
});
|