"""Test RainMachine sensors.""" import logging from typing import Any from unittest.mock import AsyncMock, patch import pytest from syrupy.assertion import SnapshotAssertion from homeassistant.components.rainmachine import DOMAIN from homeassistant.const import Platform from homeassistant.core import HomeAssistant from homeassistant.helpers import device_registry as dr, entity_registry as er from homeassistant.setup import async_setup_component from tests.common import MockConfigEntry, snapshot_platform @pytest.mark.usefixtures("entity_registry_enabled_by_default") async def test_sensors( hass: HomeAssistant, entity_registry: er.EntityRegistry, snapshot: SnapshotAssertion, config: dict[str, Any], config_entry: MockConfigEntry, client: AsyncMock, ) -> None: """Test sensors.""" with ( patch("homeassistant.components.rainmachine.Client", return_value=client), patch("homeassistant.components.rainmachine.PLATFORMS", [Platform.SENSOR]), ): assert await async_setup_component(hass, DOMAIN, config) await hass.async_block_till_done() await snapshot_platform(hass, entity_registry, snapshot, config_entry.entry_id) async def test_device_info_hw_version_is_string( hass: HomeAssistant, device_registry: dr.DeviceRegistry, config: dict[str, Any], config_entry: MockConfigEntry, client: AsyncMock, caplog: pytest.LogCaptureFixture, ) -> None: """Test that hw_version is a string even when API returns int.""" with ( caplog.at_level(logging.WARNING, logger="homeassistant.helpers.frame"), patch("homeassistant.components.rainmachine.Client", return_value=client), patch("homeassistant.components.rainmachine.PLATFORMS", [Platform.SENSOR]), ): assert await async_setup_component(hass, DOMAIN, config) await hass.async_block_till_done() device_entry = device_registry.async_get_device( connections={(dr.CONNECTION_NETWORK_MAC, "aa:bb:cc:dd:ee:ff")} ) assert device_entry assert device_entry.hw_version == "3" assert "non-string value" not in caplog.text