* Mark executor jobs as background unless created from a tracked task If the current task is not tracked the executor job should not be a background task to avoid delaying startup and shutdown. Currently any executor job created in a untracked task or background task would end up being tracked and delaying startup/shutdown * import exec has the same issue * Avoid tracking import executor jobs There is no reason to track these jobs as they are always awaited and we do not want to support fire and forget import executor jobs * fix xiaomi_miio * lots of fire time changed without background await * revert changes moved to other PR * more * more * more * m * m * p * fix fire and forget tests * scrape * sonos * system * more * capture callback before block * coverage * more * more races * more races * more * missed some * more fixes * missed some more * fix * remove unneeded * one more race * two
134 lines
4.3 KiB
Python
134 lines
4.3 KiB
Python
"""Tests for AVM Fritz!Box sensor component."""
|
|
|
|
from datetime import timedelta
|
|
from unittest.mock import Mock
|
|
|
|
from requests.exceptions import HTTPError
|
|
|
|
from homeassistant.components.fritzbox.const import DOMAIN as FB_DOMAIN
|
|
from homeassistant.components.sensor import ATTR_STATE_CLASS, DOMAIN, SensorStateClass
|
|
from homeassistant.const import (
|
|
ATTR_FRIENDLY_NAME,
|
|
ATTR_UNIT_OF_MEASUREMENT,
|
|
CONF_DEVICES,
|
|
PERCENTAGE,
|
|
EntityCategory,
|
|
UnitOfTemperature,
|
|
)
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
import homeassistant.util.dt as dt_util
|
|
|
|
from . import FritzDeviceSensorMock, set_devices, setup_config_entry
|
|
from .const import CONF_FAKE_NAME, MOCK_CONFIG
|
|
|
|
from tests.common import async_fire_time_changed
|
|
|
|
ENTITY_ID = f"{DOMAIN}.{CONF_FAKE_NAME}"
|
|
|
|
|
|
async def test_setup(
|
|
hass: HomeAssistant, entity_registry: er.EntityRegistry, fritz: Mock
|
|
) -> None:
|
|
"""Test setup of platform."""
|
|
device = FritzDeviceSensorMock()
|
|
assert await setup_config_entry(
|
|
hass, MOCK_CONFIG[FB_DOMAIN][CONF_DEVICES][0], ENTITY_ID, device, fritz
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
sensors = (
|
|
[
|
|
f"{ENTITY_ID}_temperature",
|
|
"1.23",
|
|
f"{CONF_FAKE_NAME} Temperature",
|
|
UnitOfTemperature.CELSIUS,
|
|
SensorStateClass.MEASUREMENT,
|
|
None,
|
|
],
|
|
[
|
|
f"{ENTITY_ID}_humidity",
|
|
"42",
|
|
f"{CONF_FAKE_NAME} Humidity",
|
|
PERCENTAGE,
|
|
SensorStateClass.MEASUREMENT,
|
|
None,
|
|
],
|
|
[
|
|
f"{ENTITY_ID}_battery",
|
|
"23",
|
|
f"{CONF_FAKE_NAME} Battery",
|
|
PERCENTAGE,
|
|
None,
|
|
EntityCategory.DIAGNOSTIC,
|
|
],
|
|
)
|
|
|
|
for sensor in sensors:
|
|
state = hass.states.get(sensor[0])
|
|
assert state
|
|
assert state.state == sensor[1]
|
|
assert state.attributes[ATTR_FRIENDLY_NAME] == sensor[2]
|
|
assert state.attributes[ATTR_UNIT_OF_MEASUREMENT] == sensor[3]
|
|
assert state.attributes.get(ATTR_STATE_CLASS) == sensor[4]
|
|
entry = entity_registry.async_get(sensor[0])
|
|
assert entry
|
|
assert entry.entity_category is sensor[5]
|
|
|
|
|
|
async def test_update(hass: HomeAssistant, fritz: Mock) -> None:
|
|
"""Test update without error."""
|
|
device = FritzDeviceSensorMock()
|
|
assert await setup_config_entry(
|
|
hass, MOCK_CONFIG[FB_DOMAIN][CONF_DEVICES][0], ENTITY_ID, device, fritz
|
|
)
|
|
assert fritz().update_devices.call_count == 1
|
|
assert fritz().login.call_count == 1
|
|
|
|
next_update = dt_util.utcnow() + timedelta(seconds=200)
|
|
async_fire_time_changed(hass, next_update)
|
|
await hass.async_block_till_done(wait_background_tasks=True)
|
|
|
|
assert fritz().update_devices.call_count == 2
|
|
assert fritz().login.call_count == 1
|
|
|
|
|
|
async def test_update_error(hass: HomeAssistant, fritz: Mock) -> None:
|
|
"""Test update with error."""
|
|
device = FritzDeviceSensorMock()
|
|
fritz().update_devices.side_effect = HTTPError("Boom")
|
|
assert not await setup_config_entry(
|
|
hass, MOCK_CONFIG[FB_DOMAIN][CONF_DEVICES][0], ENTITY_ID, device, fritz
|
|
)
|
|
assert fritz().update_devices.call_count == 2
|
|
assert fritz().login.call_count == 2
|
|
|
|
next_update = dt_util.utcnow() + timedelta(seconds=200)
|
|
async_fire_time_changed(hass, next_update)
|
|
await hass.async_block_till_done(wait_background_tasks=True)
|
|
|
|
assert fritz().update_devices.call_count == 4
|
|
assert fritz().login.call_count == 4
|
|
|
|
|
|
async def test_discover_new_device(hass: HomeAssistant, fritz: Mock) -> None:
|
|
"""Test adding new discovered devices during runtime."""
|
|
device = FritzDeviceSensorMock()
|
|
assert await setup_config_entry(
|
|
hass, MOCK_CONFIG[FB_DOMAIN][CONF_DEVICES][0], ENTITY_ID, device, fritz
|
|
)
|
|
|
|
state = hass.states.get(f"{ENTITY_ID}_temperature")
|
|
assert state
|
|
|
|
new_device = FritzDeviceSensorMock()
|
|
new_device.ain = "7890 1234"
|
|
new_device.name = "new_device"
|
|
set_devices(fritz, devices=[device, new_device])
|
|
|
|
next_update = dt_util.utcnow() + timedelta(seconds=200)
|
|
async_fire_time_changed(hass, next_update)
|
|
await hass.async_block_till_done(wait_background_tasks=True)
|
|
|
|
state = hass.states.get(f"{DOMAIN}.new_device_temperature")
|
|
assert state
|