90 lines
2.7 KiB
Python
90 lines
2.7 KiB
Python
"""Tests for Shelly button platform."""
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
from homeassistant.components.button import DOMAIN as BUTTON_DOMAIN, SERVICE_PRESS
|
|
from homeassistant.components.shelly.const import DOMAIN
|
|
from homeassistant.const import ATTR_ENTITY_ID, STATE_UNKNOWN
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from . import init_integration
|
|
|
|
|
|
async def test_block_button(hass: HomeAssistant, mock_block_device) -> None:
|
|
"""Test block device reboot button."""
|
|
await init_integration(hass, 1)
|
|
|
|
# reboot button
|
|
assert hass.states.get("button.test_name_reboot").state == STATE_UNKNOWN
|
|
|
|
await hass.services.async_call(
|
|
BUTTON_DOMAIN,
|
|
SERVICE_PRESS,
|
|
{ATTR_ENTITY_ID: "button.test_name_reboot"},
|
|
blocking=True,
|
|
)
|
|
assert mock_block_device.trigger_reboot.call_count == 1
|
|
|
|
|
|
async def test_rpc_button(hass: HomeAssistant, mock_rpc_device) -> None:
|
|
"""Test rpc device OTA button."""
|
|
await init_integration(hass, 2)
|
|
|
|
# reboot button
|
|
assert hass.states.get("button.test_name_reboot").state == STATE_UNKNOWN
|
|
|
|
await hass.services.async_call(
|
|
BUTTON_DOMAIN,
|
|
SERVICE_PRESS,
|
|
{ATTR_ENTITY_ID: "button.test_name_reboot"},
|
|
blocking=True,
|
|
)
|
|
assert mock_rpc_device.trigger_reboot.call_count == 1
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("gen", "old_unique_id", "new_unique_id", "migration"),
|
|
[
|
|
(2, "test_name_reboot", "123456789ABC_reboot", True),
|
|
(1, "test_name_reboot", "123456789ABC_reboot", True),
|
|
(2, "123456789ABC_reboot", "123456789ABC_reboot", False),
|
|
],
|
|
)
|
|
async def test_migrate_unique_id(
|
|
hass: HomeAssistant,
|
|
mock_block_device,
|
|
mock_rpc_device,
|
|
caplog: pytest.LogCaptureFixture,
|
|
gen: int,
|
|
old_unique_id: str,
|
|
new_unique_id: str,
|
|
migration: bool,
|
|
) -> None:
|
|
"""Test migration of unique_id."""
|
|
entry = await init_integration(hass, gen, skip_setup=True)
|
|
|
|
entity_registry = er.async_get(hass)
|
|
entity: er.RegistryEntry = entity_registry.async_get_or_create(
|
|
suggested_object_id="test_name_reboot",
|
|
disabled_by=None,
|
|
domain=BUTTON_DOMAIN,
|
|
platform=DOMAIN,
|
|
unique_id=old_unique_id,
|
|
config_entry=entry,
|
|
)
|
|
assert entity.unique_id == old_unique_id
|
|
|
|
await hass.config_entries.async_setup(entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
entity_entry = entity_registry.async_get("button.test_name_reboot")
|
|
assert entity_entry
|
|
assert entity_entry.unique_id == new_unique_id
|
|
|
|
assert (
|
|
bool("Migrating unique_id for button.test_name_reboot" in caplog.text)
|
|
== migration
|
|
)
|