* Significantly reduce code in august integration * Activity updates can now be processed by py-august this allows us to eliminate the activity sync code for the door sensors and locks * Lock and door state can now be consumed from the lock detail api which allows us to remove the status call apis and reduce the number of API calls to august * Refactor the testing method for locks (part #1) * Update homeassistant/components/august/binary_sensor.py Co-Authored-By: Paulus Schoutsen <paulus@home-assistant.io> * Switch to asynctest instead of unittest for mock.patch Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>
46 lines
1.4 KiB
Python
46 lines
1.4 KiB
Python
"""The lock tests for the august platform."""
|
|
|
|
from homeassistant.components.lock import DOMAIN as LOCK_DOMAIN
|
|
from homeassistant.const import (
|
|
ATTR_ENTITY_ID,
|
|
SERVICE_UNLOCK,
|
|
STATE_LOCKED,
|
|
STATE_ON,
|
|
STATE_UNLOCKED,
|
|
)
|
|
|
|
from tests.components.august.mocks import (
|
|
_create_august_with_devices,
|
|
_mock_lock_from_fixture,
|
|
)
|
|
|
|
|
|
async def test_one_lock_unlock_happy_path(hass):
|
|
"""Test creation of a lock with doorsense and bridge."""
|
|
lock_one = await _mock_lock_from_fixture(
|
|
hass, "get_lock.online_with_doorsense.json"
|
|
)
|
|
lock_details = [lock_one]
|
|
await _create_august_with_devices(hass, lock_details=lock_details)
|
|
|
|
lock_abc_name = hass.states.get("lock.abc_name")
|
|
|
|
assert lock_abc_name.state == STATE_LOCKED
|
|
|
|
assert lock_abc_name.attributes.get("battery_level") == 92
|
|
assert lock_abc_name.attributes.get("friendly_name") == "ABC Name"
|
|
|
|
data = {}
|
|
data[ATTR_ENTITY_ID] = "lock.abc_name"
|
|
assert await hass.services.async_call(
|
|
LOCK_DOMAIN, SERVICE_UNLOCK, data, blocking=True
|
|
)
|
|
|
|
lock_abc_name = hass.states.get("lock.abc_name")
|
|
assert lock_abc_name.state == STATE_UNLOCKED
|
|
|
|
assert lock_abc_name.attributes.get("battery_level") == 92
|
|
assert lock_abc_name.attributes.get("friendly_name") == "ABC Name"
|
|
|
|
binary_sensor_abc_name = hass.states.get("binary_sensor.abc_name_open")
|
|
assert binary_sensor_abc_name.state == STATE_ON
|