mirror of https://github.com/home-assistant/core
152 lines
4.7 KiB
Python
152 lines
4.7 KiB
Python
"""Tests for Shelly select platform."""
|
|
|
|
from copy import deepcopy
|
|
from unittest.mock import Mock
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.select import (
|
|
ATTR_OPTION,
|
|
ATTR_OPTIONS,
|
|
DOMAIN as SELECT_PLATFORM,
|
|
SERVICE_SELECT_OPTION,
|
|
)
|
|
from homeassistant.const import ATTR_ENTITY_ID, STATE_UNKNOWN
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers.device_registry import DeviceRegistry
|
|
from homeassistant.helpers.entity_registry import EntityRegistry
|
|
|
|
from . import init_integration, register_device, register_entity
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("name", "entity_id", "value", "expected_state"),
|
|
[
|
|
("Virtual enum", "select.test_name_virtual_enum", "option 1", "Title 1"),
|
|
(None, "select.test_name_enum_203", None, STATE_UNKNOWN),
|
|
],
|
|
)
|
|
async def test_rpc_device_virtual_enum(
|
|
hass: HomeAssistant,
|
|
entity_registry: EntityRegistry,
|
|
mock_rpc_device: Mock,
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
name: str | None,
|
|
entity_id: str,
|
|
value: str | None,
|
|
expected_state: str,
|
|
) -> None:
|
|
"""Test a virtual enum for RPC device."""
|
|
config = deepcopy(mock_rpc_device.config)
|
|
config["enum:203"] = {
|
|
"name": name,
|
|
"options": ["option 1", "option 2", "option 3"],
|
|
"meta": {
|
|
"ui": {
|
|
"view": "dropdown",
|
|
"titles": {"option 1": "Title 1", "option 2": None},
|
|
}
|
|
},
|
|
}
|
|
monkeypatch.setattr(mock_rpc_device, "config", config)
|
|
|
|
status = deepcopy(mock_rpc_device.status)
|
|
status["enum:203"] = {"value": value}
|
|
monkeypatch.setattr(mock_rpc_device, "status", status)
|
|
|
|
await init_integration(hass, 3)
|
|
|
|
state = hass.states.get(entity_id)
|
|
assert state
|
|
assert state.state == expected_state
|
|
assert state.attributes.get(ATTR_OPTIONS) == [
|
|
"Title 1",
|
|
"option 2",
|
|
"option 3",
|
|
]
|
|
|
|
entry = entity_registry.async_get(entity_id)
|
|
assert entry
|
|
assert entry.unique_id == "123456789ABC-enum:203-enum"
|
|
|
|
monkeypatch.setitem(mock_rpc_device.status["enum:203"], "value", "option 2")
|
|
mock_rpc_device.mock_update()
|
|
assert hass.states.get(entity_id).state == "option 2"
|
|
|
|
monkeypatch.setitem(mock_rpc_device.status["enum:203"], "value", "option 1")
|
|
await hass.services.async_call(
|
|
SELECT_PLATFORM,
|
|
SERVICE_SELECT_OPTION,
|
|
{ATTR_ENTITY_ID: entity_id, ATTR_OPTION: "Title 1"},
|
|
blocking=True,
|
|
)
|
|
# 'Title 1' corresponds to 'option 1'
|
|
assert mock_rpc_device.call_rpc.call_args[0][1] == {"id": 203, "value": "option 1"}
|
|
mock_rpc_device.mock_update()
|
|
assert hass.states.get(entity_id).state == "Title 1"
|
|
|
|
|
|
async def test_rpc_remove_virtual_enum_when_mode_label(
|
|
hass: HomeAssistant,
|
|
entity_registry: EntityRegistry,
|
|
device_registry: DeviceRegistry,
|
|
mock_rpc_device: Mock,
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
) -> None:
|
|
"""Test if the virtual enum will be removed if the mode has been changed to a label."""
|
|
config = deepcopy(mock_rpc_device.config)
|
|
config["enum:200"] = {
|
|
"name": None,
|
|
"options": ["one", "two"],
|
|
"meta": {
|
|
"ui": {"view": "label", "titles": {"one": "Title 1", "two": "Title 2"}}
|
|
},
|
|
}
|
|
monkeypatch.setattr(mock_rpc_device, "config", config)
|
|
|
|
status = deepcopy(mock_rpc_device.status)
|
|
status["enum:200"] = {"value": "one"}
|
|
monkeypatch.setattr(mock_rpc_device, "status", status)
|
|
|
|
config_entry = await init_integration(hass, 3, skip_setup=True)
|
|
device_entry = register_device(device_registry, config_entry)
|
|
entity_id = register_entity(
|
|
hass,
|
|
SELECT_PLATFORM,
|
|
"test_name_enum_200",
|
|
"enum:200-enum",
|
|
config_entry,
|
|
device_id=device_entry.id,
|
|
)
|
|
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
entry = entity_registry.async_get(entity_id)
|
|
assert not entry
|
|
|
|
|
|
async def test_rpc_remove_virtual_enum_when_orphaned(
|
|
hass: HomeAssistant,
|
|
entity_registry: EntityRegistry,
|
|
device_registry: DeviceRegistry,
|
|
mock_rpc_device: Mock,
|
|
) -> None:
|
|
"""Check whether the virtual enum will be removed if it has been removed from the device configuration."""
|
|
config_entry = await init_integration(hass, 3, skip_setup=True)
|
|
device_entry = register_device(device_registry, config_entry)
|
|
entity_id = register_entity(
|
|
hass,
|
|
SELECT_PLATFORM,
|
|
"test_name_enum_200",
|
|
"enum:200-enum",
|
|
config_entry,
|
|
device_id=device_entry.id,
|
|
)
|
|
|
|
await hass.config_entries.async_setup(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
entry = entity_registry.async_get(entity_id)
|
|
assert not entry
|