67 lines
2.0 KiB
Python
67 lines
2.0 KiB
Python
"""deCONZ scene platform tests."""
|
|
from copy import deepcopy
|
|
|
|
from asynctest import patch
|
|
|
|
from homeassistant.components import deconz
|
|
import homeassistant.components.scene as scene
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from .test_gateway import DECONZ_WEB_REQUEST, setup_deconz_integration
|
|
|
|
GROUPS = {
|
|
"1": {
|
|
"id": "Light group id",
|
|
"name": "Light group",
|
|
"type": "LightGroup",
|
|
"state": {"all_on": False, "any_on": True},
|
|
"action": {},
|
|
"scenes": [{"id": "1", "name": "Scene"}],
|
|
"lights": [],
|
|
}
|
|
}
|
|
|
|
|
|
async def test_platform_manually_configured(hass):
|
|
"""Test that we do not discover anything or try to set up a gateway."""
|
|
assert (
|
|
await async_setup_component(
|
|
hass, scene.DOMAIN, {"scene": {"platform": deconz.DOMAIN}}
|
|
)
|
|
is True
|
|
)
|
|
assert deconz.DOMAIN not in hass.data
|
|
|
|
|
|
async def test_no_scenes(hass):
|
|
"""Test that scenes can be loaded without scenes being available."""
|
|
gateway = await setup_deconz_integration(hass)
|
|
assert len(gateway.deconz_ids) == 0
|
|
assert len(hass.states.async_all()) == 0
|
|
|
|
|
|
async def test_scenes(hass):
|
|
"""Test that scenes works."""
|
|
data = deepcopy(DECONZ_WEB_REQUEST)
|
|
data["groups"] = deepcopy(GROUPS)
|
|
gateway = await setup_deconz_integration(hass, get_state_response=data)
|
|
|
|
assert "scene.light_group_scene" in gateway.deconz_ids
|
|
assert len(hass.states.async_all()) == 1
|
|
|
|
light_group_scene = hass.states.get("scene.light_group_scene")
|
|
assert light_group_scene
|
|
|
|
group_scene = gateway.api.groups["1"].scenes["1"]
|
|
|
|
with patch.object(group_scene, "_request", return_value=True) as set_callback:
|
|
await hass.services.async_call(
|
|
"scene", "turn_on", {"entity_id": "scene.light_group_scene"}, blocking=True
|
|
)
|
|
await hass.async_block_till_done()
|
|
set_callback.assert_called_with("put", "/groups/1/scenes/1/recall", json={})
|
|
|
|
await gateway.async_reset()
|
|
|
|
assert len(hass.states.async_all()) == 0
|