mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 10:59:40 +00:00
391 lines
11 KiB
Python
391 lines
11 KiB
Python
"""Test Control4 Climate."""
|
|
|
|
from unittest.mock import MagicMock
|
|
|
|
import pytest
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.components.climate import (
|
|
ATTR_HVAC_MODE,
|
|
ATTR_TARGET_TEMP_HIGH,
|
|
ATTR_TARGET_TEMP_LOW,
|
|
ATTR_TEMPERATURE,
|
|
DOMAIN as CLIMATE_DOMAIN,
|
|
SERVICE_SET_HVAC_MODE,
|
|
SERVICE_SET_TEMPERATURE,
|
|
HVACAction,
|
|
HVACMode,
|
|
)
|
|
from homeassistant.const import ATTR_ENTITY_ID, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
from homeassistant.util.unit_system import US_CUSTOMARY_SYSTEM
|
|
|
|
from . import setup_integration
|
|
|
|
from tests.common import MockConfigEntry, snapshot_platform
|
|
|
|
ENTITY_ID = "climate.test_controller_residential_thermostat_v2"
|
|
|
|
|
|
@pytest.fixture
|
|
def platforms() -> list[Platform]:
|
|
"""Platforms which should be loaded during the test."""
|
|
return [Platform.CLIMATE]
|
|
|
|
|
|
@pytest.fixture
|
|
async def init_integration(
|
|
hass: HomeAssistant, mock_config_entry: MockConfigEntry
|
|
) -> MockConfigEntry:
|
|
"""Set up the Control4 integration for testing."""
|
|
hass.config.units = US_CUSTOMARY_SYSTEM
|
|
await setup_integration(hass, mock_config_entry)
|
|
return mock_config_entry
|
|
|
|
|
|
@pytest.mark.usefixtures(
|
|
"mock_c4_account",
|
|
"mock_c4_director",
|
|
"mock_climate_update_variables",
|
|
"init_integration",
|
|
)
|
|
async def test_climate_entities(
|
|
hass: HomeAssistant,
|
|
entity_registry: er.EntityRegistry,
|
|
snapshot: SnapshotAssertion,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test climate entities are set up correctly with proper attributes."""
|
|
await snapshot_platform(hass, entity_registry, snapshot, mock_config_entry.entry_id)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
(
|
|
"mock_climate_variables",
|
|
"expected_hvac_mode",
|
|
"expected_hvac_action",
|
|
"expected_temperature",
|
|
"expected_temp_high",
|
|
"expected_temp_low",
|
|
),
|
|
[
|
|
pytest.param(
|
|
{
|
|
123: {
|
|
"HVAC_STATE": "off",
|
|
"HVAC_MODE": "Off",
|
|
"TEMPERATURE_F": 72.0,
|
|
"HUMIDITY": 50,
|
|
"COOL_SETPOINT_F": 75.0,
|
|
"HEAT_SETPOINT_F": 68.0,
|
|
}
|
|
},
|
|
HVACMode.OFF,
|
|
HVACAction.OFF,
|
|
None,
|
|
None,
|
|
None,
|
|
id="off",
|
|
),
|
|
pytest.param(
|
|
{
|
|
123: {
|
|
"HVAC_STATE": "cooling",
|
|
"HVAC_MODE": "Cool",
|
|
"TEMPERATURE_F": 74.0,
|
|
"HUMIDITY": 55,
|
|
"COOL_SETPOINT_F": 72.0,
|
|
"HEAT_SETPOINT_F": 68.0,
|
|
}
|
|
},
|
|
HVACMode.COOL,
|
|
HVACAction.COOLING,
|
|
72.0,
|
|
None,
|
|
None,
|
|
id="cool",
|
|
),
|
|
pytest.param(
|
|
{
|
|
123: {
|
|
"HVAC_STATE": "heating",
|
|
"HVAC_MODE": "Auto",
|
|
"TEMPERATURE_F": 65.0,
|
|
"HUMIDITY": 40,
|
|
"COOL_SETPOINT_F": 75.0,
|
|
"HEAT_SETPOINT_F": 68.0,
|
|
}
|
|
},
|
|
HVACMode.HEAT_COOL,
|
|
HVACAction.HEATING,
|
|
None,
|
|
75.0,
|
|
68.0,
|
|
id="auto",
|
|
),
|
|
],
|
|
)
|
|
@pytest.mark.usefixtures(
|
|
"mock_c4_account",
|
|
"mock_c4_director",
|
|
"mock_climate_update_variables",
|
|
"init_integration",
|
|
)
|
|
async def test_climate_states(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
expected_hvac_mode: HVACMode,
|
|
expected_hvac_action: HVACAction,
|
|
expected_temperature: float | None,
|
|
expected_temp_high: float | None,
|
|
expected_temp_low: float | None,
|
|
) -> None:
|
|
"""Test climate entity in different states."""
|
|
state = hass.states.get(ENTITY_ID)
|
|
assert state.state == expected_hvac_mode
|
|
assert state.attributes["hvac_action"] == expected_hvac_action
|
|
|
|
assert state.attributes.get("temperature") == expected_temperature
|
|
|
|
assert state.attributes.get("target_temp_high") == expected_temp_high
|
|
assert state.attributes.get("target_temp_low") == expected_temp_low
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("hvac_mode", "expected_c4_mode"),
|
|
[
|
|
pytest.param(HVACMode.COOL, "Cool", id="cool"),
|
|
pytest.param(HVACMode.OFF, "Off", id="off"),
|
|
],
|
|
)
|
|
@pytest.mark.usefixtures(
|
|
"mock_c4_account",
|
|
"mock_c4_director",
|
|
"mock_climate_update_variables",
|
|
"init_integration",
|
|
)
|
|
async def test_set_hvac_mode(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_c4_climate: MagicMock,
|
|
hvac_mode: HVACMode,
|
|
expected_c4_mode: str,
|
|
) -> None:
|
|
"""Test setting HVAC mode."""
|
|
await hass.services.async_call(
|
|
CLIMATE_DOMAIN,
|
|
SERVICE_SET_HVAC_MODE,
|
|
{ATTR_ENTITY_ID: ENTITY_ID, ATTR_HVAC_MODE: hvac_mode},
|
|
blocking=True,
|
|
)
|
|
mock_c4_climate.setHvacMode.assert_called_once_with(expected_c4_mode)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
("mock_climate_variables", "method_name"),
|
|
[
|
|
pytest.param(
|
|
{
|
|
123: {
|
|
"HVAC_STATE": "idle",
|
|
"HVAC_MODE": "Heat",
|
|
"TEMPERATURE_F": 72.5,
|
|
"HUMIDITY": 45,
|
|
"COOL_SETPOINT_F": 75.0,
|
|
"HEAT_SETPOINT_F": 68.0,
|
|
}
|
|
},
|
|
"setHeatSetpointF",
|
|
id="heat",
|
|
),
|
|
pytest.param(
|
|
{
|
|
123: {
|
|
"HVAC_STATE": "idle",
|
|
"HVAC_MODE": "Cool",
|
|
"TEMPERATURE_F": 74.0,
|
|
"HUMIDITY": 50,
|
|
"COOL_SETPOINT_F": 72.0,
|
|
"HEAT_SETPOINT_F": 68.0,
|
|
}
|
|
},
|
|
"setCoolSetpointF",
|
|
id="cool",
|
|
),
|
|
],
|
|
)
|
|
@pytest.mark.usefixtures(
|
|
"mock_c4_account",
|
|
"mock_c4_director",
|
|
"mock_climate_update_variables",
|
|
"init_integration",
|
|
)
|
|
async def test_set_temperature(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_c4_climate: MagicMock,
|
|
method_name: str,
|
|
) -> None:
|
|
"""Test setting temperature in different modes."""
|
|
await hass.services.async_call(
|
|
CLIMATE_DOMAIN,
|
|
SERVICE_SET_TEMPERATURE,
|
|
{ATTR_ENTITY_ID: ENTITY_ID, ATTR_TEMPERATURE: 70.0},
|
|
blocking=True,
|
|
)
|
|
getattr(mock_c4_climate, method_name).assert_called_once_with(70.0)
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"mock_climate_variables",
|
|
[
|
|
{
|
|
123: {
|
|
"HVAC_STATE": "idle",
|
|
"HVAC_MODE": "Auto",
|
|
"TEMPERATURE_F": 70.0,
|
|
"HUMIDITY": 50,
|
|
"COOL_SETPOINT_F": 75.0,
|
|
"HEAT_SETPOINT_F": 68.0,
|
|
}
|
|
}
|
|
],
|
|
)
|
|
@pytest.mark.usefixtures(
|
|
"mock_c4_account",
|
|
"mock_c4_director",
|
|
"mock_climate_update_variables",
|
|
"init_integration",
|
|
)
|
|
async def test_set_temperature_range_auto_mode(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_c4_climate: MagicMock,
|
|
) -> None:
|
|
"""Test setting temperature range in auto mode."""
|
|
await hass.services.async_call(
|
|
CLIMATE_DOMAIN,
|
|
SERVICE_SET_TEMPERATURE,
|
|
{
|
|
ATTR_ENTITY_ID: ENTITY_ID,
|
|
ATTR_TARGET_TEMP_LOW: 65.0,
|
|
ATTR_TARGET_TEMP_HIGH: 78.0,
|
|
},
|
|
blocking=True,
|
|
)
|
|
mock_c4_climate.setHeatSetpointF.assert_called_once_with(65.0)
|
|
mock_c4_climate.setCoolSetpointF.assert_called_once_with(78.0)
|
|
|
|
|
|
@pytest.mark.parametrize("mock_climate_variables", [{}])
|
|
@pytest.mark.usefixtures(
|
|
"mock_c4_account",
|
|
"mock_c4_director",
|
|
"mock_climate_update_variables",
|
|
"init_integration",
|
|
)
|
|
async def test_climate_not_created_when_no_initial_data(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test climate entity is not created when coordinator has no initial data."""
|
|
# Entity should not be created if there's no data during initial setup
|
|
state = hass.states.get(ENTITY_ID)
|
|
assert state is None
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"mock_climate_variables",
|
|
[
|
|
{
|
|
123: {
|
|
"HVAC_STATE": "idle",
|
|
"HVAC_MODE": "Heat",
|
|
# Missing TEMPERATURE_F and HUMIDITY
|
|
"COOL_SETPOINT_F": 75.0,
|
|
"HEAT_SETPOINT_F": 68.0,
|
|
}
|
|
}
|
|
],
|
|
)
|
|
@pytest.mark.usefixtures(
|
|
"mock_c4_account",
|
|
"mock_c4_director",
|
|
"mock_climate_update_variables",
|
|
"init_integration",
|
|
)
|
|
async def test_climate_missing_variables(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test climate entity handles missing variables gracefully."""
|
|
state = hass.states.get(ENTITY_ID)
|
|
assert state is not None
|
|
assert state.state == HVACMode.HEAT
|
|
assert state.attributes.get("current_temperature") is None
|
|
assert state.attributes.get("current_humidity") is None
|
|
assert state.attributes["temperature"] == 68.0
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"mock_climate_variables",
|
|
[
|
|
{
|
|
123: {
|
|
"HVAC_STATE": "idle",
|
|
"HVAC_MODE": "UnknownMode",
|
|
"TEMPERATURE_F": 72.0,
|
|
"HUMIDITY": 50,
|
|
"COOL_SETPOINT_F": 75.0,
|
|
"HEAT_SETPOINT_F": 68.0,
|
|
}
|
|
}
|
|
],
|
|
)
|
|
@pytest.mark.usefixtures(
|
|
"mock_c4_account",
|
|
"mock_c4_director",
|
|
"mock_climate_update_variables",
|
|
"init_integration",
|
|
)
|
|
async def test_climate_unknown_hvac_mode(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test climate entity handles unknown HVAC mode."""
|
|
state = hass.states.get(ENTITY_ID)
|
|
assert state is not None
|
|
assert state.state == HVACMode.OFF # Defaults to OFF for unknown modes
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"mock_climate_variables",
|
|
[
|
|
{
|
|
123: {
|
|
"HVAC_STATE": "unknown_state",
|
|
"HVAC_MODE": "Heat",
|
|
"TEMPERATURE_F": 72.0,
|
|
"HUMIDITY": 50,
|
|
"COOL_SETPOINT_F": 75.0,
|
|
"HEAT_SETPOINT_F": 68.0,
|
|
}
|
|
}
|
|
],
|
|
)
|
|
@pytest.mark.usefixtures(
|
|
"mock_c4_account",
|
|
"mock_c4_director",
|
|
"mock_climate_update_variables",
|
|
"init_integration",
|
|
)
|
|
async def test_climate_unknown_hvac_state(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
) -> None:
|
|
"""Test climate entity handles unknown HVAC state."""
|
|
state = hass.states.get(ENTITY_ID)
|
|
assert state is not None
|
|
assert state.attributes.get("hvac_action") is None
|