Skip to content

test: exclude crawler-e2e siblings from #[serial] env swaps via #[parallel] - #136

Merged
Mikola Lysenko (mikolalysenko) merged 1 commit into
mainfrom
fix/crawler-e2e-parallel-guard
Jul 27, 2026
Merged

test: exclude crawler-e2e siblings from #[serial] env swaps via #[parallel]#136
Mikola Lysenko (mikolalysenko) merged 1 commit into
mainfrom
fix/crawler-e2e-parallel-guard

Conversation

@mikolalysenko

Copy link
Copy Markdown
Collaborator

What this sweep found

#135 fixed the setup-matrix decoy race and documented the gotcha: #[serial] only excludes other #[serial] tests. Sweeping every test binary in both crates with a helper-aware analyzer (attributes each test's mutation status including mutation hidden inside helpers like crawler_npm_e2e::with_empty_path) found the same hazard at much larger scale:

binary tests #[serial] mutators unmarked siblings
crawler_npm_e2e 58 4 54
crawler_python_e2e 43 12 31
crawler_cargo_e2e 32 3 29
crawler_maven_e2e 28 8 20
crawler_go_e2e 24 7 17
crawler_composer_e2e 21 5 16
crawler_nuget_e2e 28 13 15
crawler_ruby_e2e 20 7 13
crawler_deno_e2e 13 5 8
cli_global_args 14 12 2

The serial tests swap HOME, VIRTUAL_ENV, PATH, XDG dirs, and (composer) the process cwd around in-process crawler calls. Unlike #135's child-spawn snapshot race (microseconds window), this variant exposes siblings for the mutator's entire body: any concurrently-running sibling whose crawl probes HOME-based global caches mid-swap sees the wrong universe. All mutating tests were already #[serial] — the gap was solely their unmarked siblings.

The fix

#[serial_test::parallel] on all 205 unmarked siblings. Parallel-marked tests keep running concurrently with each other but take the shared side of serial_test's lock, so they're excluded while any #[serial] test runs — suite wall-times are unchanged (verified: all ten binaries' runtimes identical before/after; 280 tests green).

Blanket #[serial] (the #135 approach, right for those tiny suites) would have serialized 58-test binaries for no reason.

Mechanism proven RED/GREEN

Throwaway probe pair (not committed): a #[serial] test swapping HOME for 150ms alongside an unmarked sibling asserting HOME stays stable — fails 3/3 runs with "HOME changed mid-test"; after marking the sibling #[parallel], passes 5/5. Same primitive as #135's deterministic proof, in-process variant.

Not touched

Single-test binaries with env mutation (e2e_golang_build, setup_matrix_env_guard) — no siblings, no intra-process race.

🤖 Generated with Claude Code

…allel]

Follow-up to #135, which fixed the hostile-decoy env race in the
setup-matrix suites and documented the gotcha this sweep now applies
repo-wide: #[serial] only excludes OTHER #[serial] tests. Nine
crawler_*_e2e binaries (and cli_global_args) have #[serial] tests that
swap process-global state — HOME, VIRTUAL_ENV, PATH, XDG dirs, even the
process cwd (composer) — around in-process crawler calls, while dozens
of unmarked sibling tests run concurrently on other threads. Unlike
#135's child-spawn snapshot race (a microseconds window), the in-process
variant exposes siblings for the mutator's entire body: any sibling
whose crawl probes HOME-based global caches mid-swap sees the wrong
universe.

A helper-aware sweep of every test binary in both crates confirmed all
MUTATING tests are already #[serial] (including mutation hidden inside
helpers like crawler_npm_e2e's with_empty_path); the gap was solely the
unmarked siblings. Fix: #[serial_test::parallel] on all 205 of them —
parallel-marked tests keep running concurrently with each other but are
excluded while any #[serial] test holds the lock, so suite wall-time is
unchanged (binaries' runtimes identical before/after).

Mechanism proven RED/GREEN with a throwaway probe pair (not committed):
a #[serial] test swapping HOME for 150ms + an UNMARKED sibling asserting
HOME stays stable fails 3/3 runs; marking the sibling #[parallel] passes
5/5. Same primitive as #135's proof, in-process variant.

Single-test binaries with env mutation (e2e_golang_build,
setup_matrix_env_guard) have no intra-process race and stay untouched.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
@mikolalysenko
Mikola Lysenko (mikolalysenko) merged commit 72c07e9 into main Jul 27, 2026
54 checks passed
@mikolalysenko
Mikola Lysenko (mikolalysenko) deleted the fix/crawler-e2e-parallel-guard branch July 27, 2026 18:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants