Do not add integration config entry to source device (#148730)

This commit is contained in:
Erik Montnemery
2025-07-14 20:18:41 +02:00
committed by GitHub
parent 3ae9ea3f19
commit c27a67db82
4 changed files with 216 additions and 33 deletions

View File

@@ -7,8 +7,8 @@ import pytest
from homeassistant.components import integration
from homeassistant.components.integration.config_flow import ConfigFlowHandler
from homeassistant.components.integration.const import DOMAIN
from homeassistant.config_entries import ConfigEntry
from homeassistant.core import Event, HomeAssistant
from homeassistant.config_entries import ConfigEntry, ConfigEntryState
from homeassistant.core import Event, HomeAssistant, callback
from homeassistant.helpers import device_registry as dr, entity_registry as er
from homeassistant.helpers.event import async_track_entity_registry_updated_event
@@ -83,6 +83,7 @@ def track_entity_registry_actions(hass: HomeAssistant, entity_id: str) -> list[s
"""Track entity registry actions for an entity."""
events = []
@callback
def add_event(event: Event[er.EventEntityRegistryUpdatedData]) -> None:
"""Add entity registry updated event to the list."""
events.append(event.data["action"])
@@ -176,6 +177,7 @@ async def test_entry_changed(hass: HomeAssistant, platform) -> None:
# Set up entities, with backing devices and config entries
input_entry = _create_mock_entity("sensor", "input")
valid_entry = _create_mock_entity("sensor", "valid")
assert input_entry.device_id != valid_entry.device_id
# Setup the config entry
config_entry = MockConfigEntry(
@@ -193,17 +195,21 @@ async def test_entry_changed(hass: HomeAssistant, platform) -> None:
assert await hass.config_entries.async_setup(config_entry.entry_id)
await hass.async_block_till_done()
assert config_entry.entry_id in _get_device_config_entries(input_entry)
assert config_entry.entry_id not in _get_device_config_entries(input_entry)
assert config_entry.entry_id not in _get_device_config_entries(valid_entry)
integration_entity_entry = entity_registry.async_get("sensor.my_integration")
assert integration_entity_entry.device_id == input_entry.device_id
hass.config_entries.async_update_entry(
config_entry, options={**config_entry.options, "source": "sensor.valid"}
)
await hass.async_block_till_done()
# Check that the config entry association has updated
# Check that the device association has updated
assert config_entry.entry_id not in _get_device_config_entries(input_entry)
assert config_entry.entry_id in _get_device_config_entries(valid_entry)
assert config_entry.entry_id not in _get_device_config_entries(valid_entry)
integration_entity_entry = entity_registry.async_get("sensor.my_integration")
assert integration_entity_entry.device_id == valid_entry.device_id
async def test_device_cleaning(
@@ -276,7 +282,7 @@ async def test_device_cleaning(
devices_before_reload = device_registry.devices.get_devices_for_config_entry_id(
integration_config_entry.entry_id
)
assert len(devices_before_reload) == 3
assert len(devices_before_reload) == 2
# Config entry reload
await hass.config_entries.async_reload(integration_config_entry.entry_id)
@@ -291,7 +297,7 @@ async def test_device_cleaning(
devices_after_reload = device_registry.devices.get_devices_for_config_entry_id(
integration_config_entry.entry_id
)
assert len(devices_after_reload) == 1
assert len(devices_after_reload) == 0
async def test_async_handle_source_entity_changes_source_entity_removed(
@@ -302,6 +308,54 @@ async def test_async_handle_source_entity_changes_source_entity_removed(
sensor_config_entry: ConfigEntry,
sensor_device: dr.DeviceEntry,
sensor_entity_entry: er.RegistryEntry,
) -> None:
"""Test the integration config entry is removed when the source entity is removed."""
assert await hass.config_entries.async_setup(integration_config_entry.entry_id)
await hass.async_block_till_done()
integration_entity_entry = entity_registry.async_get("sensor.my_integration")
assert integration_entity_entry.device_id == sensor_entity_entry.device_id
sensor_device = device_registry.async_get(sensor_device.id)
assert integration_config_entry.entry_id not in sensor_device.config_entries
events = track_entity_registry_actions(hass, integration_entity_entry.entity_id)
# Remove the source sensor's config entry from the device, this removes the
# source sensor
with patch(
"homeassistant.components.integration.async_unload_entry",
wraps=integration.async_unload_entry,
) as mock_unload_entry:
device_registry.async_update_device(
sensor_device.id, remove_config_entry_id=sensor_config_entry.entry_id
)
await hass.async_block_till_done()
await hass.async_block_till_done()
mock_unload_entry.assert_not_called()
# Check that the entity is no longer linked to the source device
integration_entity_entry = entity_registry.async_get("sensor.my_integration")
assert integration_entity_entry.device_id is None
# Check that the device is removed
assert not device_registry.async_get(sensor_device.id)
# Check that the integration config entry is not removed
assert integration_config_entry.entry_id in hass.config_entries.async_entry_ids()
# Check we got the expected events
assert events == ["update"]
async def test_async_handle_source_entity_changes_source_entity_removed_shared_device(
hass: HomeAssistant,
device_registry: dr.DeviceRegistry,
entity_registry: er.EntityRegistry,
integration_config_entry: MockConfigEntry,
sensor_config_entry: ConfigEntry,
sensor_device: dr.DeviceEntry,
sensor_entity_entry: er.RegistryEntry,
) -> None:
"""Test the integration config entry is removed when the source entity is removed."""
# Add another config entry to the sensor device
@@ -318,7 +372,7 @@ async def test_async_handle_source_entity_changes_source_entity_removed(
assert integration_entity_entry.device_id == sensor_entity_entry.device_id
sensor_device = device_registry.async_get(sensor_device.id)
assert integration_config_entry.entry_id in sensor_device.config_entries
assert integration_config_entry.entry_id not in sensor_device.config_entries
events = track_entity_registry_actions(hass, integration_entity_entry.entity_id)
@@ -335,7 +389,11 @@ async def test_async_handle_source_entity_changes_source_entity_removed(
await hass.async_block_till_done()
mock_unload_entry.assert_not_called()
# Check that the integration config entry is removed from the device
# Check that the entity is no longer linked to the source device
integration_entity_entry = entity_registry.async_get("sensor.my_integration")
assert integration_entity_entry.device_id is None
# Check that the integration config entry is not in the device
sensor_device = device_registry.async_get(sensor_device.id)
assert integration_config_entry.entry_id not in sensor_device.config_entries
@@ -362,7 +420,7 @@ async def test_async_handle_source_entity_changes_source_entity_removed_from_dev
assert integration_entity_entry.device_id == sensor_entity_entry.device_id
sensor_device = device_registry.async_get(sensor_device.id)
assert integration_config_entry.entry_id in sensor_device.config_entries
assert integration_config_entry.entry_id not in sensor_device.config_entries
events = track_entity_registry_actions(hass, integration_entity_entry.entity_id)
@@ -377,7 +435,11 @@ async def test_async_handle_source_entity_changes_source_entity_removed_from_dev
await hass.async_block_till_done()
mock_unload_entry.assert_called_once()
# Check that the integration config entry is removed from the device
# Check that the entity is no longer linked to the source device
integration_entity_entry = entity_registry.async_get("sensor.my_integration")
assert integration_entity_entry.device_id is None
# Check that the integration config entry is not in the device
sensor_device = device_registry.async_get(sensor_device.id)
assert integration_config_entry.entry_id not in sensor_device.config_entries
@@ -410,7 +472,7 @@ async def test_async_handle_source_entity_changes_source_entity_moved_other_devi
assert integration_entity_entry.device_id == sensor_entity_entry.device_id
sensor_device = device_registry.async_get(sensor_device.id)
assert integration_config_entry.entry_id in sensor_device.config_entries
assert integration_config_entry.entry_id not in sensor_device.config_entries
sensor_device_2 = device_registry.async_get(sensor_device_2.id)
assert integration_config_entry.entry_id not in sensor_device_2.config_entries
@@ -427,11 +489,15 @@ async def test_async_handle_source_entity_changes_source_entity_moved_other_devi
await hass.async_block_till_done()
mock_unload_entry.assert_called_once()
# Check that the integration config entry is moved to the other device
# Check that the entity is linked to the other device
integration_entity_entry = entity_registry.async_get("sensor.my_integration")
assert integration_entity_entry.device_id == sensor_device_2.id
# Check that the derivative config entry is not in any of the devices
sensor_device = device_registry.async_get(sensor_device.id)
assert integration_config_entry.entry_id not in sensor_device.config_entries
sensor_device_2 = device_registry.async_get(sensor_device_2.id)
assert integration_config_entry.entry_id in sensor_device_2.config_entries
assert integration_config_entry.entry_id not in sensor_device_2.config_entries
# Check that the integration config entry is not removed
assert integration_config_entry.entry_id in hass.config_entries.async_entry_ids()
@@ -456,7 +522,7 @@ async def test_async_handle_source_entity_new_entity_id(
assert integration_entity_entry.device_id == sensor_entity_entry.device_id
sensor_device = device_registry.async_get(sensor_device.id)
assert integration_config_entry.entry_id in sensor_device.config_entries
assert integration_config_entry.entry_id not in sensor_device.config_entries
events = track_entity_registry_actions(hass, integration_entity_entry.entity_id)
@@ -474,12 +540,91 @@ async def test_async_handle_source_entity_new_entity_id(
# Check that the integration config entry is updated with the new entity ID
assert integration_config_entry.options["source"] == "sensor.new_entity_id"
# Check that the helper config is still in the device
# Check that the helper config is not in the device
sensor_device = device_registry.async_get(sensor_device.id)
assert integration_config_entry.entry_id in sensor_device.config_entries
assert integration_config_entry.entry_id not in sensor_device.config_entries
# Check that the integration config entry is not removed
assert integration_config_entry.entry_id in hass.config_entries.async_entry_ids()
# Check we got the expected events
assert events == []
async def test_migration_1_1(
hass: HomeAssistant,
device_registry: dr.DeviceRegistry,
entity_registry: er.EntityRegistry,
sensor_entity_entry: er.RegistryEntry,
sensor_device: dr.DeviceEntry,
) -> None:
"""Test migration from v1.1 removes integration config entry from device."""
integration_config_entry = MockConfigEntry(
data={},
domain=DOMAIN,
options={
"method": "trapezoidal",
"name": "My integration",
"round": 1.0,
"source": sensor_entity_entry.entity_id,
"unit_prefix": "k",
"unit_time": "min",
"max_sub_interval": {"minutes": 1},
},
title="My integration",
version=1,
minor_version=1,
)
integration_config_entry.add_to_hass(hass)
# Add the helper config entry to the device
device_registry.async_update_device(
sensor_device.id, add_config_entry_id=integration_config_entry.entry_id
)
# Check preconditions
sensor_device = device_registry.async_get(sensor_device.id)
assert integration_config_entry.entry_id in sensor_device.config_entries
await hass.config_entries.async_setup(integration_config_entry.entry_id)
await hass.async_block_till_done()
assert integration_config_entry.state is ConfigEntryState.LOADED
# Check that the helper config entry is removed from the device and the helper
# entity is linked to the source device
sensor_device = device_registry.async_get(sensor_device.id)
assert integration_config_entry.entry_id not in sensor_device.config_entries
integration_entity_entry = entity_registry.async_get("sensor.my_integration")
assert integration_entity_entry.device_id == sensor_entity_entry.device_id
assert integration_config_entry.version == 1
assert integration_config_entry.minor_version == 2
async def test_migration_from_future_version(
hass: HomeAssistant,
) -> None:
"""Test migration from future version."""
config_entry = MockConfigEntry(
data={},
domain=DOMAIN,
options={
"method": "trapezoidal",
"name": "My integration",
"round": 1.0,
"source": "sensor.test",
"unit_prefix": "k",
"unit_time": "min",
"max_sub_interval": {"minutes": 1},
},
title="My integration",
version=2,
minor_version=1,
)
config_entry.add_to_hass(hass)
await hass.config_entries.async_setup(config_entry.entry_id)
await hass.async_block_till_done()
assert config_entry.state is ConfigEntryState.MIGRATION_ERROR