Support unique_id for Universal Media Player (#77461)

* support unique id

* tests for unique_id

* use unique_id attribute
This commit is contained in:
holysoles 2022-09-09 04:50:39 -05:00 committed by GitHub
parent b369c2f54c
commit c3b2e03ce8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -21,6 +21,7 @@ from homeassistant.const import (
STATE_UNKNOWN,
)
from homeassistant.core import Context, callback
from homeassistant.helpers import entity_registry
from homeassistant.helpers.event import async_track_state_change_event
from homeassistant.setup import async_setup_component
@ -1092,6 +1093,26 @@ async def test_device_class(hass):
assert hass.states.get("media_player.tv").attributes["device_class"] == "tv"
async def test_unique_id(hass):
"""Test unique_id property."""
hass.states.async_set("sensor.test_sensor", "on")
await async_setup_component(
hass,
"media_player",
{
"media_player": {
"platform": "universal",
"name": "tv",
"unique_id": "universal_master_bed_tv",
}
},
)
await hass.async_block_till_done()
er = entity_registry.async_get(hass)
assert er.async_get("media_player.tv").unique_id == "universal_master_bed_tv"
async def test_invalid_state_template(hass):
"""Test invalid state template sets state to None."""
hass.states.async_set("sensor.test_sensor", "on")
@ -1220,3 +1241,4 @@ async def test_reload(hass):
assert (
"device_class" not in hass.states.get("media_player.master_bed_tv").attributes
)
assert "unique_id" not in hass.states.get("media_player.master_bed_tv").attributes