65 lines
1.9 KiB
Python
65 lines
1.9 KiB
Python
"""Tests for the TotalConnect buttons."""
|
|
|
|
from unittest.mock import AsyncMock, patch
|
|
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.components.button import DOMAIN as BUTTON_DOMAIN, SERVICE_PRESS
|
|
from homeassistant.const import ATTR_ENTITY_ID, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from . import setup_integration
|
|
|
|
from tests.common import MockConfigEntry, snapshot_platform
|
|
|
|
|
|
async def test_entity_registry(
|
|
hass: HomeAssistant,
|
|
entity_registry: er.EntityRegistry,
|
|
mock_client: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test the button is registered in entity registry."""
|
|
with patch("homeassistant.components.totalconnect.PLATFORMS", [Platform.BUTTON]):
|
|
await setup_integration(hass, mock_config_entry)
|
|
|
|
await snapshot_platform(hass, entity_registry, snapshot, mock_config_entry.entry_id)
|
|
|
|
|
|
async def test_bypass_button(
|
|
hass: HomeAssistant,
|
|
mock_client: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_location: AsyncMock,
|
|
) -> None:
|
|
"""Test pushing a bypass button."""
|
|
await setup_integration(hass, mock_config_entry)
|
|
await hass.services.async_call(
|
|
BUTTON_DOMAIN,
|
|
SERVICE_PRESS,
|
|
{ATTR_ENTITY_ID: "button.security_bypass"},
|
|
blocking=True,
|
|
)
|
|
|
|
assert mock_location.zones[2].bypass.call_count == 1
|
|
|
|
|
|
async def test_clear_button(
|
|
hass: HomeAssistant,
|
|
mock_client: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_location: AsyncMock,
|
|
) -> None:
|
|
"""Test pushing the clear bypass button."""
|
|
await setup_integration(hass, mock_config_entry)
|
|
await hass.services.async_call(
|
|
BUTTON_DOMAIN,
|
|
SERVICE_PRESS,
|
|
{ATTR_ENTITY_ID: "button.test_clear_bypass"},
|
|
blocking=True,
|
|
)
|
|
|
|
assert mock_location.clear_bypass.call_count == 1
|