Update device registry of MQTT sensor (#20440)
This commit is contained in:
parent
09cbcb74bc
commit
85ccd71d39
2 changed files with 53 additions and 5 deletions
|
@ -69,7 +69,7 @@ async def async_setup_entry(hass, config_entry, async_add_entities):
|
||||||
try:
|
try:
|
||||||
discovery_hash = discovery_payload[ATTR_DISCOVERY_HASH]
|
discovery_hash = discovery_payload[ATTR_DISCOVERY_HASH]
|
||||||
config = PLATFORM_SCHEMA(discovery_payload)
|
config = PLATFORM_SCHEMA(discovery_payload)
|
||||||
await _async_setup_entity(config, async_add_entities,
|
await _async_setup_entity(config, async_add_entities, config_entry,
|
||||||
discovery_hash)
|
discovery_hash)
|
||||||
except Exception:
|
except Exception:
|
||||||
if discovery_hash:
|
if discovery_hash:
|
||||||
|
@ -82,16 +82,16 @@ async def async_setup_entry(hass, config_entry, async_add_entities):
|
||||||
|
|
||||||
|
|
||||||
async def _async_setup_entity(config: ConfigType, async_add_entities,
|
async def _async_setup_entity(config: ConfigType, async_add_entities,
|
||||||
discovery_hash=None):
|
config_entry=None, discovery_hash=None):
|
||||||
"""Set up MQTT sensor."""
|
"""Set up MQTT sensor."""
|
||||||
async_add_entities([MqttSensor(config, discovery_hash)])
|
async_add_entities([MqttSensor(config, config_entry, discovery_hash)])
|
||||||
|
|
||||||
|
|
||||||
class MqttSensor(MqttAttributes, MqttAvailability, MqttDiscoveryUpdate,
|
class MqttSensor(MqttAttributes, MqttAvailability, MqttDiscoveryUpdate,
|
||||||
MqttEntityDeviceInfo, Entity):
|
MqttEntityDeviceInfo, Entity):
|
||||||
"""Representation of a sensor that can be updated using MQTT."""
|
"""Representation of a sensor that can be updated using MQTT."""
|
||||||
|
|
||||||
def __init__(self, config, discovery_hash):
|
def __init__(self, config, config_entry, discovery_hash):
|
||||||
"""Initialize the sensor."""
|
"""Initialize the sensor."""
|
||||||
self._config = config
|
self._config = config
|
||||||
self._unique_id = config.get(CONF_UNIQUE_ID)
|
self._unique_id = config.get(CONF_UNIQUE_ID)
|
||||||
|
@ -110,7 +110,7 @@ class MqttSensor(MqttAttributes, MqttAvailability, MqttDiscoveryUpdate,
|
||||||
MqttAvailability.__init__(self, config)
|
MqttAvailability.__init__(self, config)
|
||||||
MqttDiscoveryUpdate.__init__(self, discovery_hash,
|
MqttDiscoveryUpdate.__init__(self, discovery_hash,
|
||||||
self.discovery_update)
|
self.discovery_update)
|
||||||
MqttEntityDeviceInfo.__init__(self, device_config)
|
MqttEntityDeviceInfo.__init__(self, device_config, config_entry)
|
||||||
|
|
||||||
async def async_added_to_hass(self):
|
async def async_added_to_hass(self):
|
||||||
"""Subscribe to MQTT events."""
|
"""Subscribe to MQTT events."""
|
||||||
|
@ -123,6 +123,7 @@ class MqttSensor(MqttAttributes, MqttAvailability, MqttDiscoveryUpdate,
|
||||||
self._config = config
|
self._config = config
|
||||||
await self.attributes_discovery_update(config)
|
await self.attributes_discovery_update(config)
|
||||||
await self.availability_discovery_update(config)
|
await self.availability_discovery_update(config)
|
||||||
|
await self.device_info_discovery_update(config)
|
||||||
await self._subscribe_topics()
|
await self._subscribe_topics()
|
||||||
self.async_schedule_update_ha_state()
|
self.async_schedule_update_ha_state()
|
||||||
|
|
||||||
|
|
|
@ -616,6 +616,53 @@ async def test_entity_device_info_with_identifier(hass, mqtt_mock):
|
||||||
assert device.sw_version == '0.1-beta'
|
assert device.sw_version == '0.1-beta'
|
||||||
|
|
||||||
|
|
||||||
|
async def test_entity_device_info_update(hass, mqtt_mock):
|
||||||
|
"""Test device registry update."""
|
||||||
|
entry = MockConfigEntry(domain=mqtt.DOMAIN)
|
||||||
|
entry.add_to_hass(hass)
|
||||||
|
await async_start(hass, 'homeassistant', {}, entry)
|
||||||
|
registry = await hass.helpers.device_registry.async_get_registry()
|
||||||
|
|
||||||
|
config = {
|
||||||
|
'platform': 'mqtt',
|
||||||
|
'name': 'Test 1',
|
||||||
|
'state_topic': 'test-topic',
|
||||||
|
'command_topic': 'test-command-topic',
|
||||||
|
'device': {
|
||||||
|
'identifiers': ['helloworld'],
|
||||||
|
'connections': [
|
||||||
|
["mac", "02:5b:26:a8:dc:12"],
|
||||||
|
],
|
||||||
|
'manufacturer': 'Whatever',
|
||||||
|
'name': 'Beer',
|
||||||
|
'model': 'Glass',
|
||||||
|
'sw_version': '0.1-beta',
|
||||||
|
},
|
||||||
|
'unique_id': 'veryunique'
|
||||||
|
}
|
||||||
|
|
||||||
|
data = json.dumps(config)
|
||||||
|
async_fire_mqtt_message(hass, 'homeassistant/sensor/bla/config',
|
||||||
|
data)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
|
||||||
|
device = registry.async_get_device({('mqtt', 'helloworld')}, set())
|
||||||
|
assert device is not None
|
||||||
|
assert device.name == 'Beer'
|
||||||
|
|
||||||
|
config['device']['name'] = 'Milk'
|
||||||
|
data = json.dumps(config)
|
||||||
|
async_fire_mqtt_message(hass, 'homeassistant/sensor/bla/config',
|
||||||
|
data)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
|
||||||
|
device = registry.async_get_device({('mqtt', 'helloworld')}, set())
|
||||||
|
assert device is not None
|
||||||
|
assert device.name == 'Milk'
|
||||||
|
|
||||||
|
|
||||||
async def test_entity_id_update(hass, mqtt_mock):
|
async def test_entity_id_update(hass, mqtt_mock):
|
||||||
"""Test MQTT subscriptions are managed when entity_id is updated."""
|
"""Test MQTT subscriptions are managed when entity_id is updated."""
|
||||||
registry = mock_registry(hass, {})
|
registry = mock_registry(hass, {})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue