47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
"""The test for the sensibo update platform."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from datetime import timedelta
|
|
from unittest.mock import MagicMock
|
|
|
|
from freezegun.api import FrozenDateTimeFactory
|
|
import pytest
|
|
from syrupy.assertion import SnapshotAssertion
|
|
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.const import STATE_OFF, Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from tests.common import async_fire_time_changed, snapshot_platform
|
|
|
|
|
|
@pytest.mark.usefixtures("entity_registry_enabled_by_default")
|
|
@pytest.mark.parametrize(
|
|
"load_platforms",
|
|
[[Platform.UPDATE]],
|
|
)
|
|
async def test_update(
|
|
hass: HomeAssistant,
|
|
load_int: ConfigEntry,
|
|
mock_client: MagicMock,
|
|
entity_registry: er.EntityRegistry,
|
|
snapshot: SnapshotAssertion,
|
|
freezer: FrozenDateTimeFactory,
|
|
) -> None:
|
|
"""Test the Sensibo update."""
|
|
|
|
await snapshot_platform(hass, entity_registry, snapshot, load_int.entry_id)
|
|
|
|
mock_client.async_get_devices_data.return_value.parsed[
|
|
"ABC999111"
|
|
].fw_ver = "SKY30048"
|
|
|
|
freezer.tick(timedelta(minutes=5))
|
|
async_fire_time_changed(hass)
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get("update.hallway_firmware")
|
|
assert state.state == STATE_OFF
|