Skip to content
Snippets Groups Projects
Commit 55c15865 authored by Simon Rose's avatar Simon Rose
Browse files

Fixed old tests

parent e38f3603
No related branches found
No related tags found
1 merge request!83E3-752: Fetch dependencies recursively
Pipeline #109778 passed
...@@ -24,6 +24,9 @@ class Wrapper: ...@@ -24,6 +24,9 @@ class Wrapper:
self.config_dir = self.path / "configure" self.config_dir = self.path / "configure"
self.config_dir.mkdir() self.config_dir.mkdir()
self.config_module = self.path / "CONFIG_MODULE"
self.config_module.touch()
self.makefile = self.path / f"{name}.Makefile" self.makefile = self.path / f"{name}.Makefile"
makefile_contents = f""" makefile_contents = f"""
...@@ -34,6 +37,8 @@ E3_MODULE_VERSION?=0.0.0+0 ...@@ -34,6 +37,8 @@ E3_MODULE_VERSION?=0.0.0+0
E3_MODULE_SRC_PATH:={module_path} E3_MODULE_SRC_PATH:={module_path}
E3_MODULE_MAKEFILE:={name}.Makefile E3_MODULE_MAKEFILE:={name}.Makefile
include $(TOP)/CONFIG_MODULE
include $(REQUIRE_CONFIG)/CONFIG include $(REQUIRE_CONFIG)/CONFIG
include $(REQUIRE_CONFIG)/RULES_SITEMODS include $(REQUIRE_CONFIG)/RULES_SITEMODS
""" """
...@@ -62,6 +67,10 @@ include $(E3_REQUIRE_TOOLS)/driver.makefile ...@@ -62,6 +67,10 @@ include $(E3_REQUIRE_TOOLS)/driver.makefile
for var, value in config_vars.items(): for var, value in config_vars.items():
f.write(f"{var} = {value}\n") f.write(f"{var} = {value}\n")
def add_var_to_config_module(self, makefile_var: str, value: str, modifier="+"):
with open(self.config_module, "a") as f:
f.write(f"{makefile_var} {modifier}= {value}\n")
def add_var_to_makefile(self, makefile_var: str, value: str, modifier="+"): def add_var_to_makefile(self, makefile_var: str, value: str, modifier="+"):
with open(self.makefile, "a") as f: with open(self.makefile, "a") as f:
f.write(f"{makefile_var} {modifier}= {value}\n") f.write(f"{makefile_var} {modifier}= {value}\n")
......
...@@ -88,11 +88,11 @@ def test_missing_source_file(wrapper): ...@@ -88,11 +88,11 @@ def test_missing_source_file(wrapper):
def test_missing_requirement(wrapper): def test_missing_requirement(wrapper):
wrapper.add_var_to_makefile("REQUIRED", "foo") wrapper.add_var_to_config_module("FOO_DEP_VERSION", "bar")
rc, _, errs = wrapper.run_make("build") rc, _, errs = wrapper.run_make("build")
assert rc == 2 assert rc == 0
assert "REQUIRED module 'foo' version '' does not exist" in errs assert 'Invalid dependency "FOO_DEP_VERSION"; pruning' in errs
def test_header_install_location(wrapper): def test_header_install_location(wrapper):
...@@ -125,9 +125,8 @@ def test_updated_dependencies(wrappers): ...@@ -125,9 +125,8 @@ def test_updated_dependencies(wrappers):
old_version = "0.0.0+0" old_version = "0.0.0+0"
wrapper_main.add_var_to_makefile("REQUIRED", wrapper_dep.name) wrapper_main.add_var_to_config_module(
wrapper_main.add_var_to_makefile( f"{wrapper_dep.name}_DEP_VERSION", old_version, modifier=""
f"{wrapper_dep.name}_VERSION", old_version, modifier=""
) )
rc, *_ = wrapper_dep.run_make( rc, *_ = wrapper_dep.run_make(
...@@ -149,8 +148,8 @@ def test_updated_dependencies(wrappers): ...@@ -149,8 +148,8 @@ def test_updated_dependencies(wrappers):
) )
assert rc == 0 assert rc == 0
wrapper_main.add_var_to_makefile( wrapper_main.add_var_to_config_module(
f"{wrapper_dep.name}_VERSION", new_version, modifier="" f"{wrapper_dep.name}_DEP_VERSION", new_version, modifier=""
) )
rc, *_ = wrapper_main.run_make("cellinstall", module_version=new_version) rc, *_ = wrapper_main.run_make("cellinstall", module_version=new_version)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment