mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-06 23:43:35 +00:00
Accept the documented package-manager separator for the web fetch benchmark CLI and add a process-level regression test. Verified with rebased Testbox check:changed, prior targeted Testbox benchmark/test smokes, and AWS macOS install/build/gateway probes.
54 lines
1.5 KiB
TypeScript
54 lines
1.5 KiB
TypeScript
// Bench Web Fetch tests cover the offline benchmark CLI contract.
|
|
import { spawnSync } from "node:child_process";
|
|
import { describe, expect, it } from "vitest";
|
|
|
|
const SCRIPT_PATH = "scripts/bench-web-fetch.ts";
|
|
|
|
function runBenchWebFetch(...args: string[]) {
|
|
return spawnSync(process.execPath, ["--import", "tsx", SCRIPT_PATH, ...args], {
|
|
cwd: process.cwd(),
|
|
encoding: "utf8",
|
|
env: {
|
|
...process.env,
|
|
FIRECRAWL_API_KEY: "test-firecrawl-key-that-should-be-ignored",
|
|
NODE_NO_WARNINGS: "1",
|
|
},
|
|
});
|
|
}
|
|
|
|
describe("web fetch benchmark script", () => {
|
|
it("accepts the package-manager separator documented for pnpm scripts", () => {
|
|
const result = runBenchWebFetch(
|
|
"--",
|
|
"--case",
|
|
"tool-create",
|
|
"--runs",
|
|
"1",
|
|
"--warmup",
|
|
"0",
|
|
"--json",
|
|
);
|
|
|
|
expect(result.status).toBe(0);
|
|
expect(result.stderr).toBe("");
|
|
const report = JSON.parse(result.stdout) as {
|
|
cases: Array<{ id: string; samplesMs: number[] }>;
|
|
};
|
|
expect(report.cases).toHaveLength(1);
|
|
expect(report.cases[0]).toMatchObject({
|
|
id: "tool-create",
|
|
samplesMs: expect.any(Array),
|
|
});
|
|
expect(report.cases[0]?.samplesMs).toHaveLength(1);
|
|
});
|
|
|
|
it("rejects duplicate singular flags without a stack trace", () => {
|
|
const result = runBenchWebFetch("--runs", "1", "--runs", "2");
|
|
|
|
expect(result.status).toBe(2);
|
|
expect(result.stdout).toBe("");
|
|
expect(result.stderr.trim()).toBe("--runs was provided more than once");
|
|
expect(result.stderr).not.toContain("\n at ");
|
|
});
|
|
});
|