mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-29 10:50:58 +00:00
187 lines
6.0 KiB
TypeScript
187 lines
6.0 KiB
TypeScript
import fs from "node:fs";
|
|
import path from "node:path";
|
|
import { describe, expect, it } from "vitest";
|
|
import {
|
|
collectBundledPluginMetadata,
|
|
writeBundledPluginMetadataModule,
|
|
} from "../../scripts/generate-bundled-plugin-metadata.mjs";
|
|
import {
|
|
BUNDLED_PLUGIN_METADATA,
|
|
resolveBundledPluginGeneratedPath,
|
|
} from "./bundled-plugin-metadata.js";
|
|
import {
|
|
createGeneratedPluginTempRoot,
|
|
installGeneratedPluginTempRootCleanup,
|
|
pluginTestRepoRoot as repoRoot,
|
|
writeJson,
|
|
} from "./generated-plugin-test-helpers.js";
|
|
|
|
const BUNDLED_PLUGIN_METADATA_TEST_TIMEOUT_MS = 300_000;
|
|
|
|
installGeneratedPluginTempRootCleanup();
|
|
|
|
describe("bundled plugin metadata", () => {
|
|
it(
|
|
"matches the generated metadata snapshot",
|
|
{ timeout: BUNDLED_PLUGIN_METADATA_TEST_TIMEOUT_MS },
|
|
async () => {
|
|
await expect(collectBundledPluginMetadata({ repoRoot })).resolves.toEqual(
|
|
BUNDLED_PLUGIN_METADATA,
|
|
);
|
|
},
|
|
);
|
|
|
|
it("captures setup-entry metadata for bundled channel plugins", () => {
|
|
const discord = BUNDLED_PLUGIN_METADATA.find((entry) => entry.dirName === "discord");
|
|
expect(discord?.source).toEqual({ source: "./index.ts", built: "index.js" });
|
|
expect(discord?.setupSource).toEqual({ source: "./setup-entry.ts", built: "setup-entry.js" });
|
|
expect(discord?.manifest.id).toBe("discord");
|
|
expect(discord?.manifest.channelConfigs?.discord).toEqual(
|
|
expect.objectContaining({
|
|
schema: expect.objectContaining({ type: "object" }),
|
|
}),
|
|
);
|
|
});
|
|
|
|
it("prefers built generated paths when present and falls back to source paths", () => {
|
|
const tempRoot = createGeneratedPluginTempRoot("openclaw-bundled-plugin-metadata-");
|
|
|
|
fs.mkdirSync(path.join(tempRoot, "plugin"), { recursive: true });
|
|
fs.writeFileSync(path.join(tempRoot, "plugin", "index.ts"), "export {};\n", "utf8");
|
|
expect(
|
|
resolveBundledPluginGeneratedPath(tempRoot, {
|
|
source: "plugin/index.ts",
|
|
built: "plugin/index.js",
|
|
}),
|
|
).toBe(path.join(tempRoot, "plugin", "index.ts"));
|
|
|
|
fs.writeFileSync(path.join(tempRoot, "plugin", "index.js"), "export {};\n", "utf8");
|
|
expect(
|
|
resolveBundledPluginGeneratedPath(tempRoot, {
|
|
source: "plugin/index.ts",
|
|
built: "plugin/index.js",
|
|
}),
|
|
).toBe(path.join(tempRoot, "plugin", "index.js"));
|
|
});
|
|
|
|
it("supports check mode for stale generated artifacts", async () => {
|
|
const tempRoot = createGeneratedPluginTempRoot("openclaw-bundled-plugin-generated-");
|
|
|
|
writeJson(path.join(tempRoot, "extensions", "alpha", "package.json"), {
|
|
name: "@openclaw/alpha",
|
|
version: "0.0.1",
|
|
openclaw: {
|
|
extensions: ["./index.ts"],
|
|
},
|
|
});
|
|
writeJson(path.join(tempRoot, "extensions", "alpha", "openclaw.plugin.json"), {
|
|
id: "alpha",
|
|
configSchema: { type: "object" },
|
|
});
|
|
|
|
const initial = await writeBundledPluginMetadataModule({
|
|
repoRoot: tempRoot,
|
|
outputPath: "src/plugins/bundled-plugin-metadata.generated.ts",
|
|
});
|
|
expect(initial.wrote).toBe(true);
|
|
|
|
const current = await writeBundledPluginMetadataModule({
|
|
repoRoot: tempRoot,
|
|
outputPath: "src/plugins/bundled-plugin-metadata.generated.ts",
|
|
check: true,
|
|
});
|
|
expect(current.changed).toBe(false);
|
|
expect(current.wrote).toBe(false);
|
|
|
|
fs.writeFileSync(
|
|
path.join(tempRoot, "src/plugins/bundled-plugin-metadata.generated.ts"),
|
|
"// stale\n",
|
|
"utf8",
|
|
);
|
|
|
|
const stale = await writeBundledPluginMetadataModule({
|
|
repoRoot: tempRoot,
|
|
outputPath: "src/plugins/bundled-plugin-metadata.generated.ts",
|
|
check: true,
|
|
});
|
|
expect(stale.changed).toBe(true);
|
|
expect(stale.wrote).toBe(false);
|
|
});
|
|
|
|
it("merges generated channel schema metadata with manifest-owned channel config fields", async () => {
|
|
const tempRoot = createGeneratedPluginTempRoot("openclaw-bundled-plugin-channel-configs-");
|
|
|
|
writeJson(path.join(tempRoot, "extensions", "alpha", "package.json"), {
|
|
name: "@openclaw/alpha",
|
|
version: "0.0.1",
|
|
openclaw: {
|
|
extensions: ["./index.ts"],
|
|
channel: {
|
|
id: "alpha",
|
|
label: "Alpha Root Label",
|
|
blurb: "Alpha Root Description",
|
|
preferOver: ["alpha-legacy"],
|
|
},
|
|
},
|
|
});
|
|
writeJson(path.join(tempRoot, "extensions", "alpha", "openclaw.plugin.json"), {
|
|
id: "alpha",
|
|
channels: ["alpha"],
|
|
configSchema: { type: "object" },
|
|
channelConfigs: {
|
|
alpha: {
|
|
schema: { type: "object", properties: { stale: { type: "boolean" } } },
|
|
label: "Manifest Label",
|
|
uiHints: {
|
|
"channels.alpha.explicitOnly": {
|
|
help: "manifest hint",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|
|
fs.writeFileSync(
|
|
path.join(tempRoot, "extensions", "alpha", "index.ts"),
|
|
"export {};\n",
|
|
"utf8",
|
|
);
|
|
fs.mkdirSync(path.join(tempRoot, "extensions", "alpha", "src"), { recursive: true });
|
|
fs.writeFileSync(
|
|
path.join(tempRoot, "extensions", "alpha", "src", "config-schema.js"),
|
|
[
|
|
"export const AlphaChannelConfigSchema = {",
|
|
" schema: {",
|
|
" type: 'object',",
|
|
" properties: { generated: { type: 'string' } },",
|
|
" },",
|
|
" uiHints: {",
|
|
" 'channels.alpha.generatedOnly': { help: 'generated hint' },",
|
|
" },",
|
|
"};",
|
|
"",
|
|
].join("\n"),
|
|
"utf8",
|
|
);
|
|
|
|
const entries = await collectBundledPluginMetadata({ repoRoot: tempRoot });
|
|
const channelConfigs = entries[0]?.manifest.channelConfigs as
|
|
| Record<string, unknown>
|
|
| undefined;
|
|
expect(channelConfigs?.alpha).toEqual({
|
|
schema: {
|
|
type: "object",
|
|
properties: {
|
|
generated: { type: "string" },
|
|
},
|
|
},
|
|
label: "Manifest Label",
|
|
description: "Alpha Root Description",
|
|
preferOver: ["alpha-legacy"],
|
|
uiHints: {
|
|
"channels.alpha.generatedOnly": { help: "generated hint" },
|
|
"channels.alpha.explicitOnly": { help: "manifest hint" },
|
|
},
|
|
});
|
|
});
|
|
});
|