core/tests/components/nice_go/test_switch.py

91 lines
2.5 KiB
Python

"""Nice G.O. switch tests."""
from unittest.mock import AsyncMock
from aiohttp import ClientError
from nice_go import ApiError
import pytest
from homeassistant.components.switch import (
DOMAIN as SWITCH_DOMAIN,
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 . import setup_integration
from tests.common import MockConfigEntry
async def test_turn_on(
hass: HomeAssistant, mock_nice_go: AsyncMock, mock_config_entry: MockConfigEntry
) -> None:
"""Test turn on switch."""
await setup_integration(hass, mock_config_entry, [Platform.SWITCH])
await hass.services.async_call(
SWITCH_DOMAIN,
SERVICE_TURN_ON,
{ATTR_ENTITY_ID: "switch.test_garage_1_vacation_mode"},
blocking=True,
)
mock_nice_go.vacation_mode_on.assert_called_once_with("1")
async def test_turn_off(
hass: HomeAssistant, mock_nice_go: AsyncMock, mock_config_entry: MockConfigEntry
) -> None:
"""Test turn off switch."""
await setup_integration(hass, mock_config_entry, [Platform.SWITCH])
await hass.services.async_call(
SWITCH_DOMAIN,
SERVICE_TURN_OFF,
{ATTR_ENTITY_ID: "switch.test_garage_2_vacation_mode"},
blocking=True,
)
mock_nice_go.vacation_mode_off.assert_called_once_with("2")
@pytest.mark.parametrize(
("action", "error", "entity_id", "expected_error"),
[
(
SERVICE_TURN_OFF,
ApiError,
"switch.test_garage_1_vacation_mode",
"Error while turning off the switch",
),
(
SERVICE_TURN_ON,
ClientError,
"switch.test_garage_2_vacation_mode",
"Error while turning on the switch",
),
],
)
async def test_error(
hass: HomeAssistant,
mock_nice_go: AsyncMock,
mock_config_entry: MockConfigEntry,
action: str,
error: Exception,
entity_id: str,
expected_error: str,
) -> None:
"""Test that errors are handled appropriately."""
await setup_integration(hass, mock_config_entry, [Platform.SWITCH])
mock_nice_go.vacation_mode_on.side_effect = error
mock_nice_go.vacation_mode_off.side_effect = error
with pytest.raises(HomeAssistantError, match=expected_error):
await hass.services.async_call(
SWITCH_DOMAIN,
action,
{ATTR_ENTITY_ID: entity_id},
blocking=True,
)