2019-07-27 01:09:00 +00:00
|
|
|
from typing import Iterable
|
2020-01-25 21:10:03 +00:00
|
|
|
from importlib import reload
|
2019-05-23 13:53:11 +00:00
|
|
|
|
2019-07-27 01:09:00 +00:00
|
|
|
from gen_base import gen_runner, gen_typing
|
2019-05-23 13:53:11 +00:00
|
|
|
from gen_from_tests.gen import generate_from_tests
|
2020-01-25 00:26:10 +00:00
|
|
|
|
2020-04-02 07:23:20 +00:00
|
|
|
from eth2spec.test.context import PHASE0
|
2020-06-18 06:55:50 +00:00
|
|
|
from eth2spec.test.phase0.sanity import test_blocks, test_slots
|
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
|
|
|
|
from eth2spec.phase1 import spec as spec_phase1
|
2019-05-23 13:53:11 +00:00
|
|
|
|
|
|
|
|
2019-07-27 01:09:00 +00:00
|
|
|
def create_provider(handler_name: str, tests_src, config_name: str) -> gen_typing.TestProvider:
|
|
|
|
|
|
|
|
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)
|
|
|
|
reload(spec_phase1)
|
2019-07-27 01:09:00 +00:00
|
|
|
return config_name
|
|
|
|
|
|
|
|
def cases_fn() -> Iterable[gen_typing.TestCase]:
|
|
|
|
return generate_from_tests(
|
|
|
|
runner_name='sanity',
|
|
|
|
handler_name=handler_name,
|
|
|
|
src=tests_src,
|
2020-04-02 07:23:20 +00:00
|
|
|
fork_name=PHASE0,
|
2019-07-27 01:09:00 +00:00
|
|
|
)
|
2019-05-23 13:53:11 +00:00
|
|
|
|
2019-07-27 01:09:00 +00:00
|
|
|
return gen_typing.TestProvider(prepare=prepare_fn, make_cases=cases_fn)
|
2019-05-23 13:53:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
gen_runner.run_generator("sanity", [
|
2019-07-27 01:09:00 +00:00
|
|
|
create_provider('blocks', test_blocks, 'minimal'),
|
|
|
|
create_provider('blocks', test_blocks, 'mainnet'),
|
|
|
|
create_provider('slots', test_slots, 'minimal'),
|
|
|
|
create_provider('slots', test_slots, 'mainnet'),
|
2019-05-23 13:53:11 +00:00
|
|
|
])
|