mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 10:59:40 +00:00
234 lines
7.3 KiB
Python
234 lines
7.3 KiB
Python
"""Test Tuya humidifier platform."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from unittest.mock import patch
|
|
|
|
import pytest
|
|
from syrupy.assertion import SnapshotAssertion
|
|
from tuya_sharing import CustomerDevice
|
|
|
|
from homeassistant.components.humidifier import (
|
|
ATTR_HUMIDITY,
|
|
DOMAIN as HUMIDIFIER_DOMAIN,
|
|
SERVICE_SET_HUMIDITY,
|
|
SERVICE_TURN_OFF,
|
|
SERVICE_TURN_ON,
|
|
)
|
|
from homeassistant.components.tuya import ManagerCompat
|
|
from homeassistant.const import ATTR_ENTITY_ID, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.exceptions import ServiceValidationError
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from . import initialize_entry
|
|
|
|
from tests.common import MockConfigEntry, snapshot_platform
|
|
|
|
|
|
@patch("homeassistant.components.tuya.PLATFORMS", [Platform.HUMIDIFIER])
|
|
async def test_platform_setup_and_discovery(
|
|
hass: HomeAssistant,
|
|
mock_manager: ManagerCompat,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_devices: list[CustomerDevice],
|
|
entity_registry: er.EntityRegistry,
|
|
snapshot: SnapshotAssertion,
|
|
) -> None:
|
|
"""Test platform setup and discovery."""
|
|
await initialize_entry(hass, mock_manager, mock_config_entry, mock_devices)
|
|
|
|
await snapshot_platform(hass, entity_registry, snapshot, mock_config_entry.entry_id)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"mock_device_code",
|
|
["cs_zibqa9dutqyaxym2"],
|
|
)
|
|
async def test_turn_on(
|
|
hass: HomeAssistant,
|
|
mock_manager: ManagerCompat,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_device: CustomerDevice,
|
|
) -> None:
|
|
"""Test turn on service."""
|
|
entity_id = "humidifier.dehumidifier"
|
|
await initialize_entry(hass, mock_manager, mock_config_entry, mock_device)
|
|
|
|
state = hass.states.get(entity_id)
|
|
assert state is not None, f"{entity_id} does not exist"
|
|
await hass.services.async_call(
|
|
HUMIDIFIER_DOMAIN,
|
|
SERVICE_TURN_ON,
|
|
{ATTR_ENTITY_ID: entity_id},
|
|
blocking=True,
|
|
)
|
|
mock_manager.send_commands.assert_called_once_with(
|
|
mock_device.id, [{"code": "switch", "value": True}]
|
|
)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"mock_device_code",
|
|
["cs_zibqa9dutqyaxym2"],
|
|
)
|
|
async def test_turn_off(
|
|
hass: HomeAssistant,
|
|
mock_manager: ManagerCompat,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_device: CustomerDevice,
|
|
) -> None:
|
|
"""Test turn off service."""
|
|
entity_id = "humidifier.dehumidifier"
|
|
await initialize_entry(hass, mock_manager, mock_config_entry, mock_device)
|
|
|
|
state = hass.states.get(entity_id)
|
|
assert state is not None, f"{entity_id} does not exist"
|
|
await hass.services.async_call(
|
|
HUMIDIFIER_DOMAIN,
|
|
SERVICE_TURN_OFF,
|
|
{ATTR_ENTITY_ID: entity_id},
|
|
blocking=True,
|
|
)
|
|
mock_manager.send_commands.assert_called_once_with(
|
|
mock_device.id, [{"code": "switch", "value": False}]
|
|
)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"mock_device_code",
|
|
["cs_zibqa9dutqyaxym2"],
|
|
)
|
|
async def test_set_humidity(
|
|
hass: HomeAssistant,
|
|
mock_manager: ManagerCompat,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_device: CustomerDevice,
|
|
) -> None:
|
|
"""Test set humidity service."""
|
|
entity_id = "humidifier.dehumidifier"
|
|
await initialize_entry(hass, mock_manager, mock_config_entry, mock_device)
|
|
|
|
state = hass.states.get(entity_id)
|
|
assert state is not None, f"{entity_id} does not exist"
|
|
await hass.services.async_call(
|
|
HUMIDIFIER_DOMAIN,
|
|
SERVICE_SET_HUMIDITY,
|
|
{
|
|
ATTR_ENTITY_ID: entity_id,
|
|
ATTR_HUMIDITY: 50,
|
|
},
|
|
blocking=True,
|
|
)
|
|
mock_manager.send_commands.assert_called_once_with(
|
|
mock_device.id, [{"code": "dehumidify_set_value", "value": 50}]
|
|
)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"mock_device_code",
|
|
["cs_zibqa9dutqyaxym2"],
|
|
)
|
|
async def test_turn_on_unsupported(
|
|
hass: HomeAssistant,
|
|
mock_manager: ManagerCompat,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_device: CustomerDevice,
|
|
) -> None:
|
|
"""Test turn on service (not supported by this device)."""
|
|
# Remove switch control - but keep other functionality
|
|
mock_device.status.pop("switch")
|
|
mock_device.function.pop("switch")
|
|
mock_device.status_range.pop("switch")
|
|
|
|
entity_id = "humidifier.dehumidifier"
|
|
await initialize_entry(hass, mock_manager, mock_config_entry, mock_device)
|
|
|
|
state = hass.states.get(entity_id)
|
|
assert state is not None, f"{entity_id} does not exist"
|
|
with pytest.raises(ServiceValidationError) as err:
|
|
await hass.services.async_call(
|
|
HUMIDIFIER_DOMAIN,
|
|
SERVICE_TURN_ON,
|
|
{ATTR_ENTITY_ID: entity_id},
|
|
blocking=True,
|
|
)
|
|
assert err.value.translation_key == "action_dpcode_not_found"
|
|
assert err.value.translation_placeholders == {
|
|
"expected": "['switch', 'switch_spray']",
|
|
"available": ("['child_lock', 'countdown_set', 'dehumidify_set_value']"),
|
|
}
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"mock_device_code",
|
|
["cs_zibqa9dutqyaxym2"],
|
|
)
|
|
async def test_turn_off_unsupported(
|
|
hass: HomeAssistant,
|
|
mock_manager: ManagerCompat,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_device: CustomerDevice,
|
|
) -> None:
|
|
"""Test turn off service (not supported by this device)."""
|
|
# Remove switch control - but keep other functionality
|
|
mock_device.status.pop("switch")
|
|
mock_device.function.pop("switch")
|
|
mock_device.status_range.pop("switch")
|
|
|
|
entity_id = "humidifier.dehumidifier"
|
|
await initialize_entry(hass, mock_manager, mock_config_entry, mock_device)
|
|
|
|
state = hass.states.get(entity_id)
|
|
assert state is not None, f"{entity_id} does not exist"
|
|
with pytest.raises(ServiceValidationError) as err:
|
|
await hass.services.async_call(
|
|
HUMIDIFIER_DOMAIN,
|
|
SERVICE_TURN_OFF,
|
|
{ATTR_ENTITY_ID: entity_id},
|
|
blocking=True,
|
|
)
|
|
assert err.value.translation_key == "action_dpcode_not_found"
|
|
assert err.value.translation_placeholders == {
|
|
"expected": "['switch', 'switch_spray']",
|
|
"available": ("['child_lock', 'countdown_set', 'dehumidify_set_value']"),
|
|
}
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"mock_device_code",
|
|
["cs_zibqa9dutqyaxym2"],
|
|
)
|
|
async def test_set_humidity_unsupported(
|
|
hass: HomeAssistant,
|
|
mock_manager: ManagerCompat,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_device: CustomerDevice,
|
|
) -> None:
|
|
"""Test set humidity service (not supported by this device)."""
|
|
# Remove set humidity control - but keep other functionality
|
|
mock_device.status.pop("dehumidify_set_value")
|
|
mock_device.function.pop("dehumidify_set_value")
|
|
mock_device.status_range.pop("dehumidify_set_value")
|
|
|
|
entity_id = "humidifier.dehumidifier"
|
|
await initialize_entry(hass, mock_manager, mock_config_entry, mock_device)
|
|
|
|
state = hass.states.get(entity_id)
|
|
assert state is not None, f"{entity_id} does not exist"
|
|
with pytest.raises(ServiceValidationError) as err:
|
|
await hass.services.async_call(
|
|
HUMIDIFIER_DOMAIN,
|
|
SERVICE_SET_HUMIDITY,
|
|
{
|
|
ATTR_ENTITY_ID: entity_id,
|
|
ATTR_HUMIDITY: 50,
|
|
},
|
|
blocking=True,
|
|
)
|
|
assert err.value.translation_key == "action_dpcode_not_found"
|
|
assert err.value.translation_placeholders == {
|
|
"expected": "['dehumidify_set_value']",
|
|
"available": ("['child_lock', 'countdown_set', 'switch']"),
|
|
}
|