Add OZW WS API support for locks (#41186)
* add WS API support for locks and simplify lock service calls * move return outside of try blocK * fix rebase conflicts
This commit is contained in:
parent
e1578e5389
commit
06306f5dfe
4 changed files with 158 additions and 74 deletions
|
@ -1,5 +1,6 @@
|
|||
"""Test OpenZWave Websocket API."""
|
||||
from openzwavemqtt.const import (
|
||||
ATTR_CODE_SLOT,
|
||||
ATTR_LABEL,
|
||||
ATTR_OPTIONS,
|
||||
ATTR_POSITION,
|
||||
|
@ -8,6 +9,7 @@ from openzwavemqtt.const import (
|
|||
)
|
||||
|
||||
from homeassistant.components.ozw.const import ATTR_CONFIG_PARAMETER
|
||||
from homeassistant.components.ozw.lock import ATTR_USERCODE
|
||||
from homeassistant.components.ozw.websocket_api import (
|
||||
ATTR_IS_AWAKE,
|
||||
ATTR_IS_BEAMING,
|
||||
|
@ -277,6 +279,45 @@ async def test_websocket_api(hass, generic_data, hass_ws_client):
|
|||
assert result["code"] == ERR_NOT_FOUND
|
||||
|
||||
|
||||
async def test_ws_locks(hass, lock_data, hass_ws_client):
|
||||
"""Test lock websocket apis."""
|
||||
await setup_ozw(hass, fixture=lock_data)
|
||||
client = await hass_ws_client(hass)
|
||||
|
||||
await client.send_json(
|
||||
{
|
||||
ID: 1,
|
||||
TYPE: "ozw/get_code_slots",
|
||||
NODE_ID: 10,
|
||||
}
|
||||
)
|
||||
msg = await client.receive_json()
|
||||
assert msg["success"]
|
||||
|
||||
await client.send_json(
|
||||
{
|
||||
ID: 2,
|
||||
TYPE: "ozw/set_usercode",
|
||||
NODE_ID: 10,
|
||||
ATTR_CODE_SLOT: 1,
|
||||
ATTR_USERCODE: "1234",
|
||||
}
|
||||
)
|
||||
msg = await client.receive_json()
|
||||
assert msg["success"]
|
||||
|
||||
await client.send_json(
|
||||
{
|
||||
ID: 3,
|
||||
TYPE: "ozw/clear_usercode",
|
||||
NODE_ID: 10,
|
||||
ATTR_CODE_SLOT: 1,
|
||||
}
|
||||
)
|
||||
msg = await client.receive_json()
|
||||
assert msg["success"]
|
||||
|
||||
|
||||
async def test_refresh_node(hass, generic_data, sent_messages, hass_ws_client):
|
||||
"""Test the ozw refresh node api."""
|
||||
receive_message = await setup_ozw(hass, fixture=generic_data)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue