Use config entry runtime_data in atag (#127084)
parent
c3c2bc51c5
commit
301543d3d0
|
@ -1,22 +1,21 @@
|
||||||
"""The ATAG Integration."""
|
"""The ATAG Integration."""
|
||||||
|
|
||||||
from homeassistant.config_entries import ConfigEntry
|
|
||||||
from homeassistant.const import Platform
|
from homeassistant.const import Platform
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
|
|
||||||
from .coordinator import AtagDataUpdateCoordinator
|
from .coordinator import AtagConfigEntry, AtagDataUpdateCoordinator
|
||||||
|
|
||||||
DOMAIN = "atag"
|
DOMAIN = "atag"
|
||||||
PLATFORMS = [Platform.CLIMATE, Platform.SENSOR, Platform.WATER_HEATER]
|
PLATFORMS = [Platform.CLIMATE, Platform.SENSOR, Platform.WATER_HEATER]
|
||||||
|
|
||||||
|
|
||||||
async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
async def async_setup_entry(hass: HomeAssistant, entry: AtagConfigEntry) -> bool:
|
||||||
"""Set up Atag integration from a config entry."""
|
"""Set up Atag integration from a config entry."""
|
||||||
|
|
||||||
coordinator = AtagDataUpdateCoordinator(hass, entry)
|
coordinator = AtagDataUpdateCoordinator(hass, entry)
|
||||||
await coordinator.async_config_entry_first_refresh()
|
await coordinator.async_config_entry_first_refresh()
|
||||||
|
|
||||||
hass.data.setdefault(DOMAIN, {})[entry.entry_id] = coordinator
|
entry.runtime_data = coordinator
|
||||||
if entry.unique_id is None:
|
if entry.unique_id is None:
|
||||||
hass.config_entries.async_update_entry(entry, unique_id=coordinator.atag.id)
|
hass.config_entries.async_update_entry(entry, unique_id=coordinator.atag.id)
|
||||||
|
|
||||||
|
@ -25,10 +24,6 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
async def async_unload_entry(hass: HomeAssistant, entry: AtagConfigEntry) -> bool:
|
||||||
"""Unload Atag config entry."""
|
"""Unload Atag config entry."""
|
||||||
unload_ok = await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|
return await hass.config_entries.async_unload_platforms(entry, PLATFORMS)
|
||||||
|
|
||||||
if unload_ok:
|
|
||||||
hass.data[DOMAIN].pop(entry.entry_id)
|
|
||||||
return unload_ok
|
|
||||||
|
|
|
@ -12,13 +12,12 @@ from homeassistant.components.climate import (
|
||||||
HVACAction,
|
HVACAction,
|
||||||
HVACMode,
|
HVACMode,
|
||||||
)
|
)
|
||||||
from homeassistant.config_entries import ConfigEntry
|
from homeassistant.const import ATTR_TEMPERATURE
|
||||||
from homeassistant.const import ATTR_TEMPERATURE, Platform
|
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||||||
from homeassistant.util.enum import try_parse_enum
|
from homeassistant.util.enum import try_parse_enum
|
||||||
|
|
||||||
from . import DOMAIN
|
from .coordinator import AtagConfigEntry, AtagDataUpdateCoordinator
|
||||||
from .entity import AtagEntity
|
from .entity import AtagEntity
|
||||||
|
|
||||||
PRESET_MAP = {
|
PRESET_MAP = {
|
||||||
|
@ -33,11 +32,10 @@ HVAC_MODES = [HVACMode.AUTO, HVACMode.HEAT]
|
||||||
|
|
||||||
|
|
||||||
async def async_setup_entry(
|
async def async_setup_entry(
|
||||||
hass: HomeAssistant, entry: ConfigEntry, async_add_entities: AddEntitiesCallback
|
hass: HomeAssistant, entry: AtagConfigEntry, async_add_entities: AddEntitiesCallback
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Load a config entry."""
|
"""Load a config entry."""
|
||||||
coordinator = hass.data[DOMAIN][entry.entry_id]
|
async_add_entities([AtagThermostat(entry.runtime_data, "climate")])
|
||||||
async_add_entities([AtagThermostat(coordinator, Platform.CLIMATE)])
|
|
||||||
|
|
||||||
|
|
||||||
class AtagThermostat(AtagEntity, ClimateEntity):
|
class AtagThermostat(AtagEntity, ClimateEntity):
|
||||||
|
@ -50,7 +48,7 @@ class AtagThermostat(AtagEntity, ClimateEntity):
|
||||||
)
|
)
|
||||||
_enable_turn_on_off_backwards_compatibility = False
|
_enable_turn_on_off_backwards_compatibility = False
|
||||||
|
|
||||||
def __init__(self, coordinator, atag_id):
|
def __init__(self, coordinator: AtagDataUpdateCoordinator, atag_id: str) -> None:
|
||||||
"""Initialize an Atag climate device."""
|
"""Initialize an Atag climate device."""
|
||||||
super().__init__(coordinator, atag_id)
|
super().__init__(coordinator, atag_id)
|
||||||
self._attr_temperature_unit = coordinator.atag.climate.temp_unit
|
self._attr_temperature_unit = coordinator.atag.climate.temp_unit
|
||||||
|
|
|
@ -13,6 +13,8 @@ from homeassistant.helpers.update_coordinator import DataUpdateCoordinator, Upda
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
|
||||||
|
type AtagConfigEntry = ConfigEntry[AtagDataUpdateCoordinator]
|
||||||
|
|
||||||
|
|
||||||
class AtagDataUpdateCoordinator(DataUpdateCoordinator[None]):
|
class AtagDataUpdateCoordinator(DataUpdateCoordinator[None]):
|
||||||
"""Atag data update coordinator."""
|
"""Atag data update coordinator."""
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
"""Initialization of ATAG One sensor platform."""
|
"""Initialization of ATAG One sensor platform."""
|
||||||
|
|
||||||
from homeassistant.components.sensor import SensorDeviceClass, SensorEntity
|
from homeassistant.components.sensor import SensorDeviceClass, SensorEntity
|
||||||
from homeassistant.config_entries import ConfigEntry
|
|
||||||
from homeassistant.const import (
|
from homeassistant.const import (
|
||||||
PERCENTAGE,
|
PERCENTAGE,
|
||||||
UnitOfPressure,
|
UnitOfPressure,
|
||||||
|
@ -11,7 +10,7 @@ from homeassistant.const import (
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||||||
|
|
||||||
from . import DOMAIN
|
from .coordinator import AtagConfigEntry, AtagDataUpdateCoordinator
|
||||||
from .entity import AtagEntity
|
from .entity import AtagEntity
|
||||||
|
|
||||||
SENSORS = {
|
SENSORS = {
|
||||||
|
@ -28,18 +27,18 @@ SENSORS = {
|
||||||
|
|
||||||
async def async_setup_entry(
|
async def async_setup_entry(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
config_entry: ConfigEntry,
|
config_entry: AtagConfigEntry,
|
||||||
async_add_entities: AddEntitiesCallback,
|
async_add_entities: AddEntitiesCallback,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Initialize sensor platform from config entry."""
|
"""Initialize sensor platform from config entry."""
|
||||||
coordinator = hass.data[DOMAIN][config_entry.entry_id]
|
coordinator = config_entry.runtime_data
|
||||||
async_add_entities([AtagSensor(coordinator, sensor) for sensor in SENSORS])
|
async_add_entities([AtagSensor(coordinator, sensor) for sensor in SENSORS])
|
||||||
|
|
||||||
|
|
||||||
class AtagSensor(AtagEntity, SensorEntity):
|
class AtagSensor(AtagEntity, SensorEntity):
|
||||||
"""Representation of a AtagOne Sensor."""
|
"""Representation of a AtagOne Sensor."""
|
||||||
|
|
||||||
def __init__(self, coordinator, sensor):
|
def __init__(self, coordinator: AtagDataUpdateCoordinator, sensor: str) -> None:
|
||||||
"""Initialize Atag sensor."""
|
"""Initialize Atag sensor."""
|
||||||
super().__init__(coordinator, SENSORS[sensor])
|
super().__init__(coordinator, SENSORS[sensor])
|
||||||
self._attr_name = sensor
|
self._attr_name = sensor
|
||||||
|
|
|
@ -7,12 +7,11 @@ from homeassistant.components.water_heater import (
|
||||||
STATE_PERFORMANCE,
|
STATE_PERFORMANCE,
|
||||||
WaterHeaterEntity,
|
WaterHeaterEntity,
|
||||||
)
|
)
|
||||||
from homeassistant.config_entries import ConfigEntry
|
|
||||||
from homeassistant.const import ATTR_TEMPERATURE, STATE_OFF, Platform, UnitOfTemperature
|
from homeassistant.const import ATTR_TEMPERATURE, STATE_OFF, Platform, UnitOfTemperature
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||||||
|
|
||||||
from . import DOMAIN
|
from .coordinator import AtagConfigEntry
|
||||||
from .entity import AtagEntity
|
from .entity import AtagEntity
|
||||||
|
|
||||||
OPERATION_LIST = [STATE_OFF, STATE_ECO, STATE_PERFORMANCE]
|
OPERATION_LIST = [STATE_OFF, STATE_ECO, STATE_PERFORMANCE]
|
||||||
|
@ -20,12 +19,13 @@ OPERATION_LIST = [STATE_OFF, STATE_ECO, STATE_PERFORMANCE]
|
||||||
|
|
||||||
async def async_setup_entry(
|
async def async_setup_entry(
|
||||||
hass: HomeAssistant,
|
hass: HomeAssistant,
|
||||||
config_entry: ConfigEntry,
|
config_entry: AtagConfigEntry,
|
||||||
async_add_entities: AddEntitiesCallback,
|
async_add_entities: AddEntitiesCallback,
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Initialize DHW device from config entry."""
|
"""Initialize DHW device from config entry."""
|
||||||
coordinator = hass.data[DOMAIN][config_entry.entry_id]
|
async_add_entities(
|
||||||
async_add_entities([AtagWaterHeater(coordinator, Platform.WATER_HEATER)])
|
[AtagWaterHeater(config_entry.runtime_data, Platform.WATER_HEATER)]
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class AtagWaterHeater(AtagEntity, WaterHeaterEntity):
|
class AtagWaterHeater(AtagEntity, WaterHeaterEntity):
|
||||||
|
|
|
@ -2,7 +2,8 @@
|
||||||
|
|
||||||
from unittest.mock import PropertyMock, patch
|
from unittest.mock import PropertyMock, patch
|
||||||
|
|
||||||
from homeassistant.components.atag.climate import DOMAIN, PRESET_MAP
|
from homeassistant.components.atag import DOMAIN
|
||||||
|
from homeassistant.components.atag.climate import PRESET_MAP
|
||||||
from homeassistant.components.climate import (
|
from homeassistant.components.climate import (
|
||||||
ATTR_HVAC_ACTION,
|
ATTR_HVAC_ACTION,
|
||||||
ATTR_HVAC_MODE,
|
ATTR_HVAC_MODE,
|
||||||
|
@ -104,7 +105,7 @@ async def test_update_failed(
|
||||||
entry = await init_integration(hass, aioclient_mock)
|
entry = await init_integration(hass, aioclient_mock)
|
||||||
await async_setup_component(hass, HA_DOMAIN, {})
|
await async_setup_component(hass, HA_DOMAIN, {})
|
||||||
assert hass.states.get(CLIMATE_ID).state == HVACMode.HEAT
|
assert hass.states.get(CLIMATE_ID).state == HVACMode.HEAT
|
||||||
coordinator = hass.data[DOMAIN][entry.entry_id]
|
coordinator = entry.runtime_data
|
||||||
with patch("pyatag.AtagOne.update", side_effect=TimeoutError) as updater:
|
with patch("pyatag.AtagOne.update", side_effect=TimeoutError) as updater:
|
||||||
await coordinator.async_refresh()
|
await coordinator.async_refresh()
|
||||||
await hass.async_block_till_done()
|
await hass.async_block_till_done()
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
"""Tests for the ATAG integration."""
|
"""Tests for the ATAG integration."""
|
||||||
|
|
||||||
from homeassistant.components.atag import DOMAIN
|
|
||||||
from homeassistant.config_entries import ConfigEntryState
|
from homeassistant.config_entries import ConfigEntryState
|
||||||
from homeassistant.core import HomeAssistant
|
from homeassistant.core import HomeAssistant
|
||||||
|
|
||||||
|
@ -23,7 +22,7 @@ async def test_unload_config_entry(
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Test the ATAG configuration entry unloading."""
|
"""Test the ATAG configuration entry unloading."""
|
||||||
entry = await init_integration(hass, aioclient_mock)
|
entry = await init_integration(hass, aioclient_mock)
|
||||||
assert hass.data[DOMAIN]
|
assert entry.runtime_data
|
||||||
await hass.config_entries.async_unload(entry.entry_id)
|
await hass.config_entries.async_unload(entry.entry_id)
|
||||||
await hass.async_block_till_done()
|
await hass.async_block_till_done()
|
||||||
assert not hass.data.get(DOMAIN)
|
assert not hasattr(entry, "runtime_data")
|
||||||
|
|
Loading…
Reference in New Issue