supervisor/tests/resolution/check/test_check_free_space.py
Joakim Sørensen 73849b7468
Check management (#2703)
* Check management

* Add test

* Don't allow disable core_security

* options and decorator

* streamline config handling

* streamline v2

* fix logging

* Add tests

* Fix test

* cleanup v1

* fix api

* Add more test

* Expose option also for cli

* address comments from Paulus

* Address second comment

* Update supervisor/resolution/checks/base.py

Co-authored-by: Paulus Schoutsen <balloob@gmail.com>

* fix lint

* Fix black

Co-authored-by: Pascal Vizeli <pvizeli@syshack.ch>
Co-authored-by: Paulus Schoutsen <balloob@gmail.com>
2021-03-12 11:32:56 +01:00

71 lines
2.2 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.checks.free_space import CheckFreeSpace
from supervisor.resolution.const import IssueType
async def test_base(coresys: CoreSys):
"""Test check basics."""
free_space = CheckFreeSpace(coresys)
assert free_space.slug == "free_space"
assert free_space.enabled
async def test_check(coresys: CoreSys):
"""Test check."""
free_space = CheckFreeSpace(coresys)
coresys.core.state = CoreState.RUNNING
assert len(coresys.resolution.issues) == 0
with patch("shutil.disk_usage", return_value=(42, 42, 2 * (1024.0 ** 3))):
await free_space.run_check()
assert len(coresys.resolution.issues) == 0
with patch("shutil.disk_usage", return_value=(1, 1, 1)):
await free_space.run_check()
assert coresys.resolution.issues[-1].type == IssueType.FREE_SPACE
async def test_approve(coresys: CoreSys):
"""Test check."""
free_space = CheckFreeSpace(coresys)
coresys.core.state = CoreState.RUNNING
with patch("shutil.disk_usage", return_value=(1, 1, 1)):
assert await free_space.approve_check()
with patch("shutil.disk_usage", return_value=(42, 42, 2 * (1024.0 ** 3))):
assert not await free_space.approve_check()
async def test_did_run(coresys: CoreSys):
"""Test that the check ran as expected."""
free_space = CheckFreeSpace(coresys)
should_run = free_space.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.checks.free_space.CheckFreeSpace.run_check",
return_value=None,
) as check:
for state in should_run:
coresys.core.state = state
await free_space()
check.assert_called_once()
check.reset_mock()
for state in should_not_run:
coresys.core.state = state
await free_space()
check.assert_not_called()
check.reset_mock()