mirror of https://github.com/home-assistant/core
138 lines
4.4 KiB
Python
138 lines
4.4 KiB
Python
"""Test the Switcher switch platform."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
from aioswitcher.api import Command, SwitcherBaseResponse
|
|
from aioswitcher.device import DeviceState
|
|
import pytest
|
|
|
|
from homeassistant.components.switch import DOMAIN as SWITCH_DOMAIN
|
|
from homeassistant.const import (
|
|
ATTR_ENTITY_ID,
|
|
SERVICE_TURN_OFF,
|
|
SERVICE_TURN_ON,
|
|
STATE_OFF,
|
|
STATE_ON,
|
|
STATE_UNAVAILABLE,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.util import slugify
|
|
|
|
from . import init_integration
|
|
from .consts import DUMMY_PLUG_DEVICE, DUMMY_WATER_HEATER_DEVICE
|
|
|
|
|
|
@pytest.mark.parametrize("mock_bridge", [[DUMMY_WATER_HEATER_DEVICE]], indirect=True)
|
|
async def test_switch(
|
|
hass: HomeAssistant, mock_bridge, mock_api, monkeypatch: pytest.MonkeyPatch
|
|
) -> None:
|
|
"""Test the switch."""
|
|
await init_integration(hass)
|
|
assert mock_bridge
|
|
|
|
device = DUMMY_WATER_HEATER_DEVICE
|
|
entity_id = f"{SWITCH_DOMAIN}.{slugify(device.name)}"
|
|
|
|
# Test initial state - on
|
|
state = hass.states.get(entity_id)
|
|
assert state.state == STATE_ON
|
|
|
|
# Test state change on --> off
|
|
monkeypatch.setattr(device, "device_state", DeviceState.OFF)
|
|
mock_bridge.mock_callbacks([DUMMY_WATER_HEATER_DEVICE])
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get(entity_id)
|
|
assert state.state == STATE_OFF
|
|
|
|
# Test turning on
|
|
with patch(
|
|
"homeassistant.components.switcher_kis.switch.SwitcherApi.control_device",
|
|
) as mock_control_device:
|
|
await hass.services.async_call(
|
|
SWITCH_DOMAIN, SERVICE_TURN_ON, {ATTR_ENTITY_ID: entity_id}, blocking=True
|
|
)
|
|
|
|
assert mock_api.call_count == 2
|
|
mock_control_device.assert_called_once_with(Command.ON)
|
|
state = hass.states.get(entity_id)
|
|
assert state.state == STATE_ON
|
|
|
|
# Test turning off
|
|
with patch(
|
|
"homeassistant.components.switcher_kis.switch.SwitcherApi.control_device"
|
|
) as mock_control_device:
|
|
await hass.services.async_call(
|
|
SWITCH_DOMAIN, SERVICE_TURN_OFF, {ATTR_ENTITY_ID: entity_id}, blocking=True
|
|
)
|
|
|
|
assert mock_api.call_count == 4
|
|
mock_control_device.assert_called_once_with(Command.OFF)
|
|
state = hass.states.get(entity_id)
|
|
assert state.state == STATE_OFF
|
|
|
|
|
|
@pytest.mark.parametrize("mock_bridge", [[DUMMY_PLUG_DEVICE]], indirect=True)
|
|
async def test_switch_control_fail(
|
|
hass: HomeAssistant,
|
|
mock_bridge,
|
|
mock_api,
|
|
monkeypatch: pytest.MonkeyPatch,
|
|
caplog: pytest.LogCaptureFixture,
|
|
) -> None:
|
|
"""Test switch control fail."""
|
|
await init_integration(hass)
|
|
assert mock_bridge
|
|
|
|
device = DUMMY_PLUG_DEVICE
|
|
entity_id = f"{SWITCH_DOMAIN}.{slugify(device.name)}"
|
|
|
|
# Test initial state - off
|
|
monkeypatch.setattr(device, "device_state", DeviceState.OFF)
|
|
mock_bridge.mock_callbacks([DUMMY_PLUG_DEVICE])
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get(entity_id)
|
|
assert state.state == STATE_OFF
|
|
|
|
# Test exception during turn on
|
|
with patch(
|
|
"homeassistant.components.switcher_kis.switch.SwitcherApi.control_device",
|
|
side_effect=RuntimeError("fake error"),
|
|
) as mock_control_device:
|
|
await hass.services.async_call(
|
|
SWITCH_DOMAIN, SERVICE_TURN_ON, {ATTR_ENTITY_ID: entity_id}, blocking=True
|
|
)
|
|
|
|
assert mock_api.call_count == 2
|
|
mock_control_device.assert_called_once_with(Command.ON)
|
|
assert (
|
|
f"Call api for {device.name} failed, api: 'control_device'" in caplog.text
|
|
)
|
|
state = hass.states.get(entity_id)
|
|
assert state.state == STATE_UNAVAILABLE
|
|
|
|
# Make device available again
|
|
mock_bridge.mock_callbacks([DUMMY_PLUG_DEVICE])
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get(entity_id)
|
|
assert state.state == STATE_OFF
|
|
|
|
# Test error response during turn on
|
|
with patch(
|
|
"homeassistant.components.switcher_kis.switch.SwitcherApi.control_device",
|
|
return_value=SwitcherBaseResponse(None),
|
|
) as mock_control_device:
|
|
await hass.services.async_call(
|
|
SWITCH_DOMAIN, SERVICE_TURN_ON, {ATTR_ENTITY_ID: entity_id}, blocking=True
|
|
)
|
|
|
|
assert mock_api.call_count == 4
|
|
mock_control_device.assert_called_once_with(Command.ON)
|
|
assert (
|
|
f"Call api for {device.name} failed, api: 'control_device'" in caplog.text
|
|
)
|
|
state = hass.states.get(entity_id)
|
|
assert state.state == STATE_UNAVAILABLE
|