mirror of
https://github.com/home-assistant/core.git
synced 2026-09-15 04:58:20 +01:00
44 lines
1.2 KiB
Python
44 lines
1.2 KiB
Python
"""Test the Flexit sensor platform."""
|
|
|
|
from unittest.mock import patch
|
|
|
|
from modbus_connection.mock import MockModbusUnit
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from tests.common import MockConfigEntry, snapshot_platform
|
|
|
|
|
|
async def test_sensors(
|
|
hass: HomeAssistant,
|
|
snapshot: SnapshotAssertion,
|
|
entity_registry: er.EntityRegistry,
|
|
mock_config_entry: MockConfigEntry,
|
|
mock_modbus_unit: MockModbusUnit,
|
|
) -> None:
|
|
"""Test Flexit sensor states."""
|
|
mock_modbus_unit.holding.update({8: 215, 17: 2})
|
|
mock_modbus_unit.input.update(
|
|
{
|
|
8: 120,
|
|
9: 200,
|
|
11: 50,
|
|
13: 20,
|
|
14: 35,
|
|
15: 40,
|
|
27: 0,
|
|
28: 1,
|
|
48: 10,
|
|
}
|
|
)
|
|
mock_config_entry.add_to_hass(hass)
|
|
|
|
with patch("homeassistant.components.flexit._PLATFORMS", [Platform.SENSOR]):
|
|
assert await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
await snapshot_platform(hass, entity_registry, snapshot, mock_config_entry.entry_id)
|