mirror of
https://github.com/home-assistant/core.git
synced 2026-04-17 23:53:49 +01:00
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: Abílio Costa <abmantis@users.noreply.github.com>
215 lines
6.5 KiB
Python
215 lines
6.5 KiB
Python
"""Test IntelliClima Fans."""
|
|
|
|
from collections.abc import AsyncGenerator
|
|
from unittest.mock import AsyncMock, patch
|
|
|
|
from pyintelliclima.const import FanMode, FanSpeed
|
|
import pytest
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.components.fan import (
|
|
ATTR_PERCENTAGE,
|
|
ATTR_PRESET_MODE,
|
|
DOMAIN as FAN_DOMAIN,
|
|
SERVICE_SET_PERCENTAGE,
|
|
SERVICE_SET_PRESET_MODE,
|
|
)
|
|
from homeassistant.const import (
|
|
ATTR_ENTITY_ID,
|
|
SERVICE_TURN_OFF,
|
|
SERVICE_TURN_ON,
|
|
Platform,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import device_registry as dr, entity_registry as er
|
|
|
|
from . import setup_integration
|
|
|
|
from tests.common import MockConfigEntry, snapshot_platform
|
|
|
|
FAN_ENTITY_ID = "fan.test_vmc"
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
async def setup_intelliclima_fan_only(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_cloud_interface: AsyncMock,
|
|
) -> AsyncGenerator[None]:
|
|
"""Set up IntelliClima integration with only the fan platform."""
|
|
with patch("homeassistant.components.intelliclima.PLATFORMS", [Platform.FAN]):
|
|
await setup_integration(hass, mock_config_entry)
|
|
# Let tests run against this initialized state
|
|
yield
|
|
|
|
|
|
async def test_all_fan_entities(
|
|
hass: HomeAssistant,
|
|
snapshot: SnapshotAssertion,
|
|
mock_config_entry: MockConfigEntry,
|
|
entity_registry: er.EntityRegistry,
|
|
device_registry: dr.DeviceRegistry,
|
|
mock_cloud_interface: AsyncMock,
|
|
) -> None:
|
|
"""Test all entities."""
|
|
|
|
await snapshot_platform(hass, entity_registry, snapshot, mock_config_entry.entry_id)
|
|
|
|
# There should be exactly one fan entity
|
|
fan_entries = [
|
|
entry
|
|
for entry in entity_registry.entities.values()
|
|
if entry.platform == "intelliclima" and entry.domain == FAN_DOMAIN
|
|
]
|
|
assert len(fan_entries) == 1
|
|
entity_entry = fan_entries[0]
|
|
|
|
# Device should exist and match snapshot
|
|
assert entity_entry.device_id
|
|
assert (device_entry := device_registry.async_get(entity_entry.device_id))
|
|
assert device_entry == snapshot
|
|
|
|
|
|
async def test_fan_turn_off_service_calls_api(
|
|
hass: HomeAssistant,
|
|
mock_cloud_interface: AsyncMock,
|
|
) -> None:
|
|
"""fan.turn_off should call ecocomfort.turn_off and refresh."""
|
|
await hass.services.async_call(
|
|
FAN_DOMAIN,
|
|
SERVICE_TURN_OFF,
|
|
{ATTR_ENTITY_ID: FAN_ENTITY_ID},
|
|
blocking=True,
|
|
)
|
|
|
|
# Device serial from single_eco_device.crono_sn
|
|
mock_cloud_interface.ecocomfort.turn_off.assert_awaited_once_with("11223344")
|
|
mock_cloud_interface.ecocomfort.set_mode_speed.assert_not_awaited()
|
|
|
|
|
|
async def test_fan_turn_on_service_calls_api(
|
|
hass: HomeAssistant,
|
|
mock_cloud_interface: AsyncMock,
|
|
) -> None:
|
|
"""fan.turn_on should call ecocomfort.turn_on and refresh."""
|
|
await hass.services.async_call(
|
|
FAN_DOMAIN,
|
|
SERVICE_TURN_ON,
|
|
{
|
|
ATTR_ENTITY_ID: FAN_ENTITY_ID,
|
|
ATTR_PERCENTAGE: 30,
|
|
},
|
|
blocking=True,
|
|
)
|
|
|
|
# Device serial from single_eco_device.crono_sn
|
|
mock_cloud_interface.ecocomfort.set_mode_speed.assert_awaited_once_with(
|
|
"11223344", FanMode.inward, FanSpeed.low
|
|
)
|
|
|
|
|
|
async def test_fan_set_percentage_maps_to_speed(
|
|
hass: HomeAssistant,
|
|
mock_cloud_interface: AsyncMock,
|
|
) -> None:
|
|
"""fan.set_percentage maps to closest IntelliClima speed via set_mode_speed."""
|
|
# 15% is closest to 25% (sleep).
|
|
await hass.services.async_call(
|
|
FAN_DOMAIN,
|
|
SERVICE_SET_PERCENTAGE,
|
|
{ATTR_ENTITY_ID: FAN_ENTITY_ID, ATTR_PERCENTAGE: 15},
|
|
blocking=True,
|
|
)
|
|
# Initial mode_set=FanMode.inward from single_eco_device.
|
|
# Sleep speed is FanSpeed.sleep (25%).
|
|
mock_cloud_interface.ecocomfort.set_mode_speed.assert_awaited_once_with(
|
|
"11223344", FanMode.inward, FanSpeed.sleep
|
|
)
|
|
|
|
|
|
async def test_fan_set_preset_mode_service(
|
|
hass: HomeAssistant,
|
|
mock_cloud_interface: AsyncMock,
|
|
) -> None:
|
|
"""Tests whether the set preset mode service is called and correct api call is followed."""
|
|
|
|
await hass.services.async_call(
|
|
FAN_DOMAIN,
|
|
SERVICE_SET_PRESET_MODE,
|
|
{ATTR_ENTITY_ID: FAN_ENTITY_ID, ATTR_PRESET_MODE: "auto"},
|
|
blocking=True,
|
|
)
|
|
|
|
mock_cloud_interface.ecocomfort.set_mode_speed_auto.assert_awaited_once_with(
|
|
"11223344"
|
|
)
|
|
mock_cloud_interface.ecocomfort.turn_off.assert_not_awaited()
|
|
|
|
|
|
async def test_fan_set_percentage_zero_turns_off(
|
|
hass: HomeAssistant,
|
|
mock_cloud_interface: AsyncMock,
|
|
) -> None:
|
|
"""Setting percentage to 0 should call turn_off, not set_mode_speed."""
|
|
await hass.services.async_call(
|
|
FAN_DOMAIN,
|
|
SERVICE_SET_PERCENTAGE,
|
|
{ATTR_ENTITY_ID: FAN_ENTITY_ID, ATTR_PERCENTAGE: 0},
|
|
blocking=True,
|
|
)
|
|
|
|
mock_cloud_interface.ecocomfort.turn_off.assert_awaited_once_with("11223344")
|
|
mock_cloud_interface.ecocomfort.set_mode_speed.assert_not_awaited()
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("service_data", "expected_mode", "expected_speed"),
|
|
[
|
|
# percentage=None, preset_mode=None -> defaults to previous speed > 75% (medium),
|
|
# previous mode > FanMode.inward
|
|
({}, FanMode.inward, FanSpeed.medium),
|
|
# percentage=0, preset_mode=None -> default 25% (FanSpeed.sleep), previous mode (inward)
|
|
({ATTR_PERCENTAGE: 0}, FanMode.inward, FanSpeed.sleep),
|
|
],
|
|
)
|
|
async def test_fan_turn_on_defaulting_behavior(
|
|
hass: HomeAssistant,
|
|
mock_cloud_interface: AsyncMock,
|
|
service_data: dict,
|
|
expected_mode: FanMode,
|
|
expected_speed: FanSpeed,
|
|
) -> None:
|
|
"""turn_on defaults percentage/preset as expected."""
|
|
data = {ATTR_ENTITY_ID: FAN_ENTITY_ID} | service_data
|
|
|
|
await hass.services.async_call(
|
|
FAN_DOMAIN,
|
|
SERVICE_TURN_ON,
|
|
data,
|
|
blocking=True,
|
|
)
|
|
|
|
mock_cloud_interface.ecocomfort.set_mode_speed.assert_awaited_once_with(
|
|
"11223344", expected_mode, expected_speed
|
|
)
|
|
mock_cloud_interface.ecocomfort.turn_off.assert_not_awaited()
|
|
|
|
|
|
async def test_fan_turn_on_defaulting_behavior_auto_preset(
|
|
hass: HomeAssistant,
|
|
mock_cloud_interface: AsyncMock,
|
|
) -> None:
|
|
"""turn_on with auto preset mode calls auto request."""
|
|
|
|
await hass.services.async_call(
|
|
FAN_DOMAIN,
|
|
SERVICE_TURN_ON,
|
|
{ATTR_ENTITY_ID: FAN_ENTITY_ID, ATTR_PRESET_MODE: "auto"},
|
|
blocking=True,
|
|
)
|
|
|
|
mock_cloud_interface.ecocomfort.set_mode_speed_auto.assert_awaited_once_with(
|
|
"11223344"
|
|
)
|
|
mock_cloud_interface.ecocomfort.turn_off.assert_not_awaited()
|