mirror of
https://github.com/home-assistant/core.git
synced 2025-07-16 01:37:08 +00:00
Add test coverage for esphome lock platform (#95023)
This commit is contained in:
parent
9eedc8a602
commit
79f9a8a257
@ -312,7 +312,6 @@ omit =
|
|||||||
homeassistant/components/esphome/domain_data.py
|
homeassistant/components/esphome/domain_data.py
|
||||||
homeassistant/components/esphome/entry_data.py
|
homeassistant/components/esphome/entry_data.py
|
||||||
homeassistant/components/esphome/light.py
|
homeassistant/components/esphome/light.py
|
||||||
homeassistant/components/esphome/lock.py
|
|
||||||
homeassistant/components/esphome/number.py
|
homeassistant/components/esphome/number.py
|
||||||
homeassistant/components/esphome/switch.py
|
homeassistant/components/esphome/switch.py
|
||||||
homeassistant/components/etherscan/sensor.py
|
homeassistant/components/etherscan/sensor.py
|
||||||
|
132
tests/components/esphome/test_lock.py
Normal file
132
tests/components/esphome/test_lock.py
Normal file
@ -0,0 +1,132 @@
|
|||||||
|
"""Test ESPHome locks."""
|
||||||
|
|
||||||
|
|
||||||
|
from unittest.mock import call
|
||||||
|
|
||||||
|
from aioesphomeapi import APIClient, LockCommand, LockEntityState, LockInfo, LockState
|
||||||
|
|
||||||
|
from homeassistant.components.lock import (
|
||||||
|
DOMAIN as LOCK_DOMAIN,
|
||||||
|
SERVICE_LOCK,
|
||||||
|
SERVICE_OPEN,
|
||||||
|
SERVICE_UNLOCK,
|
||||||
|
STATE_LOCKED,
|
||||||
|
STATE_LOCKING,
|
||||||
|
STATE_UNLOCKING,
|
||||||
|
)
|
||||||
|
from homeassistant.const import ATTR_ENTITY_ID
|
||||||
|
from homeassistant.core import HomeAssistant
|
||||||
|
|
||||||
|
|
||||||
|
async def test_lock_entity_no_open(
|
||||||
|
hass: HomeAssistant, mock_client: APIClient, mock_generic_device_entry
|
||||||
|
) -> None:
|
||||||
|
"""Test a generic lock entity that does not support open."""
|
||||||
|
entity_info = [
|
||||||
|
LockInfo(
|
||||||
|
object_id="mylock",
|
||||||
|
key=1,
|
||||||
|
name="my lock",
|
||||||
|
unique_id="my_lock",
|
||||||
|
supports_open=False,
|
||||||
|
requires_code=False,
|
||||||
|
)
|
||||||
|
]
|
||||||
|
states = [LockEntityState(key=1, state=LockState.UNLOCKING)]
|
||||||
|
user_service = []
|
||||||
|
await mock_generic_device_entry(
|
||||||
|
mock_client=mock_client,
|
||||||
|
entity_info=entity_info,
|
||||||
|
user_service=user_service,
|
||||||
|
states=states,
|
||||||
|
)
|
||||||
|
state = hass.states.get("lock.test_my_lock")
|
||||||
|
assert state is not None
|
||||||
|
assert state.state == STATE_UNLOCKING
|
||||||
|
|
||||||
|
await hass.services.async_call(
|
||||||
|
LOCK_DOMAIN,
|
||||||
|
SERVICE_LOCK,
|
||||||
|
{ATTR_ENTITY_ID: "lock.test_my_lock"},
|
||||||
|
blocking=True,
|
||||||
|
)
|
||||||
|
mock_client.lock_command.assert_has_calls([call(1, LockCommand.LOCK)])
|
||||||
|
mock_client.lock_command.reset_mock()
|
||||||
|
|
||||||
|
|
||||||
|
async def test_lock_entity_start_locked(
|
||||||
|
hass: HomeAssistant, mock_client: APIClient, mock_generic_device_entry
|
||||||
|
) -> None:
|
||||||
|
"""Test a generic lock entity that does not support open."""
|
||||||
|
entity_info = [
|
||||||
|
LockInfo(
|
||||||
|
object_id="mylock",
|
||||||
|
key=1,
|
||||||
|
name="my lock",
|
||||||
|
unique_id="my_lock",
|
||||||
|
)
|
||||||
|
]
|
||||||
|
states = [LockEntityState(key=1, state=LockState.LOCKED)]
|
||||||
|
user_service = []
|
||||||
|
await mock_generic_device_entry(
|
||||||
|
mock_client=mock_client,
|
||||||
|
entity_info=entity_info,
|
||||||
|
user_service=user_service,
|
||||||
|
states=states,
|
||||||
|
)
|
||||||
|
state = hass.states.get("lock.test_my_lock")
|
||||||
|
assert state is not None
|
||||||
|
assert state.state == STATE_LOCKED
|
||||||
|
|
||||||
|
|
||||||
|
async def test_lock_entity_supports_open(
|
||||||
|
hass: HomeAssistant, mock_client: APIClient, mock_generic_device_entry
|
||||||
|
) -> None:
|
||||||
|
"""Test a generic lock entity that supports open."""
|
||||||
|
entity_info = [
|
||||||
|
LockInfo(
|
||||||
|
object_id="mylock",
|
||||||
|
key=1,
|
||||||
|
name="my lock",
|
||||||
|
unique_id="my_lock",
|
||||||
|
supports_open=True,
|
||||||
|
requires_code=True,
|
||||||
|
)
|
||||||
|
]
|
||||||
|
states = [LockEntityState(key=1, state=LockState.LOCKING)]
|
||||||
|
user_service = []
|
||||||
|
await mock_generic_device_entry(
|
||||||
|
mock_client=mock_client,
|
||||||
|
entity_info=entity_info,
|
||||||
|
user_service=user_service,
|
||||||
|
states=states,
|
||||||
|
)
|
||||||
|
state = hass.states.get("lock.test_my_lock")
|
||||||
|
assert state is not None
|
||||||
|
assert state.state == STATE_LOCKING
|
||||||
|
|
||||||
|
await hass.services.async_call(
|
||||||
|
LOCK_DOMAIN,
|
||||||
|
SERVICE_LOCK,
|
||||||
|
{ATTR_ENTITY_ID: "lock.test_my_lock"},
|
||||||
|
blocking=True,
|
||||||
|
)
|
||||||
|
mock_client.lock_command.assert_has_calls([call(1, LockCommand.LOCK)])
|
||||||
|
mock_client.lock_command.reset_mock()
|
||||||
|
|
||||||
|
await hass.services.async_call(
|
||||||
|
LOCK_DOMAIN,
|
||||||
|
SERVICE_UNLOCK,
|
||||||
|
{ATTR_ENTITY_ID: "lock.test_my_lock"},
|
||||||
|
blocking=True,
|
||||||
|
)
|
||||||
|
mock_client.lock_command.assert_has_calls([call(1, LockCommand.UNLOCK, None)])
|
||||||
|
|
||||||
|
mock_client.lock_command.reset_mock()
|
||||||
|
await hass.services.async_call(
|
||||||
|
LOCK_DOMAIN,
|
||||||
|
SERVICE_OPEN,
|
||||||
|
{ATTR_ENTITY_ID: "lock.test_my_lock"},
|
||||||
|
blocking=True,
|
||||||
|
)
|
||||||
|
mock_client.lock_command.assert_has_calls([call(1, LockCommand.OPEN)])
|
Loading…
x
Reference in New Issue
Block a user