47 lines
1.5 KiB
Python
47 lines
1.5 KiB
Python
|
"""Tests for number entities provided by the Tailwind integration."""
|
||
|
from unittest.mock import MagicMock
|
||
|
|
||
|
import pytest
|
||
|
from syrupy.assertion import SnapshotAssertion
|
||
|
|
||
|
from homeassistant.components import number
|
||
|
from homeassistant.components.number import ATTR_VALUE, SERVICE_SET_VALUE
|
||
|
from homeassistant.const import ATTR_ENTITY_ID
|
||
|
from homeassistant.core import HomeAssistant
|
||
|
from homeassistant.helpers import device_registry as dr, entity_registry as er
|
||
|
|
||
|
pytestmark = pytest.mark.usefixtures("init_integration")
|
||
|
|
||
|
|
||
|
async def test_number_entities(
|
||
|
hass: HomeAssistant,
|
||
|
device_registry: dr.DeviceRegistry,
|
||
|
entity_registry: er.EntityRegistry,
|
||
|
mock_tailwind: MagicMock,
|
||
|
snapshot: SnapshotAssertion,
|
||
|
) -> None:
|
||
|
"""Test number entities provided by the Tailwind integration."""
|
||
|
assert (state := hass.states.get("number.tailwind_iq3_status_led_brightness"))
|
||
|
assert snapshot == state
|
||
|
|
||
|
assert (entity_entry := entity_registry.async_get(state.entity_id))
|
||
|
assert snapshot == entity_entry
|
||
|
|
||
|
assert entity_entry.device_id
|
||
|
assert (device_entry := device_registry.async_get(entity_entry.device_id))
|
||
|
assert snapshot == device_entry
|
||
|
|
||
|
assert len(mock_tailwind.status_led.mock_calls) == 0
|
||
|
await hass.services.async_call(
|
||
|
number.DOMAIN,
|
||
|
SERVICE_SET_VALUE,
|
||
|
{
|
||
|
ATTR_ENTITY_ID: state.entity_id,
|
||
|
ATTR_VALUE: 42,
|
||
|
},
|
||
|
blocking=True,
|
||
|
)
|
||
|
|
||
|
assert len(mock_tailwind.status_led.mock_calls) == 1
|
||
|
mock_tailwind.status_led.assert_called_with(brightness=42)
|