mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2025-01-30 20:56:39 +00:00
test(services): add more debug to the test service
This commit is contained in:
parent
e63850f363
commit
0a1d7733f8
|
@ -92,8 +92,18 @@ class DummyService(Service):
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_status(cls) -> ServiceStatus:
|
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:
|
with open(cls.status_file(), "r") as file:
|
||||||
status_string = file.read().strip()
|
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]
|
return ServiceStatus[status_string]
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
|
Loading…
Reference in a new issue