42 lines
1.6 KiB
Python
Raw Normal View History

from eth2spec.gen_helpers.gen_from_tests.gen import run_state_test_generators, combine_mods
2023-04-11 21:29:30 +06:00
from eth2spec.test.helpers.constants import ALTAIR, BELLATRIX, CAPELLA, DENEB, EIP6110
2021-02-19 12:34:12 +08:00
if __name__ == "__main__":
# Note: Fork choice tests start from Altair - there are no fork choice test for phase 0 anymore
altair_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',
'ex_ante',
2023-03-09 15:17:11 -08:00
'reorg',
'withholding',
'get_proposer_head',
2021-02-19 12:34:12 +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 [
'on_merge_block',
'should_override_forkchoice_update',
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)
capella_mods = bellatrix_mods # No additional Capella specific fork choice tests
# Deneb adds `is_data_available` tests
_new_deneb_mods = {key: 'eth2spec.test.deneb.fork_choice.test_' + key for key in [
'on_block',
]}
deneb_mods = combine_mods(_new_deneb_mods, capella_mods)
2023-04-11 13:42:16 +06:00
eip6110_mods = deneb_mods # No additional EIP6110 specific fork choice tests
2022-11-10 10:38:08 -05:00
2021-03-12 00:06:52 +08:00
all_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,
DENEB: deneb_mods,
2023-04-11 13:42:16 +06:00
EIP6110: eip6110_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)