Newer
Older
from pathlib import Path
import pytest
from git import Repo
from .utils import TEST_MODULE_NAME

Simon Rose
committed
def wrappers(tmpdir, request):
class WrapperFactory:
def get(self):
"""
Sets up a wrapper with the minimal necessary configuration in order to build a module
Note that a number of necessary variables are expected to be present in the environment
"""
try:
params = request.param
except AttributeError:
params = {}
wrapper_dir = Path(tmpdir / "wrapper")
TEST_MODULE_PATH = (
TEST_MODULE_NAME
if "E3_MODULE_SRC_PATH" not in params
else params["E3_MODULE_SRC_PATH"]
)
test_dir = wrapper_dir / TEST_MODULE_PATH
test_dir.mkdir(parents=True)
config_file = """
TOP:=$(CURDIR)
include $(REQUIRE_CONFIG)/CONFIG
include $(REQUIRE_CONFIG)/RULES_SITEMODS
"""

Simon Rose
committed
module_makefile = """
where_am_I := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
include $(E3_REQUIRE_TOOLS)/driver.makefile
TEMPLATES += {templates}
SOURCES += {sources}
DBDS += {dbds}
HEADERS += {headers}
"""

Simon Rose
committed
# TODO: This should not be necessary, but it is for patching.
Repo.init(wrapper_dir)
with open(wrapper_dir / "Makefile", "w") as f:
f.write(config_file)
make_vars = {"templates": "", "sources": "", "dbds": "", "headers": ""}
make_vars.update(**params)
with open(wrapper_dir / f"{TEST_MODULE_NAME}.Makefile", "w") as f:
f.write(module_makefile.format(**make_vars))

Simon Rose
committed
with open(wrapper_dir / TEST_MODULE_PATH / "test.dbd", "w") as f:
pass

Simon Rose
committed
return wrapper_dir
yield WrapperFactory()
@pytest.fixture
def wrapper(wrappers):
yield wrappers.get()