core/tests/components/netatmo/test_cover.py

111 lines
3.2 KiB
Python

"""The tests for Netatmo cover."""
from unittest.mock import patch
from homeassistant.components.cover import (
ATTR_POSITION,
DOMAIN as COVER_DOMAIN,
SERVICE_CLOSE_COVER,
SERVICE_OPEN_COVER,
SERVICE_SET_COVER_POSITION,
SERVICE_STOP_COVER,
)
from homeassistant.const import ATTR_ENTITY_ID
from .common import selected_platforms
async def test_cover_setup_and_services(hass, config_entry, netatmo_auth):
"""Test setup and services."""
with selected_platforms(["cover"]):
assert await hass.config_entries.async_setup(config_entry.entry_id)
await hass.async_block_till_done()
switch_entity = "cover.entrance_blinds"
assert hass.states.get(switch_entity).state == "closed"
# Test cover open
with patch("pyatmo.home.Home.async_set_state") as mock_set_state:
await hass.services.async_call(
COVER_DOMAIN,
SERVICE_OPEN_COVER,
{ATTR_ENTITY_ID: switch_entity},
blocking=True,
)
await hass.async_block_till_done()
mock_set_state.assert_called_once_with(
{
"modules": [
{
"id": "0009999992",
"target_position": 100,
"bridge": "12:34:56:30:d5:d4",
}
]
}
)
# Test cover close
with patch("pyatmo.home.Home.async_set_state") as mock_set_state:
await hass.services.async_call(
COVER_DOMAIN,
SERVICE_CLOSE_COVER,
{ATTR_ENTITY_ID: switch_entity},
blocking=True,
)
await hass.async_block_till_done()
mock_set_state.assert_called_once_with(
{
"modules": [
{
"id": "0009999992",
"target_position": 0,
"bridge": "12:34:56:30:d5:d4",
}
]
}
)
# Test stop cover
with patch("pyatmo.home.Home.async_set_state") as mock_set_state:
await hass.services.async_call(
COVER_DOMAIN,
SERVICE_STOP_COVER,
{ATTR_ENTITY_ID: switch_entity},
blocking=True,
)
await hass.async_block_till_done()
mock_set_state.assert_called_once_with(
{
"modules": [
{
"id": "0009999992",
"target_position": -1,
"bridge": "12:34:56:30:d5:d4",
}
]
}
)
# Test set cover position
with patch("pyatmo.home.Home.async_set_state") as mock_set_state:
await hass.services.async_call(
COVER_DOMAIN,
SERVICE_SET_COVER_POSITION,
{ATTR_ENTITY_ID: switch_entity, ATTR_POSITION: 50},
blocking=True,
)
await hass.async_block_till_done()
mock_set_state.assert_called_once_with(
{
"modules": [
{
"id": "0009999992",
"target_position": 50,
"bridge": "12:34:56:30:d5:d4",
}
]
}
)