"""Collection of helper methods. All containing methods are legacy helpers that should not be used by new components. Instead call the service directly. """ from typing import Any, Literal from homeassistant.components.light import ( ATTR_BRIGHTNESS, ATTR_BRIGHTNESS_PCT, ATTR_COLOR_NAME, ATTR_COLOR_TEMP_KELVIN, ATTR_EFFECT, ATTR_FLASH, ATTR_HS_COLOR, ATTR_PROFILE, ATTR_RGB_COLOR, ATTR_RGBW_COLOR, ATTR_RGBWW_COLOR, ATTR_TRANSITION, ATTR_WHITE, ATTR_XY_COLOR, DEFAULT_MAX_KELVIN, DEFAULT_MIN_KELVIN, DOMAIN, ColorMode, LightEntity, ) from homeassistant.const import ( ATTR_ENTITY_ID, ENTITY_MATCH_ALL, SERVICE_TOGGLE, SERVICE_TURN_OFF, SERVICE_TURN_ON, ) from homeassistant.core import HomeAssistant from tests.common import MockToggleEntity async def async_turn_on( hass: HomeAssistant, entity_id: str = ENTITY_MATCH_ALL, transition: float | None = None, brightness: int | None = None, brightness_pct: float | None = None, rgb_color: tuple[int, int, int] | None = None, rgbw_color: tuple[int, int, int, int] | None = None, rgbww_color: tuple[int, int, int, int, int] | None = None, xy_color: tuple[float, float] | None = None, hs_color: tuple[float, float] | None = None, color_temp_kelvin: int | None = None, profile: str | None = None, flash: str | None = None, effect: str | None = None, color_name: str | None = None, white: int | None = None, ) -> None: """Turn all or specified light on.""" data = { key: value for key, value in ( (ATTR_ENTITY_ID, entity_id), (ATTR_PROFILE, profile), (ATTR_TRANSITION, transition), (ATTR_BRIGHTNESS, brightness), (ATTR_BRIGHTNESS_PCT, brightness_pct), (ATTR_RGB_COLOR, rgb_color), (ATTR_RGBW_COLOR, rgbw_color), (ATTR_RGBWW_COLOR, rgbww_color), (ATTR_XY_COLOR, xy_color), (ATTR_HS_COLOR, hs_color), (ATTR_COLOR_TEMP_KELVIN, color_temp_kelvin), (ATTR_FLASH, flash), (ATTR_EFFECT, effect), (ATTR_COLOR_NAME, color_name), (ATTR_WHITE, white), ) if value is not None } await hass.services.async_call(DOMAIN, SERVICE_TURN_ON, data, blocking=True) async def async_turn_off( hass: HomeAssistant, entity_id: str = ENTITY_MATCH_ALL, transition: float | None = None, flash: str | None = None, ) -> None: """Turn all or specified light off.""" data = { key: value for key, value in ( (ATTR_ENTITY_ID, entity_id), (ATTR_TRANSITION, transition), (ATTR_FLASH, flash), ) if value is not None } await hass.services.async_call(DOMAIN, SERVICE_TURN_OFF, data, blocking=True) async def async_toggle( hass: HomeAssistant, entity_id: str = ENTITY_MATCH_ALL, transition: float | None = None, brightness: int | None = None, brightness_pct: float | None = None, rgb_color: tuple[int, int, int] | None = None, xy_color: tuple[float, float] | None = None, hs_color: tuple[float, float] | None = None, color_temp_kelvin: int | None = None, profile: str | None = None, flash: str | None = None, effect: str | None = None, color_name: str | None = None, ) -> None: """Turn all or specified light on.""" data = { key: value for key, value in ( (ATTR_ENTITY_ID, entity_id), (ATTR_PROFILE, profile), (ATTR_TRANSITION, transition), (ATTR_BRIGHTNESS, brightness), (ATTR_BRIGHTNESS_PCT, brightness_pct), (ATTR_RGB_COLOR, rgb_color), (ATTR_XY_COLOR, xy_color), (ATTR_HS_COLOR, hs_color), (ATTR_COLOR_TEMP_KELVIN, color_temp_kelvin), (ATTR_FLASH, flash), (ATTR_EFFECT, effect), (ATTR_COLOR_NAME, color_name), ) if value is not None } await hass.services.async_call(DOMAIN, SERVICE_TOGGLE, data, blocking=True) TURN_ON_ARG_TO_COLOR_MODE = { "hs_color": ColorMode.HS, "xy_color": ColorMode.XY, "rgb_color": ColorMode.RGB, "rgbw_color": ColorMode.RGBW, "rgbww_color": ColorMode.RGBWW, "color_temp_kelvin": ColorMode.COLOR_TEMP, } class MockLight(MockToggleEntity, LightEntity): """Mock light class.""" _attr_max_color_temp_kelvin = DEFAULT_MAX_KELVIN _attr_min_color_temp_kelvin = DEFAULT_MIN_KELVIN supported_features = 0 brightness = None color_temp_kelvin = None hs_color = None rgb_color = None rgbw_color = None rgbww_color = None xy_color = None def __init__( self, name: str | None, state: Literal["on", "off"] | None, supported_color_modes: set[ColorMode] | None = None, ) -> None: """Initialize the mock light.""" super().__init__(name, state) if supported_color_modes is None: supported_color_modes = {ColorMode.ONOFF} self._attr_supported_color_modes = supported_color_modes color_mode = ColorMode.UNKNOWN if len(supported_color_modes) == 1: color_mode = next(iter(supported_color_modes)) self._attr_color_mode = color_mode def turn_on(self, **kwargs: Any) -> None: """Turn the entity on.""" super().turn_on(**kwargs) for key, value in kwargs.items(): if key in [ "brightness", "hs_color", "xy_color", "rgb_color", "rgbw_color", "rgbww_color", "color_temp_kelvin", ]: setattr(self, key, value) if key == "white": setattr(self, "brightness", value) if key in TURN_ON_ARG_TO_COLOR_MODE: self._attr_color_mode = TURN_ON_ARG_TO_COLOR_MODE[key]