Files
openclaw/src/install-sh-version.test.ts
2026-04-27 13:33:05 +01:00

87 lines
2.5 KiB
TypeScript

import { execFileSync } from "node:child_process";
import fs from "node:fs";
import path from "node:path";
import { afterEach, describe, expect, it } from "vitest";
import { cleanupTempDirs, makeTempDir } from "../test/helpers/temp-dir.js";
const tempRoots: string[] = [];
const installerPath = path.join(process.cwd(), "scripts", "install.sh");
const installerSource = fs.readFileSync(installerPath, "utf-8");
const versionHelperStart = installerSource.indexOf("load_install_version_helpers() {");
const versionHelperEnd = installerSource.indexOf("\nis_gateway_daemon_loaded() {");
if (versionHelperStart < 0 || versionHelperEnd < 0) {
throw new Error("install.sh version helper block not found");
}
const versionHelperSource = installerSource.slice(versionHelperStart, versionHelperEnd);
function resolveInstallerVersionCases(params: { stdinCwd: string }): string[] {
const output = execFileSync(
"bash",
[
"-c",
`${versionHelperSource}
fake_openclaw_decorated() { printf '%s\\n' 'OpenClaw 2026.3.10 (abcdef0)'; }
fake_openclaw_raw() { printf '%s\\n' "OpenClaw dev's build"; }
OPENCLAW_BIN=fake_openclaw_decorated resolve_openclaw_version
OPENCLAW_BIN=fake_openclaw_raw resolve_openclaw_version
(
cd "$1"
source /dev/stdin <<'OPENCLAW_STDIN_INSTALLER'
${versionHelperSource}
fake_openclaw_stdin() { printf '%s\\n' 'OpenClaw 2026.3.10 (abcdef0)'; }
OPENCLAW_BIN=fake_openclaw_stdin
resolve_openclaw_version
OPENCLAW_STDIN_INSTALLER
)`,
"openclaw-version-test",
params.stdinCwd,
],
{
cwd: process.cwd(),
encoding: "utf-8",
env: {
...process.env,
OPENCLAW_INSTALL_SH_NO_RUN: "1",
},
},
);
return output.trimEnd().split("\n");
}
describe("install.sh version resolution", () => {
afterEach(() => {
cleanupTempDirs(tempRoots);
});
it.runIf(process.platform !== "win32")(
"parses CLI versions and keeps stdin helpers isolated from cwd",
() => {
const hostileCwd = makeTempDir(tempRoots, "openclaw-install-stdin-");
const hostileHelper = path.join(
hostileCwd,
"docker",
"install-sh-common",
"version-parse.sh",
);
fs.mkdirSync(path.dirname(hostileHelper), { recursive: true });
fs.writeFileSync(
hostileHelper,
`#!/usr/bin/env bash
extract_openclaw_semver() {
printf '%s' 'poisoned'
}
`,
"utf-8",
);
expect(
resolveInstallerVersionCases({
stdinCwd: hostileCwd,
}),
).toEqual(["2026.3.10", "OpenClaw dev's build", "2026.3.10"]);
},
);
});