mirror of https://github.com/home-assistant/core
111 lines
3.4 KiB
Python
111 lines
3.4 KiB
Python
"""Test the Honeywell humidity domain."""
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.components.humidifier import (
|
|
ATTR_HUMIDITY,
|
|
DOMAIN as HUMIDIFIER_DOMAIN,
|
|
SERVICE_SET_HUMIDITY,
|
|
)
|
|
from homeassistant.const import ATTR_ENTITY_ID, SERVICE_TURN_OFF, SERVICE_TURN_ON
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from . import init_integration
|
|
|
|
|
|
async def test_humidifier_service_calls(
|
|
hass: HomeAssistant, device: MagicMock, config_entry: MagicMock
|
|
) -> None:
|
|
"""Test the setup of the climate entities when there are no additional options available."""
|
|
device.has_humidifier = True
|
|
await init_integration(hass, config_entry)
|
|
entity_id = f"humidifier.{device.name}_humidifier"
|
|
assert hass.states.get(f"humidifier.{device.name}_dehumidifier") is None
|
|
|
|
await hass.services.async_call(
|
|
HUMIDIFIER_DOMAIN,
|
|
SERVICE_TURN_ON,
|
|
{ATTR_ENTITY_ID: entity_id},
|
|
blocking=True,
|
|
)
|
|
device.set_humidifier_auto.assert_called_once()
|
|
|
|
await hass.services.async_call(
|
|
HUMIDIFIER_DOMAIN,
|
|
SERVICE_TURN_OFF,
|
|
{ATTR_ENTITY_ID: entity_id},
|
|
blocking=True,
|
|
)
|
|
device.set_humidifier_off.assert_called_once()
|
|
|
|
await hass.services.async_call(
|
|
HUMIDIFIER_DOMAIN,
|
|
SERVICE_SET_HUMIDITY,
|
|
{ATTR_ENTITY_ID: entity_id, ATTR_HUMIDITY: 40},
|
|
blocking=True,
|
|
)
|
|
device.set_humidifier_setpoint.assert_called_once_with(40)
|
|
|
|
|
|
async def test_dehumidifier_service_calls(
|
|
hass: HomeAssistant, device: MagicMock, config_entry: MagicMock
|
|
) -> None:
|
|
"""Test the setup of the climate entities when there are no additional options available."""
|
|
device.has_dehumidifier = True
|
|
await init_integration(hass, config_entry)
|
|
entity_id = f"humidifier.{device.name}_dehumidifier"
|
|
assert hass.states.get(f"humidifier.{device.name}_humidifier") is None
|
|
|
|
await hass.services.async_call(
|
|
HUMIDIFIER_DOMAIN,
|
|
SERVICE_TURN_ON,
|
|
{ATTR_ENTITY_ID: entity_id},
|
|
blocking=True,
|
|
)
|
|
device.set_dehumidifier_auto.assert_called_once()
|
|
|
|
await hass.services.async_call(
|
|
HUMIDIFIER_DOMAIN,
|
|
SERVICE_TURN_OFF,
|
|
{ATTR_ENTITY_ID: entity_id},
|
|
blocking=True,
|
|
)
|
|
device.set_dehumidifier_off.assert_called_once()
|
|
|
|
await hass.services.async_call(
|
|
HUMIDIFIER_DOMAIN,
|
|
SERVICE_SET_HUMIDITY,
|
|
{ATTR_ENTITY_ID: entity_id, ATTR_HUMIDITY: 40},
|
|
blocking=True,
|
|
)
|
|
device.set_dehumidifier_setpoint.assert_called_once_with(40)
|
|
|
|
|
|
async def test_static_attributes(
|
|
hass: HomeAssistant,
|
|
entity_registry: er.EntityRegistry,
|
|
device: MagicMock,
|
|
config_entry: MagicMock,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test static humidifier attributes."""
|
|
device.has_dehumidifier = True
|
|
device.has_humidifier = True
|
|
await init_integration(hass, config_entry)
|
|
|
|
entity_id_dehumidifier = f"humidifier.{device.name}_dehumidifier"
|
|
entity_id_humidifier = f"humidifier.{device.name}_humidifier"
|
|
entry = entity_registry.async_get(entity_id_dehumidifier)
|
|
assert entry
|
|
|
|
state = hass.states.get(entity_id_dehumidifier)
|
|
|
|
assert state == snapshot(name="dehumidifier")
|
|
|
|
state = hass.states.get(entity_id_humidifier)
|
|
|
|
assert state == snapshot(name="humidifier")
|