mirror of
https://github.com/home-assistant/core.git
synced 2025-04-24 09:17:53 +00:00

* Add homee lock platform * finish tests * add locking & unlocking * add PARALLEL_UPDATES * fix review comments * fix test review comment. * fix another review comment
126 lines
3.6 KiB
Python
126 lines
3.6 KiB
Python
"""Test Homee locks."""
|
|
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
import pytest
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.components.lock import (
|
|
DOMAIN as LOCK_DOMAIN,
|
|
SERVICE_LOCK,
|
|
SERVICE_UNLOCK,
|
|
LockState,
|
|
)
|
|
from homeassistant.const import ATTR_ENTITY_ID, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from . import build_mock_node, setup_integration
|
|
|
|
from tests.common import MockConfigEntry, snapshot_platform
|
|
|
|
|
|
async def setup_lock(
|
|
hass: HomeAssistant, mock_config_entry: MockConfigEntry, mock_homee: MagicMock
|
|
) -> None:
|
|
"""Setups the integration lock tests."""
|
|
mock_homee.nodes = [build_mock_node("lock.json")]
|
|
mock_homee.get_node_by_id.return_value = mock_homee.nodes[0]
|
|
await setup_integration(hass, mock_config_entry)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("service", "target_value"),
|
|
[
|
|
(SERVICE_LOCK, 1),
|
|
(SERVICE_UNLOCK, 0),
|
|
],
|
|
)
|
|
async def test_lock_services(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_homee: MagicMock,
|
|
service: str,
|
|
target_value: int,
|
|
) -> None:
|
|
"""Test lock services."""
|
|
await setup_lock(hass, mock_config_entry, mock_homee)
|
|
|
|
await hass.services.async_call(
|
|
LOCK_DOMAIN,
|
|
service,
|
|
{ATTR_ENTITY_ID: "lock.test_lock"},
|
|
)
|
|
mock_homee.set_value.assert_called_once_with(1, 1, target_value)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("target_value", "current_value", "expected"),
|
|
[
|
|
(1.0, 1.0, LockState.LOCKED),
|
|
(0.0, 0.0, LockState.UNLOCKED),
|
|
(1.0, 0.0, LockState.LOCKING),
|
|
(0.0, 1.0, LockState.UNLOCKING),
|
|
],
|
|
)
|
|
async def test_lock_state(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_homee: MagicMock,
|
|
target_value: float,
|
|
current_value: float,
|
|
expected: LockState,
|
|
) -> None:
|
|
"""Test lock state."""
|
|
mock_homee.nodes = [build_mock_node("lock.json")]
|
|
mock_homee.get_node_by_id.return_value = mock_homee.nodes[0]
|
|
attribute = mock_homee.nodes[0].attributes[0]
|
|
attribute.target_value = target_value
|
|
attribute.current_value = current_value
|
|
await setup_integration(hass, mock_config_entry)
|
|
|
|
assert hass.states.get("lock.test_lock").state == expected
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("attr_changed_by", "changed_by_id", "expected"),
|
|
[
|
|
(1, 0, "itself-0"),
|
|
(2, 1, "user-testuser"),
|
|
(3, 54, "homeegram-54"),
|
|
(6, 0, "ai-0"),
|
|
],
|
|
)
|
|
async def test_lock_changed_by(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_homee: MagicMock,
|
|
attr_changed_by: int,
|
|
changed_by_id: int,
|
|
expected: str,
|
|
) -> None:
|
|
"""Test lock changed by entries."""
|
|
mock_homee.nodes = [build_mock_node("lock.json")]
|
|
mock_homee.get_node_by_id.return_value = mock_homee.nodes[0]
|
|
mock_homee.get_user_by_id.return_value = MagicMock(username="testuser")
|
|
attribute = mock_homee.nodes[0].attributes[0]
|
|
attribute.changed_by = attr_changed_by
|
|
attribute.changed_by_id = changed_by_id
|
|
await setup_integration(hass, mock_config_entry)
|
|
|
|
assert hass.states.get("lock.test_lock").attributes["changed_by"] == expected
|
|
|
|
|
|
async def test_lock_snapshot(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_homee: MagicMock,
|
|
entity_registry: er.EntityRegistry,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test the lock snapshots."""
|
|
with patch("homeassistant.components.homee.PLATFORMS", [Platform.LOCK]):
|
|
await setup_lock(hass, mock_config_entry, mock_homee)
|
|
|
|
await snapshot_platform(hass, entity_registry, snapshot, mock_config_entry.entry_id)
|