openclaw/test/scripts/parallels-update-job-timeout.test.ts
Vincent Koc 17dc9902f2
Some checks are pending
Plugin NPM Release / publish_plugins_npm (push) Blocked by required conditions
Workflow Sanity / no-tabs (push) Waiting to run
Workflow Sanity / actionlint (push) Waiting to run
Workflow Sanity / generated-doc-baselines (push) Waiting to run
CI / check-additional-extension-channels (push) Blocked by required conditions
CI / check-additional-extension-package-boundary (push) Blocked by required conditions
CI / check-additional-runtime-topology-architecture (push) Blocked by required conditions
CI / check-session-accessor-boundary (push) Blocked by required conditions
CI / check-session-transcript-reader-boundary (push) Blocked by required conditions
CI / check-docs (push) Blocked by required conditions
CI / preflight (push) Waiting to run
CI / security-fast (push) Waiting to run
CI / pnpm-store-warmup (push) Blocked by required conditions
CI / build-artifacts (push) Blocked by required conditions
CI / (push) Blocked by required conditions
CI / -1 (push) Blocked by required conditions
CI / -2 (push) Blocked by required conditions
CI / checks-node-compat-node22 (push) Blocked by required conditions
CI / -3 (push) Blocked by required conditions
CI / check-dependencies (push) Blocked by required conditions
CI / check-guards (push) Blocked by required conditions
CI / check-lint (push) Blocked by required conditions
CI / check-prod-types (push) Blocked by required conditions
CI / check-shrinkwrap (push) Blocked by required conditions
CI / check-test-types (push) Blocked by required conditions
CI / check-additional-boundaries-a (push) Blocked by required conditions
CI / check-additional-boundaries-bcd (push) Blocked by required conditions
CI / check-additional-extension-bundled (push) Blocked by required conditions
CI / skills-python (push) Blocked by required conditions
CI / -4 (push) Blocked by required conditions
CI / -5 (push) Blocked by required conditions
CI / macos-swift (push) Blocked by required conditions
CI / -6 (push) Blocked by required conditions
CI / ci-timings-summary (push) Blocked by required conditions
ClawSweeper Dispatch / dispatch (push) Waiting to run
CodeQL / Security High (actions) (push) Waiting to run
CodeQL / Security High (channel-runtime-boundary) (push) Waiting to run
CodeQL / Security High (core-auth-secrets) (push) Waiting to run
CodeQL / Security High (mcp-process-tool-boundary) (push) Waiting to run
CodeQL / Security High (network-ssrf-boundary) (push) Waiting to run
CodeQL / Security High (plugin-trust-boundary) (push) Waiting to run
Control UI Locale Refresh / plan (push) Waiting to run
Control UI Locale Refresh / Refresh (push) Blocked by required conditions
Docs Sync Publish Repo / sync-publish-repo (push) Waiting to run
Docs / docs (push) Waiting to run
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Waiting to run
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Blocked by required conditions
Plugin NPM Release / preview_plugins_npm (push) Waiting to run
Plugin NPM Release / Validate release publish approval (push) Blocked by required conditions
Plugin NPM Release / preview_plugin_pack (push) Blocked by required conditions
test(scripts): use true overflow timer inputs
2026-06-22 05:11:25 +02:00

227 lines
6.5 KiB
TypeScript

// Parallels Update Job Timeout tests cover parallels update job timeout script behavior.
import { spawnSync } from "node:child_process";
import path from "node:path";
import { pathToFileURL } from "node:url";
import { MAX_TIMER_TIMEOUT_MS } from "@openclaw/normalization-core/number-coercion";
import { afterEach, describe, expect, it, vi } from "vitest";
import { runTimedUpdateJob } from "../../scripts/e2e/parallels/update-job-timeout.ts";
describe("Parallels update job timeout", () => {
afterEach(() => {
vi.useRealTimers();
});
it("passes after the update body completes", async () => {
const chunks: string[] = [];
const writeLog = vi.fn(async () => undefined);
await expect(
runTimedUpdateJob({
append: (chunk) => chunks.push(chunk),
label: "macOS",
run: async () => undefined,
timeoutDescription: "1s",
timeoutMs: 1000,
writeLog,
}),
).resolves.toBe(0);
expect(chunks).toEqual([]);
expect(writeLog).toHaveBeenCalledTimes(1);
});
it("clamps oversized update job timers before scheduling", async () => {
const chunks: string[] = [];
const setTimeoutSpy = vi.spyOn(globalThis, "setTimeout");
const writeLog = vi.fn(async () => undefined);
try {
await expect(
runTimedUpdateJob({
append: (chunk) => chunks.push(chunk),
label: "Linux",
run: async () => undefined,
timeoutDescription: "oversized",
timeoutMs: Number.MAX_SAFE_INTEGER,
writeLog,
}),
).resolves.toBe(0);
expect(setTimeoutSpy).toHaveBeenCalledWith(expect.any(Function), MAX_TIMER_TIMEOUT_MS);
} finally {
setTimeoutSpy.mockRestore();
}
});
it("records update failures and writes the job log", async () => {
const chunks: string[] = [];
const writeLog = vi.fn(async () => undefined);
await expect(
runTimedUpdateJob({
append: (chunk) => chunks.push(chunk),
label: "Linux",
run: async () => {
throw new Error("package swap failed");
},
timeoutDescription: "1s",
timeoutMs: 1000,
writeLog,
}),
).resolves.toBe(1);
expect(chunks).toEqual(["package swap failed\n"]);
expect(writeLog).toHaveBeenCalledTimes(1);
});
it("lets the inner bounded operation settle before the backstop fires", async () => {
vi.useFakeTimers();
const chunks: string[] = [];
const writeLog = vi.fn(async () => undefined);
const result = runTimedUpdateJob({
append: (chunk) => chunks.push(chunk),
label: "macOS",
run: () =>
new Promise<void>((resolve) => {
setTimeout(resolve, 1000);
}),
timeoutDescription: "1s plus cleanup backstop",
timeoutMs: 1200,
writeLog,
});
await vi.advanceTimersByTimeAsync(1000);
await expect(result).resolves.toBe(0);
expect(chunks).toEqual([]);
expect(writeLog).toHaveBeenCalledTimes(1);
});
it("fails and writes the job log when the update body hangs", async () => {
vi.useFakeTimers();
const chunks: string[] = [];
const writeLog = vi.fn(async () => undefined);
const result = runTimedUpdateJob({
abortSettleMs: 1,
append: (chunk) => chunks.push(chunk),
label: "Windows",
run: () => new Promise(() => {}),
timeoutDescription: "1s",
timeoutMs: 1000,
writeLog,
});
await vi.advanceTimersByTimeAsync(1001);
await expect(result).resolves.toBe(1);
expect(chunks).toEqual(["Windows update timed out after 1s\n"]);
expect(writeLog).toHaveBeenCalledTimes(1);
});
it("aborts the update body when the timeout fires", async () => {
vi.useFakeTimers();
const chunks: string[] = [];
const writeLog = vi.fn(async () => undefined);
let aborted = false;
const result = runTimedUpdateJob({
append: (chunk) => chunks.push(chunk),
label: "Linux",
run: ({ signal }) =>
new Promise<void>((resolve) => {
signal.addEventListener(
"abort",
() => {
aborted = true;
resolve();
},
{ once: true },
);
}),
timeoutDescription: "1s plus cleanup backstop",
timeoutMs: 1000,
writeLog,
});
await vi.advanceTimersByTimeAsync(1000);
await expect(result).resolves.toBe(1);
expect(aborted).toBe(true);
expect(chunks).toEqual(["Linux update timed out after 1s plus cleanup backstop\n"]);
expect(writeLog).toHaveBeenCalledTimes(1);
});
it("waits for abort-aware cleanup before writing the job log", async () => {
vi.useFakeTimers();
const events: string[] = [];
const result = runTimedUpdateJob({
abortSettleMs: 250,
append: (chunk) => events.push(chunk.trim()),
label: "macOS",
run: ({ signal }) =>
new Promise<void>((resolve) => {
signal.addEventListener(
"abort",
() => {
events.push("abort");
setTimeout(() => {
events.push("cleanup");
resolve();
}, 25);
},
{ once: true },
);
}),
timeoutDescription: "1s plus cleanup backstop",
timeoutMs: 1000,
writeLog: async () => {
events.push("writeLog");
},
});
await vi.advanceTimersByTimeAsync(1025);
await expect(result).resolves.toBe(1);
expect(events).toEqual([
"macOS update timed out after 1s plus cleanup backstop",
"abort",
"cleanup",
"writeLog",
]);
});
it("keeps the process alive long enough to write logs for hung runners", () => {
const moduleUrl = pathToFileURL(
path.resolve("scripts/e2e/parallels/update-job-timeout.ts"),
).href;
const probe = `
import { runTimedUpdateJob } from ${JSON.stringify(moduleUrl)};
const events = [];
const result = await runTimedUpdateJob({
abortSettleMs: 25,
append: (chunk) => events.push(chunk.trim()),
label: "Linux",
run: () => new Promise(() => {}),
timeoutDescription: "10ms",
timeoutMs: 10,
writeLog: async () => events.push("writeLog"),
});
console.log(JSON.stringify({ events, result }));
`;
const child = spawnSync(
process.execPath,
["--import", "tsx", "--input-type=module", "--eval", probe],
{
cwd: process.cwd(),
encoding: "utf8",
timeout: 5_000,
},
);
expect(child.stderr).toBe("");
expect(child.status).toBe(0);
expect(JSON.parse(child.stdout)).toEqual({
events: ["Linux update timed out after 10ms", "writeLog"],
result: 1,
});
});
});