eth2.0-specs/Makefile

74 lines
2.6 KiB
Makefile
Raw Normal View History

SPEC_DIR = ./specs
SCRIPT_DIR = ./scripts
2019-03-27 16:35:46 +00:00
TEST_LIBS_DIR = ./test_libs
PY_SPEC_DIR = $(TEST_LIBS_DIR)/pyspec
PY_TEST_DIR = ./py_tests
2019-03-27 16:35:46 +00:00
YAML_TEST_DIR = ./yaml_tests
GENERATOR_DIR = ./test_generators
2019-03-27 16:35:46 +00:00
# Collect a list of generator names
GENERATORS = $(sort $(dir $(wildcard $(GENERATOR_DIR)/*/)))
# Map this list of generator paths to a list of test output paths
YAML_TEST_TARGETS = $(patsubst $(GENERATOR_DIR)/%, $(YAML_TEST_DIR)/%, $(GENERATORS))
GENERATOR_VENVS = $(patsubst $(GENERATOR_DIR)/%, $(GENERATOR_DIR)/%venv, $(GENERATORS))
PY_SPEC_PHASE_0_TARGETS = $(PY_SPEC_DIR)/pyspec/phase0/spec.py
PY_SPEC_ALL_TARGETS = $(PY_SPEC_PHASE_0_TARGETS)
.PHONY: clean all test gen_yaml_tests pyspec phase0
2019-03-27 16:35:46 +00:00
all: $(PY_SPEC_ALL_TARGETS) $(YAML_TEST_DIR) $(YAML_TEST_TARGETS)
clean:
2019-03-27 16:35:46 +00:00
rm -rf $(YAML_TEST_DIR)
2019-03-28 16:05:40 +00:00
rm -rf $(GENERATOR_VENVS)
rm -rf $(PY_TEST_DIR)/venv $(PY_TEST_DIR)/.pytest_cache
2019-03-27 16:35:46 +00:00
rm -rf $(PY_SPEC_ALL_TARGETS)
2019-03-28 16:05:40 +00:00
# "make gen_yaml_tests" to run generators
gen_yaml_tests: $(YAML_TEST_DIR) $(YAML_TEST_TARGETS)
2019-03-18 22:30:16 +00:00
# runs a limited set of tests against a minimal config
test: $(PY_SPEC_ALL_TARGETS)
cd $(PY_TEST_DIR); python3 -m venv venv; . venv/bin/activate; pip3 install -r requirements.txt; pytest -m minimal_config .
2019-03-27 16:35:46 +00:00
# "make pyspec" to create the pyspec for all phases.
pyspec: $(PY_SPEC_ALL_TARGETS)
2019-03-18 22:30:16 +00:00
2019-03-27 16:35:46 +00:00
# "make phase0" to create pyspec for phase0
phase0: $(PY_SPEC_PHASE_0_TARGETS)
2019-03-27 16:35:46 +00:00
$(PY_SPEC_DIR)/pyspec/phase0/spec.py:
python3 $(SCRIPT_DIR)/phase0/build_spec.py $(SPEC_DIR)/core/0_beacon-chain.md $@
2019-03-27 16:35:46 +00:00
2019-03-28 16:05:40 +00:00
CURRENT_DIR = ${CURDIR}
2019-03-27 16:35:46 +00:00
# The function that builds a set of suite files, by calling a generator for the given type (param 1)
define build_yaml_tests
$(info running generator $(1))
# Create the output
mkdir -p $(YAML_TEST_DIR)$(1)
2019-03-28 16:05:40 +00:00
# 1) Create a virtual environment
# 2) Activate the venv, this is where dependencies are installed for the generator
# 3) Install all the necessary requirements
# 4) Run the generator. The generator is assumed to have an "main.py" file.
# 5) We output to the tests dir (generator program should accept a "-o <filepath>" argument.
cd $(GENERATOR_DIR)$(1); python3 -m venv venv; . venv/bin/activate; pip3 install -r requirements.txt; python3 main.py -o $(CURRENT_DIR)/$(YAML_TEST_DIR)$(1)
2019-03-27 16:35:46 +00:00
$(info generator $(1) finished)
endef
# The tests dir itself is simply build by creating the directory (recursively creating deeper directories if necessary)
$(YAML_TEST_DIR):
2019-03-28 16:05:40 +00:00
$(info creating directory, to output yaml targets to: ${YAML_TEST_TARGETS})
2019-03-27 16:35:46 +00:00
mkdir -p $@
# For any target within the tests dir, build it using the build_yaml_tests function.
2019-03-28 16:24:18 +00:00
# (creation of output dir is a dependency)
$(YAML_TEST_DIR)%: $(YAML_TEST_DIR)
2019-03-27 16:35:46 +00:00
$(call build_yaml_tests,$*)