mirror of
https://github.com/garrytan/gstack.git
synced 2026-06-17 15:20:11 +02:00
2a55953387
All 7 failures existed on main before this branch — verified via `git stash`
round-trip. Bundling them into the long-lived-sidebar PR because we kept
tripping over them while running `bun test` to verify Commit 0.
* Global afterEach restores `process.env.PATH` (new bunfig.toml +
test-setup.ts). browser-skill-commands.test.ts sets
`PATH = '/test/bin:/usr/bin'` to exercise a scrubbed-env fixture and
used the broken `process.env = origEnv` reassignment pattern that
swaps the proxy reference; the underlying env stayed mutated and
leaked downstream. Fixed three call sites in that file and added a
narrow PATH-only global guardrail so a future polluter can't bring
the bug back. Killed: pair-agent-tunnel-eval (bun ENOENT),
security.test.ts > resolveBashBinary (Bun.which('bash') null),
server-no-import-side-effects (bun ENOENT).
* server-auth.test.ts: two `sliceBetween` markers referenced strings
deleted when sidebar-agent.ts was ripped — `'Sidebar agent started'`
→ `'Terminal agent started'`, `'Sidebar endpoints'` → `'Batch endpoint'`.
Also fixed the pair-agent BROWSE_PARENT_PID assertion (the literal
`serverEnv.BROWSE_PARENT_PID` never existed in source; the actual
contract is the object-literal `BROWSE_PARENT_PID: '0'` inside the
`const serverEnv` declaration).
* test/upgrade-migration-v1.test.ts: also overrides HOME in the spawn
env. The migration shells out to `${HOME}/.claude/skills/gstack/bin/gstack-config`
and a developer's real config with `explain_level` set causes the
script to take the "user already decided" branch and skip writing
the pending-prompt flag the test asserts on.
* test/setup-codesign.test.ts: replaced fragile `bun run build`
string-match (which hit a comment 700 lines later) with the actual
invocation `bun_cmd run build` used in the setup script.
Net: full suite is now green; CI no longer trips on bash/bun-ENOENT
from PATH pollution or on test markers that drifted with the codebase.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
54 lines
2.4 KiB
TypeScript
54 lines
2.4 KiB
TypeScript
/**
|
|
* Global test preload (Bun: `[test] preload` in bunfig.toml).
|
|
*
|
|
* Snapshots `process.env` once at preload time, then restores it after
|
|
* every test. Defends against the recurring pollution class where one
|
|
* test file mutates `process.env.PATH` / `HOME` / etc. and leaks into
|
|
* unrelated subsequent files in the same Bun process — surfaces as
|
|
* `Executable not found in $PATH: "bun"` or `Bun.which('bash')` returning
|
|
* null in tests that have no business touching env.
|
|
*
|
|
* `process.env = X` reassignment does work in Bun (it swaps the underlying
|
|
* proxy), but several test files use the broken pattern of
|
|
* `origEnv = {...process.env}` followed by per-test mutation without a
|
|
* matching restore inside try/finally. Centralizing the safety net here
|
|
* means new tests don't have to remember the dance, and the bug class
|
|
* stays dead.
|
|
*/
|
|
import { afterEach, beforeAll } from 'bun:test';
|
|
|
|
// Narrowly restore PATH after every test. Defends against the recurring
|
|
// pollution class where one test sets `process.env.PATH = '/test/bin:/usr/bin'`
|
|
// to exercise a scrubbed-env fixture and either forgets to restore or uses
|
|
// the broken `process.env = origEnv` reassignment, then a downstream test
|
|
// (security.test.ts > resolveBashBinary, pair-agent-tunnel-eval, or
|
|
// server-no-import-side-effects) sees the wrong PATH and either has
|
|
// `Bun.which('bash')` return null or `Bun.spawn(['bun', ...])` ENOENT.
|
|
//
|
|
// Deliberately narrow: snapshotting + restoring all of process.env breaks
|
|
// tests that legitimately set per-file env at module top-level (e.g.,
|
|
// domain-skills-storage.test.ts assigns `process.env.GSTACK_HOME` at
|
|
// import time so the loaded module reads the test sandbox path on first
|
|
// invocation — wiping that on afterEach would route reads at the user's
|
|
// real ~/.gstack and the test would assert on the wrong filesystem).
|
|
//
|
|
// If a future test pollutes a different variable in the same broken way,
|
|
// add it to RESTORE_KEYS rather than widening the snapshot scope.
|
|
const RESTORE_KEYS = ['PATH', 'Path'] as const;
|
|
const baseline: Record<string, string | undefined> = {};
|
|
|
|
beforeAll(() => {
|
|
for (const k of RESTORE_KEYS) baseline[k] = process.env[k];
|
|
});
|
|
|
|
afterEach(() => {
|
|
for (const k of RESTORE_KEYS) {
|
|
const want = baseline[k];
|
|
if (want === undefined) {
|
|
if (process.env[k] !== undefined) delete process.env[k];
|
|
} else if (process.env[k] !== want) {
|
|
process.env[k] = want;
|
|
}
|
|
}
|
|
});
|