mirror of https://github.com/home-assistant/core
79 lines
2.4 KiB
Python
79 lines
2.4 KiB
Python
"""The tests for the demo sensor component."""
|
|
|
|
from datetime import timedelta
|
|
from unittest.mock import patch
|
|
|
|
from freezegun.api import FrozenDateTimeFactory
|
|
import pytest
|
|
|
|
from homeassistant import core as ha
|
|
from homeassistant.components.demo import DOMAIN
|
|
from homeassistant.components.sensor import DOMAIN as SENSOR_DOMAIN
|
|
from homeassistant.const import Platform
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
from tests.common import mock_restore_cache_with_extra_data
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
async def sensor_only() -> None:
|
|
"""Enable only the sensor platform."""
|
|
with patch(
|
|
"homeassistant.components.demo.COMPONENTS_WITH_CONFIG_ENTRY_DEMO_PLATFORM",
|
|
[Platform.SENSOR],
|
|
):
|
|
yield
|
|
|
|
|
|
@pytest.mark.parametrize(("entity_id", "delta"), [("sensor.total_energy_kwh", 0.5)])
|
|
async def test_energy_sensor(
|
|
hass: HomeAssistant, entity_id, delta, freezer: FrozenDateTimeFactory
|
|
) -> None:
|
|
"""Test energy sensors increase periodically."""
|
|
assert await async_setup_component(
|
|
hass, SENSOR_DOMAIN, {SENSOR_DOMAIN: {"platform": DOMAIN}}
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get(entity_id)
|
|
assert state.state == "0"
|
|
|
|
freezer.tick(timedelta(minutes=5, seconds=1))
|
|
await hass.async_block_till_done()
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get(entity_id)
|
|
assert state.state == str(delta)
|
|
|
|
|
|
@pytest.mark.parametrize(("entity_id", "delta"), [("sensor.total_energy_kwh", 0.5)])
|
|
async def test_restore_state(
|
|
hass: HomeAssistant, entity_id, delta, freezer: FrozenDateTimeFactory
|
|
) -> None:
|
|
"""Test energy sensors restore state."""
|
|
fake_state = ha.State(
|
|
entity_id,
|
|
"",
|
|
)
|
|
fake_extra_data = {
|
|
"native_value": 2**20,
|
|
"native_unit_of_measurement": None,
|
|
}
|
|
mock_restore_cache_with_extra_data(hass, ((fake_state, fake_extra_data),))
|
|
|
|
assert await async_setup_component(
|
|
hass, SENSOR_DOMAIN, {SENSOR_DOMAIN: {"platform": DOMAIN}}
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get(entity_id)
|
|
assert state.state == str(2**20)
|
|
|
|
freezer.tick(timedelta(minutes=5, seconds=1))
|
|
await hass.async_block_till_done()
|
|
await hass.async_block_till_done()
|
|
|
|
state = hass.states.get(entity_id)
|
|
assert state.state == str(2**20 + delta)
|