mirror of https://github.com/home-assistant/core
144 lines
4.8 KiB
Python
144 lines
4.8 KiB
Python
"""Tests for button platform."""
|
|
|
|
import datetime
|
|
from unittest.mock import AsyncMock, patch
|
|
|
|
from aioautomower.exceptions import ApiException
|
|
from aioautomower.model import MowerAttributes
|
|
from freezegun.api import FrozenDateTimeFactory
|
|
import pytest
|
|
from syrupy import SnapshotAssertion
|
|
|
|
from homeassistant.components.button import DOMAIN as BUTTON_DOMAIN, SERVICE_PRESS
|
|
from homeassistant.components.husqvarna_automower.coordinator import SCAN_INTERVAL
|
|
from homeassistant.const import (
|
|
ATTR_ENTITY_ID,
|
|
STATE_UNAVAILABLE,
|
|
STATE_UNKNOWN,
|
|
Platform,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from . import setup_integration
|
|
from .const import TEST_MOWER_ID
|
|
|
|
from tests.common import MockConfigEntry, async_fire_time_changed, snapshot_platform
|
|
|
|
|
|
@pytest.mark.freeze_time(datetime.datetime(2023, 6, 5, tzinfo=datetime.UTC))
|
|
async def test_button_states_and_commands(
|
|
hass: HomeAssistant,
|
|
mock_automower_client: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
freezer: FrozenDateTimeFactory,
|
|
values: dict[str, MowerAttributes],
|
|
) -> None:
|
|
"""Test error confirm button command."""
|
|
entity_id = "button.test_mower_1_confirm_error"
|
|
await setup_integration(hass, mock_config_entry)
|
|
state = hass.states.get(entity_id)
|
|
assert state.name == "Test Mower 1 Confirm error"
|
|
assert state.state == STATE_UNAVAILABLE
|
|
|
|
values[TEST_MOWER_ID].mower.is_error_confirmable = None
|
|
mock_automower_client.get_status.return_value = values
|
|
freezer.tick(SCAN_INTERVAL)
|
|
async_fire_time_changed(hass)
|
|
await hass.async_block_till_done()
|
|
state = hass.states.get(entity_id)
|
|
assert state.state == STATE_UNAVAILABLE
|
|
|
|
values[TEST_MOWER_ID].mower.is_error_confirmable = True
|
|
mock_automower_client.get_status.return_value = values
|
|
freezer.tick(SCAN_INTERVAL)
|
|
async_fire_time_changed(hass)
|
|
await hass.async_block_till_done()
|
|
state = hass.states.get(entity_id)
|
|
assert state.state == STATE_UNKNOWN
|
|
|
|
await hass.services.async_call(
|
|
domain="button",
|
|
service=SERVICE_PRESS,
|
|
target={ATTR_ENTITY_ID: entity_id},
|
|
blocking=True,
|
|
)
|
|
mocked_method = getattr(mock_automower_client.commands, "error_confirm")
|
|
mocked_method.assert_called_once_with(TEST_MOWER_ID)
|
|
await hass.async_block_till_done()
|
|
state = hass.states.get(entity_id)
|
|
assert state.state == "2023-06-05T00:16:00+00:00"
|
|
getattr(mock_automower_client.commands, "error_confirm").side_effect = ApiException(
|
|
"Test error"
|
|
)
|
|
with pytest.raises(
|
|
HomeAssistantError,
|
|
match="Failed to send command: Test error",
|
|
):
|
|
await hass.services.async_call(
|
|
domain="button",
|
|
service=SERVICE_PRESS,
|
|
target={ATTR_ENTITY_ID: entity_id},
|
|
blocking=True,
|
|
)
|
|
|
|
|
|
@pytest.mark.freeze_time(datetime.datetime(2024, 2, 29, 11, tzinfo=datetime.UTC))
|
|
async def test_sync_clock(
|
|
hass: HomeAssistant,
|
|
mock_automower_client: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
freezer: FrozenDateTimeFactory,
|
|
values: dict[str, MowerAttributes],
|
|
) -> None:
|
|
"""Test sync clock button command."""
|
|
entity_id = "button.test_mower_1_sync_clock"
|
|
await setup_integration(hass, mock_config_entry)
|
|
state = hass.states.get(entity_id)
|
|
assert state.name == "Test Mower 1 Sync clock"
|
|
|
|
mock_automower_client.get_status.return_value = values
|
|
|
|
await hass.services.async_call(
|
|
BUTTON_DOMAIN,
|
|
SERVICE_PRESS,
|
|
{ATTR_ENTITY_ID: entity_id},
|
|
blocking=True,
|
|
)
|
|
mocked_method = mock_automower_client.commands.set_datetime
|
|
mocked_method.assert_called_once_with(TEST_MOWER_ID)
|
|
await hass.async_block_till_done()
|
|
state = hass.states.get(entity_id)
|
|
assert state.state == "2024-02-29T11:00:00+00:00"
|
|
mock_automower_client.commands.set_datetime.side_effect = ApiException("Test error")
|
|
with pytest.raises(
|
|
HomeAssistantError,
|
|
match="Failed to send command: Test error",
|
|
):
|
|
await hass.services.async_call(
|
|
BUTTON_DOMAIN,
|
|
SERVICE_PRESS,
|
|
{ATTR_ENTITY_ID: entity_id},
|
|
blocking=True,
|
|
)
|
|
|
|
|
|
@pytest.mark.usefixtures("entity_registry_enabled_by_default")
|
|
async def test_button_snapshot(
|
|
hass: HomeAssistant,
|
|
entity_registry: er.EntityRegistry,
|
|
mock_automower_client: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Snapshot tests of the button entities."""
|
|
with patch(
|
|
"homeassistant.components.husqvarna_automower.PLATFORMS",
|
|
[Platform.BUTTON],
|
|
):
|
|
await setup_integration(hass, mock_config_entry)
|
|
await snapshot_platform(
|
|
hass, entity_registry, snapshot, mock_config_entry.entry_id
|
|
)
|