"""Tests for Renault selects.""" from unittest.mock import patch import pytest from renault_api.kamereon import exceptions, schemas from homeassistant.components.renault.renault_entities import ATTR_LAST_UPDATE from homeassistant.components.select import DOMAIN as SELECT_DOMAIN from homeassistant.components.select.const import ATTR_OPTION, SERVICE_SELECT_OPTION from homeassistant.const import ( ATTR_ENTITY_ID, ATTR_ICON, STATE_UNAVAILABLE, STATE_UNKNOWN, ) from homeassistant.core import HomeAssistant from homeassistant.setup import async_setup_component from . import ( check_device_registry, get_no_data_icon, setup_renault_integration_vehicle, setup_renault_integration_vehicle_with_no_data, setup_renault_integration_vehicle_with_side_effect, ) from .const import DYNAMIC_ATTRIBUTES, FIXED_ATTRIBUTES, MOCK_VEHICLES from tests.common import load_fixture, mock_device_registry, mock_registry @pytest.mark.parametrize("vehicle_type", MOCK_VEHICLES.keys()) async def test_selects(hass: HomeAssistant, vehicle_type: str): """Test for Renault selects.""" await async_setup_component(hass, "persistent_notification", {}) entity_registry = mock_registry(hass) device_registry = mock_device_registry(hass) with patch("homeassistant.components.renault.PLATFORMS", [SELECT_DOMAIN]): await setup_renault_integration_vehicle(hass, vehicle_type) await hass.async_block_till_done() mock_vehicle = MOCK_VEHICLES[vehicle_type] check_device_registry(device_registry, mock_vehicle["expected_device"]) expected_entities = mock_vehicle[SELECT_DOMAIN] assert len(entity_registry.entities) == len(expected_entities) for expected_entity in expected_entities: entity_id = expected_entity["entity_id"] registry_entry = entity_registry.entities.get(entity_id) assert registry_entry is not None assert registry_entry.unique_id == expected_entity["unique_id"] state = hass.states.get(entity_id) assert state.state == expected_entity["result"] for attr in FIXED_ATTRIBUTES + DYNAMIC_ATTRIBUTES: assert state.attributes.get(attr) == expected_entity.get(attr) @pytest.mark.parametrize("vehicle_type", MOCK_VEHICLES.keys()) async def test_select_empty(hass: HomeAssistant, vehicle_type: str): """Test for Renault selects with empty data from Renault.""" await async_setup_component(hass, "persistent_notification", {}) entity_registry = mock_registry(hass) device_registry = mock_device_registry(hass) with patch("homeassistant.components.renault.PLATFORMS", [SELECT_DOMAIN]): await setup_renault_integration_vehicle_with_no_data(hass, vehicle_type) await hass.async_block_till_done() mock_vehicle = MOCK_VEHICLES[vehicle_type] check_device_registry(device_registry, mock_vehicle["expected_device"]) expected_entities = mock_vehicle[SELECT_DOMAIN] assert len(entity_registry.entities) == len(expected_entities) for expected_entity in expected_entities: entity_id = expected_entity["entity_id"] registry_entry = entity_registry.entities.get(entity_id) assert registry_entry is not None assert registry_entry.unique_id == expected_entity["unique_id"] state = hass.states.get(entity_id) assert state.state == STATE_UNKNOWN for attr in FIXED_ATTRIBUTES: assert state.attributes.get(attr) == expected_entity.get(attr) # Check dynamic attributes: assert state.attributes.get(ATTR_ICON) == get_no_data_icon(expected_entity) assert ATTR_LAST_UPDATE not in state.attributes @pytest.mark.parametrize("vehicle_type", MOCK_VEHICLES.keys()) async def test_select_errors(hass: HomeAssistant, vehicle_type: str): """Test for Renault selects with temporary failure.""" await async_setup_component(hass, "persistent_notification", {}) entity_registry = mock_registry(hass) device_registry = mock_device_registry(hass) invalid_upstream_exception = exceptions.InvalidUpstreamException( "err.tech.500", "Invalid response from the upstream server (The request sent to the GDC is erroneous) ; 502 Bad Gateway", ) with patch("homeassistant.components.renault.PLATFORMS", [SELECT_DOMAIN]): await setup_renault_integration_vehicle_with_side_effect( hass, vehicle_type, invalid_upstream_exception ) await hass.async_block_till_done() mock_vehicle = MOCK_VEHICLES[vehicle_type] check_device_registry(device_registry, mock_vehicle["expected_device"]) expected_entities = mock_vehicle[SELECT_DOMAIN] assert len(entity_registry.entities) == len(expected_entities) for expected_entity in expected_entities: entity_id = expected_entity["entity_id"] registry_entry = entity_registry.entities.get(entity_id) assert registry_entry is not None assert registry_entry.unique_id == expected_entity["unique_id"] state = hass.states.get(entity_id) assert state.state == STATE_UNAVAILABLE for attr in FIXED_ATTRIBUTES: assert state.attributes.get(attr) == expected_entity.get(attr) # Check dynamic attributes: assert state.attributes.get(ATTR_ICON) == get_no_data_icon(expected_entity) assert ATTR_LAST_UPDATE not in state.attributes async def test_select_access_denied(hass: HomeAssistant): """Test for Renault selects with access denied failure.""" await async_setup_component(hass, "persistent_notification", {}) entity_registry = mock_registry(hass) device_registry = mock_device_registry(hass) vehicle_type = "zoe_40" access_denied_exception = exceptions.AccessDeniedException( "err.func.403", "Access is denied for this resource", ) with patch("homeassistant.components.renault.PLATFORMS", [SELECT_DOMAIN]): await setup_renault_integration_vehicle_with_side_effect( hass, vehicle_type, access_denied_exception ) await hass.async_block_till_done() mock_vehicle = MOCK_VEHICLES[vehicle_type] check_device_registry(device_registry, mock_vehicle["expected_device"]) assert len(entity_registry.entities) == 0 async def test_select_not_supported(hass: HomeAssistant): """Test for Renault selects with access denied failure.""" await async_setup_component(hass, "persistent_notification", {}) entity_registry = mock_registry(hass) device_registry = mock_device_registry(hass) vehicle_type = "zoe_40" not_supported_exception = exceptions.NotSupportedException( "err.tech.501", "This feature is not technically supported by this gateway", ) with patch("homeassistant.components.renault.PLATFORMS", [SELECT_DOMAIN]): await setup_renault_integration_vehicle_with_side_effect( hass, vehicle_type, not_supported_exception ) await hass.async_block_till_done() mock_vehicle = MOCK_VEHICLES[vehicle_type] check_device_registry(device_registry, mock_vehicle["expected_device"]) assert len(entity_registry.entities) == 0 async def test_select_charge_mode(hass: HomeAssistant): """Test that service invokes renault_api with correct data.""" await setup_renault_integration_vehicle(hass, "zoe_40") data = { ATTR_ENTITY_ID: "select.charge_mode", ATTR_OPTION: "always", } with patch( "renault_api.renault_vehicle.RenaultVehicle.set_charge_mode", return_value=( schemas.KamereonVehicleHvacStartActionDataSchema.loads( load_fixture("renault/action.set_charge_mode.json") ) ), ) as mock_action: await hass.services.async_call( SELECT_DOMAIN, SERVICE_SELECT_OPTION, service_data=data, blocking=True ) assert len(mock_action.mock_calls) == 1 assert mock_action.mock_calls[0][1] == ("always",)