fix(release): validate npm publish wrapper args

This commit is contained in:
Vincent Koc
2026-06-20 21:46:57 +02:00
parent 90d2f161c9
commit a1201e99fc
2 changed files with 96 additions and 4 deletions
+26 -4
View File
@@ -2,11 +2,33 @@
set -euo pipefail
mode="${1:-}"
publish_target="${2:-}"
usage() {
echo "usage: bash scripts/openclaw-npm-publish.sh --publish [package.tgz]"
}
if [[ "${mode}" != "--publish" ]]; then
echo "usage: bash scripts/openclaw-npm-publish.sh --publish [package.tgz]" >&2
if [[ "${1:-}" == "--help" || "${1:-}" == "-h" ]]; then
usage
exit 0
fi
if [[ "${1:-}" != "--publish" ]]; then
usage >&2
exit 2
fi
shift
publish_target=""
if [[ "${1:-}" == "--" ]]; then
shift
fi
if [[ "$#" -gt 0 ]]; then
case "$1" in
-*) echo "error: unexpected npm publish target option: $1" >&2; exit 2 ;;
*) publish_target="$1"; shift ;;
esac
fi
if [[ "$#" -gt 0 ]]; then
echo "error: unexpected npm publish argument: $1" >&2
exit 2
fi
+70
View File
@@ -0,0 +1,70 @@
// OpenClaw NPM Publish tests cover publish wrapper argument safety.
import { spawnSync } from "node:child_process";
import { mkdtempSync, rmSync, writeFileSync } from "node:fs";
import { tmpdir } from "node:os";
import path from "node:path";
import { afterEach, describe, expect, it } from "vitest";
const scriptPath = "scripts/openclaw-npm-publish.sh";
const tempDirs: string[] = [];
function makeTempDir(prefix: string): string {
const dir = mkdtempSync(path.join(tmpdir(), prefix));
tempDirs.push(dir);
return dir;
}
function runPublishWrapper(args: string[]) {
return spawnSync("bash", [scriptPath, ...args], {
cwd: process.cwd(),
encoding: "utf8",
});
}
afterEach(() => {
for (const dir of tempDirs.splice(0)) {
rmSync(dir, { force: true, recursive: true });
}
});
describe("openclaw npm publish wrapper", () => {
it("prints help without resolving release metadata", () => {
const result = runPublishWrapper(["--help"]);
expect(result.status).toBe(0);
expect(result.stdout.trim()).toBe(
"usage: bash scripts/openclaw-npm-publish.sh --publish [package.tgz]",
);
expect(result.stderr).toBe("");
});
it("rejects missing publish mode before resolving release metadata", () => {
const result = runPublishWrapper([]);
expect(result.status).toBe(2);
expect(result.stdout).toBe("");
expect(result.stderr.trim()).toBe(
"usage: bash scripts/openclaw-npm-publish.sh --publish [package.tgz]",
);
});
it("rejects option-like publish targets before npm publish", () => {
const result = runPublishWrapper(["--publish", "--tag"]);
expect(result.status).toBe(2);
expect(result.stdout).toBe("");
expect(result.stderr.trim()).toBe("error: unexpected npm publish target option: --tag");
});
it("rejects extra publish arguments before npm publish", () => {
const tempRoot = makeTempDir("openclaw-npm-publish-");
const tarball = path.join(tempRoot, "openclaw.tgz");
writeFileSync(tarball, "placeholder", "utf8");
const result = runPublishWrapper(["--publish", tarball, "extra"]);
expect(result.status).toBe(2);
expect(result.stdout).toBe("");
expect(result.stderr.trim()).toBe("error: unexpected npm publish argument: extra");
});
});