mirror of
https://github.com/home-assistant/core.git
synced 2026-02-21 10:27:52 +00:00
47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
"""Test the Sunricher DALI button platform."""
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
import pytest
|
|
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 tests.common import MockConfigEntry, snapshot_platform
|
|
|
|
|
|
@pytest.fixture
|
|
def platforms() -> list[Platform]:
|
|
"""Fixture to specify which platforms to test."""
|
|
return [Platform.BUTTON]
|
|
|
|
|
|
@pytest.mark.usefixtures("init_integration")
|
|
async def test_entities(
|
|
hass: HomeAssistant,
|
|
snapshot: SnapshotAssertion,
|
|
entity_registry: er.EntityRegistry,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test the button entities."""
|
|
await snapshot_platform(hass, entity_registry, snapshot, mock_config_entry.entry_id)
|
|
|
|
|
|
@pytest.mark.usefixtures("init_integration")
|
|
async def test_identify_button_press(
|
|
hass: HomeAssistant,
|
|
mock_devices: list[MagicMock],
|
|
) -> None:
|
|
"""Test pressing the identify button calls device.identify()."""
|
|
await hass.services.async_call(
|
|
BUTTON_DOMAIN,
|
|
SERVICE_PRESS,
|
|
{ATTR_ENTITY_ID: "button.dimmer_0000_02"},
|
|
blocking=True,
|
|
)
|
|
|
|
mock_devices[0].identify.assert_called_once()
|