mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 22:02:57 +00:00
57 lines
2.1 KiB
TypeScript
57 lines
2.1 KiB
TypeScript
import { beforeEach, describe, expect, it, vi } from "vitest";
|
|
import type { PluginDiscoveryResult } from "./discovery.js";
|
|
|
|
const discoverOpenClawPluginsMock = vi.fn();
|
|
|
|
vi.mock("./discovery.js", async (importOriginal) => {
|
|
const actual = await importOriginal<typeof import("./discovery.js")>();
|
|
return {
|
|
...actual,
|
|
discoverOpenClawPlugins: (...args: unknown[]) => discoverOpenClawPluginsMock(...args),
|
|
};
|
|
});
|
|
|
|
const { loadPluginManifestRegistry } = await import("./manifest-registry.js");
|
|
const { resolveInstalledPluginIndexRegistry } =
|
|
await import("./installed-plugin-index-registry.js");
|
|
|
|
const emptyDiscovery: PluginDiscoveryResult = { candidates: [], diagnostics: [] };
|
|
|
|
describe("discovery threading", () => {
|
|
beforeEach(() => {
|
|
discoverOpenClawPluginsMock.mockReset();
|
|
discoverOpenClawPluginsMock.mockReturnValue(emptyDiscovery);
|
|
});
|
|
|
|
it("skips internal discoverOpenClawPlugins when discovery is supplied", () => {
|
|
loadPluginManifestRegistry({ discovery: emptyDiscovery });
|
|
expect(discoverOpenClawPluginsMock).not.toHaveBeenCalled();
|
|
|
|
discoverOpenClawPluginsMock.mockClear();
|
|
resolveInstalledPluginIndexRegistry({ discovery: emptyDiscovery, installRecords: {} });
|
|
expect(discoverOpenClawPluginsMock).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it("calls discoverOpenClawPlugins when neither discovery nor candidates supplied", () => {
|
|
loadPluginManifestRegistry({});
|
|
expect(discoverOpenClawPluginsMock).toHaveBeenCalledTimes(1);
|
|
|
|
discoverOpenClawPluginsMock.mockClear();
|
|
resolveInstalledPluginIndexRegistry({ installRecords: {} });
|
|
expect(discoverOpenClawPluginsMock).toHaveBeenCalledTimes(1);
|
|
});
|
|
|
|
it("prefers explicit candidates over discovery when both are supplied", () => {
|
|
loadPluginManifestRegistry({ candidates: [], diagnostics: [], discovery: emptyDiscovery });
|
|
expect(discoverOpenClawPluginsMock).not.toHaveBeenCalled();
|
|
|
|
discoverOpenClawPluginsMock.mockClear();
|
|
resolveInstalledPluginIndexRegistry({
|
|
candidates: [],
|
|
discovery: emptyDiscovery,
|
|
installRecords: {},
|
|
});
|
|
expect(discoverOpenClawPluginsMock).not.toHaveBeenCalled();
|
|
});
|
|
});
|