Clean up test code - #911
Draft
seanses wants to merge 2 commits into
Draft
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Deduplicates the CAS simulation test harness by removing the older
#[cfg(test)] LocalTestServerthat lived insidelocal_server/server.rs.That type was a second, nearly identical copy of the public harness in
simulation_server.rs(LocalTestServer+LocalTestServerBuilder):LocalServer, wire aRemoteClient/RemoteSimulationClient, and expose the backingDirectAccessClientClient+DirectAccessClientpassthrough by handThe
server.rscopy was the older, narrower helper (in-memory vs temp-disk, optional socket). The public builder is the one external tests and simulation tooling already use (LocalTestServerBuilder, network/latency profiles, ephemeral disk/socket, deletion wiring). Keeping both meant every trait method and many HTTP checks had to be maintained twice, and unique coverage (notably V2 reconstruction checks) was trapped on the private harness.What changed
LocalTestServer(+ trait passthrough) fromlocal_server/server.rsLocalTestServerBuilderLocalTestServerBuilder::with_deletion_clientso pre-supplied backends can still expose/simulation/deletion routessimulation_server.rs’s sharedrun_all_server_checksNet: ~1k lines of duplicate harness removed; one canonical way to stand up a local CAS for tests.
Test plan
cargo test --package xet-client --features simulation --lib simulation_server::tests::test_local_servercargo test --package xet-client --features simulation --lib local_server::server::testscargo clippy -r --package xet-client --features simulation -- -D warnings