Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix HEOS device information #135940

Merged
merged 2 commits into from
Jan 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions homeassistant/components/heos/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,18 @@ async def async_setup_entry(hass: HomeAssistant, entry: HeosConfigEntry) -> bool
if entry.unique_id is None:
hass.config_entries.async_update_entry(entry, unique_id=DOMAIN)

# Migrate non-string device identifiers.
device_registry = dr.async_get(hass)
for device in device_registry.devices.get_devices_for_config_entry_id(
entry.entry_id
):
for domain, player_id in device.identifiers:
if domain == DOMAIN and not isinstance(player_id, str):
device_registry.async_update_device(
device.id, new_identifiers={(DOMAIN, str(player_id))}
)
break

host = entry.data[CONF_HOST]
credentials: Credentials | None = None
if entry.options:
Expand Down Expand Up @@ -221,13 +233,13 @@ def update_ids(self, mapped_ids: dict[int, int]):
# update device registry
assert self._device_registry is not None
entry = self._device_registry.async_get_device(
identifiers={(DOMAIN, old_id)} # type: ignore[arg-type] # Fix in the future
identifiers={(DOMAIN, str(old_id))}
)
new_identifiers = {(DOMAIN, new_id)}
new_identifiers = {(DOMAIN, str(new_id))}
if entry:
self._device_registry.async_update_device(
entry.id,
new_identifiers=new_identifiers, # type: ignore[arg-type] # Fix in the future
new_identifiers=new_identifiers,
)
_LOGGER.debug(
"Updated device %s identifiers to %s", entry.id, new_identifiers
Expand Down
10 changes: 7 additions & 3 deletions homeassistant/components/heos/media_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,11 +136,15 @@ def __init__(
self._source_manager = source_manager
self._group_manager = group_manager
self._attr_unique_id = str(player.player_id)
model_parts = player.model.split(maxsplit=1)
manufacturer = model_parts[0] if len(model_parts) == 2 else "HEOS"
model = model_parts[1] if len(model_parts) == 2 else player.model
self._attr_device_info = DeviceInfo(
identifiers={(HEOS_DOMAIN, player.player_id)},
manufacturer="HEOS",
model=player.model,
identifiers={(HEOS_DOMAIN, str(player.player_id))},
manufacturer=manufacturer,
model=model,
name=player.name,
serial_number=player.serial, # Only available for some models
sw_version=player.version,
)

Expand Down
6 changes: 1 addition & 5 deletions homeassistant/components/heos/quality_scale.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,7 @@ rules:
4. Recommend using snapshot in test_state_attributes.
5. Find a way to avoid using internal dispatcher in test_updates_from_connection_event.
# Gold
devices:
status: todo
comment: |
The integraiton creates devices, but needs to stringify the id for the device identifier and
also migrate the device.
devices: done
diagnostics: todo
discovery-update-info:
status: todo
Expand Down
4 changes: 2 additions & 2 deletions tests/components/heos/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ def player_fixture(quick_selects):
player = HeosPlayer(
player_id=i,
name="Test Player" if i == 1 else f"Test Player {i}",
model="Test Model",
serial="",
model="HEOS Drive HS2" if i == 1 else "Speaker",
serial="123456",
version="1.0.0",
line_out=LineOutLevelType.VARIABLE,
is_muted=False,
Expand Down
40 changes: 40 additions & 0 deletions tests/components/heos/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
from homeassistant.const import CONF_HOST, CONF_PASSWORD, CONF_USERNAME
from homeassistant.core import HomeAssistant
from homeassistant.exceptions import ConfigEntryNotReady
from homeassistant.helpers import device_registry as dr
from homeassistant.setup import async_setup_component

from tests.common import MockConfigEntry
Expand Down Expand Up @@ -217,3 +218,42 @@ async def test_update_sources_retry(
while "Unable to update sources" not in caplog.text:
await asyncio.sleep(0.1)
assert controller.get_favorites.call_count == 2


async def test_device_info(
hass: HomeAssistant,
device_registry: dr.DeviceRegistry,
config_entry: MockConfigEntry,
) -> None:
"""Test device information populates correctly."""
config_entry.add_to_hass(hass)
assert await hass.config_entries.async_setup(config_entry.entry_id)
device = device_registry.async_get_device({(DOMAIN, "1")})
assert device.manufacturer == "HEOS"
assert device.model == "Drive HS2"
assert device.name == "Test Player"
assert device.serial_number == "123456"
assert device.sw_version == "1.0.0"
device = device_registry.async_get_device({(DOMAIN, "2")})
assert device.manufacturer == "HEOS"
assert device.model == "Speaker"


async def test_device_id_migration(
hass: HomeAssistant,
device_registry: dr.DeviceRegistry,
config_entry: MockConfigEntry,
) -> None:
"""Test that legacy non-string device identifiers are migrated to strings."""
config_entry.add_to_hass(hass)
# Create a device with a legacy identifier
device_registry.async_get_or_create(
config_entry_id=config_entry.entry_id, identifiers={(DOMAIN, 1)}
)
device_registry.async_get_or_create(
config_entry_id=config_entry.entry_id, identifiers={("Other", 1)}
)
assert await hass.config_entries.async_setup(config_entry.entry_id)
assert device_registry.async_get_device({("Other", 1)}) is not None
assert device_registry.async_get_device({(DOMAIN, 1)}) is None
assert device_registry.async_get_device({(DOMAIN, "1")}) is not None
4 changes: 2 additions & 2 deletions tests/components/heos/test_media_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ async def test_updates_from_players_changed_new_ids(
event = asyncio.Event()

# Assert device registry matches current id
assert device_registry.async_get_device(identifiers={(DOMAIN, 1)})
assert device_registry.async_get_device(identifiers={(DOMAIN, "1")})
# Assert entity registry matches current id
assert (
entity_registry.async_get_entity_id(MEDIA_PLAYER_DOMAIN, DOMAIN, "1")
Expand All @@ -292,7 +292,7 @@ async def set_signal():

# Assert device registry identifiers were updated
assert len(device_registry.devices) == 2
assert device_registry.async_get_device(identifiers={(DOMAIN, 101)})
assert device_registry.async_get_device(identifiers={(DOMAIN, "101")})
# Assert entity registry unique id was updated
assert len(entity_registry.entities) == 2
assert (
Expand Down