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
302 lines
8.3 KiB
TypeScript
302 lines
8.3 KiB
TypeScript
// Ci Run Timings tests cover ci run timings script behavior.
|
|
import { describe, expect, it } from "vitest";
|
|
import {
|
|
collectRunJobsFromPages,
|
|
isRetryableGhJsonErrorMessage,
|
|
parseRunTimingArgs,
|
|
selectLatestMainPushCiRun,
|
|
summarizePnpmStoreWarmupBarrier,
|
|
summarizeRunTimings,
|
|
} from "../../scripts/ci-run-timings.mjs";
|
|
|
|
describe("scripts/ci-run-timings.mjs", () => {
|
|
it("separates queue time from job duration", () => {
|
|
const summary = summarizeRunTimings(
|
|
{
|
|
conclusion: "success",
|
|
createdAt: "2026-04-22T10:00:00Z",
|
|
jobs: [
|
|
{
|
|
completedAt: "2026-04-22T10:01:20Z",
|
|
conclusion: "success",
|
|
name: "slow",
|
|
startedAt: "2026-04-22T10:00:20Z",
|
|
status: "completed",
|
|
},
|
|
{
|
|
completedAt: "2026-04-22T10:01:00Z",
|
|
conclusion: "success",
|
|
name: "queued",
|
|
startedAt: "2026-04-22T10:00:50Z",
|
|
status: "completed",
|
|
},
|
|
{
|
|
completedAt: "2026-04-22T10:00:01Z",
|
|
conclusion: "skipped",
|
|
name: "matrix.check_name",
|
|
startedAt: "2026-04-22T10:00:01Z",
|
|
status: "completed",
|
|
},
|
|
],
|
|
status: "completed",
|
|
updatedAt: "2026-04-22T10:01:30Z",
|
|
},
|
|
2,
|
|
);
|
|
|
|
expect(summary.wallSeconds).toBe(90);
|
|
expect(summary.byDuration.map((job) => [job.name, job.durationSeconds])).toEqual([
|
|
["slow", 60],
|
|
["queued", 10],
|
|
]);
|
|
expect(summary.byQueue.map((job) => [job.name, job.queueSeconds])).toEqual([
|
|
["queued", 50],
|
|
["slow", 20],
|
|
]);
|
|
});
|
|
|
|
it("rejects empty CI job payloads instead of printing empty timing evidence", () => {
|
|
expect(() =>
|
|
summarizeRunTimings({
|
|
conclusion: "success",
|
|
createdAt: "2026-04-22T10:00:00Z",
|
|
jobs: [],
|
|
status: "completed",
|
|
updatedAt: "2026-04-22T10:01:30Z",
|
|
}),
|
|
).toThrow("CI run timing summary requires at least one job");
|
|
});
|
|
|
|
it("selects the push CI run for the current main SHA", () => {
|
|
expect(
|
|
selectLatestMainPushCiRun(
|
|
[
|
|
{
|
|
databaseId: 3,
|
|
event: "issue_comment",
|
|
headSha: "current",
|
|
},
|
|
{
|
|
databaseId: 2,
|
|
event: "push",
|
|
headSha: "older",
|
|
},
|
|
{
|
|
databaseId: 1,
|
|
event: "push",
|
|
headSha: "current",
|
|
},
|
|
],
|
|
"current",
|
|
),
|
|
).toEqual({
|
|
databaseId: 1,
|
|
event: "push",
|
|
headSha: "current",
|
|
});
|
|
});
|
|
|
|
it("normalizes paginated GitHub Actions job payloads", () => {
|
|
expect(
|
|
collectRunJobsFromPages([
|
|
{
|
|
jobs: [
|
|
{
|
|
completed_at: "2026-06-01T13:26:16Z",
|
|
conclusion: "success",
|
|
id: 101,
|
|
name: "preflight",
|
|
started_at: "2026-06-01T13:25:16Z",
|
|
status: "completed",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
jobs: [
|
|
{
|
|
completedAt: "2026-06-01T13:28:00Z",
|
|
conclusion: "failure",
|
|
databaseId: 102,
|
|
name: "ci-timings-summary",
|
|
startedAt: "2026-06-01T13:27:00Z",
|
|
status: "completed",
|
|
},
|
|
],
|
|
},
|
|
]),
|
|
).toEqual([
|
|
{
|
|
completedAt: "2026-06-01T13:26:16Z",
|
|
conclusion: "success",
|
|
databaseId: 101,
|
|
name: "preflight",
|
|
startedAt: "2026-06-01T13:25:16Z",
|
|
status: "completed",
|
|
},
|
|
{
|
|
completedAt: "2026-06-01T13:28:00Z",
|
|
conclusion: "failure",
|
|
databaseId: 102,
|
|
name: "ci-timings-summary",
|
|
startedAt: "2026-06-01T13:27:00Z",
|
|
status: "completed",
|
|
},
|
|
]);
|
|
});
|
|
|
|
it("retries transient GitHub API failures while preserving auth failures", () => {
|
|
for (const message of [
|
|
"gh: API secondary rate limit exceeded (HTTP 403)",
|
|
"gh: HTTP 429: too many requests",
|
|
"Command failed: gh api repos/openclaw/openclaw/actions/runs/1/jobs\nHTTP 502",
|
|
"read ECONNRESET",
|
|
]) {
|
|
expect(isRetryableGhJsonErrorMessage(message)).toBe(true);
|
|
}
|
|
|
|
expect(
|
|
isRetryableGhJsonErrorMessage("gh: Resource not accessible by integration (HTTP 403)"),
|
|
).toBe(false);
|
|
});
|
|
|
|
it("summarizes the pnpm store warmup fanout barrier", () => {
|
|
expect(
|
|
summarizePnpmStoreWarmupBarrier({
|
|
conclusion: "success",
|
|
createdAt: "2026-05-28T23:03:01Z",
|
|
jobs: [
|
|
{
|
|
completedAt: "2026-05-28T23:04:05Z",
|
|
conclusion: "success",
|
|
name: "preflight",
|
|
startedAt: "2026-05-28T23:03:55Z",
|
|
status: "completed",
|
|
},
|
|
{
|
|
completedAt: "2026-05-28T23:04:27Z",
|
|
conclusion: "success",
|
|
name: "pnpm-store-warmup",
|
|
startedAt: "2026-05-28T23:04:07Z",
|
|
status: "completed",
|
|
},
|
|
{
|
|
completedAt: "2026-05-28T23:06:26Z",
|
|
conclusion: "success",
|
|
name: "checks-fast-bundled-protocol",
|
|
startedAt: "2026-05-28T23:04:29Z",
|
|
status: "completed",
|
|
},
|
|
{
|
|
completedAt: "2026-05-28T23:04:28Z",
|
|
conclusion: "skipped",
|
|
name: "check-docs",
|
|
startedAt: "2026-05-28T23:04:28Z",
|
|
status: "completed",
|
|
},
|
|
{
|
|
completedAt: "2026-05-28T23:04:35Z",
|
|
conclusion: "success",
|
|
name: "security-fast",
|
|
startedAt: "2026-05-28T23:03:55Z",
|
|
status: "completed",
|
|
},
|
|
{
|
|
completedAt: "2026-05-28T23:05:30Z",
|
|
conclusion: "success",
|
|
name: "checks-node-compat-node22",
|
|
startedAt: "2026-05-28T23:04:30Z",
|
|
status: "completed",
|
|
},
|
|
],
|
|
status: "completed",
|
|
updatedAt: "2026-05-28T23:07:33Z",
|
|
}),
|
|
).toEqual({
|
|
activePostWarmupJobCount: 1,
|
|
firstPostWarmupStartDelaySeconds: 2,
|
|
postWarmupP95StartDelaySeconds: 2,
|
|
postWarmupStartedWithinWindow: 1,
|
|
preflightToWarmupCompleteSeconds: 22,
|
|
preflightToWarmupStartSeconds: 2,
|
|
warmupDurationSeconds: 20,
|
|
warmupResult: "completed/success",
|
|
windowSeconds: 5,
|
|
});
|
|
});
|
|
|
|
it("falls back to the newest push CI run when the exact SHA has not appeared yet", () => {
|
|
expect(
|
|
selectLatestMainPushCiRun(
|
|
[
|
|
{
|
|
databaseId: 4,
|
|
event: "issue_comment",
|
|
headSha: "current",
|
|
},
|
|
{
|
|
databaseId: 3,
|
|
event: "push",
|
|
headSha: "previous",
|
|
},
|
|
],
|
|
"current",
|
|
),
|
|
).toEqual({
|
|
databaseId: 3,
|
|
event: "push",
|
|
headSha: "previous",
|
|
});
|
|
});
|
|
|
|
it("ignores pnpm passthrough sentinels when parsing monitor args", () => {
|
|
expect(parseRunTimingArgs(["--latest-main", "--", "--limit", "3"])).toEqual({
|
|
explicitRunId: undefined,
|
|
limit: 3,
|
|
recentLimit: null,
|
|
useLatestMain: true,
|
|
});
|
|
});
|
|
|
|
it("parses strict positive integer monitor limits", () => {
|
|
expect(parseRunTimingArgs(["123456", "--limit=7", "--recent", "4"])).toEqual({
|
|
explicitRunId: "123456",
|
|
limit: 7,
|
|
recentLimit: 4,
|
|
useLatestMain: false,
|
|
});
|
|
});
|
|
|
|
it("rejects malformed monitor limits instead of falling back", () => {
|
|
for (const args of [
|
|
["--limit", "3jobs"],
|
|
["--limit", "0"],
|
|
["--limit=1e3"],
|
|
["--recent", "recent"],
|
|
["--recent", "0"],
|
|
]) {
|
|
expect(() => parseRunTimingArgs(args)).toThrow("must be a positive integer");
|
|
}
|
|
});
|
|
|
|
it("rejects missing monitor limits instead of treating flags as values", () => {
|
|
for (const args of [
|
|
["--limit"],
|
|
["--limit", "--recent", "4"],
|
|
["--limit", "-h"],
|
|
["--recent"],
|
|
["--recent", "-h"],
|
|
]) {
|
|
expect(() => parseRunTimingArgs(args)).toThrow("requires a value");
|
|
}
|
|
});
|
|
|
|
it("rejects unknown monitor flags and duplicate run ids", () => {
|
|
expect(() => parseRunTimingArgs(["--run-id", "123456"])).toThrow(
|
|
"Unknown CI run timing option: --run-id",
|
|
);
|
|
expect(() => parseRunTimingArgs(["123456", "789012"])).toThrow(
|
|
"Unexpected CI run id argument: 789012",
|
|
);
|
|
});
|
|
});
|