2020-12-02 18:32:42 +00:00
|
|
|
"""Test Airly system health."""
|
|
|
|
import asyncio
|
2021-01-01 21:31:56 +00:00
|
|
|
from unittest.mock import Mock
|
2020-12-02 18:32:42 +00:00
|
|
|
|
|
|
|
from aiohttp import ClientError
|
|
|
|
|
|
|
|
from homeassistant.components.airly.const import DOMAIN
|
|
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
|
|
|
|
from tests.common import get_system_health_info
|
|
|
|
|
|
|
|
|
|
|
|
async def test_airly_system_health(hass, aioclient_mock):
|
|
|
|
"""Test Airly system health."""
|
|
|
|
aioclient_mock.get("https://airapi.airly.eu/v2/", text="")
|
|
|
|
hass.config.components.add(DOMAIN)
|
|
|
|
assert await async_setup_component(hass, "system_health", {})
|
|
|
|
|
|
|
|
hass.data[DOMAIN] = {}
|
|
|
|
hass.data[DOMAIN]["0123xyz"] = Mock(
|
|
|
|
airly=Mock(AIRLY_API_URL="https://airapi.airly.eu/v2/")
|
|
|
|
)
|
|
|
|
|
|
|
|
info = await get_system_health_info(hass, DOMAIN)
|
|
|
|
|
|
|
|
for key, val in info.items():
|
|
|
|
if asyncio.iscoroutine(val):
|
|
|
|
info[key] = await val
|
|
|
|
|
|
|
|
assert info == {"can_reach_server": "ok"}
|
|
|
|
|
|
|
|
|
|
|
|
async def test_airly_system_health_fail(hass, aioclient_mock):
|
|
|
|
"""Test Airly system health."""
|
|
|
|
aioclient_mock.get("https://airapi.airly.eu/v2/", exc=ClientError)
|
|
|
|
hass.config.components.add(DOMAIN)
|
|
|
|
assert await async_setup_component(hass, "system_health", {})
|
|
|
|
|
|
|
|
hass.data[DOMAIN] = {}
|
|
|
|
hass.data[DOMAIN]["0123xyz"] = Mock(
|
|
|
|
airly=Mock(AIRLY_API_URL="https://airapi.airly.eu/v2/")
|
|
|
|
)
|
|
|
|
|
|
|
|
info = await get_system_health_info(hass, DOMAIN)
|
|
|
|
|
|
|
|
for key, val in info.items():
|
|
|
|
if asyncio.iscoroutine(val):
|
|
|
|
info[key] = await val
|
|
|
|
|
|
|
|
assert info == {"can_reach_server": {"type": "failed", "error": "unreachable"}}
|