"""The test for the sensibo select platform.""" from __future__ import annotations from datetime import timedelta from unittest.mock import MagicMock from freezegun.api import FrozenDateTimeFactory import pytest from syrupy.assertion import SnapshotAssertion from homeassistant.components.select import ( ATTR_OPTION, DOMAIN as SELECT_DOMAIN, SERVICE_SELECT_OPTION, ) from homeassistant.config_entries import ConfigEntry from homeassistant.const import ATTR_ENTITY_ID, STATE_UNAVAILABLE, Platform from homeassistant.core import HomeAssistant from homeassistant.exceptions import HomeAssistantError from homeassistant.helpers import entity_registry as er from tests.common import async_fire_time_changed, snapshot_platform @pytest.mark.parametrize( "load_platforms", [[Platform.SELECT]], ) async def test_select( hass: HomeAssistant, load_int: ConfigEntry, mock_client: MagicMock, entity_registry: er.EntityRegistry, snapshot: SnapshotAssertion, freezer: FrozenDateTimeFactory, ) -> None: """Test the Sensibo select.""" await snapshot_platform(hass, entity_registry, snapshot, load_int.entry_id) mock_client.async_get_devices_data.return_value.parsed[ "AAZZAAZZ" ].light_mode = "dim" freezer.tick(timedelta(minutes=5)) async_fire_time_changed(hass) await hass.async_block_till_done() state = hass.states.get("select.kitchen_light") assert state.state == "dim" async def test_select_set_option( hass: HomeAssistant, load_int: ConfigEntry, mock_client: MagicMock, freezer: FrozenDateTimeFactory, ) -> None: """Test the Sensibo select service.""" mock_client.async_get_devices_data.return_value.parsed[ "AAZZAAZZ" ].active_features = [ "timestamp", "on", "mode", "targetTemperature", "light", ] freezer.tick(timedelta(minutes=5)) async_fire_time_changed(hass) await hass.async_block_till_done() state = hass.states.get("select.kitchen_light") assert state.state == "on" mock_client.async_set_ac_state_property.return_value = { "result": {"status": "failed"} } with pytest.raises( HomeAssistantError, ): await hass.services.async_call( SELECT_DOMAIN, SERVICE_SELECT_OPTION, {ATTR_ENTITY_ID: state.entity_id, ATTR_OPTION: "dim"}, blocking=True, ) state = hass.states.get("select.kitchen_light") assert state.state == "on" mock_client.async_get_devices_data.return_value.parsed[ "AAZZAAZZ" ].active_features = [ "timestamp", "on", "mode", "light", ] freezer.tick(timedelta(minutes=5)) async_fire_time_changed(hass) await hass.async_block_till_done() mock_client.async_set_ac_state_property.return_value = { "result": {"status": "Failed", "failureReason": "No connection"} } with pytest.raises( HomeAssistantError, ): await hass.services.async_call( SELECT_DOMAIN, SERVICE_SELECT_OPTION, {ATTR_ENTITY_ID: state.entity_id, ATTR_OPTION: "dim"}, blocking=True, ) state = hass.states.get("select.kitchen_light") assert state.state == "on" mock_client.async_set_ac_state_property.return_value = { "result": {"status": "Success"} } await hass.services.async_call( SELECT_DOMAIN, SERVICE_SELECT_OPTION, {ATTR_ENTITY_ID: state.entity_id, ATTR_OPTION: "dim"}, blocking=True, ) state = hass.states.get("select.kitchen_light") assert state.state == "dim" mock_client.async_get_devices_data.return_value.parsed[ "AAZZAAZZ" ].active_features = [ "timestamp", "on", "mode", ] freezer.tick(timedelta(minutes=5)) async_fire_time_changed(hass) await hass.async_block_till_done() state = hass.states.get("select.kitchen_light") assert state.state == STATE_UNAVAILABLE