mirror of https://github.com/home-assistant/core
28 lines
976 B
Python
28 lines
976 B
Python
"""Define tests for the Acmeda config flow."""
|
|
|
|
from homeassistant.components.acmeda.const import DOMAIN
|
|
from homeassistant.components.sensor import DOMAIN as SENSOR_DOMAIN
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import entity_registry as er
|
|
|
|
from tests.common import MockConfigEntry
|
|
|
|
|
|
async def test_sensor_id_migration(
|
|
hass: HomeAssistant,
|
|
mock_config_entry: MockConfigEntry,
|
|
entity_registry: er.EntityRegistry,
|
|
) -> None:
|
|
"""Test migrating unique id."""
|
|
mock_config_entry.add_to_hass(hass)
|
|
entity_registry.async_get_or_create(
|
|
SENSOR_DOMAIN, DOMAIN, 1234567890123, config_entry=mock_config_entry
|
|
)
|
|
assert await hass.config_entries.async_setup(mock_config_entry.entry_id)
|
|
await hass.async_block_till_done()
|
|
entities = er.async_entries_for_config_entry(
|
|
entity_registry, mock_config_entry.entry_id
|
|
)
|
|
assert len(entities) == 1
|
|
assert entities[0].unique_id == "1234567890123"
|