Files
core/tests/components/homee/test_sensor.py
2026-01-18 13:42:03 +01:00

157 lines
4.9 KiB
Python

"""Test homee sensors."""
from unittest.mock import MagicMock, patch
import pytest
from syrupy.assertion import SnapshotAssertion
from homeassistant.components.homeassistant import (
DOMAIN as HA_DOMAIN,
SERVICE_UPDATE_ENTITY,
)
from homeassistant.components.homee.const import (
OPEN_CLOSE_MAP,
OPEN_CLOSE_MAP_REVERSED,
WINDOW_MAP,
WINDOW_MAP_REVERSED,
)
from homeassistant.const import ATTR_ENTITY_ID, STATE_UNAVAILABLE, Platform
from homeassistant.core import HomeAssistant
from homeassistant.helpers import entity_registry as er
from homeassistant.setup import async_setup_component
from . import async_update_attribute_value, build_mock_node, setup_integration
from tests.common import MockConfigEntry, snapshot_platform
@pytest.fixture(autouse=True)
def enable_all_entities(entity_registry_enabled_by_default: None) -> None:
"""Make sure all entities are enabled."""
async def setup_sensor(
hass: HomeAssistant, mock_homee: MagicMock, mock_config_entry: MockConfigEntry
) -> None:
"""Setups the integration for sensor tests."""
mock_homee.nodes = [build_mock_node("sensors.json")]
mock_homee.get_node_by_id.return_value = mock_homee.nodes[0]
await setup_integration(hass, mock_config_entry)
async def test_up_down_values(
hass: HomeAssistant,
mock_homee: MagicMock,
mock_config_entry: MockConfigEntry,
) -> None:
"""Test values for up/down sensor."""
await setup_sensor(hass, mock_homee, mock_config_entry)
assert hass.states.get("sensor.test_multisensor_state").state == OPEN_CLOSE_MAP[0]
attribute = mock_homee.nodes[0].attributes[27]
for i in range(1, 5):
await async_update_attribute_value(hass, attribute, i)
assert (
hass.states.get("sensor.test_multisensor_state").state == OPEN_CLOSE_MAP[i]
)
# Test reversed up/down sensor
attribute.is_reversed = True
for i in range(5):
await async_update_attribute_value(hass, attribute, i)
assert (
hass.states.get("sensor.test_multisensor_state").state
== OPEN_CLOSE_MAP_REVERSED[i]
)
async def test_window_position(
hass: HomeAssistant,
mock_homee: MagicMock,
mock_config_entry: MockConfigEntry,
) -> None:
"""Test values for window handle position."""
await setup_sensor(hass, mock_homee, mock_config_entry)
assert (
hass.states.get("sensor.test_multisensor_window_position").state
== WINDOW_MAP[0]
)
attribute = mock_homee.nodes[0].attributes[32]
for i in range(1, 3):
await async_update_attribute_value(hass, attribute, i)
assert (
hass.states.get("sensor.test_multisensor_window_position").state
== WINDOW_MAP[i]
)
# Test reversed window handle.
attribute.is_reversed = True
for i in range(3):
await async_update_attribute_value(hass, attribute, i)
assert (
hass.states.get("sensor.test_multisensor_window_position").state
== WINDOW_MAP_REVERSED[i]
)
async def test_entity_connection_listener(
hass: HomeAssistant,
mock_homee: MagicMock,
mock_config_entry: MockConfigEntry,
) -> None:
"""Test if loss of connection is sensed correctly."""
await setup_sensor(hass, mock_homee, mock_config_entry)
states = hass.states.get("sensor.test_multisensor_energy_1")
assert states.state is not STATE_UNAVAILABLE
await mock_homee.add_connection_listener.call_args_list[2][0][0](False)
await hass.async_block_till_done()
states = hass.states.get("sensor.test_multisensor_energy_1")
assert states.state is STATE_UNAVAILABLE
await mock_homee.add_connection_listener.call_args_list[2][0][0](True)
await hass.async_block_till_done()
states = hass.states.get("sensor.test_multisensor_energy_1")
assert states.state is not STATE_UNAVAILABLE
async def test_entity_update_action(
hass: HomeAssistant,
mock_homee: MagicMock,
mock_config_entry: MockConfigEntry,
) -> None:
"""Test the update_entity action for a HomeeEntity."""
await setup_sensor(hass, mock_homee, mock_config_entry)
await async_setup_component(hass, HA_DOMAIN, {})
await hass.services.async_call(
HA_DOMAIN,
SERVICE_UPDATE_ENTITY,
{ATTR_ENTITY_ID: "sensor.test_multisensor_temperature"},
blocking=True,
)
mock_homee.update_attribute.assert_called_once_with(1, 23)
async def test_sensor_snapshot(
hass: HomeAssistant,
mock_homee: MagicMock,
mock_config_entry: MockConfigEntry,
entity_registry: er.EntityRegistry,
snapshot: SnapshotAssertion,
) -> None:
"""Test the multisensor snapshot."""
mock_homee.nodes = [build_mock_node("sensors.json")]
mock_homee.get_node_by_id.return_value = mock_homee.nodes[0]
with patch("homeassistant.components.homee.PLATFORMS", [Platform.SENSOR]):
await setup_integration(hass, mock_config_entry)
await snapshot_platform(hass, entity_registry, snapshot, mock_config_entry.entry_id)