test(services): add more debug to the test service

This commit is contained in:
Houkime 2024-06-05 11:01:38 +00:00
parent e63850f363
commit 0a1d7733f8

View file

@ -92,8 +92,18 @@ class DummyService(Service):
@classmethod
def get_status(cls) -> ServiceStatus:
filepath = cls.status_file()
if filepath in [None, ""]:
raise ValueError(f"We do not have a path for our test dummy status file!")
if not path.exists(filepath):
raise FileNotFoundError(filepath)
with open(cls.status_file(), "r") as file:
status_string = file.read().strip()
if status_string in [None, ""]:
raise NotImplementedError(
f"It appears our test service no longer has any status in the statusfile. Filename = {cls.status_file}, status string inside is '{status_string}' (quoted) "
)
return ServiceStatus[status_string]
@classmethod