Kurtosis+E2E: Add doppelganger E2E test - #17240
Open
syjn99 wants to merge 2 commits into
Open
Conversation
syjn99
force-pushed
the
test/kurtosis-e2e-doppelganger
branch
from
July 27, 2026 06:36
feb7a8c to
49df6d2
Compare
syjn99
marked this pull request as ready for review
July 27, 2026 06:45
4 tasks
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.
What type of PR is this?
What does this PR do? Why is it needed?
This PR adds a dedicated E2E test (
TestEndToEnd_Kurtosis_DoppelgangerProtection)for VC doppelganger detection backed by Kurtosis. In #17045, I decided to separate doppelganger e2e test from normal e2e tests as it has different characteristics:"Duplicate instances exists in the network for validator keys").which adds hacky ways (e.g., run Starlark script to launch new service) to run this test apart from what we normally do with
ethereum-packageconfiguration and Assertoor. Thus it would be much better to open a dedicated PR for doppelganger protection and run it in separate way.In legacy e2e tests, we run
testDoppelGangerProtectionwhen a predicateTestSync == trueholds (which I don't think it's a reasonable coupling). From the following PRs, all E2E tests backed by Kurtosis won't assert whether doppelganger protection works as we now have a dedicated e2e test for the assertion.Which issue(s) does this PR fix?
Part of Phase 2: Parity with "minimal" test suites
Other notes for review
How to run test:
bazel test //testing/endtoend:go_doppelganger_kurtosis_test \ --nocache_test_results \ --test_output=all \ --test_timeout=3600Verified locally that this test isn't flaky.
Acknowledgements