mirror of https://github.com/home-assistant/core
122 lines
3.8 KiB
Python
122 lines
3.8 KiB
Python
"""Test init of ecovacs."""
|
|
|
|
from unittest.mock import Mock, patch
|
|
|
|
from deebot_client.exceptions import DeebotError, InvalidAuthenticationError
|
|
import pytest
|
|
from syrupy import SnapshotAssertion
|
|
|
|
from homeassistant.components.ecovacs.const import DOMAIN
|
|
from homeassistant.components.ecovacs.controller import EcovacsController
|
|
from homeassistant.config_entries import ConfigEntryState
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import device_registry as dr
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
@pytest.mark.usefixtures(
|
|
"mock_authenticator", "mock_mqtt_client", "mock_device_execute"
|
|
)
|
|
async def test_load_unload_config_entry(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test loading and unloading the integration."""
|
|
with patch(
|
|
"homeassistant.components.ecovacs.EcovacsController",
|
|
autospec=True,
|
|
):
|
|
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 DOMAIN not in hass.data
|
|
controller = mock_config_entry.runtime_data
|
|
assert isinstance(controller, EcovacsController)
|
|
controller.initialize.assert_called_once()
|
|
|
|
await hass.config_entries.async_unload(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
controller.teardown.assert_called_once()
|
|
|
|
assert mock_config_entry.state is ConfigEntryState.NOT_LOADED
|
|
|
|
|
|
@pytest.fixture
|
|
def mock_api_client(mock_authenticator: Mock) -> Mock:
|
|
"""Mock the API client."""
|
|
with patch(
|
|
"homeassistant.components.ecovacs.controller.ApiClient",
|
|
autospec=True,
|
|
) as mock_api_client:
|
|
yield mock_api_client.return_value
|
|
|
|
|
|
async def test_config_entry_not_ready(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_api_client: Mock,
|
|
) -> None:
|
|
"""Test the Ecovacs configuration entry not ready."""
|
|
mock_api_client.get_devices.side_effect = DeebotError
|
|
|
|
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.SETUP_RETRY
|
|
|
|
|
|
async def test_invalid_auth(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_api_client: Mock,
|
|
) -> None:
|
|
"""Test auth error during setup."""
|
|
mock_api_client.get_devices.side_effect = InvalidAuthenticationError
|
|
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.SETUP_ERROR
|
|
|
|
|
|
async def test_devices_in_dr(
|
|
device_registry: dr.DeviceRegistry,
|
|
controller: EcovacsController,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test all devices are in the device registry."""
|
|
for device in controller.devices:
|
|
assert (
|
|
device_entry := device_registry.async_get_device(
|
|
identifiers={(DOMAIN, device.device_info["did"])}
|
|
)
|
|
)
|
|
assert device_entry == snapshot(name=device.device_info["did"])
|
|
|
|
|
|
@pytest.mark.usefixtures(
|
|
"entity_registry_enabled_by_default", "mock_vacbot", "init_integration"
|
|
)
|
|
@pytest.mark.parametrize(
|
|
("device_fixture", "entities"),
|
|
[
|
|
("yna5x1", 26),
|
|
("5xu9h3", 25),
|
|
("123", 1),
|
|
],
|
|
)
|
|
async def test_all_entities_loaded(
|
|
hass: HomeAssistant,
|
|
device_fixture: str,
|
|
entities: int,
|
|
) -> None:
|
|
"""Test that all entities are loaded together."""
|
|
assert (
|
|
hass.states.async_entity_ids_count() == entities
|
|
), f"loaded entities for {device_fixture}: {hass.states.async_entity_ids()}"
|