Use entity registry id in button device actions (#95267)

pull/95303/head
Erik Montnemery 2023-06-26 22:22:15 +02:00 committed by GitHub
parent fde82ee323
commit 9b1b0937eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 60 additions and 11 deletions

View File

@ -3,6 +3,7 @@ from __future__ import annotations
import voluptuous as vol import voluptuous as vol
from homeassistant.components.device_automation import async_validate_entity_schema
from homeassistant.const import ( from homeassistant.const import (
ATTR_ENTITY_ID, ATTR_ENTITY_ID,
CONF_DEVICE_ID, CONF_DEVICE_ID,
@ -19,14 +20,21 @@ from .const import DOMAIN, SERVICE_PRESS
ACTION_TYPES = {"press"} ACTION_TYPES = {"press"}
ACTION_SCHEMA = cv.DEVICE_ACTION_BASE_SCHEMA.extend( _ACTION_SCHEMA = cv.DEVICE_ACTION_BASE_SCHEMA.extend(
{ {
vol.Required(CONF_TYPE): vol.In(ACTION_TYPES), vol.Required(CONF_TYPE): vol.In(ACTION_TYPES),
vol.Required(CONF_ENTITY_ID): cv.entity_domain(DOMAIN), vol.Required(CONF_ENTITY_ID): cv.entity_id_or_uuid,
} }
) )
async def async_validate_action_config(
hass: HomeAssistant, config: ConfigType
) -> ConfigType:
"""Validate config."""
return async_validate_entity_schema(hass, config, _ACTION_SCHEMA)
async def async_get_actions( async def async_get_actions(
hass: HomeAssistant, device_id: str hass: HomeAssistant, device_id: str
) -> list[dict[str, str]]: ) -> list[dict[str, str]]:
@ -36,7 +44,7 @@ async def async_get_actions(
{ {
CONF_DEVICE_ID: device_id, CONF_DEVICE_ID: device_id,
CONF_DOMAIN: DOMAIN, CONF_DOMAIN: DOMAIN,
CONF_ENTITY_ID: entry.entity_id, CONF_ENTITY_ID: entry.id,
CONF_TYPE: "press", CONF_TYPE: "press",
} }
for entry in er.async_entries_for_device(registry, device_id) for entry in er.async_entries_for_device(registry, device_id)

View File

@ -27,6 +27,7 @@ STATIC_VALIDATOR = {
ENTITY_PLATFORMS = { ENTITY_PLATFORMS = {
Platform.ALARM_CONTROL_PANEL.value, Platform.ALARM_CONTROL_PANEL.value,
Platform.BUTTON.value,
Platform.FAN.value, Platform.FAN.value,
Platform.HUMIDIFIER.value, Platform.HUMIDIFIER.value,
Platform.LIGHT.value, Platform.LIGHT.value,

View File

@ -29,7 +29,7 @@ async def test_get_actions(
config_entry_id=config_entry.entry_id, config_entry_id=config_entry.entry_id,
connections={(dr.CONNECTION_NETWORK_MAC, "12:34:56:AB:CD:EF")}, connections={(dr.CONNECTION_NETWORK_MAC, "12:34:56:AB:CD:EF")},
) )
entity_registry.async_get_or_create( entity_entry = entity_registry.async_get_or_create(
DOMAIN, "test", "5678", device_id=device_entry.id DOMAIN, "test", "5678", device_id=device_entry.id
) )
expected_actions = [ expected_actions = [
@ -37,7 +37,7 @@ async def test_get_actions(
"domain": DOMAIN, "domain": DOMAIN,
"type": "press", "type": "press",
"device_id": device_entry.id, "device_id": device_entry.id,
"entity_id": "button.test_5678", "entity_id": entity_entry.id,
"metadata": {"secondary": False}, "metadata": {"secondary": False},
} }
] ]
@ -70,7 +70,7 @@ async def test_get_actions_hidden_auxiliary(
config_entry_id=config_entry.entry_id, config_entry_id=config_entry.entry_id,
connections={(dr.CONNECTION_NETWORK_MAC, "12:34:56:AB:CD:EF")}, connections={(dr.CONNECTION_NETWORK_MAC, "12:34:56:AB:CD:EF")},
) )
entity_registry.async_get_or_create( entity_entry = entity_registry.async_get_or_create(
DOMAIN, DOMAIN,
"test", "test",
"5678", "5678",
@ -84,7 +84,7 @@ async def test_get_actions_hidden_auxiliary(
"domain": DOMAIN, "domain": DOMAIN,
"type": action, "type": action,
"device_id": device_entry.id, "device_id": device_entry.id,
"entity_id": f"{DOMAIN}.test_5678", "entity_id": entity_entry.id,
"metadata": {"secondary": True}, "metadata": {"secondary": True},
} }
for action in ["press"] for action in ["press"]
@ -95,8 +95,10 @@ async def test_get_actions_hidden_auxiliary(
assert actions == unordered(expected_actions) assert actions == unordered(expected_actions)
async def test_action(hass: HomeAssistant) -> None: async def test_action(hass: HomeAssistant, entity_registry: er.EntityRegistry) -> None:
"""Test for press action.""" """Test for press action."""
entry = entity_registry.async_get_or_create(DOMAIN, "test", "5678")
assert await async_setup_component( assert await async_setup_component(
hass, hass,
automation.DOMAIN, automation.DOMAIN,
@ -110,7 +112,7 @@ async def test_action(hass: HomeAssistant) -> None:
"action": { "action": {
"domain": DOMAIN, "domain": DOMAIN,
"device_id": "abcdefgh", "device_id": "abcdefgh",
"entity_id": "button.entity", "entity_id": entry.id,
"type": "press", "type": "press",
}, },
}, },
@ -125,4 +127,41 @@ async def test_action(hass: HomeAssistant) -> None:
assert len(press_calls) == 1 assert len(press_calls) == 1
assert press_calls[0].domain == DOMAIN assert press_calls[0].domain == DOMAIN
assert press_calls[0].service == "press" assert press_calls[0].service == "press"
assert press_calls[0].data == {"entity_id": "button.entity"} assert press_calls[0].data == {"entity_id": entry.entity_id}
async def test_action_legacy(
hass: HomeAssistant, entity_registry: er.EntityRegistry
) -> None:
"""Test for press action."""
entry = entity_registry.async_get_or_create(DOMAIN, "test", "5678")
assert await async_setup_component(
hass,
automation.DOMAIN,
{
automation.DOMAIN: [
{
"trigger": {
"platform": "event",
"event_type": "test_event",
},
"action": {
"domain": DOMAIN,
"device_id": "abcdefgh",
"entity_id": entry.entity_id,
"type": "press",
},
},
]
},
)
press_calls = async_mock_service(hass, DOMAIN, "press")
hass.bus.async_fire("test_event")
await hass.async_block_till_done()
assert len(press_calls) == 1
assert press_calls[0].domain == DOMAIN
assert press_calls[0].service == "press"
assert press_calls[0].data == {"entity_id": entry.entity_id}

View File

@ -165,6 +165,7 @@ async def test_get_inovelli_actions(hass: HomeAssistant, device_inovelli) -> Non
{(DOMAIN, inovelli_ieee_address)} {(DOMAIN, inovelli_ieee_address)}
) )
ha_entity_registry = er.async_get(hass) ha_entity_registry = er.async_get(hass)
inovelli_button = ha_entity_registry.async_get("button.inovelli_vzm31_sn_identify")
inovelli_light = ha_entity_registry.async_get("light.inovelli_vzm31_sn_light") inovelli_light = ha_entity_registry.async_get("light.inovelli_vzm31_sn_light")
actions = await async_get_device_automations( actions = await async_get_device_automations(
@ -187,7 +188,7 @@ async def test_get_inovelli_actions(hass: HomeAssistant, device_inovelli) -> Non
{ {
"device_id": inovelli_reg_device.id, "device_id": inovelli_reg_device.id,
"domain": Platform.BUTTON, "domain": Platform.BUTTON,
"entity_id": "button.inovelli_vzm31_sn_identify", "entity_id": inovelli_button.id,
"metadata": {"secondary": True}, "metadata": {"secondary": True},
"type": "press", "type": "press",
}, },