Files
supervisor/tests/resolution/evaluation/test_evaluate_systemd.py
Mike Degatano 5baf19f7a3 Migrate to pyproject.toml where possible (#4770)
* Migrate to pyproject.toml where possible

* Share requirements and fix version import

* Fix issues with timezone in tests
2023-12-29 11:46:01 +01:00

58 lines
1.8 KiB
Python

"""Test evaluation base."""
# pylint: disable=import-error,protected-access
from unittest.mock import MagicMock, patch
from supervisor.const import CoreState
from supervisor.coresys import CoreSys
from supervisor.host.const import HostFeature
from supervisor.resolution.evaluations.systemd import EvaluateSystemd
async def test_evaluation(coresys: CoreSys):
"""Test evaluation."""
systemd = EvaluateSystemd(coresys)
coresys.core.state = CoreState.SETUP
assert systemd.reason not in coresys.resolution.unsupported
coresys._host = MagicMock(info=MagicMock(timezone=None))
coresys.host.features = [HostFeature.HOSTNAME]
await systemd()
assert systemd.reason in coresys.resolution.unsupported
coresys.host.features = [
HostFeature.HOSTNAME,
HostFeature.SERVICES,
HostFeature.SHUTDOWN,
HostFeature.REBOOT,
HostFeature.TIMEDATE,
]
await systemd()
assert systemd.reason not in coresys.resolution.unsupported
async def test_did_run(coresys: CoreSys):
"""Test that the evaluation ran as expected."""
systemd = EvaluateSystemd(coresys)
should_run = systemd.states
should_not_run = [state for state in CoreState if state not in should_run]
assert len(should_run) != 0
assert len(should_not_run) != 0
with patch(
"supervisor.resolution.evaluations.systemd.EvaluateSystemd.evaluate",
return_value=None,
) as evaluate:
for state in should_run:
coresys.core.state = state
await systemd()
evaluate.assert_called_once()
evaluate.reset_mock()
for state in should_not_run:
coresys.core.state = state
await systemd()
evaluate.assert_not_called()
evaluate.reset_mock()