2021-10-07 02:32:17 +08:00
|
|
|
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 PHASE0, ALTAIR, BELLATRIX, CAPELLA, DENEB, EIP6110
|
2019-05-23 15:11:46 +02:00
|
|
|
|
2019-05-24 18:39:12 +02:00
|
|
|
|
2019-05-23 15:11:46 +02:00
|
|
|
if __name__ == "__main__":
|
2020-09-15 11:00:36 +08:00
|
|
|
phase_0_mods = {key: 'eth2spec.test.phase0.epoch_processing.test_process_' + key for key in [
|
2020-07-07 21:21:43 +02:00
|
|
|
'justification_and_finalization',
|
|
|
|
'rewards_and_penalties',
|
2021-01-27 02:55:37 +08:00
|
|
|
'registry_updates',
|
2020-07-07 21:21:43 +02:00
|
|
|
'slashings',
|
2021-01-27 14:42:50 +08:00
|
|
|
'eth1_data_reset',
|
|
|
|
'effective_balance_updates',
|
|
|
|
'slashings_reset',
|
|
|
|
'randao_mixes_reset',
|
|
|
|
'historical_roots_update',
|
2021-01-27 02:55:37 +08:00
|
|
|
'participation_record_updates',
|
2020-09-15 11:00:36 +08:00
|
|
|
]}
|
2021-10-07 02:32:17 +08:00
|
|
|
|
|
|
|
_new_altair_mods = {key: 'eth2spec.test.altair.epoch_processing.test_process_' + key for key in [
|
|
|
|
'inactivity_updates',
|
|
|
|
'participation_flag_updates',
|
|
|
|
'sync_committee_updates',
|
2021-10-07 21:43:23 +08:00
|
|
|
]}
|
2021-10-07 02:32:17 +08:00
|
|
|
altair_mods = combine_mods(_new_altair_mods, phase_0_mods)
|
2021-03-29 15:38:43 +02:00
|
|
|
|
2021-12-22 15:46:18 +08:00
|
|
|
# No epoch-processing changes in Bellatrix and previous testing repeats with new types,
|
|
|
|
# so no additional tests required.
|
|
|
|
bellatrix_mods = altair_mods
|
2021-05-05 00:15:15 +02:00
|
|
|
|
2022-12-16 00:49:14 +08:00
|
|
|
_new_capella_mods = {key: 'eth2spec.test.capella.epoch_processing.test_process_' + key for key in [
|
2023-01-02 23:07:00 +08:00
|
|
|
'historical_summaries_update',
|
2022-12-16 00:49:14 +08:00
|
|
|
]}
|
|
|
|
capella_mods = combine_mods(_new_capella_mods, bellatrix_mods)
|
2022-10-13 14:53:40 -05:00
|
|
|
|
2023-01-23 15:08:34 +01:00
|
|
|
deneb_mods = capella_mods
|
2022-11-10 10:38:08 -05:00
|
|
|
|
2023-04-11 13:42:16 +06:00
|
|
|
eip6110_mods = deneb_mods
|
|
|
|
|
2021-03-29 15:38:43 +02:00
|
|
|
# TODO Custody Game testgen is disabled for now
|
|
|
|
# custody_game_mods = {**{key: 'eth2spec.test.custody_game.epoch_processing.test_process_' + key for key in [
|
|
|
|
# 'reveal_deadlines',
|
|
|
|
# 'challenge_deadlines',
|
|
|
|
# 'custody_final_updates',
|
|
|
|
# ]}, **phase_0_mods} # also run the previous phase 0 tests (but against custody game spec)
|
2020-07-07 21:21:43 +02:00
|
|
|
|
2021-02-15 18:38:20 +08:00
|
|
|
all_mods = {
|
|
|
|
PHASE0: phase_0_mods,
|
2021-03-11 21:22: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,
|
2023-01-23 15:08:34 +01:00
|
|
|
DENEB: deneb_mods,
|
2023-04-11 13:42:16 +06:00
|
|
|
EIP6110: eip6110_mods,
|
2021-02-15 18:38:20 +08:00
|
|
|
}
|
|
|
|
|
2021-05-18 18:29:24 +02:00
|
|
|
run_state_test_generators(runner_name="epoch_processing", all_mods=all_mods)
|