* Add WLED integration * Use f-string for uniq id in sensor platform * Typing improvements * Removes sensor & light platform * Remove PARALLEL_UPDATES from integration level * Correct type in code comment 'themselves' * Use async_track_time_interval in async context * Remove stale code * Remove decorator from Flow handler * Remove unused __init__ from config flow * Move show form methods to sync * Only wrap lines that can raise in try except block * Remove domain and platform from uniq id * Wrap light state in bool object in is_on method * Use async_schedule_update_ha_state in async context * Return empty dict in device state attributes instead of None * Remove unneeded setdefault call in setup entry * Cancel update timer on entry unload * Restructure config flow code * Adjust tests for new uniq id * Correct typo AdGuard Home -> WLED in config flow file comment * Convert internal package imports to be relative * Reformat JSON files with Prettier * Improve tests based on review comments * Add test for zeroconf when no data is provided * Cleanup and extended tests
179 lines
5.7 KiB
Python
179 lines
5.7 KiB
Python
"""Tests for the WLED light platform."""
|
|
import aiohttp
|
|
|
|
from homeassistant.components.light import (
|
|
ATTR_BRIGHTNESS,
|
|
ATTR_COLOR_TEMP,
|
|
ATTR_EFFECT,
|
|
ATTR_HS_COLOR,
|
|
ATTR_RGB_COLOR,
|
|
ATTR_TRANSITION,
|
|
DOMAIN as LIGHT_DOMAIN,
|
|
)
|
|
from homeassistant.components.wled.const import (
|
|
ATTR_INTENSITY,
|
|
ATTR_PALETTE,
|
|
ATTR_PLAYLIST,
|
|
ATTR_PRESET,
|
|
ATTR_SPEED,
|
|
)
|
|
from homeassistant.const import (
|
|
ATTR_ENTITY_ID,
|
|
ATTR_ICON,
|
|
SERVICE_TURN_OFF,
|
|
SERVICE_TURN_ON,
|
|
STATE_OFF,
|
|
STATE_ON,
|
|
STATE_UNAVAILABLE,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from tests.components.wled import init_integration
|
|
from tests.test_util.aiohttp import AiohttpClientMocker
|
|
|
|
|
|
async def test_rgb_light_state(
|
|
hass: HomeAssistant, aioclient_mock: AiohttpClientMocker
|
|
) -> None:
|
|
"""Test the creation and values of the WLED lights."""
|
|
await init_integration(hass, aioclient_mock)
|
|
|
|
entity_registry = await hass.helpers.entity_registry.async_get_registry()
|
|
|
|
# First segment of the strip
|
|
state = hass.states.get("light.wled_rgb_light")
|
|
assert state
|
|
assert state.attributes.get(ATTR_BRIGHTNESS) == 127
|
|
assert state.attributes.get(ATTR_EFFECT) == "Solid"
|
|
assert state.attributes.get(ATTR_HS_COLOR) == (37.412, 100.0)
|
|
assert state.attributes.get(ATTR_ICON) == "mdi:led-strip-variant"
|
|
assert state.attributes.get(ATTR_INTENSITY) == 128
|
|
assert state.attributes.get(ATTR_PALETTE) == "Default"
|
|
assert state.attributes.get(ATTR_PLAYLIST) is None
|
|
assert state.attributes.get(ATTR_PRESET) is None
|
|
assert state.attributes.get(ATTR_SPEED) == 32
|
|
assert state.state == STATE_ON
|
|
|
|
entry = entity_registry.async_get("light.wled_rgb_light")
|
|
assert entry
|
|
assert entry.unique_id == "aabbccddeeff_0"
|
|
|
|
# Second segment of the strip
|
|
state = hass.states.get("light.wled_rgb_light_1")
|
|
assert state
|
|
assert state.attributes.get(ATTR_BRIGHTNESS) == 127
|
|
assert state.attributes.get(ATTR_EFFECT) == "Blink"
|
|
assert state.attributes.get(ATTR_HS_COLOR) == (148.941, 100.0)
|
|
assert state.attributes.get(ATTR_ICON) == "mdi:led-strip-variant"
|
|
assert state.attributes.get(ATTR_INTENSITY) == 64
|
|
assert state.attributes.get(ATTR_PALETTE) == "Random Cycle"
|
|
assert state.attributes.get(ATTR_PLAYLIST) is None
|
|
assert state.attributes.get(ATTR_PRESET) is None
|
|
assert state.attributes.get(ATTR_SPEED) == 16
|
|
assert state.state == STATE_ON
|
|
|
|
entry = entity_registry.async_get("light.wled_rgb_light_1")
|
|
assert entry
|
|
assert entry.unique_id == "aabbccddeeff_1"
|
|
|
|
|
|
async def test_switch_change_state(
|
|
hass: HomeAssistant, aioclient_mock: AiohttpClientMocker
|
|
) -> None:
|
|
"""Test the change of state of the WLED switches."""
|
|
await init_integration(hass, aioclient_mock)
|
|
|
|
state = hass.states.get("light.wled_rgb_light")
|
|
assert state.state == STATE_ON
|
|
|
|
await hass.services.async_call(
|
|
LIGHT_DOMAIN,
|
|
SERVICE_TURN_OFF,
|
|
{ATTR_ENTITY_ID: "light.wled_rgb_light"},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
state = hass.states.get("light.wled_rgb_light")
|
|
assert state.state == STATE_OFF
|
|
|
|
await hass.services.async_call(
|
|
LIGHT_DOMAIN,
|
|
SERVICE_TURN_ON,
|
|
{
|
|
ATTR_BRIGHTNESS: 42,
|
|
ATTR_EFFECT: "Chase",
|
|
ATTR_ENTITY_ID: "light.wled_rgb_light",
|
|
ATTR_RGB_COLOR: [255, 0, 0],
|
|
ATTR_TRANSITION: 5,
|
|
},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get("light.wled_rgb_light")
|
|
assert state.state == STATE_ON
|
|
assert state.attributes.get(ATTR_BRIGHTNESS) == 42
|
|
assert state.attributes.get(ATTR_EFFECT) == "Chase"
|
|
assert state.attributes.get(ATTR_HS_COLOR) == (0.0, 100.0)
|
|
|
|
await hass.services.async_call(
|
|
LIGHT_DOMAIN,
|
|
SERVICE_TURN_ON,
|
|
{ATTR_ENTITY_ID: "light.wled_rgb_light", ATTR_COLOR_TEMP: 400},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
state = hass.states.get("light.wled_rgb_light")
|
|
assert state.state == STATE_ON
|
|
assert state.attributes.get(ATTR_HS_COLOR) == (28.874, 72.522)
|
|
|
|
|
|
async def test_light_error(
|
|
hass: HomeAssistant, aioclient_mock: AiohttpClientMocker
|
|
) -> None:
|
|
"""Test error handling of the WLED switches."""
|
|
aioclient_mock.post("http://example.local:80/json/state", exc=aiohttp.ClientError)
|
|
await init_integration(hass, aioclient_mock)
|
|
|
|
await hass.services.async_call(
|
|
LIGHT_DOMAIN,
|
|
SERVICE_TURN_OFF,
|
|
{ATTR_ENTITY_ID: "light.wled_rgb_light"},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
state = hass.states.get("light.wled_rgb_light")
|
|
assert state.state == STATE_UNAVAILABLE
|
|
|
|
await hass.services.async_call(
|
|
LIGHT_DOMAIN,
|
|
SERVICE_TURN_ON,
|
|
{ATTR_ENTITY_ID: "light.wled_rgb_light_1"},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
state = hass.states.get("light.wled_rgb_light_1")
|
|
assert state.state == STATE_UNAVAILABLE
|
|
|
|
|
|
async def test_rgbw_light(
|
|
hass: HomeAssistant, aioclient_mock: AiohttpClientMocker
|
|
) -> None:
|
|
"""Test RGBW support for WLED."""
|
|
await init_integration(hass, aioclient_mock, rgbw=True)
|
|
|
|
state = hass.states.get("light.wled_rgbw_light")
|
|
assert state.state == STATE_ON
|
|
assert state.attributes.get(ATTR_HS_COLOR) == (0.0, 64.706)
|
|
|
|
await hass.services.async_call(
|
|
LIGHT_DOMAIN,
|
|
SERVICE_TURN_ON,
|
|
{ATTR_ENTITY_ID: "light.wled_rgbw_light", ATTR_COLOR_TEMP: 400},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get("light.wled_rgbw_light")
|
|
assert state.state == STATE_ON
|
|
assert state.attributes.get(ATTR_HS_COLOR) == (28.874, 72.522)
|