* Upgrade pytest-aiohttp * Make sure executors, tasks and timers are closed Some test will trigger warnings on garbage collect, these warnings spills over into next test. Some test trigger tasks that raise errors on shutdown, these spill over into next test. This is to mimic older pytest-aiohttp and it's behaviour on test cleanup. Discussions on similar changes for pytest-aiohttp are here: https://github.com/pytest-dev/pytest-asyncio/pull/309 * Replace loop with event_loop * Make sure time is frozen for tests * Make sure the ConditionType is not async /home-assistant/homeassistant/helpers/template.py:2082: RuntimeWarning: coroutine 'AsyncMockMixin._execute_mock_call' was never awaited def wrapper(*args, **kwargs): Enable tracemalloc to get traceback where the object was allocated. See https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings for more info. * Increase litejet press tests with a factor 10 The times are simulated anyway, and we can't stop the normal event from occuring. * Use async handlers for aiohttp tests/components/motioneye/test_camera.py::test_get_still_image_from_camera tests/components/motioneye/test_camera.py::test_get_still_image_from_camera tests/components/motioneye/test_camera.py::test_get_stream_from_camera tests/components/motioneye/test_camera.py::test_get_stream_from_camera tests/components/motioneye/test_camera.py::test_camera_option_stream_url_template tests/components/motioneye/test_camera.py::test_camera_option_stream_url_template /Users/joakim/src/hass/home-assistant/venv/lib/python3.9/site-packages/aiohttp/web_urldispatcher.py:189: DeprecationWarning: Bare functions are deprecated, use async ones warnings.warn( * Switch to freezegun in modbus tests The tests allowed clock to tick in between steps * Make sure skybell object are fully mocked Old tests would trigger attempts to post to could services: ``` DEBUG:aioskybell:HTTP post https://cloud.myskybell.com/api/v3/login/ Request with headers: {'content-type': 'application/json', 'accept': '*/*', 'x-skybell-app-id': 'd2b542c7-a7e4-4e1e-b77d-2b76911c7c46', 'x-skybell-client-id': '1f36a3c0-6dee-4997-a6db-4e1c67338e57'} ``` * Fix sorting that broke after rebase
159 lines
5.5 KiB
Python
159 lines
5.5 KiB
Python
"""Test check_config script."""
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
|
|
from homeassistant.config import YAML_CONFIG_FILE
|
|
import homeassistant.scripts.check_config as check_config
|
|
|
|
from tests.common import get_test_config_dir, patch_yaml_files
|
|
|
|
BASE_CONFIG = (
|
|
"homeassistant:\n"
|
|
" name: Home\n"
|
|
" latitude: -26.107361\n"
|
|
" longitude: 28.054500\n"
|
|
" elevation: 1600\n"
|
|
" unit_system: metric\n"
|
|
" time_zone: GMT\n"
|
|
"\n\n"
|
|
)
|
|
|
|
BAD_CORE_CONFIG = "homeassistant:\n unit_system: bad\n\n\n"
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
async def apply_stop_hass(stop_hass):
|
|
"""Make sure all hass are stopped."""
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_is_file():
|
|
"""Mock is_file."""
|
|
# All files exist except for the old entity registry file
|
|
with patch(
|
|
"os.path.isfile", lambda path: not path.endswith("entity_registry.yaml")
|
|
):
|
|
yield
|
|
|
|
|
|
def normalize_yaml_files(check_dict):
|
|
"""Remove configuration path from ['yaml_files']."""
|
|
root = get_test_config_dir()
|
|
return [key.replace(root, "...") for key in sorted(check_dict["yaml_files"].keys())]
|
|
|
|
|
|
def test_bad_core_config(mock_is_file, event_loop):
|
|
"""Test a bad core config setup."""
|
|
files = {YAML_CONFIG_FILE: BAD_CORE_CONFIG}
|
|
with patch_yaml_files(files):
|
|
res = check_config.check(get_test_config_dir())
|
|
assert res["except"].keys() == {"homeassistant"}
|
|
assert res["except"]["homeassistant"][1] == {"unit_system": "bad"}
|
|
|
|
|
|
def test_config_platform_valid(mock_is_file, event_loop):
|
|
"""Test a valid platform setup."""
|
|
files = {YAML_CONFIG_FILE: BASE_CONFIG + "light:\n platform: demo"}
|
|
with patch_yaml_files(files):
|
|
res = check_config.check(get_test_config_dir())
|
|
assert res["components"].keys() == {"homeassistant", "light"}
|
|
assert res["components"]["light"] == [{"platform": "demo"}]
|
|
assert res["except"] == {}
|
|
assert res["secret_cache"] == {}
|
|
assert res["secrets"] == {}
|
|
assert len(res["yaml_files"]) == 1
|
|
|
|
|
|
def test_component_platform_not_found(mock_is_file, event_loop):
|
|
"""Test errors if component or platform not found."""
|
|
# Make sure they don't exist
|
|
files = {YAML_CONFIG_FILE: BASE_CONFIG + "beer:"}
|
|
with patch_yaml_files(files):
|
|
res = check_config.check(get_test_config_dir())
|
|
assert res["components"].keys() == {"homeassistant"}
|
|
assert res["except"] == {
|
|
check_config.ERROR_STR: [
|
|
"Integration error: beer - Integration 'beer' not found."
|
|
]
|
|
}
|
|
assert res["secret_cache"] == {}
|
|
assert res["secrets"] == {}
|
|
assert len(res["yaml_files"]) == 1
|
|
|
|
files = {YAML_CONFIG_FILE: BASE_CONFIG + "light:\n platform: beer"}
|
|
with patch_yaml_files(files):
|
|
res = check_config.check(get_test_config_dir())
|
|
assert res["components"].keys() == {"homeassistant", "light"}
|
|
assert res["components"]["light"] == []
|
|
assert res["except"] == {
|
|
check_config.ERROR_STR: [
|
|
"Platform error light.beer - Integration 'beer' not found."
|
|
]
|
|
}
|
|
assert res["secret_cache"] == {}
|
|
assert res["secrets"] == {}
|
|
assert len(res["yaml_files"]) == 1
|
|
|
|
|
|
def test_secrets(mock_is_file, event_loop):
|
|
"""Test secrets config checking method."""
|
|
secrets_path = get_test_config_dir("secrets.yaml")
|
|
|
|
files = {
|
|
get_test_config_dir(YAML_CONFIG_FILE): BASE_CONFIG
|
|
+ ("http:\n cors_allowed_origins: !secret http_pw"),
|
|
secrets_path: ("logger: debug\nhttp_pw: http://google.com"),
|
|
}
|
|
|
|
with patch_yaml_files(files):
|
|
|
|
res = check_config.check(get_test_config_dir(), True)
|
|
|
|
assert res["except"] == {}
|
|
assert res["components"].keys() == {"homeassistant", "http"}
|
|
assert res["components"]["http"] == {
|
|
"cors_allowed_origins": ["http://google.com"],
|
|
"ip_ban_enabled": True,
|
|
"login_attempts_threshold": -1,
|
|
"server_port": 8123,
|
|
"ssl_profile": "modern",
|
|
}
|
|
assert res["secret_cache"] == {secrets_path: {"http_pw": "http://google.com"}}
|
|
assert res["secrets"] == {"http_pw": "http://google.com"}
|
|
assert normalize_yaml_files(res) == [
|
|
".../configuration.yaml",
|
|
".../secrets.yaml",
|
|
]
|
|
|
|
|
|
def test_package_invalid(mock_is_file, event_loop):
|
|
"""Test an invalid package."""
|
|
files = {
|
|
YAML_CONFIG_FILE: BASE_CONFIG + (" packages:\n p1:\n" ' group: ["a"]')
|
|
}
|
|
with patch_yaml_files(files):
|
|
res = check_config.check(get_test_config_dir())
|
|
|
|
assert res["except"].keys() == {"homeassistant.packages.p1.group"}
|
|
assert res["except"]["homeassistant.packages.p1.group"][1] == {"group": ["a"]}
|
|
assert len(res["except"]) == 1
|
|
assert res["components"].keys() == {"homeassistant"}
|
|
assert len(res["components"]) == 1
|
|
assert res["secret_cache"] == {}
|
|
assert res["secrets"] == {}
|
|
assert len(res["yaml_files"]) == 1
|
|
|
|
|
|
def test_bootstrap_error(event_loop):
|
|
"""Test a valid platform setup."""
|
|
files = {YAML_CONFIG_FILE: BASE_CONFIG + "automation: !include no.yaml"}
|
|
with patch_yaml_files(files):
|
|
res = check_config.check(get_test_config_dir(YAML_CONFIG_FILE))
|
|
err = res["except"].pop(check_config.ERROR_STR)
|
|
assert len(err) == 1
|
|
assert res["except"] == {}
|
|
assert res["components"] == {} # No components, load failed
|
|
assert res["secret_cache"] == {}
|
|
assert res["secrets"] == {}
|
|
assert res["yaml_files"] == {}
|