71 lines
2.5 KiB
Python
71 lines
2.5 KiB
Python
"""Test the SFR Box buttons."""
|
|
from collections.abc import Generator
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
from sfrbox_api.exceptions import SFRBoxError
|
|
|
|
from homeassistant.components.button import DOMAIN as BUTTON_DOMAIN, SERVICE_PRESS
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import ATTR_ENTITY_ID, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
from homeassistant.helpers import device_registry as dr, entity_registry as er
|
|
|
|
from . import check_device_registry, check_entities
|
|
from .const import EXPECTED_ENTITIES
|
|
|
|
pytestmark = pytest.mark.usefixtures("system_get_info", "dsl_get_info")
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def override_platforms() -> Generator[None, None, None]:
|
|
"""Override PLATFORMS_WITH_AUTH."""
|
|
with patch(
|
|
"homeassistant.components.sfr_box.PLATFORMS_WITH_AUTH", [Platform.BUTTON]
|
|
), patch("homeassistant.components.sfr_box.coordinator.SFRBox.authenticate"):
|
|
yield
|
|
|
|
|
|
async def test_buttons(
|
|
hass: HomeAssistant,
|
|
config_entry_with_auth: ConfigEntry,
|
|
device_registry: dr.DeviceRegistry,
|
|
entity_registry: er.EntityRegistry,
|
|
) -> None:
|
|
"""Test for SFR Box buttons."""
|
|
await hass.config_entries.async_setup(config_entry_with_auth.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
check_device_registry(device_registry, EXPECTED_ENTITIES["expected_device"])
|
|
|
|
expected_entities = EXPECTED_ENTITIES[Platform.BUTTON]
|
|
assert len(entity_registry.entities) == len(expected_entities)
|
|
|
|
check_entities(hass, entity_registry, expected_entities)
|
|
|
|
# Reboot success
|
|
service_data = {ATTR_ENTITY_ID: "button.sfr_box_reboot"}
|
|
with patch(
|
|
"homeassistant.components.sfr_box.button.SFRBox.system_reboot"
|
|
) as mock_action:
|
|
await hass.services.async_call(
|
|
BUTTON_DOMAIN, SERVICE_PRESS, service_data=service_data, blocking=True
|
|
)
|
|
|
|
assert len(mock_action.mock_calls) == 1
|
|
assert mock_action.mock_calls[0][1] == ()
|
|
|
|
# Reboot failed
|
|
service_data = {ATTR_ENTITY_ID: "button.sfr_box_reboot"}
|
|
with patch(
|
|
"homeassistant.components.sfr_box.button.SFRBox.system_reboot",
|
|
side_effect=SFRBoxError,
|
|
) as mock_action, pytest.raises(HomeAssistantError):
|
|
await hass.services.async_call(
|
|
BUTTON_DOMAIN, SERVICE_PRESS, service_data=service_data, blocking=True
|
|
)
|
|
|
|
assert len(mock_action.mock_calls) == 1
|
|
assert mock_action.mock_calls[0][1] == ()
|