Vendor OpenClaw source as Adolf fork baseline
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
This commit is contained in:
2026-07-05 09:36:54 +00:00
parent 3216769225
commit bedb527145
21108 changed files with 6010766 additions and 0 deletions

View File

@@ -0,0 +1,505 @@
// Cli Startup Bench Spawner tests cover cli startup bench spawner script behavior.
import { execFileSync, spawnSync } from "node:child_process";
import fs from "node:fs";
import os from "node:os";
import path from "node:path";
import { describe, expect, it } from "vitest";
const SCRIPT_PATHS = [
"scripts/test-cli-startup-bench-budget.mjs",
"scripts/test-update-cli-startup-bench.mjs",
];
describe("CLI startup benchmark script spawners", () => {
it("use the active Node executable for benchmark child processes", () => {
for (const scriptPath of SCRIPT_PATHS) {
const source = fs.readFileSync(path.resolve(process.cwd(), scriptPath), "utf8");
expect(source).toContain("spawnSync(process.execPath, args");
expect(source).not.toContain('spawnSync("node", args');
}
});
it("builds the source CLI before generating a startup budget report", () => {
const source = fs.readFileSync(
path.resolve(process.cwd(), "scripts/test-cli-startup-bench-budget.mjs"),
"utf8",
);
expect(source).toContain(
'spawnSync(process.execPath, ["scripts/ensure-cli-startup-build.mjs"]',
);
expect(source.indexOf("scripts/ensure-cli-startup-build.mjs")).toBeLessThan(
source.indexOf("scripts/bench-cli-startup.ts"),
);
});
it("does not require unrelated fixture cases for a narrowed preset", () => {
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-bench-budget-test-"));
try {
const baselinePath = path.join(tmpDir, "baseline.json");
const reportPath = path.join(tmpDir, "current.json");
const makeCase = (id: string, name: string) => ({
id,
name,
samples: [{ ms: 10, firstOutputMs: 5, maxRssMb: 10, exitCode: 0, signal: null }],
summary: {
durationMs: { avg: 10, p50: 10, p95: 10, min: 10, max: 10 },
firstOutputMs: null,
maxRssMb: null,
},
});
fs.writeFileSync(
baselinePath,
JSON.stringify({
primary: { cases: [makeCase("version", "--version"), makeCase("realOnly", "real only")] },
}),
);
fs.writeFileSync(
reportPath,
JSON.stringify({ primary: { cases: [makeCase("version", "--version")] } }),
);
expect(() =>
execFileSync(
process.execPath,
[
"scripts/test-cli-startup-bench-budget.mjs",
"--baseline",
baselinePath,
"--report",
reportPath,
"--preset",
"startup",
],
{ cwd: process.cwd(), stdio: "pipe" },
),
).not.toThrow();
expect(() =>
execFileSync(
process.execPath,
[
"scripts/test-cli-startup-bench-budget.mjs",
"--baseline",
baselinePath,
"--report",
reportPath,
"--preset",
"all",
],
{
cwd: process.cwd(),
env: {
...process.env,
OPENCLAW_STARTUP_BENCH_ENFORCE_NONCANONICAL_ARCH: "1",
},
stdio: "pipe",
},
),
).toThrow();
} finally {
fs.rmSync(tmpDir, { recursive: true, force: true });
}
});
it("rejects narrowed preset reports with no matching current cases", () => {
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-bench-budget-empty-test-"));
try {
const baselinePath = path.join(tmpDir, "baseline.json");
const reportPath = path.join(tmpDir, "current.json");
fs.writeFileSync(
baselinePath,
JSON.stringify({
primary: {
cases: [
{
id: "gatewayStatusJson",
name: "gateway status --json",
samples: [{ ms: 10, firstOutputMs: 5, maxRssMb: 10, exitCode: 0, signal: null }],
summary: {
durationMs: { avg: 10, p50: 10, p95: 10, min: 10, max: 10 },
firstOutputMs: { avg: 5, p50: 5, p95: 5, min: 5, max: 5 },
maxRssMb: { avg: 10, p50: 10, p95: 10, min: 10, max: 10 },
},
},
],
},
}),
);
fs.writeFileSync(reportPath, JSON.stringify({ primary: { cases: [] } }));
const result = spawnSync(
process.execPath,
[
"scripts/test-cli-startup-bench-budget.mjs",
"--baseline",
baselinePath,
"--report",
reportPath,
"--preset",
"real",
],
{ cwd: process.cwd(), encoding: "utf8" },
);
expect(result.status).toBe(1);
expect(result.stderr).toContain(
"[test-cli-startup-bench-budget] current report has no cases for preset real",
);
} finally {
fs.rmSync(tmpDir, { recursive: true, force: true });
}
});
it("rejects narrowed preset reports with unrelated current cases when baseline checks run", () => {
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-bench-budget-overlap-test-"));
try {
const baselinePath = path.join(tmpDir, "baseline.json");
const reportPath = path.join(tmpDir, "current.json");
const makeCase = (id: string, name: string) => ({
id,
name,
samples: [{ ms: 10, firstOutputMs: 5, maxRssMb: 10, exitCode: 0, signal: null }],
summary: {
durationMs: { avg: 10, p50: 10, p95: 10, min: 10, max: 10 },
firstOutputMs: { avg: 5, p50: 5, p95: 5, min: 5, max: 5 },
maxRssMb: { avg: 10, p50: 10, p95: 10, min: 10, max: 10 },
},
});
fs.writeFileSync(
baselinePath,
JSON.stringify({ primary: { cases: [makeCase("fixtureOnly", "fixture only")] } }),
);
fs.writeFileSync(
reportPath,
JSON.stringify({ primary: { cases: [makeCase("targetOnly", "target only")] } }),
);
const result = spawnSync(
process.execPath,
[
"scripts/test-cli-startup-bench-budget.mjs",
"--baseline",
baselinePath,
"--report",
reportPath,
"--preset",
"real",
],
{
cwd: process.cwd(),
encoding: "utf8",
env: {
...process.env,
OPENCLAW_STARTUP_BENCH_ENFORCE_NONCANONICAL_ARCH: "1",
},
},
);
expect(result.status).toBe(1);
expect(result.stderr).toContain(
"[test-cli-startup-bench-budget] no current cases matched the baseline for preset real",
);
} finally {
fs.rmSync(tmpDir, { recursive: true, force: true });
}
});
it("allows skip-baseline reports without fixture case overlap", () => {
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-bench-budget-skip-test-"));
try {
const baselinePath = path.join(tmpDir, "baseline.json");
const reportPath = path.join(tmpDir, "current.json");
const makeCase = (id: string, name: string) => ({
id,
name,
samples: [{ ms: 10, firstOutputMs: 5, maxRssMb: 10, exitCode: 0, signal: null }],
summary: {
durationMs: { avg: 10, p50: 10, p95: 10, min: 10, max: 10 },
firstOutputMs: { avg: 5, p50: 5, p95: 5, min: 5, max: 5 },
maxRssMb: { avg: 10, p50: 10, p95: 10, min: 10, max: 10 },
},
});
fs.writeFileSync(
baselinePath,
JSON.stringify({ primary: { cases: [makeCase("fixtureOnly", "fixture only")] } }),
);
fs.writeFileSync(
reportPath,
JSON.stringify({ primary: { cases: [makeCase("targetOnly", "target only")] } }),
);
const result = spawnSync(
process.execPath,
[
"scripts/test-cli-startup-bench-budget.mjs",
"--baseline",
baselinePath,
"--report",
reportPath,
"--preset",
"real",
"--skip-baseline",
],
{ cwd: process.cwd(), encoding: "utf8" },
);
expect(result.status).toBe(0);
expect(result.stderr).not.toContain("no current cases matched the baseline");
} finally {
fs.rmSync(tmpDir, { recursive: true, force: true });
}
});
it("skips x64 startup budgets on noncanonical architectures", () => {
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-bench-budget-arch-test-"));
try {
const archShimPath = path.join(tmpDir, "arch-shim.mjs");
const baselinePath = path.join(tmpDir, "baseline.json");
const reportPath = path.join(tmpDir, "current.json");
const slowCase = {
id: "slow",
name: "slow",
contract: {
firstOutputBudgetMs: 20,
exitBudgetMs: 20,
},
samples: [{ ms: 10, firstOutputMs: 10, maxRssMb: 100, exitCode: 0, signal: null }],
summary: {
durationMs: { avg: 10, p50: 10, p95: 10, min: 10, max: 10 },
firstOutputMs: { avg: 10, p50: 10, p95: 10, min: 10, max: 10 },
maxRssMb: { avg: 100, p50: 100, p95: 100, min: 100, max: 100 },
},
};
fs.writeFileSync(
archShimPath,
'Object.defineProperty(process, "arch", { value: "arm64" });\n',
);
fs.writeFileSync(
baselinePath,
JSON.stringify({
primary: {
cases: [
{
...slowCase,
summary: {
...slowCase.summary,
durationMs: { avg: 1, p50: 1, p95: 1, min: 1, max: 1 },
},
},
],
},
}),
);
fs.writeFileSync(reportPath, JSON.stringify({ primary: { cases: [slowCase] } }));
const result = spawnSync(
process.execPath,
[
"--import",
archShimPath,
"scripts/test-cli-startup-bench-budget.mjs",
"--baseline",
baselinePath,
"--report",
reportPath,
"--preset",
"all",
],
{ cwd: process.cwd(), encoding: "utf8" },
);
expect(result.status).toBe(0);
expect(result.stderr).toContain("skipping x64 startup fixture budgets on arm64");
expect(result.stderr).not.toContain("exceeded");
const slowResponseCase = {
...slowCase,
contract: {
firstOutputBudgetMs: 1,
exitBudgetMs: 1,
},
};
fs.writeFileSync(baselinePath, JSON.stringify({ primary: { cases: [slowResponseCase] } }));
fs.writeFileSync(reportPath, JSON.stringify({ primary: { cases: [slowResponseCase] } }));
const responseBudgetResult = spawnSync(
process.execPath,
[
"--import",
archShimPath,
"scripts/test-cli-startup-bench-budget.mjs",
"--baseline",
baselinePath,
"--report",
reportPath,
"--preset",
"all",
],
{ cwd: process.cwd(), encoding: "utf8" },
);
expect(responseBudgetResult.status).toBe(1);
expect(responseBudgetResult.stderr).toContain("first output 10.0ms exceeded contract 1.0ms");
fs.writeFileSync(reportPath, JSON.stringify({ primary: { cases: [] } }));
const missingCaseResult = spawnSync(
process.execPath,
[
"--import",
archShimPath,
"scripts/test-cli-startup-bench-budget.mjs",
"--baseline",
baselinePath,
"--report",
reportPath,
"--preset",
"all",
],
{ cwd: process.cwd(), encoding: "utf8" },
);
expect(missingCaseResult.status).toBe(1);
expect(missingCaseResult.stderr).toContain("missing current case slow");
} finally {
fs.rmSync(tmpDir, { recursive: true, force: true });
}
});
it("fails reused reports with timed-out samples", () => {
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-bench-budget-timeout-test-"));
try {
const baselinePath = path.join(tmpDir, "baseline.json");
const reportPath = path.join(tmpDir, "current.json");
const timedOutCase = {
id: "version",
name: "--version",
contract: {
firstOutputBudgetMs: 1000,
exitBudgetMs: 2000,
},
samples: [
{
ms: 10,
firstOutputMs: 5,
maxRssMb: 10,
exitCode: 0,
signal: null,
timedOut: true,
},
],
summary: {
durationMs: { avg: 10, p50: 10, p95: 10, min: 10, max: 10 },
firstOutputMs: { avg: 5, p50: 5, p95: 5, min: 5, max: 5 },
maxRssMb: { avg: 10, p50: 10, p95: 10, min: 10, max: 10 },
},
};
fs.writeFileSync(baselinePath, JSON.stringify({ primary: { cases: [timedOutCase] } }));
fs.writeFileSync(reportPath, JSON.stringify({ primary: { cases: [timedOutCase] } }));
const result = spawnSync(
process.execPath,
[
"scripts/test-cli-startup-bench-budget.mjs",
"--baseline",
baselinePath,
"--report",
reportPath,
"--skip-baseline",
],
{ cwd: process.cwd(), encoding: "utf8" },
);
expect(result.status).toBe(1);
expect(result.stderr).toContain("[test-cli-startup-bench-budget] --version timed out.");
expect(result.stderr).toContain(
"[test-cli-startup-bench-budget] --version exited timeout; response contract requires a clean exit.",
);
} finally {
fs.rmSync(tmpDir, { recursive: true, force: true });
}
});
it("fails reused reports with missing RSS samples", () => {
const tmpDir = fs.mkdtempSync(path.join(os.tmpdir(), "openclaw-bench-budget-rss-test-"));
try {
const baselinePath = path.join(tmpDir, "baseline.json");
const reportPath = path.join(tmpDir, "current.json");
const missingRssCase = {
id: "version",
name: "--version",
samples: [{ ms: 10, firstOutputMs: 5, maxRssMb: null, exitCode: 0, signal: null }],
summary: {
durationMs: { avg: 10, p50: 10, p95: 10, min: 10, max: 10 },
firstOutputMs: { avg: 5, p50: 5, p95: 5, min: 5, max: 5 },
maxRssMb: null,
},
};
fs.writeFileSync(baselinePath, JSON.stringify({ primary: { cases: [missingRssCase] } }));
fs.writeFileSync(reportPath, JSON.stringify({ primary: { cases: [missingRssCase] } }));
const result = spawnSync(
process.execPath,
[
"scripts/test-cli-startup-bench-budget.mjs",
"--baseline",
baselinePath,
"--report",
reportPath,
"--skip-baseline",
],
{ cwd: process.cwd(), encoding: "utf8" },
);
expect(result.status).toBe(1);
expect(result.stderr).toContain(
"[test-cli-startup-bench-budget] --version did not report max RSS.",
);
} finally {
fs.rmSync(tmpDir, { recursive: true, force: true });
}
});
it("rejects malformed startup budget env vars before reading reports", () => {
const result = spawnSync(process.execPath, ["scripts/test-cli-startup-bench-budget.mjs"], {
cwd: process.cwd(),
encoding: "utf8",
env: {
...process.env,
OPENCLAW_STARTUP_BENCH_MAX_RSS_REGRESSION_PCT: "20pct",
},
});
expect(result.status).toBe(1);
expect(result.stdout).toBe("");
expect(result.stderr).toContain(
"OPENCLAW_STARTUP_BENCH_MAX_RSS_REGRESSION_PCT must be a non-negative number",
);
expect(result.stderr).not.toContain("at ");
});
it("rejects malformed startup budget CLI values before reading reports", () => {
const malformed = spawnSync(
process.execPath,
["scripts/test-cli-startup-bench-budget.mjs", "--max-duration-regression-pct", "1e2ms"],
{ cwd: process.cwd(), encoding: "utf8" },
);
expect(malformed.status).toBe(1);
expect(malformed.stdout).toBe("");
expect(malformed.stderr).toContain(
"--max-duration-regression-pct must be a non-negative number",
);
expect(malformed.stderr).not.toContain("at ");
const missing = spawnSync(
process.execPath,
["scripts/test-cli-startup-bench-budget.mjs", "--max-first-output-regression-pct"],
{ cwd: process.cwd(), encoding: "utf8" },
);
expect(missing.status).toBe(1);
expect(missing.stdout).toBe("");
expect(missing.stderr).toContain("--max-first-output-regression-pct requires a value");
expect(missing.stderr).not.toContain("at ");
});
});