Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
96 changes: 96 additions & 0 deletions test/benchmark-runtime-path-script.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
import { spawnSync } from "node:child_process";
import {
copyFileSync,
mkdirSync,
mkdtempSync,
readFileSync,
writeFileSync,
} from "node:fs";
import { tmpdir } from "node:os";
import { join } from "node:path";
import { afterEach, describe, expect, it } from "vitest";
import { removeWithRetry } from "./helpers/remove-with-retry.js";

const tempRoots: string[] = [];
const scriptPath = "scripts/benchmark-runtime-path.mjs";

afterEach(async () => {
while (tempRoots.length > 0) {
const root = tempRoots.pop();
if (root) {
await removeWithRetry(root, { recursive: true, force: true });
}
}
});

function createRuntimeBenchmarkFixture(): {
fixtureRoot: string;
scriptCopy: string;
} {
const fixtureRoot = mkdtempSync(join(tmpdir(), "runtime-bench-fixture-"));
tempRoots.push(fixtureRoot);

const scriptsDir = join(fixtureRoot, "scripts");
const distRequestDir = join(fixtureRoot, "dist", "lib", "request");
const distHelpersDir = join(distRequestDir, "helpers");
const distLibDir = join(fixtureRoot, "dist", "lib");

mkdirSync(scriptsDir, { recursive: true });
mkdirSync(distHelpersDir, { recursive: true });
mkdirSync(distLibDir, { recursive: true });

const scriptCopy = join(scriptsDir, "benchmark-runtime-path.mjs");
copyFileSync(join(process.cwd(), scriptPath), scriptCopy);

writeFileSync(
join(distRequestDir, "request-transformer.js"),
"export function filterInput(input) { return Array.isArray(input) ? input : []; }\n",
"utf8",
);
writeFileSync(
join(distHelpersDir, "tool-utils.js"),
"export function cleanupToolDefinitions(tools) { return Array.isArray(tools) ? tools : []; }\n",
"utf8",
);
writeFileSync(
join(distLibDir, "accounts.js"),
[
"export class AccountManager {",
" constructor(_, storage) { this.storage = storage; }",
" getCurrentOrNextForFamilyHybrid() { return this.storage.accounts[0] ?? null; }",
"}",
].join("\n"),
"utf8",
);

return { fixtureRoot, scriptCopy };
}

describe("benchmark runtime path script", () => {
it("writes a benchmark payload with the expected result entries", () => {
const { fixtureRoot, scriptCopy } = createRuntimeBenchmarkFixture();
const outputPath = join(fixtureRoot, "runtime-benchmark.json");

const result = spawnSync(
process.execPath,
[scriptCopy, "--iterations=1", `--output=${outputPath}`],
{ encoding: "utf8" },
);

expect(result.status).toBe(0);
expect(result.stdout).toContain("Runtime benchmark written:");

const payload = JSON.parse(readFileSync(outputPath, "utf8")) as {
iterations: number;
results: Array<{ name: string }>;
};
expect(payload.iterations).toBe(1);
expect(payload.results.map((entry) => entry.name)).toEqual([
"filterInput_small",
"filterInput_large",
"cleanupToolDefinitions_medium",
"cleanupToolDefinitions_large",
"accountHybridSelection_200",
]);
});
});