mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-04-25 21:57:16 +00:00
49 lines
1.5 KiB
Python
49 lines
1.5 KiB
Python
"""Test evaluate systemd-resolved."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
from supervisor.const import CoreState
|
|
from supervisor.coresys import CoreSys
|
|
from supervisor.resolution.evaluations.resolved import EvaluateResolved
|
|
|
|
|
|
async def test_evaluation(coresys: CoreSys, dbus_is_connected):
|
|
"""Test evaluation."""
|
|
resolved = EvaluateResolved(coresys)
|
|
await coresys.core.set_state(CoreState.SETUP)
|
|
|
|
assert resolved.reason not in coresys.resolution.unsupported
|
|
|
|
coresys.dbus.resolved.is_connected = False
|
|
await resolved()
|
|
assert resolved.reason in coresys.resolution.unsupported
|
|
|
|
coresys.dbus.resolved.is_connected = True
|
|
await resolved()
|
|
assert resolved.reason not in coresys.resolution.unsupported
|
|
|
|
|
|
async def test_did_run(coresys: CoreSys):
|
|
"""Test that the evaluation ran as expected."""
|
|
resolved = EvaluateResolved(coresys)
|
|
should_run = resolved.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.resolved.EvaluateResolved.evaluate",
|
|
return_value=None,
|
|
) as evaluate:
|
|
for state in should_run:
|
|
await coresys.core.set_state(state)
|
|
await resolved()
|
|
evaluate.assert_called_once()
|
|
evaluate.reset_mock()
|
|
|
|
for state in should_not_run:
|
|
await coresys.core.set_state(state)
|
|
await resolved()
|
|
evaluate.assert_not_called()
|
|
evaluate.reset_mock()
|