mirror of https://github.com/home-assistant/core
104 lines
2.7 KiB
Python
104 lines
2.7 KiB
Python
"""Tests for the Slide Local switch platform."""
|
|
|
|
from unittest.mock import AsyncMock
|
|
|
|
from goslideapi.goslideapi import (
|
|
AuthenticationFailed,
|
|
ClientConnectionError,
|
|
ClientTimeoutError,
|
|
DigestAuthCalcError,
|
|
)
|
|
import pytest
|
|
from syrupy import SnapshotAssertion
|
|
|
|
from homeassistant.components.switch import (
|
|
DOMAIN as SWITCH_DOMAIN,
|
|
SERVICE_TOGGLE,
|
|
SERVICE_TURN_OFF,
|
|
SERVICE_TURN_ON,
|
|
)
|
|
from homeassistant.const import ATTR_ENTITY_ID, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import HomeAssistantError
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from . import setup_platform
|
|
|
|
from tests.common import MockConfigEntry, snapshot_platform
|
|
|
|
|
|
async def test_all_entities(
|
|
hass: HomeAssistant,
|
|
snapshot: SnapshotAssertion,
|
|
mock_slide_api: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
entity_registry: er.EntityRegistry,
|
|
) -> None:
|
|
"""Test all entities."""
|
|
await setup_platform(hass, mock_config_entry, [Platform.SWITCH])
|
|
|
|
await snapshot_platform(hass, entity_registry, snapshot, mock_config_entry.entry_id)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("service"),
|
|
[
|
|
SERVICE_TURN_OFF,
|
|
SERVICE_TURN_ON,
|
|
SERVICE_TOGGLE,
|
|
],
|
|
)
|
|
async def test_services(
|
|
hass: HomeAssistant,
|
|
service: str,
|
|
mock_slide_api: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test switch."""
|
|
await setup_platform(hass, mock_config_entry, [Platform.SWITCH])
|
|
|
|
await hass.services.async_call(
|
|
SWITCH_DOMAIN,
|
|
service,
|
|
{
|
|
ATTR_ENTITY_ID: "switch.slide_bedroom_touchgo",
|
|
},
|
|
blocking=True,
|
|
)
|
|
mock_slide_api.slide_set_touchgo.assert_called_once()
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("exception", "service"),
|
|
[
|
|
(ClientConnectionError, SERVICE_TURN_OFF),
|
|
(ClientTimeoutError, SERVICE_TURN_ON),
|
|
(AuthenticationFailed, SERVICE_TURN_OFF),
|
|
(DigestAuthCalcError, SERVICE_TURN_ON),
|
|
],
|
|
)
|
|
async def test_service_exception(
|
|
hass: HomeAssistant,
|
|
exception: Exception,
|
|
service: str,
|
|
mock_slide_api: AsyncMock,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test pressing button."""
|
|
await setup_platform(hass, mock_config_entry, [Platform.SWITCH])
|
|
|
|
mock_slide_api.slide_set_touchgo.side_effect = exception
|
|
|
|
with pytest.raises(
|
|
HomeAssistantError,
|
|
match=f"Error while sending the request setting Touch&Go to {service[5:]} to the device",
|
|
):
|
|
await hass.services.async_call(
|
|
SWITCH_DOMAIN,
|
|
service,
|
|
{
|
|
ATTR_ENTITY_ID: "switch.slide_bedroom_touchgo",
|
|
},
|
|
blocking=True,
|
|
)
|