make-all-env-files-available (#4)

Before, a test had only access to it's own env file / configuration (wordpress could see wordpress env file). Now, all env files are available. Wordpress test can also read authentik env file, for example to get the authentik domain.

Reviewed-on: local-it-infrastructure/e2e_tests#4
Co-authored-by: Daniel <d.brummerloh@gmail.com>
Co-committed-by: Daniel <d.brummerloh@gmail.com>
This commit is contained in:
Daniel 2023-11-30 10:53:20 +01:00 committed by dan
parent 8172f685de
commit 2e33f8f014
5 changed files with 68 additions and 44 deletions

View file

@ -25,7 +25,9 @@ class DirManager:
def create_all_dirs(self):
self.create_dirs(self._output_dir, exist_ok=True)
self.create_dirs([self.SESSION, self.RECORDS, self.RECORDS / "html", self.STATES, self.RESULTS], exist_ok=True)
self.create_dirs(
[self.SESSION, self.RECORDS, self.HTML, self.STATES, self.ENV_FILES, self.RESULTS], exist_ok=True
)
@property
def OUTPUT(self):
@ -37,15 +39,23 @@ class DirManager:
@property
def RECORDS(self):
return self.SESSION / Path("records")
return self.SESSION / "records"
@property
def HTML(self):
return self.RECORDS / "html"
@property
def STATES(self):
return self.SESSION / Path("states")
return self.SESSION / "states"
@property
def ENV_FILES(self):
return self.STATES / "env_files"
@property
def RESULTS(self):
return self.SESSION / Path("results")
return self.SESSION / "results"
@staticmethod
def create_dirs(dirs: Path | list[Path] | dict[str, Path], exist_ok=False):