"""Tests for the Velbus component initialisation.""" import pytest from homeassistant.components.velbus.const import DOMAIN from homeassistant.config_entries import ConfigEntry, ConfigEntryState from homeassistant.core import HomeAssistant from tests.common import mock_device_registry @pytest.mark.usefixtures("controller") async def test_unload_entry(hass: HomeAssistant, config_entry: ConfigEntry): """Test being able to unload an entry.""" await hass.config_entries.async_setup(config_entry.entry_id) await hass.async_block_till_done() assert len(hass.config_entries.async_entries(DOMAIN)) == 1 assert config_entry.state is ConfigEntryState.LOADED assert await hass.config_entries.async_unload(config_entry.entry_id) await hass.async_block_till_done() assert config_entry.state is ConfigEntryState.NOT_LOADED assert not hass.data.get(DOMAIN) @pytest.mark.usefixtures("controller") async def test_device_identifier_migration( hass: HomeAssistant, config_entry: ConfigEntry ): """Test being able to unload an entry.""" original_identifiers = {(DOMAIN, "module_address", "module_serial")} target_identifiers = {(DOMAIN, "module_address")} device_registry = mock_device_registry(hass) device_registry.async_get_or_create( config_entry_id=config_entry.entry_id, identifiers=original_identifiers, name="channel_name", manufacturer="Velleman", model="module_type_name", sw_version="module_sw_version", ) assert device_registry.async_get_device(original_identifiers) assert not device_registry.async_get_device(target_identifiers) await hass.config_entries.async_setup(config_entry.entry_id) await hass.async_block_till_done() assert not device_registry.async_get_device(original_identifiers) device_entry = device_registry.async_get_device(target_identifiers) assert device_entry assert device_entry.name == "channel_name" assert device_entry.manufacturer == "Velleman" assert device_entry.model == "module_type_name" assert device_entry.sw_version == "module_sw_version"