Skip to content

Commit 9e49f90

Browse files
tests: omd("start") with strict mode to enhance output upon exceptions
CMK-18148 This will alter the exception type from AssertionError to CalledProcessError. But it will contain actual output/context about the failure during startup Change-Id: Idd40e2980a738785b3be743dbb812c072f1f1174
1 parent fb138ee commit 9e49f90

File tree

2 files changed

+25
-3
lines changed

2 files changed

+25
-3
lines changed

tests/testlib/pytest_helpers/calls.py

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ def exit_pytest_on_exceptions(
4040
exceptions = (BaseException,) if exceptions is None else exceptions
4141
msg = f"{exit_msg}\n"
4242
try:
43+
# simply execute the context body
4344
yield
4445
except exceptions as excp:
4546
msg += _exception_traceback(excp)

tests/testlib/site.py

+24-3
Original file line numberDiff line numberDiff line change
@@ -609,15 +609,29 @@ def python_helper(self, name: str) -> PythonHelper:
609609
helper_file = caller_file.parent / name
610610
return PythonHelper(self, helper_file)
611611

612-
def omd(self, mode: str, *args: str) -> int:
612+
def omd(self, mode: str, *args: str, check: bool = False) -> int:
613+
"""run the "omd" command with the given mode and arguments.
614+
615+
Args:
616+
mode (str): The mode of the "omd" command. e.g. "status", "restart", "start", "stop"
617+
args (str): More (optional) arguments to the "omd" command.
618+
check (bool, optional): Run cmd as check/strict - raise Exception on rc!=0.
619+
620+
raises:
621+
subprocess.CalledProcessError: If check is True and the return code is not 0.
622+
Will also contain the output of the command in the exception message.
623+
624+
Returns:
625+
int: return code of the "omd" command
626+
"""
613627
cmd = ["omd", mode] + list(args)
614628
logger.info("Executing: %s", subprocess.list2cmdline(cmd))
615629
completed_process = self.run(
616630
cmd,
617631
capture_output=False,
618632
stdout=subprocess.PIPE,
619633
stderr=subprocess.STDOUT,
620-
check=False,
634+
check=check,
621635
)
622636
logger.debug("Exit code: %d", completed_process.returncode)
623637
if completed_process.stdout:
@@ -1015,7 +1029,8 @@ def rm(self, site_id: str | None = None) -> None:
10151029
def start(self) -> None:
10161030
if not self.is_running():
10171031
logger.info("Starting site")
1018-
assert self.omd("start") == 0
1032+
# start the site and ensure it's fully running (including all services)
1033+
assert self.omd("start", check=True) == 0
10191034
# print("= BEGIN PROCESSES AFTER START ==============================")
10201035
# self.execute(["ps", "aux"]).wait()
10211036
# print("= END PROCESSES AFTER START ==============================")
@@ -1989,6 +2004,12 @@ def get_site_factory(
19892004
version: CMKVersion | None = None,
19902005
fallback_branch: str | Callable[[], str] | None = None,
19912006
) -> SiteFactory:
2007+
"""retrieves a correctly parameterized SiteFactory object
2008+
2009+
This will be either
2010+
* the default one (daily) or
2011+
* as parameterized from the environment
2012+
"""
19922013
version = version or version_from_env(
19932014
fallback_version_spec=CMKVersion.DAILY,
19942015
fallback_edition=Edition.CEE,

0 commit comments

Comments
 (0)