-
Notifications
You must be signed in to change notification settings - Fork 989
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
More capella tests #3227
Merged
Merged
More capella tests #3227
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
065b303
Add tests of mixing top-ups and withdrawals, rename old test case
hwwhww e3b42ca
Add activate and partial withdrawal tests
hwwhww 507a7ec
Add BLS_TO_EXECUTION_CHANGE fork transition tests
hwwhww 230dfb0
Apply suggestions from code review
hwwhww 3e78448
Address PR feedback
hwwhww 9ab1478
Update transtion testgen
hwwhww File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
Empty file.
54 changes: 54 additions & 0 deletions
54
tests/core/pyspec/eth2spec/test/eip4844/transition/test_operations.py
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
from eth2spec.test.context import ( | ||
ForkMeta, | ||
always_bls, | ||
with_fork_metas, | ||
) | ||
from eth2spec.test.helpers.constants import ( | ||
AFTER_DENEB_PRE_POST_FORKS, | ||
) | ||
from eth2spec.test.helpers.fork_transition import ( | ||
OperationType, | ||
run_transition_with_operation, | ||
) | ||
|
||
|
||
# | ||
# BLSToExecutionChange | ||
# | ||
|
||
@with_fork_metas([ForkMeta(pre_fork_name=pre, post_fork_name=post, fork_epoch=2) | ||
for pre, post in AFTER_DENEB_PRE_POST_FORKS]) | ||
@always_bls | ||
def test_transition_with_btec_right_after_fork(state, fork_epoch, spec, post_spec, pre_tag, post_tag): | ||
""" | ||
Create a BLS_TO_EXECUTION_CHANGE right *after* the transition | ||
""" | ||
yield from run_transition_with_operation( | ||
state, | ||
fork_epoch, | ||
spec, | ||
post_spec, | ||
pre_tag, | ||
post_tag, | ||
operation_type=OperationType.BLS_TO_EXECUTION_CHANGE, | ||
operation_at_slot=fork_epoch * spec.SLOTS_PER_EPOCH, | ||
) | ||
|
||
|
||
@with_fork_metas([ForkMeta(pre_fork_name=pre, post_fork_name=post, fork_epoch=2) | ||
for pre, post in AFTER_DENEB_PRE_POST_FORKS]) | ||
@always_bls | ||
def test_transition_with_btec_right_before_fork(state, fork_epoch, spec, post_spec, pre_tag, post_tag): | ||
""" | ||
Create a BLS_TO_EXECUTION_CHANGE right *before* the transition | ||
""" | ||
yield from run_transition_with_operation( | ||
state, | ||
fork_epoch, | ||
spec, | ||
post_spec, | ||
pre_tag, | ||
post_tag, | ||
operation_type=OperationType.BLS_TO_EXECUTION_CHANGE, | ||
operation_at_slot=fork_epoch * spec.SLOTS_PER_EPOCH - 1, | ||
) |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe write a comment that withdrawals happen before deposits so no partial withdrawal is made in the prior transition (just to make explicit)