Some checks failed
ClawSweeper Dispatch / dispatch (push) Has been cancelled
CodeQL / Security High (actions) (push) Has been cancelled
CodeQL / Security High (channel-runtime-boundary) (push) Has been cancelled
CodeQL / Security High (core-auth-secrets) (push) Has been cancelled
CodeQL / Security High (mcp-process-tool-boundary) (push) Has been cancelled
CodeQL / Security High (network-ssrf-boundary) (push) Has been cancelled
CodeQL / Security High (plugin-trust-boundary) (push) Has been cancelled
CodeQL / Security High (process-exec-boundary) (push) Has been cancelled
Docs Sync Publish Repo / sync-publish-repo (push) Has been cancelled
Docs / docs (push) Has been cancelled
OpenClaw Stable Main Closeout / Resolve stable release closeout inputs (push) Has been cancelled
OpenClaw Stable Main Closeout / Verify stable main closeout (push) Has been cancelled
Workflow Sanity / no-tabs (push) Has been cancelled
Workflow Sanity / actionlint (push) Has been cancelled
Workflow Sanity / generated-doc-baselines (push) Has been cancelled
CI / runner-admission (push) Has been cancelled
CI / preflight (push) Has been cancelled
CI / security-fast (push) Has been cancelled
CI / pnpm-store-warmup (push) Has been cancelled
CI / build-artifacts (push) Has been cancelled
CI / native-i18n (push) Has been cancelled
CI / ${{ matrix.check_name }} (push) Has been cancelled
CI / ${{ matrix.checkName }} (push) Has been cancelled
CI / checks-node-compat-node22 (push) Has been cancelled
CI / check-bundled-channel-config-metadata (push) Has been cancelled
CI / check-dependencies (push) Has been cancelled
CI / check-guards (push) Has been cancelled
CI / check-lint (push) Has been cancelled
CI / check-prod-types (push) Has been cancelled
CI / check-shrinkwrap (push) Has been cancelled
CI / check-test-types (push) Has been cancelled
CI / check-additional-boundaries-a (push) Has been cancelled
CI / check-additional-boundaries-bcd (push) Has been cancelled
CI / check-additional-extension-bundled (push) Has been cancelled
CI / check-additional-extension-channels (push) Has been cancelled
CI / check-additional-extension-package-boundary (push) Has been cancelled
CI / check-additional-runtime-topology-architecture (push) Has been cancelled
CI / check-session-accessor-boundary (push) Has been cancelled
CI / check-session-transcript-reader-boundary (push) Has been cancelled
CI / check-docs (push) Has been cancelled
CI / skills-python (push) Has been cancelled
CI / macos-swift (push) Has been cancelled
CI / ios-build (push) Has been cancelled
CI / ci-timings-summary (push) Has been cancelled
Native App Locale Refresh / Refresh native fa (push) Has been cancelled
Native App Locale Refresh / Refresh native fr (push) Has been cancelled
Native App Locale Refresh / Refresh native hi (push) Has been cancelled
Native App Locale Refresh / Refresh native id (push) Has been cancelled
Native App Locale Refresh / Refresh native it (push) Has been cancelled
Native App Locale Refresh / Refresh native ja-JP (push) Has been cancelled
Control UI Locale Refresh / plan (push) Has been cancelled
Control UI Locale Refresh / Refresh ${{ matrix.locale }} (push) Has been cancelled
Control UI Locale Refresh / Commit control UI locale refresh (push) Has been cancelled
Live Media Runner Image / Build live media runner image (push) Has been cancelled
Native App Locale Refresh / Refresh native ar (push) Has been cancelled
Native App Locale Refresh / Refresh native de (push) Has been cancelled
Native App Locale Refresh / Refresh native es (push) Has been cancelled
Native App Locale Refresh / Refresh native ko (push) Has been cancelled
Native App Locale Refresh / Refresh native nl (push) Has been cancelled
Native App Locale Refresh / Refresh native pl (push) Has been cancelled
Native App Locale Refresh / Refresh native pt-BR (push) Has been cancelled
Native App Locale Refresh / Refresh native ru (push) Has been cancelled
Native App Locale Refresh / Refresh native sv (push) Has been cancelled
Native App Locale Refresh / Refresh native th (push) Has been cancelled
Native App Locale Refresh / Refresh native tr (push) Has been cancelled
Native App Locale Refresh / Refresh native uk (push) Has been cancelled
Native App Locale Refresh / Refresh native vi (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-CN (push) Has been cancelled
Native App Locale Refresh / Refresh native zh-TW (push) Has been cancelled
Native App Locale Refresh / Commit native locale refresh (push) Has been cancelled
Plugin Init Scaffold Validation / Validate provider scaffold (push) Has been cancelled
Plugin NPM Release / preview_plugins_npm (push) Has been cancelled
Plugin NPM Release / Validate release publish approval (push) Has been cancelled
Plugin NPM Release / preview_plugin_pack (push) Has been cancelled
Plugin NPM Release / publish_plugins_npm (push) Has been cancelled
Sandbox Common Smoke / sandbox-common-smoke (push) Has been cancelled
Website Installer Sync / static (push) Has been cancelled
Website Installer Sync / linux-docker (push) Has been cancelled
Website Installer Sync / macos-installer (push) Has been cancelled
Website Installer Sync / windows-installer (push) Has been cancelled
Website Installer Sync / sync-website (push) Has been cancelled
Adolf is a fork/vendored clone of github.com/openclaw/openclaw (v2026.6.11), free to diverge. Tree copied sans upstream .git; upstream remote added for future syncs. Node pinned to 24 (.nvmrc); engines already require >=22.19. Preserves docs/ARCHITECTURE.md. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LeqyaxJF2nbRXJtae2kNB2
228 lines
6.5 KiB
TypeScript
228 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,
|
|
});
|
|
});
|
|
});
|