mirror of https://github.com/home-assistant/core
99 lines
3.5 KiB
Python
99 lines
3.5 KiB
Python
"""Test Generic Thermostat component setup process."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.components.generic_thermostat.const import DOMAIN
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import device_registry as dr, entity_registry as er
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_device_cleaning(
|
|
hass: HomeAssistant,
|
|
device_registry: dr.DeviceRegistry,
|
|
entity_registry: er.EntityRegistry,
|
|
) -> None:
|
|
"""Test cleaning of devices linked to the helper config entry."""
|
|
|
|
# Source entity device config entry
|
|
source_config_entry = MockConfigEntry()
|
|
source_config_entry.add_to_hass(hass)
|
|
|
|
# Device entry of the source entity
|
|
source_device1_entry = device_registry.async_get_or_create(
|
|
config_entry_id=source_config_entry.entry_id,
|
|
identifiers={("switch", "identifier_test1")},
|
|
connections={("mac", "30:31:32:33:34:01")},
|
|
)
|
|
|
|
# Source entity registry
|
|
source_entity = entity_registry.async_get_or_create(
|
|
"switch",
|
|
"test",
|
|
"source",
|
|
config_entry=source_config_entry,
|
|
device_id=source_device1_entry.id,
|
|
)
|
|
await hass.async_block_till_done()
|
|
assert entity_registry.async_get("switch.test_source") is not None
|
|
|
|
# Configure the configuration entry for helper
|
|
helper_config_entry = MockConfigEntry(
|
|
data={},
|
|
domain=DOMAIN,
|
|
options={
|
|
"name": "Test",
|
|
"heater": "switch.test_source",
|
|
"target_sensor": "sensor.temperature",
|
|
"ac_mode": False,
|
|
"cold_tolerance": 0.3,
|
|
"hot_tolerance": 0.3,
|
|
},
|
|
title="Test",
|
|
)
|
|
helper_config_entry.add_to_hass(hass)
|
|
assert await hass.config_entries.async_setup(helper_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
# Confirm the link between the source entity device and the helper entity
|
|
helper_entity = entity_registry.async_get("climate.test")
|
|
assert helper_entity is not None
|
|
assert helper_entity.device_id == source_entity.device_id
|
|
|
|
# Device entry incorrectly linked to config entry
|
|
device_registry.async_get_or_create(
|
|
config_entry_id=helper_config_entry.entry_id,
|
|
identifiers={("sensor", "identifier_test2")},
|
|
connections={("mac", "30:31:32:33:34:02")},
|
|
)
|
|
device_registry.async_get_or_create(
|
|
config_entry_id=helper_config_entry.entry_id,
|
|
identifiers={("sensor", "identifier_test3")},
|
|
connections={("mac", "30:31:32:33:34:03")},
|
|
)
|
|
await hass.async_block_till_done()
|
|
|
|
# Before reloading the config entry, 3 devices are expected to be linked
|
|
devices_before_reload = device_registry.devices.get_devices_for_config_entry_id(
|
|
helper_config_entry.entry_id
|
|
)
|
|
assert len(devices_before_reload) == 3
|
|
|
|
# Config entry reload
|
|
await hass.config_entries.async_reload(helper_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
|
|
# Confirm the link between the source entity device and the helper entity
|
|
helper_entity = entity_registry.async_get("climate.test")
|
|
assert helper_entity is not None
|
|
assert helper_entity.device_id == source_entity.device_id
|
|
|
|
# After reloading the config entry, only one linked device is expected
|
|
devices_after_reload = device_registry.devices.get_devices_for_config_entry_id(
|
|
helper_config_entry.entry_id
|
|
)
|
|
assert len(devices_after_reload) == 1
|
|
|
|
assert devices_after_reload[0].id == source_device1_entry.id
|