244 lines
7.7 KiB
Python
244 lines
7.7 KiB
Python
"""Tests for the Elgato Key Light light platform."""
|
|
from unittest.mock import patch
|
|
|
|
from elgato import ElgatoError
|
|
import pytest
|
|
|
|
from homeassistant.components.elgato.const import DOMAIN, SERVICE_IDENTIFY
|
|
from homeassistant.components.light import (
|
|
ATTR_BRIGHTNESS,
|
|
ATTR_COLOR_MODE,
|
|
ATTR_COLOR_TEMP,
|
|
ATTR_HS_COLOR,
|
|
ATTR_MAX_MIREDS,
|
|
ATTR_MIN_MIREDS,
|
|
ATTR_SUPPORTED_COLOR_MODES,
|
|
COLOR_MODE_COLOR_TEMP,
|
|
COLOR_MODE_HS,
|
|
DOMAIN as LIGHT_DOMAIN,
|
|
)
|
|
from homeassistant.const import (
|
|
ATTR_ENTITY_ID,
|
|
SERVICE_TURN_OFF,
|
|
SERVICE_TURN_ON,
|
|
STATE_ON,
|
|
STATE_UNAVAILABLE,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from tests.common import mock_coro
|
|
from tests.components.elgato import init_integration
|
|
from tests.test_util.aiohttp import AiohttpClientMocker
|
|
|
|
|
|
async def test_light_state_temperature(
|
|
hass: HomeAssistant, aioclient_mock: AiohttpClientMocker
|
|
) -> None:
|
|
"""Test the creation and values of the Elgato Lights in temperature mode."""
|
|
await init_integration(hass, aioclient_mock)
|
|
|
|
entity_registry = er.async_get(hass)
|
|
|
|
# First segment of the strip
|
|
state = hass.states.get("light.frenck")
|
|
assert state
|
|
assert state.attributes.get(ATTR_BRIGHTNESS) == 54
|
|
assert state.attributes.get(ATTR_COLOR_TEMP) == 297
|
|
assert state.attributes.get(ATTR_HS_COLOR) is None
|
|
assert state.attributes.get(ATTR_COLOR_MODE) == COLOR_MODE_COLOR_TEMP
|
|
assert state.attributes.get(ATTR_MIN_MIREDS) == 143
|
|
assert state.attributes.get(ATTR_MAX_MIREDS) == 344
|
|
assert state.attributes.get(ATTR_SUPPORTED_COLOR_MODES) == [COLOR_MODE_COLOR_TEMP]
|
|
assert state.state == STATE_ON
|
|
|
|
entry = entity_registry.async_get("light.frenck")
|
|
assert entry
|
|
assert entry.unique_id == "CN11A1A00001"
|
|
|
|
|
|
async def test_light_state_color(
|
|
hass: HomeAssistant, aioclient_mock: AiohttpClientMocker
|
|
) -> None:
|
|
"""Test the creation and values of the Elgato Lights in temperature mode."""
|
|
await init_integration(hass, aioclient_mock, color=True, mode_color=True)
|
|
|
|
entity_registry = er.async_get(hass)
|
|
|
|
# First segment of the strip
|
|
state = hass.states.get("light.frenck")
|
|
assert state
|
|
assert state.attributes.get(ATTR_BRIGHTNESS) == 128
|
|
assert state.attributes.get(ATTR_COLOR_TEMP) is None
|
|
assert state.attributes.get(ATTR_HS_COLOR) == (358.0, 6.0)
|
|
assert state.attributes.get(ATTR_MIN_MIREDS) == 153
|
|
assert state.attributes.get(ATTR_MAX_MIREDS) == 285
|
|
assert state.attributes.get(ATTR_COLOR_MODE) == COLOR_MODE_HS
|
|
assert state.attributes.get(ATTR_SUPPORTED_COLOR_MODES) == [
|
|
COLOR_MODE_COLOR_TEMP,
|
|
COLOR_MODE_HS,
|
|
]
|
|
assert state.state == STATE_ON
|
|
|
|
entry = entity_registry.async_get("light.frenck")
|
|
assert entry
|
|
assert entry.unique_id == "CN11A1A00001"
|
|
|
|
|
|
async def test_light_change_state_temperature(
|
|
hass: HomeAssistant, aioclient_mock: AiohttpClientMocker
|
|
) -> None:
|
|
"""Test the change of state of a Elgato Key Light device."""
|
|
await init_integration(hass, aioclient_mock, color=True, mode_color=False)
|
|
|
|
state = hass.states.get("light.frenck")
|
|
assert state
|
|
assert state.state == STATE_ON
|
|
|
|
with patch(
|
|
"homeassistant.components.elgato.light.Elgato.light",
|
|
return_value=mock_coro(),
|
|
) as mock_light:
|
|
await hass.services.async_call(
|
|
LIGHT_DOMAIN,
|
|
SERVICE_TURN_ON,
|
|
{
|
|
ATTR_ENTITY_ID: "light.frenck",
|
|
ATTR_BRIGHTNESS: 255,
|
|
ATTR_COLOR_TEMP: 100,
|
|
},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
assert len(mock_light.mock_calls) == 1
|
|
mock_light.assert_called_with(
|
|
on=True, brightness=100, temperature=100, hue=None, saturation=None
|
|
)
|
|
|
|
await hass.services.async_call(
|
|
LIGHT_DOMAIN,
|
|
SERVICE_TURN_ON,
|
|
{
|
|
ATTR_ENTITY_ID: "light.frenck",
|
|
ATTR_BRIGHTNESS: 255,
|
|
},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
assert len(mock_light.mock_calls) == 2
|
|
mock_light.assert_called_with(
|
|
on=True, brightness=100, temperature=297, hue=None, saturation=None
|
|
)
|
|
|
|
await hass.services.async_call(
|
|
LIGHT_DOMAIN,
|
|
SERVICE_TURN_OFF,
|
|
{ATTR_ENTITY_ID: "light.frenck"},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
assert len(mock_light.mock_calls) == 3
|
|
mock_light.assert_called_with(on=False)
|
|
|
|
|
|
async def test_light_change_state_color(
|
|
hass: HomeAssistant, aioclient_mock: AiohttpClientMocker
|
|
) -> None:
|
|
"""Test the color state state of a Elgato Light device."""
|
|
await init_integration(hass, aioclient_mock, color=True)
|
|
|
|
state = hass.states.get("light.frenck")
|
|
assert state
|
|
assert state.state == STATE_ON
|
|
|
|
with patch(
|
|
"homeassistant.components.elgato.light.Elgato.light",
|
|
return_value=mock_coro(),
|
|
) as mock_light:
|
|
await hass.services.async_call(
|
|
LIGHT_DOMAIN,
|
|
SERVICE_TURN_ON,
|
|
{
|
|
ATTR_ENTITY_ID: "light.frenck",
|
|
ATTR_BRIGHTNESS: 255,
|
|
ATTR_HS_COLOR: (10.1, 20.2),
|
|
},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
assert len(mock_light.mock_calls) == 1
|
|
mock_light.assert_called_with(
|
|
on=True, brightness=100, temperature=None, hue=10.1, saturation=20.2
|
|
)
|
|
|
|
|
|
@pytest.mark.parametrize("service", [SERVICE_TURN_ON, SERVICE_TURN_OFF])
|
|
async def test_light_unavailable(
|
|
service: str, hass: HomeAssistant, aioclient_mock: AiohttpClientMocker
|
|
) -> None:
|
|
"""Test error/unavailable handling of an Elgato Light."""
|
|
await init_integration(hass, aioclient_mock)
|
|
with patch(
|
|
"homeassistant.components.elgato.light.Elgato.light",
|
|
side_effect=ElgatoError,
|
|
), patch(
|
|
"homeassistant.components.elgato.light.Elgato.state",
|
|
side_effect=ElgatoError,
|
|
):
|
|
await hass.services.async_call(
|
|
LIGHT_DOMAIN,
|
|
service,
|
|
{ATTR_ENTITY_ID: "light.frenck"},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
state = hass.states.get("light.frenck")
|
|
assert state.state == STATE_UNAVAILABLE
|
|
|
|
|
|
async def test_light_identify(
|
|
hass: HomeAssistant, aioclient_mock: AiohttpClientMocker
|
|
) -> None:
|
|
"""Test identifying an Elgato Light."""
|
|
await init_integration(hass, aioclient_mock)
|
|
|
|
with patch(
|
|
"homeassistant.components.elgato.light.Elgato.identify",
|
|
return_value=mock_coro(),
|
|
) as mock_identify:
|
|
await hass.services.async_call(
|
|
DOMAIN,
|
|
SERVICE_IDENTIFY,
|
|
{
|
|
ATTR_ENTITY_ID: "light.frenck",
|
|
},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
assert len(mock_identify.mock_calls) == 1
|
|
mock_identify.assert_called_with()
|
|
|
|
|
|
async def test_light_identify_error(
|
|
hass: HomeAssistant, aioclient_mock: AiohttpClientMocker, caplog
|
|
) -> None:
|
|
"""Test error occurred during identifying an Elgato Light."""
|
|
await init_integration(hass, aioclient_mock)
|
|
|
|
with patch(
|
|
"homeassistant.components.elgato.light.Elgato.identify",
|
|
side_effect=ElgatoError,
|
|
) as mock_identify:
|
|
await hass.services.async_call(
|
|
DOMAIN,
|
|
SERVICE_IDENTIFY,
|
|
{
|
|
ATTR_ENTITY_ID: "light.frenck",
|
|
},
|
|
blocking=True,
|
|
)
|
|
await hass.async_block_till_done()
|
|
assert len(mock_identify.mock_calls) == 1
|
|
|
|
assert "An error occurred while identifying the Elgato Light" in caplog.text
|