2021-10-07 02:32:17 +08:00
|
|
|
from eth2spec.gen_helpers.gen_from_tests.gen import run_state_test_generators, combine_mods
|
2022-11-10 10:38:08 -05:00
|
|
|
from eth2spec.test.helpers.constants import PHASE0, ALTAIR, BELLATRIX, CAPELLA, EIP4844
|
2021-02-19 12:34:12 +08:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
phase_0_mods = {key: 'eth2spec.test.phase0.fork_choice.test_' + key for key in [
|
2021-06-18 17:39:46 +08:00
|
|
|
'get_head',
|
2021-06-15 21:52:25 +08:00
|
|
|
'on_block',
|
2021-12-09 17:47:20 +08:00
|
|
|
'ex_ante',
|
2021-02-19 12:34:12 +08:00
|
|
|
]}
|
2021-03-29 15:38:43 +02:00
|
|
|
# No additional Altair specific finality tests, yet.
|
2021-03-12 00:39:38 +08:00
|
|
|
altair_mods = phase_0_mods
|
2021-10-07 02:32:17 +08:00
|
|
|
|
2021-09-23 22:22:34 +03:00
|
|
|
# For merge `on_merge_block` test kind added with `pow_block_N.ssz` files with several
|
|
|
|
# PowBlock's which should be resolved by `get_pow_block(hash: Hash32) -> PowBlock` function
|
2021-12-22 15:46:18 +08:00
|
|
|
_new_bellatrix_mods = {key: 'eth2spec.test.bellatrix.fork_choice.test_' + key for key in [
|
2021-10-07 02:32:17 +08:00
|
|
|
'on_merge_block',
|
2021-10-07 21:43:23 +08:00
|
|
|
]}
|
2021-12-22 15:46:18 +08:00
|
|
|
bellatrix_mods = combine_mods(_new_bellatrix_mods, altair_mods)
|
2022-10-17 23:21:15 +08:00
|
|
|
capella_mods = bellatrix_mods # No additional Capella specific fork choice tests
|
2022-11-10 10:38:08 -05:00
|
|
|
eip4844_mods = capella_mods # No additional Capella specific fork choice tests
|
|
|
|
|
2021-03-12 00:06:52 +08:00
|
|
|
all_mods = {
|
|
|
|
PHASE0: phase_0_mods,
|
2021-03-12 00:39:38 +08:00
|
|
|
ALTAIR: altair_mods,
|
2021-12-22 15:46:18 +08:00
|
|
|
BELLATRIX: bellatrix_mods,
|
2022-10-13 14:53:40 -05:00
|
|
|
CAPELLA: capella_mods,
|
2022-11-10 10:38:08 -05:00
|
|
|
EIP4844: eip4844_mods,
|
2021-03-12 00:06:52 +08:00
|
|
|
}
|
2021-02-19 12:34:12 +08:00
|
|
|
|
2021-05-18 18:29:24 +02:00
|
|
|
run_state_test_generators(runner_name="fork_choice", all_mods=all_mods)
|