124 lines
3.6 KiB
Python
124 lines
3.6 KiB
Python
"""Tests for the Plugwise switch integration."""
|
|
|
|
from plugwise.exceptions import PlugwiseException
|
|
|
|
from homeassistant.config_entries import ConfigEntryState
|
|
|
|
from tests.components.plugwise.common import async_init_integration
|
|
|
|
|
|
async def test_adam_climate_switch_entities(hass, mock_smile_adam):
|
|
"""Test creation of climate related switch entities."""
|
|
entry = await async_init_integration(hass, mock_smile_adam)
|
|
assert entry.state is ConfigEntryState.LOADED
|
|
|
|
state = hass.states.get("switch.cv_pomp")
|
|
assert str(state.state) == "on"
|
|
|
|
state = hass.states.get("switch.fibaro_hc2")
|
|
assert str(state.state) == "on"
|
|
|
|
|
|
async def test_adam_climate_switch_negative_testing(hass, mock_smile_adam):
|
|
"""Test exceptions of climate related switch entities."""
|
|
mock_smile_adam.set_relay_state.side_effect = PlugwiseException
|
|
entry = await async_init_integration(hass, mock_smile_adam)
|
|
assert entry.state is ConfigEntryState.LOADED
|
|
|
|
await hass.services.async_call(
|
|
"switch",
|
|
"turn_off",
|
|
{"entity_id": "switch.cv_pomp"},
|
|
blocking=True,
|
|
)
|
|
state = hass.states.get("switch.cv_pomp")
|
|
assert str(state.state) == "on"
|
|
|
|
await hass.services.async_call(
|
|
"switch",
|
|
"turn_on",
|
|
{"entity_id": "switch.fibaro_hc2"},
|
|
blocking=True,
|
|
)
|
|
state = hass.states.get("switch.fibaro_hc2")
|
|
assert str(state.state) == "on"
|
|
|
|
|
|
async def test_adam_climate_switch_changes(hass, mock_smile_adam):
|
|
"""Test changing of climate related switch entities."""
|
|
entry = await async_init_integration(hass, mock_smile_adam)
|
|
assert entry.state is ConfigEntryState.LOADED
|
|
|
|
await hass.services.async_call(
|
|
"switch",
|
|
"turn_off",
|
|
{"entity_id": "switch.cv_pomp"},
|
|
blocking=True,
|
|
)
|
|
state = hass.states.get("switch.cv_pomp")
|
|
assert str(state.state) == "off"
|
|
|
|
await hass.services.async_call(
|
|
"switch",
|
|
"toggle",
|
|
{"entity_id": "switch.fibaro_hc2"},
|
|
blocking=True,
|
|
)
|
|
state = hass.states.get("switch.fibaro_hc2")
|
|
assert str(state.state) == "off"
|
|
|
|
await hass.services.async_call(
|
|
"switch",
|
|
"toggle",
|
|
{"entity_id": "switch.fibaro_hc2"},
|
|
blocking=True,
|
|
)
|
|
state = hass.states.get("switch.fibaro_hc2")
|
|
assert str(state.state) == "on"
|
|
|
|
|
|
async def test_stretch_switch_entities(hass, mock_stretch):
|
|
"""Test creation of climate related switch entities."""
|
|
entry = await async_init_integration(hass, mock_stretch)
|
|
assert entry.state is ConfigEntryState.LOADED
|
|
|
|
state = hass.states.get("switch.koelkast_92c4a")
|
|
assert str(state.state) == "on"
|
|
|
|
state = hass.states.get("switch.droger_52559")
|
|
assert str(state.state) == "on"
|
|
|
|
|
|
async def test_stretch_switch_changes(hass, mock_stretch):
|
|
"""Test changing of power related switch entities."""
|
|
entry = await async_init_integration(hass, mock_stretch)
|
|
assert entry.state is ConfigEntryState.LOADED
|
|
|
|
await hass.services.async_call(
|
|
"switch",
|
|
"turn_off",
|
|
{"entity_id": "switch.koelkast_92c4a"},
|
|
blocking=True,
|
|
)
|
|
|
|
state = hass.states.get("switch.koelkast_92c4a")
|
|
assert str(state.state) == "off"
|
|
|
|
await hass.services.async_call(
|
|
"switch",
|
|
"toggle",
|
|
{"entity_id": "switch.droger_52559"},
|
|
blocking=True,
|
|
)
|
|
state = hass.states.get("switch.droger_52559")
|
|
assert str(state.state) == "off"
|
|
|
|
await hass.services.async_call(
|
|
"switch",
|
|
"toggle",
|
|
{"entity_id": "switch.droger_52559"},
|
|
blocking=True,
|
|
)
|
|
state = hass.states.get("switch.droger_52559")
|
|
assert str(state.state) == "on"
|