2019-07-26 22:26:05 +00:00
|
|
|
from typing import Iterable
|
2019-05-23 13:16:59 +00:00
|
|
|
|
2019-07-26 22:26:05 +00:00
|
|
|
from gen_base import gen_runner, gen_typing
|
2021-02-15 10:38:20 +00:00
|
|
|
from gen_from_tests.gen import generate_from_tests, get_provider
|
2020-07-07 19:21:43 +00:00
|
|
|
from importlib import reload, import_module
|
2020-01-25 00:26:10 +00:00
|
|
|
from eth2spec.config import config_util
|
2019-06-05 14:23:44 +00:00
|
|
|
from eth2spec.phase0 import spec as spec_phase0
|
2021-02-15 10:38:20 +00:00
|
|
|
from eth2spec.lightclient_patch import spec as spec_lightclient_patch
|
2019-06-05 14:23:44 +00:00
|
|
|
from eth2spec.phase1 import spec as spec_phase1
|
2021-02-15 10:38:20 +00:00
|
|
|
from eth2spec.test.context import PHASE0, PHASE1, LIGHTCLIENT_PATCH, TESTGEN_FORKS, ALL_CONFIGS
|
2020-07-23 23:19:14 +00:00
|
|
|
from eth2spec.utils import bls
|
2019-05-23 13:16:59 +00:00
|
|
|
|
2019-07-26 22:26:05 +00:00
|
|
|
|
2020-09-15 03:19:50 +00:00
|
|
|
def create_provider(fork_name: str, handler_name: str,
|
|
|
|
tests_src_mod_name: str, config_name: str) -> gen_typing.TestProvider:
|
2019-07-26 22:26:05 +00:00
|
|
|
def prepare_fn(configs_path: str) -> str:
|
2020-01-25 00:26:10 +00:00
|
|
|
config_util.prepare_config(configs_path, config_name)
|
|
|
|
reload(spec_phase0)
|
2021-02-15 10:38:20 +00:00
|
|
|
reload(spec_lightclient_patch)
|
2020-01-25 00:26:10 +00:00
|
|
|
reload(spec_phase1)
|
2020-07-23 23:19:14 +00:00
|
|
|
bls.use_milagro()
|
2019-07-26 22:26:05 +00:00
|
|
|
return config_name
|
|
|
|
|
|
|
|
def cases_fn() -> Iterable[gen_typing.TestCase]:
|
2020-07-07 18:17:36 +00:00
|
|
|
tests_src = import_module(tests_src_mod_name)
|
2019-07-26 22:26:05 +00:00
|
|
|
return generate_from_tests(
|
|
|
|
runner_name='operations',
|
|
|
|
handler_name=handler_name,
|
|
|
|
src=tests_src,
|
2020-07-07 18:17:36 +00:00
|
|
|
fork_name=fork_name,
|
2019-07-26 22:26:05 +00:00
|
|
|
)
|
2019-05-23 13:16:59 +00:00
|
|
|
|
2019-07-26 22:26:05 +00:00
|
|
|
return gen_typing.TestProvider(prepare=prepare_fn, make_cases=cases_fn)
|
2019-04-11 14:53:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2020-09-15 03:00:36 +00:00
|
|
|
phase_0_mods = {key: 'eth2spec.test.phase0.block_processing.test_process_' + key for key in [
|
2020-07-07 18:17:36 +00:00
|
|
|
'attestation',
|
|
|
|
'attester_slashing',
|
|
|
|
'block_header',
|
|
|
|
'deposit',
|
|
|
|
'proposer_slashing',
|
|
|
|
'voluntary_exit',
|
2020-09-15 03:00:36 +00:00
|
|
|
]}
|
2021-02-15 10:38:20 +00:00
|
|
|
lightclient_patch_mods = {
|
|
|
|
**{key: 'eth2spec.test.lightclient_patch.block_processing.test_process_' + key for key in [
|
|
|
|
'sync_committee',
|
|
|
|
]},
|
|
|
|
**phase_0_mods,
|
|
|
|
} # also run the previous phase 0 tests
|
2020-09-15 03:00:36 +00:00
|
|
|
phase_1_mods = {**{key: 'eth2spec.test.phase1.block_processing.test_process_' + key for key in [
|
2020-07-07 18:17:36 +00:00
|
|
|
'attestation',
|
|
|
|
'chunk_challenge',
|
|
|
|
'custody_key_reveal',
|
|
|
|
'custody_slashing',
|
|
|
|
'early_derived_secret_reveal',
|
|
|
|
'shard_transition',
|
2020-09-15 03:00:36 +00:00
|
|
|
]}, **phase_0_mods} # also run the previous phase 0 tests (but against phase 1 spec)
|
2020-07-07 18:17:36 +00:00
|
|
|
|
2021-02-15 10:38:20 +00:00
|
|
|
all_mods = {
|
|
|
|
PHASE0: phase_0_mods,
|
|
|
|
LIGHTCLIENT_PATCH: lightclient_patch_mods,
|
|
|
|
PHASE1: phase_1_mods,
|
|
|
|
}
|
|
|
|
|
|
|
|
for config_name in ALL_CONFIGS:
|
|
|
|
for fork_name in TESTGEN_FORKS:
|
|
|
|
if fork_name in all_mods:
|
|
|
|
gen_runner.run_generator(f"operations", get_provider(
|
|
|
|
create_provider_fn=create_provider, config_name=config_name,
|
|
|
|
fork_name=fork_name, all_mods=all_mods,
|
|
|
|
))
|