mirror of
https://github.com/garrytan/gstack.git
synced 2026-09-13 00:19:03 +02:00
spawnSync/execSync/Bun.spawnSync BLOCK the main thread, so bun's in-process per-test timeout can never fire while one waits — a hung child (stdin read, network probe, dead daemon) wedges the whole shard until the runner's external wall-clock SIGKILL. This exact class reached main: free-tests run 33262077256, test/gstack-memory-ingest.test.ts (normally 2.3s) held shard 2 at the 360s wall while its five siblings finished in ~65s. Mechanical sweep in two waves (12 + 4 fan-out agents, every edit verified against its call site): default timeout: 30_000 (matches the free runner's per-test budget), 120_000 for genuinely slow ops (installs, builds, playwright, provider CLIs), helper wrappers fixed ONCE where call sites route through them. Sites that only LOOK like calls (string fixtures, grep needles, comments) were skipped with reasons — the enforcement commit that follows marks them exempt. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
97 lines
4.2 KiB
TypeScript
97 lines
4.2 KiB
TypeScript
/**
|
|
* Drift guards for the committed diagram-render bundle (eng-review D2).
|
|
*
|
|
* Tier 1 (always, free, <50ms): dist/diagram-render.html must hash to exactly
|
|
* what dist/BUILD_INFO.json records, and the BUILD_INFO dependency pins must
|
|
* match package.json. Catches hand-edited dist files and "bumped the pin,
|
|
* forgot to rebuild" commits.
|
|
*
|
|
* Tier 2 (deep, CI / post-install only): rebuild from source and compare
|
|
* hashes. Skipped when lib/diagram-render/node_modules is absent (fresh
|
|
* clone without `bun install` in that dir) or when the local bun version
|
|
* differs from the one recorded at build time (minifier output is only
|
|
* guaranteed deterministic within a bun version).
|
|
*/
|
|
import { describe, expect, test } from "bun:test";
|
|
import { createHash } from "node:crypto";
|
|
import { existsSync } from "node:fs";
|
|
import path from "node:path";
|
|
|
|
const ROOT = path.resolve(import.meta.dir, "..", "lib", "diagram-render");
|
|
const DIST_HTML = path.join(ROOT, "dist", "diagram-render.html");
|
|
const BUILD_INFO = path.join(ROOT, "dist", "BUILD_INFO.json");
|
|
|
|
describe("diagram-render bundle drift", () => {
|
|
test("dist hash matches BUILD_INFO (tamper check)", async () => {
|
|
const html = await Bun.file(DIST_HTML).text();
|
|
const info = await Bun.file(BUILD_INFO).json();
|
|
const sha = createHash("sha256").update(html).digest("hex");
|
|
expect(sha).toBe(info.sha256);
|
|
expect(Buffer.byteLength(html)).toBe(info.bytes);
|
|
});
|
|
|
|
test("BUILD_INFO dependency pins match package.json", async () => {
|
|
const info = await Bun.file(BUILD_INFO).json();
|
|
const pkg = await Bun.file(path.join(ROOT, "package.json")).json();
|
|
expect(info.deps).toEqual(pkg.dependencies);
|
|
});
|
|
|
|
test("BUILD_INFO srcSha256 matches src on disk (edited-src-forgot-rebuild guard)", async () => {
|
|
// The deep rebuild check below needs node_modules, which CI doesn't
|
|
// install for this nested package — this tier-1.5 fingerprint catches a
|
|
// src edit committed without a rebuild using nothing but file hashes.
|
|
const info = await Bun.file(BUILD_INFO).json();
|
|
const srcSha = createHash("sha256")
|
|
.update(await Bun.file(path.join(ROOT, "src", "entry.ts")).text())
|
|
.update(await Bun.file(path.join(ROOT, "scripts", "build.ts")).text())
|
|
.digest("hex");
|
|
expect(srcSha).toBe(info.srcSha256);
|
|
});
|
|
|
|
test("bundle font stack matches print-css (text-measurement drift guard)", async () => {
|
|
const entrySrc = await Bun.file(path.join(ROOT, "src", "entry.ts")).text();
|
|
// Every family print-css composes into the body stack must appear in the
|
|
// bundle's PRINT_SANS literal — mermaid measures text with these fonts and
|
|
// the print document lays it out with print-css's; drift = overflowing
|
|
// labels (eng-review D3).
|
|
for (const family of [
|
|
"Helvetica", "Liberation Sans", "Arial",
|
|
"Hiragino Kaku Gothic ProN", "Noto Sans CJK JP", "Microsoft YaHei",
|
|
"Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji",
|
|
]) {
|
|
expect(entrySrc).toContain(family);
|
|
}
|
|
});
|
|
|
|
test("page invariants: module script, base href, escaped terminators, error trap", async () => {
|
|
const html = await Bun.file(DIST_HTML).text();
|
|
expect(html).toContain('<script type="module">');
|
|
expect(html).toContain('<base href="https://gstack-render.localhost/">');
|
|
expect(html).toContain("window.__errors = []");
|
|
// The inline module must contain no live </script> other than the page's
|
|
// own closers: head error-trap closer + module closer.
|
|
const closers = html.match(/<\/script>/g) ?? [];
|
|
expect(closers.length).toBe(2);
|
|
});
|
|
|
|
const nodeModules = path.join(ROOT, "node_modules");
|
|
let builtWithSameBun = false;
|
|
try {
|
|
const info = require(BUILD_INFO);
|
|
builtWithSameBun = info.bunVersion === Bun.version;
|
|
} catch {}
|
|
const canDeepCheck = existsSync(nodeModules) && builtWithSameBun;
|
|
|
|
test.skipIf(!canDeepCheck)(
|
|
"deep: fresh build reproduces committed dist",
|
|
async () => {
|
|
const before = await Bun.file(BUILD_INFO).json();
|
|
const proc = Bun.spawnSync(["bun", "run", "scripts/build.ts"], { cwd: ROOT, timeout: 120_000 });
|
|
expect(proc.exitCode).toBe(0);
|
|
const after = await Bun.file(BUILD_INFO).json();
|
|
expect(after.sha256).toBe(before.sha256);
|
|
},
|
|
60000,
|
|
);
|
|
});
|