mirror of https://github.com/home-assistant/core
116 lines
3.6 KiB
Python
116 lines
3.6 KiB
Python
"""Tests for Ecovacs select entities."""
|
|
|
|
from deebot_client.command import Command
|
|
from deebot_client.commands.json import SetWaterInfo
|
|
from deebot_client.event_bus import EventBus
|
|
from deebot_client.events import WaterAmount, WaterInfoEvent
|
|
import pytest
|
|
from syrupy import SnapshotAssertion
|
|
|
|
from homeassistant.components import select
|
|
from homeassistant.components.ecovacs.const import DOMAIN
|
|
from homeassistant.components.ecovacs.controller import EcovacsController
|
|
from homeassistant.const import (
|
|
ATTR_ENTITY_ID,
|
|
ATTR_OPTION,
|
|
SERVICE_SELECT_OPTION,
|
|
STATE_UNKNOWN,
|
|
Platform,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import device_registry as dr, entity_registry as er
|
|
|
|
from .util import block_till_done
|
|
|
|
pytestmark = [pytest.mark.usefixtures("init_integration")]
|
|
|
|
|
|
@pytest.fixture
|
|
def platforms() -> Platform | list[Platform]:
|
|
"""Platforms, which should be loaded during the test."""
|
|
return Platform.SELECT
|
|
|
|
|
|
async def notify_events(hass: HomeAssistant, event_bus: EventBus):
|
|
"""Notify events."""
|
|
event_bus.notify(WaterInfoEvent(WaterAmount.ULTRAHIGH))
|
|
await block_till_done(hass, event_bus)
|
|
|
|
|
|
@pytest.mark.usefixtures("entity_registry_enabled_by_default")
|
|
@pytest.mark.parametrize(
|
|
("device_fixture", "entity_ids"),
|
|
[
|
|
(
|
|
"yna5x1",
|
|
[
|
|
"select.ozmo_950_water_flow_level",
|
|
],
|
|
),
|
|
],
|
|
)
|
|
async def test_selects(
|
|
hass: HomeAssistant,
|
|
device_registry: dr.DeviceRegistry,
|
|
entity_registry: er.EntityRegistry,
|
|
snapshot: SnapshotAssertion,
|
|
controller: EcovacsController,
|
|
entity_ids: list[str],
|
|
) -> None:
|
|
"""Test that select entity snapshots match."""
|
|
assert entity_ids == hass.states.async_entity_ids()
|
|
for entity_id in entity_ids:
|
|
assert (state := hass.states.get(entity_id)), f"State of {entity_id} is missing"
|
|
assert state.state == STATE_UNKNOWN
|
|
|
|
device = controller.devices[0]
|
|
await notify_events(hass, device.events)
|
|
for entity_id in entity_ids:
|
|
assert (state := hass.states.get(entity_id)), f"State of {entity_id} is missing"
|
|
assert snapshot(name=f"{entity_id}:state") == state
|
|
|
|
assert (entity_entry := entity_registry.async_get(state.entity_id))
|
|
assert snapshot(name=f"{entity_id}:entity-registry") == entity_entry
|
|
|
|
assert entity_entry.device_id
|
|
assert (device_entry := device_registry.async_get(entity_entry.device_id))
|
|
assert device_entry.identifiers == {(DOMAIN, device.device_info["did"])}
|
|
|
|
|
|
@pytest.mark.usefixtures("entity_registry_enabled_by_default")
|
|
@pytest.mark.parametrize(
|
|
("device_fixture", "entity_id", "current_state", "set_state", "command"),
|
|
[
|
|
(
|
|
"yna5x1",
|
|
"select.ozmo_950_water_flow_level",
|
|
"ultrahigh",
|
|
"low",
|
|
SetWaterInfo(WaterAmount.LOW),
|
|
),
|
|
],
|
|
)
|
|
async def test_selects_change(
|
|
hass: HomeAssistant,
|
|
controller: EcovacsController,
|
|
entity_id: list[str],
|
|
current_state: str,
|
|
set_state: str,
|
|
command: Command,
|
|
) -> None:
|
|
"""Test that changing select entities works."""
|
|
device = controller.devices[0]
|
|
await notify_events(hass, device.events)
|
|
|
|
assert (state := hass.states.get(entity_id)), f"State of {entity_id} is missing"
|
|
assert state.state == current_state
|
|
|
|
device._execute_command.reset_mock()
|
|
await hass.services.async_call(
|
|
select.DOMAIN,
|
|
SERVICE_SELECT_OPTION,
|
|
{ATTR_ENTITY_ID: entity_id, ATTR_OPTION: set_state},
|
|
blocking=True,
|
|
)
|
|
device._execute_command.assert_called_with(command)
|