mirror of
https://github.com/home-assistant/core.git
synced 2026-04-02 00:20:30 +01:00
119 lines
4.1 KiB
Python
119 lines
4.1 KiB
Python
"""Test the Fresh-r initialization."""
|
|
|
|
from aiohttp import ClientError
|
|
from freezegun.api import FrozenDateTimeFactory
|
|
from pyfreshr.exceptions import ApiResponseError, LoginError
|
|
import pytest
|
|
|
|
from homeassistant.components.freshr.const import DOMAIN
|
|
from homeassistant.components.freshr.coordinator import (
|
|
DEVICES_SCAN_INTERVAL,
|
|
READINGS_SCAN_INTERVAL,
|
|
)
|
|
from homeassistant.config_entries import ConfigEntryState
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import device_registry as dr, entity_registry as er
|
|
|
|
from .conftest import DEVICE_ID, MagicMock, MockConfigEntry
|
|
|
|
from tests.common import async_fire_time_changed
|
|
|
|
|
|
@pytest.mark.usefixtures("init_integration")
|
|
async def test_unload_entry(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test unloading the config entry."""
|
|
assert mock_config_entry.state is ConfigEntryState.LOADED
|
|
await hass.config_entries.async_unload(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
assert mock_config_entry.state is ConfigEntryState.NOT_LOADED
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("exception", "entry_state"),
|
|
[
|
|
(ApiResponseError("parse error"), ConfigEntryState.SETUP_RETRY),
|
|
(ClientError("network error"), ConfigEntryState.SETUP_RETRY),
|
|
(LoginError("bad credentials"), ConfigEntryState.SETUP_ERROR),
|
|
],
|
|
)
|
|
async def test_setup_errors(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_freshr_client: MagicMock,
|
|
exception: Exception,
|
|
entry_state: ConfigEntryState,
|
|
) -> None:
|
|
"""Test that an error during setup sets the config entry to the expected state."""
|
|
mock_freshr_client.fetch_devices.side_effect = exception
|
|
mock_config_entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert mock_config_entry.state is entry_state
|
|
|
|
|
|
async def test_setup_no_devices(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_freshr_client: MagicMock,
|
|
entity_registry: er.EntityRegistry,
|
|
) -> None:
|
|
"""Test that an empty device list sets up successfully with no entities."""
|
|
mock_freshr_client.fetch_devices.return_value = []
|
|
mock_config_entry.add_to_hass(hass)
|
|
await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
assert mock_config_entry.state is ConfigEntryState.LOADED
|
|
assert (
|
|
er.async_entries_for_config_entry(entity_registry, mock_config_entry.entry_id)
|
|
== []
|
|
)
|
|
|
|
|
|
@pytest.mark.usefixtures("init_integration")
|
|
async def test_stale_device_removed(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_freshr_client: MagicMock,
|
|
device_registry: dr.DeviceRegistry,
|
|
freezer: FrozenDateTimeFactory,
|
|
) -> None:
|
|
"""Test that a device absent from a successful poll is removed from the registry."""
|
|
assert device_registry.async_get_device(identifiers={(DOMAIN, DEVICE_ID)})
|
|
|
|
mock_freshr_client.fetch_devices.return_value = []
|
|
freezer.tick(DEVICES_SCAN_INTERVAL)
|
|
async_fire_time_changed(hass)
|
|
await hass.async_block_till_done()
|
|
|
|
assert device_registry.async_get_device(identifiers={(DOMAIN, DEVICE_ID)}) is None
|
|
|
|
call_count = mock_freshr_client.fetch_device_current.call_count
|
|
freezer.tick(READINGS_SCAN_INTERVAL)
|
|
async_fire_time_changed(hass)
|
|
await hass.async_block_till_done()
|
|
|
|
assert mock_freshr_client.fetch_device_current.call_count == call_count
|
|
|
|
|
|
@pytest.mark.usefixtures("init_integration")
|
|
async def test_stale_device_not_removed_on_poll_error(
|
|
hass: HomeAssistant,
|
|
mock_freshr_client: MagicMock,
|
|
device_registry: dr.DeviceRegistry,
|
|
freezer: FrozenDateTimeFactory,
|
|
) -> None:
|
|
"""Test that a device is not removed when the devices poll fails."""
|
|
assert device_registry.async_get_device(identifiers={(DOMAIN, DEVICE_ID)})
|
|
|
|
mock_freshr_client.fetch_devices.side_effect = ApiResponseError("cloud error")
|
|
freezer.tick(DEVICES_SCAN_INTERVAL)
|
|
async_fire_time_changed(hass)
|
|
await hass.async_block_till_done()
|
|
|
|
assert device_registry.async_get_device(identifiers={(DOMAIN, DEVICE_ID)})
|