334 lines
10 KiB
Python
334 lines
10 KiB
Python
"""Test deCONZ remote events."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
from homeassistant.components.deconz.const import DOMAIN as DECONZ_DOMAIN
|
|
from homeassistant.components.deconz.deconz_event import (
|
|
CONF_DECONZ_ALARM_EVENT,
|
|
CONF_DECONZ_EVENT,
|
|
)
|
|
from homeassistant.const import (
|
|
CONF_CODE,
|
|
CONF_DEVICE_ID,
|
|
CONF_EVENT,
|
|
CONF_ID,
|
|
CONF_UNIQUE_ID,
|
|
STATE_UNAVAILABLE,
|
|
)
|
|
from homeassistant.helpers.device_registry import async_entries_for_config_entry
|
|
|
|
from .test_gateway import DECONZ_WEB_REQUEST, setup_deconz_integration
|
|
|
|
from tests.common import async_capture_events
|
|
|
|
|
|
async def test_deconz_events(hass, aioclient_mock, mock_deconz_websocket):
|
|
"""Test successful creation of deconz events."""
|
|
data = {
|
|
"sensors": {
|
|
"1": {
|
|
"name": "Switch 1",
|
|
"type": "ZHASwitch",
|
|
"state": {"buttonevent": 1000},
|
|
"config": {},
|
|
"uniqueid": "00:00:00:00:00:00:00:01-00",
|
|
},
|
|
"2": {
|
|
"name": "Switch 2",
|
|
"type": "ZHASwitch",
|
|
"state": {"buttonevent": 1000},
|
|
"config": {"battery": 100},
|
|
"uniqueid": "00:00:00:00:00:00:00:02-00",
|
|
},
|
|
"3": {
|
|
"name": "Switch 3",
|
|
"type": "ZHASwitch",
|
|
"state": {"buttonevent": 1000, "gesture": 1},
|
|
"config": {"battery": 100},
|
|
"uniqueid": "00:00:00:00:00:00:00:03-00",
|
|
},
|
|
"4": {
|
|
"name": "Switch 4",
|
|
"type": "ZHASwitch",
|
|
"state": {"buttonevent": 1000, "gesture": 1},
|
|
"config": {"battery": 100},
|
|
"uniqueid": "00:00:00:00:00:00:00:04-00",
|
|
},
|
|
"5": {
|
|
"name": "ZHA remote 1",
|
|
"type": "ZHASwitch",
|
|
"state": {"angle": 0, "buttonevent": 1000, "xy": [0.0, 0.0]},
|
|
"config": {"group": "4,5,6", "reachable": True, "on": True},
|
|
"uniqueid": "00:00:00:00:00:00:00:05-00",
|
|
},
|
|
}
|
|
}
|
|
with patch.dict(DECONZ_WEB_REQUEST, data):
|
|
config_entry = await setup_deconz_integration(hass, aioclient_mock)
|
|
|
|
device_registry = await hass.helpers.device_registry.async_get_registry()
|
|
|
|
assert len(hass.states.async_all()) == 3
|
|
# 5 switches + 2 additional devices for deconz service and host
|
|
assert (
|
|
len(async_entries_for_config_entry(device_registry, config_entry.entry_id)) == 7
|
|
)
|
|
assert hass.states.get("sensor.switch_2_battery_level").state == "100"
|
|
assert hass.states.get("sensor.switch_3_battery_level").state == "100"
|
|
assert hass.states.get("sensor.switch_4_battery_level").state == "100"
|
|
|
|
captured_events = async_capture_events(hass, CONF_DECONZ_EVENT)
|
|
|
|
event_changed_sensor = {
|
|
"t": "event",
|
|
"e": "changed",
|
|
"r": "sensors",
|
|
"id": "1",
|
|
"state": {"buttonevent": 2000},
|
|
}
|
|
await mock_deconz_websocket(data=event_changed_sensor)
|
|
await hass.async_block_till_done()
|
|
|
|
device = device_registry.async_get_device(
|
|
identifiers={(DECONZ_DOMAIN, "00:00:00:00:00:00:00:01")}
|
|
)
|
|
|
|
assert len(captured_events) == 1
|
|
assert captured_events[0].data == {
|
|
"id": "switch_1",
|
|
"unique_id": "00:00:00:00:00:00:00:01",
|
|
"event": 2000,
|
|
"device_id": device.id,
|
|
}
|
|
|
|
event_changed_sensor = {
|
|
"t": "event",
|
|
"e": "changed",
|
|
"r": "sensors",
|
|
"id": "3",
|
|
"state": {"buttonevent": 2000},
|
|
}
|
|
await mock_deconz_websocket(data=event_changed_sensor)
|
|
await hass.async_block_till_done()
|
|
|
|
device = device_registry.async_get_device(
|
|
identifiers={(DECONZ_DOMAIN, "00:00:00:00:00:00:00:03")}
|
|
)
|
|
|
|
assert len(captured_events) == 2
|
|
assert captured_events[1].data == {
|
|
"id": "switch_3",
|
|
"unique_id": "00:00:00:00:00:00:00:03",
|
|
"event": 2000,
|
|
"gesture": 1,
|
|
"device_id": device.id,
|
|
}
|
|
|
|
event_changed_sensor = {
|
|
"t": "event",
|
|
"e": "changed",
|
|
"r": "sensors",
|
|
"id": "4",
|
|
"state": {"gesture": 0},
|
|
}
|
|
await mock_deconz_websocket(data=event_changed_sensor)
|
|
await hass.async_block_till_done()
|
|
|
|
device = device_registry.async_get_device(
|
|
identifiers={(DECONZ_DOMAIN, "00:00:00:00:00:00:00:04")}
|
|
)
|
|
|
|
assert len(captured_events) == 3
|
|
assert captured_events[2].data == {
|
|
"id": "switch_4",
|
|
"unique_id": "00:00:00:00:00:00:00:04",
|
|
"event": 1000,
|
|
"gesture": 0,
|
|
"device_id": device.id,
|
|
}
|
|
|
|
event_changed_sensor = {
|
|
"t": "event",
|
|
"e": "changed",
|
|
"r": "sensors",
|
|
"id": "5",
|
|
"state": {"buttonevent": 6002, "angle": 110, "xy": [0.5982, 0.3897]},
|
|
}
|
|
await mock_deconz_websocket(data=event_changed_sensor)
|
|
await hass.async_block_till_done()
|
|
|
|
device = device_registry.async_get_device(
|
|
identifiers={(DECONZ_DOMAIN, "00:00:00:00:00:00:00:05")}
|
|
)
|
|
|
|
assert len(captured_events) == 4
|
|
assert captured_events[3].data == {
|
|
"id": "zha_remote_1",
|
|
"unique_id": "00:00:00:00:00:00:00:05",
|
|
"event": 6002,
|
|
"angle": 110,
|
|
"xy": [0.5982, 0.3897],
|
|
"device_id": device.id,
|
|
}
|
|
|
|
# Unsupported event
|
|
|
|
event_changed_sensor = {
|
|
"t": "event",
|
|
"e": "changed",
|
|
"r": "sensors",
|
|
"id": "1",
|
|
"name": "other name",
|
|
}
|
|
await mock_deconz_websocket(data=event_changed_sensor)
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(captured_events) == 4
|
|
|
|
await hass.config_entries.async_unload(config_entry.entry_id)
|
|
|
|
states = hass.states.async_all()
|
|
assert len(hass.states.async_all()) == 3
|
|
for state in states:
|
|
assert state.state == STATE_UNAVAILABLE
|
|
|
|
await hass.config_entries.async_remove(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
assert len(hass.states.async_all()) == 0
|
|
|
|
|
|
async def test_deconz_alarm_events(hass, aioclient_mock, mock_deconz_websocket):
|
|
"""Test successful creation of deconz alarm events."""
|
|
data = {
|
|
"sensors": {
|
|
"1": {
|
|
"config": {
|
|
"armed": "disarmed",
|
|
"enrolled": 0,
|
|
"on": True,
|
|
"panel": "disarmed",
|
|
"pending": [],
|
|
"reachable": True,
|
|
},
|
|
"ep": 1,
|
|
"etag": "3c4008d74035dfaa1f0bb30d24468b12",
|
|
"lastseen": "2021-04-02T13:07Z",
|
|
"manufacturername": "Universal Electronics Inc",
|
|
"modelid": "URC4450BC0-X-R",
|
|
"name": "Keypad",
|
|
"state": {
|
|
"action": "armed_away,1111,55",
|
|
"lastupdated": "2021-04-02T13:08:18.937",
|
|
"lowbattery": False,
|
|
"tampered": True,
|
|
},
|
|
"type": "ZHAAncillaryControl",
|
|
"uniqueid": "00:00:00:00:00:00:00:01-01-0501",
|
|
}
|
|
}
|
|
}
|
|
with patch.dict(DECONZ_WEB_REQUEST, data):
|
|
config_entry = await setup_deconz_integration(hass, aioclient_mock)
|
|
|
|
device_registry = await hass.helpers.device_registry.async_get_registry()
|
|
|
|
assert len(hass.states.async_all()) == 2
|
|
# 1 alarm control device + 2 additional devices for deconz service and host
|
|
assert (
|
|
len(async_entries_for_config_entry(device_registry, config_entry.entry_id)) == 3
|
|
)
|
|
|
|
captured_events = async_capture_events(hass, CONF_DECONZ_ALARM_EVENT)
|
|
|
|
# Armed away event
|
|
|
|
event_changed_sensor = {
|
|
"t": "event",
|
|
"e": "changed",
|
|
"r": "sensors",
|
|
"id": "1",
|
|
"state": {"action": "armed_away,1234,1"},
|
|
}
|
|
await mock_deconz_websocket(data=event_changed_sensor)
|
|
await hass.async_block_till_done()
|
|
|
|
device = device_registry.async_get_device(
|
|
identifiers={(DECONZ_DOMAIN, "00:00:00:00:00:00:00:01")}
|
|
)
|
|
|
|
assert len(captured_events) == 1
|
|
assert captured_events[0].data == {
|
|
CONF_ID: "keypad",
|
|
CONF_UNIQUE_ID: "00:00:00:00:00:00:00:01",
|
|
CONF_DEVICE_ID: device.id,
|
|
CONF_EVENT: "armed_away",
|
|
CONF_CODE: "1234",
|
|
}
|
|
|
|
# Unsupported events
|
|
|
|
event_changed_sensor = {
|
|
"t": "event",
|
|
"e": "changed",
|
|
"r": "sensors",
|
|
"id": "1",
|
|
"state": {"action": "unsupported,1234,1"},
|
|
}
|
|
await mock_deconz_websocket(data=event_changed_sensor)
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(captured_events) == 1
|
|
|
|
event_changed_sensor = {
|
|
"t": "event",
|
|
"e": "changed",
|
|
"r": "sensors",
|
|
"id": "1",
|
|
"config": {"panel": "armed_away"},
|
|
}
|
|
await mock_deconz_websocket(data=event_changed_sensor)
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(captured_events) == 1
|
|
|
|
await hass.config_entries.async_unload(config_entry.entry_id)
|
|
|
|
states = hass.states.async_all()
|
|
assert len(hass.states.async_all()) == 2
|
|
for state in states:
|
|
assert state.state == STATE_UNAVAILABLE
|
|
|
|
await hass.config_entries.async_remove(config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
assert len(hass.states.async_all()) == 0
|
|
|
|
|
|
async def test_deconz_events_bad_unique_id(hass, aioclient_mock, mock_deconz_websocket):
|
|
"""Verify no devices are created if unique id is bad or missing."""
|
|
data = {
|
|
"sensors": {
|
|
"1": {
|
|
"name": "Switch 1 no unique id",
|
|
"type": "ZHASwitch",
|
|
"state": {"buttonevent": 1000},
|
|
"config": {},
|
|
},
|
|
"2": {
|
|
"name": "Switch 2 bad unique id",
|
|
"type": "ZHASwitch",
|
|
"state": {"buttonevent": 1000},
|
|
"config": {"battery": 100},
|
|
"uniqueid": "00:00-00",
|
|
},
|
|
}
|
|
}
|
|
with patch.dict(DECONZ_WEB_REQUEST, data):
|
|
config_entry = await setup_deconz_integration(hass, aioclient_mock)
|
|
|
|
device_registry = await hass.helpers.device_registry.async_get_registry()
|
|
|
|
assert len(hass.states.async_all()) == 1
|
|
assert (
|
|
len(async_entries_for_config_entry(device_registry, config_entry.entry_id)) == 2
|
|
)
|