mirror of
https://github.com/home-assistant/core.git
synced 2026-08-06 21:35:13 +01:00
4ea24da95b
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
91 lines
2.8 KiB
Python
91 lines
2.8 KiB
Python
"""Test the MELCloud select platform."""
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
import pytest
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.components.select import (
|
|
ATTR_OPTION,
|
|
DOMAIN as SELECT_DOMAIN,
|
|
SERVICE_SELECT_OPTION,
|
|
)
|
|
from homeassistant.const import ATTR_ENTITY_ID, STATE_UNKNOWN, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from . import setup_platform
|
|
|
|
from tests.common import MockConfigEntry, snapshot_platform
|
|
|
|
OPERATION_MODE_ENTITY = "select.ecodan_zone_1_operation_mode"
|
|
|
|
|
|
@pytest.mark.usefixtures("entity_registry_enabled_by_default", "mock_get_devices")
|
|
async def test_all_entities(
|
|
hass: HomeAssistant,
|
|
snapshot: SnapshotAssertion,
|
|
mock_config_entry: MockConfigEntry,
|
|
entity_registry: er.EntityRegistry,
|
|
) -> None:
|
|
"""Test all select entities with snapshot."""
|
|
await setup_platform(hass, mock_config_entry, [Platform.SELECT])
|
|
await snapshot_platform(hass, entity_registry, snapshot, mock_config_entry.entry_id)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("current_mode", "option", "expected_mode"),
|
|
[
|
|
("heat-flow", "room", "heat-thermostat"),
|
|
("heat-flow", "flow", "heat-flow"),
|
|
("heat-flow", "curve", "curve"),
|
|
("cool-flow", "room", "cool-thermostat"),
|
|
("cool-flow", "flow", "cool-flow"),
|
|
("cool-flow", "curve", "curve"),
|
|
],
|
|
)
|
|
@pytest.mark.usefixtures("mock_get_devices")
|
|
async def test_select_option(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_atw_device: MagicMock,
|
|
current_mode: str,
|
|
option: str,
|
|
expected_mode: str,
|
|
) -> None:
|
|
"""Selecting a method keeps the current heating/cooling direction."""
|
|
mock_atw_device.zones[0].operation_mode = current_mode
|
|
await setup_platform(hass, mock_config_entry, [Platform.SELECT])
|
|
await hass.services.async_call(
|
|
SELECT_DOMAIN,
|
|
SERVICE_SELECT_OPTION,
|
|
{ATTR_ENTITY_ID: OPERATION_MODE_ENTITY, ATTR_OPTION: option},
|
|
blocking=True,
|
|
)
|
|
mock_atw_device.zones[0].set_operation_mode.assert_awaited_once_with(expected_mode)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("operation_mode", "expected_state"),
|
|
[
|
|
("heat-thermostat", "room"),
|
|
("cool-flow", "flow"),
|
|
("curve", "curve"),
|
|
("unknown", STATE_UNKNOWN),
|
|
],
|
|
)
|
|
@pytest.mark.usefixtures("mock_get_devices")
|
|
async def test_current_option(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_atw_device: MagicMock,
|
|
operation_mode: str,
|
|
expected_state: str,
|
|
) -> None:
|
|
"""The state reflects the current control method."""
|
|
mock_atw_device.zones[0].operation_mode = operation_mode
|
|
await setup_platform(hass, mock_config_entry, [Platform.SELECT])
|
|
state = hass.states.get(OPERATION_MODE_ENTITY)
|
|
assert state is not None
|
|
assert state.state == expected_state
|