1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-24 12:29:08 +00:00
Files
supervisor/tests/resolution/evaluation/test_evaluate_privileged.py
Stefan Agner f6faa18409 Bump pre-commit ruff to 0.5.7 and reformat (#5242)
It seems that the codebase is not formatted with the latest ruff
version. This PR reformats the codebase with ruff 0.5.7.
2024-08-13 20:53:56 +02:00

50 lines
1.6 KiB
Python

"""Test evaluation base."""
# pylint: disable=import-error,protected-access
from unittest.mock import patch
from supervisor.const import CoreState
from supervisor.coresys import CoreSys
from supervisor.resolution.evaluations.privileged import EvaluatePrivileged
async def test_evaluation(coresys: CoreSys):
"""Test evaluation."""
privileged = EvaluatePrivileged(coresys)
coresys.core.state = CoreState.INITIALIZE
assert privileged.reason not in coresys.resolution.unsupported
coresys.supervisor.instance._meta = {"HostConfig": {"Privileged": False}}
await privileged()
assert privileged.reason in coresys.resolution.unsupported
coresys.supervisor.instance._meta = {"HostConfig": {"Privileged": True}}
await privileged()
assert privileged.reason not in coresys.resolution.unsupported
async def test_did_run(coresys: CoreSys):
"""Test that the evaluation ran as expected."""
privileged = EvaluatePrivileged(coresys)
should_run = privileged.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.privileged.EvaluatePrivileged.evaluate",
return_value=None,
) as evaluate:
for state in should_run:
coresys.core.state = state
await privileged()
evaluate.assert_called_once()
evaluate.reset_mock()
for state in should_not_run:
coresys.core.state = state
await privileged()
evaluate.assert_not_called()
evaluate.reset_mock()