eth2.0-specs/tests/generators/genesis/main.py

31 lines
1.2 KiB
Python
Raw Normal View History

2021-10-06 18:11:50 +00:00
from eth2spec.gen_helpers.gen_from_tests.gen import run_state_test_generators, combine_mods
2024-02-16 04:29:00 +00:00
from eth2spec.test.helpers.constants import PHASE0, ALTAIR, BELLATRIX, CAPELLA, DENEB, ELECTRA
2019-06-30 13:26:54 +00:00
if __name__ == "__main__":
2021-03-15 16:38:30 +00:00
phase_0_mods = {key: 'eth2spec.test.phase0.genesis.test_' + key for key in [
'initialization',
'validity',
]}
2021-10-06 18:11:50 +00:00
altair_mods = phase_0_mods
2022-10-13 19:53:40 +00:00
# we have new unconditional lines in `initialize_beacon_state_from_eth1` and we want to test it
2021-12-22 07:46:18 +00:00
_new_bellatrix_mods = {key: 'eth2spec.test.bellatrix.genesis.test_' + key for key in [
2021-10-06 18:11:50 +00:00
'initialization',
]}
2021-12-22 07:46:18 +00:00
bellatrix_mods = combine_mods(_new_bellatrix_mods, altair_mods)
capella_mods = bellatrix_mods # No additional Capella specific genesis tests
deneb_mods = capella_mods # No additional Deneb specific genesis tests
2024-02-16 04:29:00 +00:00
electra_mods = deneb_mods # No additional Electra specific genesis tests
2021-03-15 16:38:30 +00:00
all_mods = {
PHASE0: phase_0_mods,
ALTAIR: altair_mods,
2021-12-22 07:46:18 +00:00
BELLATRIX: bellatrix_mods,
2022-10-13 19:53:40 +00:00
CAPELLA: capella_mods,
DENEB: deneb_mods,
2024-02-16 04:29:00 +00:00
ELECTRA: electra_mods,
2021-03-15 16:38:30 +00:00
}
2021-05-18 16:29:24 +00:00
run_state_test_generators(runner_name="genesis", all_mods=all_mods)