Files
openclaw/scripts/test-live.mjs
Peter Steinberger 8cd092620d test: fix changed-run routing, dedupe gateway package lanes, repair force-rerun triggers (#104287)
* test: fix changed-run routing, dedupe gateway package lanes, repair force-rerun triggers

- route extensions/active-memory changed runs to their dedicated lane; add a
  generic guard that every catch-all-excluded extension root resolves to a
  dedicated config so future split lanes cannot silently skip changed tests
- exclude packages/gateway-client and packages/gateway-protocol from the unit
  lane; explicit targets now route to the gateway-client lane (was double-run)
- generate forceRerunTriggers from the test/vitest directory and resolve all
  entries absolute: Vitest matches triggers against absolute changed-file
  paths, so the old hand-maintained relative list never matched at all
- replace deprecated envFile:false with envDir:false (Vitest 4.1.9 warning)
- give scripts/test-live.mjs stall detection teeth: kill the process group and
  exit non-zero when OPENCLAW_VITEST_NO_OUTPUT_TIMEOUT_MS elapses quietly
- consolidate the live-docker shell target list into changed-lanes.mjs so the
  lane regex and check targets cannot drift; cover subagent-announce edits
- delete orphans: vitest.extension-clickclack.config.ts,
  vitest.full-core-unit.config.ts, scripts/test-docker-all.sh,
  scripts/test-live-acp-spawn-defaults-docker.sh

Closes #104231

* test: keep envDir literal so sharedVitestConfig satisfies Vite UserConfig

Vite 8 types envDir as string | false; the bare object literal widened false to
boolean and broke check:test-types at the defineConfig call sites.
2026-07-11 00:58:14 -07:00

255 lines
6.8 KiB
JavaScript

// Runs the full live Vitest suite with live-test env and heartbeat output.
import { terminateManagedChild } from "./lib/managed-child-process.mjs";
import { spawnPnpmRunner } from "./pnpm-runner.mjs";
import { resolveVitestNoOutputTimeoutMs } from "./run-vitest.mjs";
import {
forwardSignalToVitestProcessGroup,
installVitestProcessGroupCleanup,
shouldUseDetachedVitestProcessGroup,
} from "./vitest-process-group.mjs";
/**
* Renders CLI usage for the live-test wrapper.
*/
function testLiveUsage() {
return [
"Usage: node scripts/test-live.mjs [options] [--] [vitest targets/args...]",
"",
"Runs live Vitest suites with OPENCLAW_LIVE_TEST=1.",
"",
"Options:",
" --codex-harness Enable the live Codex harness.",
" --quiet, --quiet-live Keep live test output quiet.",
" --no-quiet, --no-quiet-live",
" Show live test output.",
" -h, --help Show this help without starting live tests.",
].join("\n");
}
/**
* Parses live-test wrapper flags and forwarded Vitest args.
*/
export function parseTestLiveArgs(argv) {
const forwardedArgs = [];
let quietOverride;
let forceCodexHarness = false;
let help = false;
let passthrough = false;
for (const arg of argv) {
if (passthrough) {
forwardedArgs.push(arg);
continue;
}
if (arg === "--") {
passthrough = true;
continue;
}
if (arg === "--help" || arg === "-h") {
help = true;
continue;
}
if (arg === "--codex-harness") {
forceCodexHarness = true;
continue;
}
if (arg === "--quiet" || arg === "--quiet-live") {
quietOverride = "1";
continue;
}
if (arg === "--no-quiet" || arg === "--no-quiet-live") {
quietOverride = "0";
continue;
}
forwardedArgs.push(arg);
}
return {
forceCodexHarness,
forwardedArgs,
help,
quietOverride,
};
}
/**
* Builds env for live tests, including quiet mode and Codex harness opt-in.
*/
export function buildTestLiveEnv(args, baseEnv = process.env) {
return {
...baseEnv,
CI: baseEnv.CI || "1",
PNPM_CONFIG_VERIFY_DEPS_BEFORE_RUN: baseEnv.PNPM_CONFIG_VERIFY_DEPS_BEFORE_RUN || "false",
pnpm_config_verify_deps_before_run: baseEnv.pnpm_config_verify_deps_before_run || "false",
OPENCLAW_LIVE_TEST: baseEnv.OPENCLAW_LIVE_TEST || "1",
OPENCLAW_LIVE_TEST_QUIET: args.quietOverride ?? baseEnv.OPENCLAW_LIVE_TEST_QUIET ?? "1",
...(args.forceCodexHarness ? { OPENCLAW_LIVE_CODEX_HARNESS: "1" } : {}),
};
}
/**
* Reads the live-test heartbeat interval.
*/
export function resolveTestLiveHeartbeatMs(baseEnv = process.env) {
const value = baseEnv.OPENCLAW_LIVE_WRAPPER_HEARTBEAT_MS;
if (value === undefined || value === "") {
return 20_000;
}
const text = value.trim();
if (!/^\d+$/u.test(text)) {
throw new Error(`invalid OPENCLAW_LIVE_WRAPPER_HEARTBEAT_MS: ${text}`);
}
const parsed = Number(text);
if (!Number.isSafeInteger(parsed) || parsed <= 0) {
throw new Error(`invalid OPENCLAW_LIVE_WRAPPER_HEARTBEAT_MS: ${text}`);
}
return parsed;
}
/**
* Reads the live-test no-output timeout using the shared Vitest watchdog contract.
*/
export function resolveTestLiveNoOutputTimeoutMs(baseEnv = process.env) {
return resolveVitestNoOutputTimeoutMs(baseEnv);
}
/**
* Builds pnpm/vitest args for full live test execution.
*/
export function buildTestLivePnpmArgs(args) {
return [
"exec",
"vitest",
"run",
"--config",
"test/vitest/vitest.live.config.ts",
...args.forwardedArgs,
];
}
/**
* Builds spawn options for the live-test Vitest child.
*/
export function buildTestLiveSpawnParams(env, platform = process.platform) {
return {
detached: shouldUseDetachedVitestProcessGroup(platform),
env,
stdio: ["inherit", "pipe", "pipe"],
};
}
/**
* Runs the live-test wrapper process.
*/
export function main(argv = process.argv.slice(2), baseEnv = process.env) {
const args = parseTestLiveArgs(argv);
if (args.help) {
console.log(testLiveUsage());
process.exit(0);
}
const env = buildTestLiveEnv(args, baseEnv);
const heartbeatMs = resolveTestLiveHeartbeatMs(baseEnv);
const noOutputTimeoutMs = resolveTestLiveNoOutputTimeoutMs(baseEnv);
const startedAt = Date.now();
let lastOutputAt = startedAt;
let lastHeartbeatAt = startedAt;
let timedOut = false;
const child = spawnPnpmRunner({
pnpmArgs: buildTestLivePnpmArgs(args),
...buildTestLiveSpawnParams(env),
});
let forwardedSignal = null;
const teardownChildCleanup = installVitestProcessGroupCleanup({
child,
forceSignal: "SIGKILL",
forceSignalDelayMs: 100,
onSignal: (signal) => {
forwardedSignal ??= signal;
},
});
const teardown = () => {
clearInterval(heartbeat);
teardownChildCleanup();
};
const noteOutput = () => {
lastOutputAt = Date.now();
lastHeartbeatAt = lastOutputAt;
};
child.stdout?.on("data", (chunk) => {
noteOutput();
process.stdout.write(chunk);
});
child.stderr?.on("data", (chunk) => {
noteOutput();
process.stderr.write(chunk);
});
const heartbeat = setInterval(
() => {
const now = Date.now();
const quietMs = now - lastOutputAt;
if (noOutputTimeoutMs !== null && quietMs >= noOutputTimeoutMs) {
timedOut = true;
clearInterval(heartbeat);
process.stderr.write(
`[test:live] no output for ${noOutputTimeoutMs}ms; terminating stalled Vitest process group\n`,
);
terminateManagedChild(child, "SIGKILL");
return;
}
if (quietMs < heartbeatMs || now - lastHeartbeatAt < heartbeatMs) {
return;
}
const elapsedSec = Math.max(1, Math.round((now - startedAt) / 1_000));
const quietSec = Math.max(1, Math.round(quietMs / 1_000));
process.stderr.write(
`[test:live] still running (${elapsedSec}s elapsed, ${quietSec}s since last output)\n`,
);
lastHeartbeatAt = now;
},
Math.min(heartbeatMs, noOutputTimeoutMs ?? heartbeatMs),
);
heartbeat.unref?.();
child.on("exit", (code, signal) => {
teardown();
if (forwardedSignal) {
forwardSignalToVitestProcessGroup({
child,
kill: process.kill.bind(process),
signal: "SIGKILL",
});
process.kill(process.pid, forwardedSignal);
return;
}
if (timedOut) {
process.exit(1);
return;
}
if (signal) {
process.stderr.write(`[test:live] vitest exited via signal=${signal}\n`);
process.kill(process.pid, signal);
return;
}
if ((code ?? 1) !== 0) {
process.stderr.write(`[test:live] vitest exited code=${code ?? 1}\n`);
}
process.exit(code ?? 1);
});
child.on("error", (error) => {
teardown();
console.error(error);
process.exit(1);
});
}
if (import.meta.main) {
main();
}