mirror of
https://github.com/home-assistant/core.git
synced 2025-07-18 10:47:10 +00:00
Add device trigger for alarm_control_panel (#29068)
* Added device trigger to alarm control panel * Added supported features to check that device has certain trigger * Fixed tests for device_trigger * Fixed pylint error * Removed pending trigger and removed trigger condition
This commit is contained in:
parent
d5efd0b352
commit
8908dba5b4
151
homeassistant/components/alarm_control_panel/device_trigger.py
Normal file
151
homeassistant/components/alarm_control_panel/device_trigger.py
Normal file
@ -0,0 +1,151 @@
|
|||||||
|
"""Provides device automations for Alarm control panel."""
|
||||||
|
from typing import List
|
||||||
|
|
||||||
|
import voluptuous as vol
|
||||||
|
|
||||||
|
from homeassistant.components.alarm_control_panel.const import (
|
||||||
|
SUPPORT_ALARM_ARM_AWAY,
|
||||||
|
SUPPORT_ALARM_ARM_HOME,
|
||||||
|
SUPPORT_ALARM_ARM_NIGHT,
|
||||||
|
)
|
||||||
|
from homeassistant.components.automation import AutomationActionType, state
|
||||||
|
from homeassistant.components.device_automation import TRIGGER_BASE_SCHEMA
|
||||||
|
from homeassistant.const import (
|
||||||
|
CONF_DEVICE_ID,
|
||||||
|
CONF_DOMAIN,
|
||||||
|
CONF_ENTITY_ID,
|
||||||
|
CONF_PLATFORM,
|
||||||
|
CONF_TYPE,
|
||||||
|
STATE_ALARM_ARMED_AWAY,
|
||||||
|
STATE_ALARM_ARMED_HOME,
|
||||||
|
STATE_ALARM_ARMED_NIGHT,
|
||||||
|
STATE_ALARM_DISARMED,
|
||||||
|
STATE_ALARM_PENDING,
|
||||||
|
STATE_ALARM_TRIGGERED,
|
||||||
|
)
|
||||||
|
from homeassistant.core import CALLBACK_TYPE, HomeAssistant
|
||||||
|
from homeassistant.helpers import config_validation as cv, entity_registry
|
||||||
|
from homeassistant.helpers.typing import ConfigType
|
||||||
|
|
||||||
|
from . import DOMAIN
|
||||||
|
|
||||||
|
TRIGGER_TYPES = {
|
||||||
|
"triggered",
|
||||||
|
"disarmed",
|
||||||
|
"armed_home",
|
||||||
|
"armed_away",
|
||||||
|
"armed_night",
|
||||||
|
}
|
||||||
|
|
||||||
|
TRIGGER_SCHEMA = TRIGGER_BASE_SCHEMA.extend(
|
||||||
|
{
|
||||||
|
vol.Required(CONF_ENTITY_ID): cv.entity_id,
|
||||||
|
vol.Required(CONF_TYPE): vol.In(TRIGGER_TYPES),
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
async def async_get_triggers(hass: HomeAssistant, device_id: str) -> List[dict]:
|
||||||
|
"""List device triggers for Alarm control panel devices."""
|
||||||
|
registry = await entity_registry.async_get_registry(hass)
|
||||||
|
triggers = []
|
||||||
|
|
||||||
|
# Get all the integrations entities for this device
|
||||||
|
for entry in entity_registry.async_entries_for_device(registry, device_id):
|
||||||
|
if entry.domain != DOMAIN:
|
||||||
|
continue
|
||||||
|
|
||||||
|
entity_state = hass.states.get(entry.entity_id)
|
||||||
|
|
||||||
|
# We need a state or else we can't populate the HVAC and preset modes.
|
||||||
|
if entity_state is None:
|
||||||
|
continue
|
||||||
|
|
||||||
|
supported_features = entity_state.attributes["supported_features"]
|
||||||
|
|
||||||
|
# Add triggers for each entity that belongs to this integration
|
||||||
|
triggers += [
|
||||||
|
{
|
||||||
|
CONF_PLATFORM: "device",
|
||||||
|
CONF_DEVICE_ID: device_id,
|
||||||
|
CONF_DOMAIN: DOMAIN,
|
||||||
|
CONF_ENTITY_ID: entry.entity_id,
|
||||||
|
CONF_TYPE: "disarmed",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
CONF_PLATFORM: "device",
|
||||||
|
CONF_DEVICE_ID: device_id,
|
||||||
|
CONF_DOMAIN: DOMAIN,
|
||||||
|
CONF_ENTITY_ID: entry.entity_id,
|
||||||
|
CONF_TYPE: "triggered",
|
||||||
|
},
|
||||||
|
]
|
||||||
|
if supported_features & SUPPORT_ALARM_ARM_HOME:
|
||||||
|
triggers.append(
|
||||||
|
{
|
||||||
|
CONF_PLATFORM: "device",
|
||||||
|
CONF_DEVICE_ID: device_id,
|
||||||
|
CONF_DOMAIN: DOMAIN,
|
||||||
|
CONF_ENTITY_ID: entry.entity_id,
|
||||||
|
CONF_TYPE: "armed_home",
|
||||||
|
}
|
||||||
|
)
|
||||||
|
if supported_features & SUPPORT_ALARM_ARM_AWAY:
|
||||||
|
triggers.append(
|
||||||
|
{
|
||||||
|
CONF_PLATFORM: "device",
|
||||||
|
CONF_DEVICE_ID: device_id,
|
||||||
|
CONF_DOMAIN: DOMAIN,
|
||||||
|
CONF_ENTITY_ID: entry.entity_id,
|
||||||
|
CONF_TYPE: "armed_away",
|
||||||
|
}
|
||||||
|
)
|
||||||
|
if supported_features & SUPPORT_ALARM_ARM_NIGHT:
|
||||||
|
triggers.append(
|
||||||
|
{
|
||||||
|
CONF_PLATFORM: "device",
|
||||||
|
CONF_DEVICE_ID: device_id,
|
||||||
|
CONF_DOMAIN: DOMAIN,
|
||||||
|
CONF_ENTITY_ID: entry.entity_id,
|
||||||
|
CONF_TYPE: "armed_night",
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
return triggers
|
||||||
|
|
||||||
|
|
||||||
|
async def async_attach_trigger(
|
||||||
|
hass: HomeAssistant,
|
||||||
|
config: ConfigType,
|
||||||
|
action: AutomationActionType,
|
||||||
|
automation_info: dict,
|
||||||
|
) -> CALLBACK_TYPE:
|
||||||
|
"""Attach a trigger."""
|
||||||
|
config = TRIGGER_SCHEMA(config)
|
||||||
|
|
||||||
|
if config[CONF_TYPE] == "triggered":
|
||||||
|
from_state = STATE_ALARM_PENDING
|
||||||
|
to_state = STATE_ALARM_TRIGGERED
|
||||||
|
elif config[CONF_TYPE] == "disarmed":
|
||||||
|
from_state = STATE_ALARM_TRIGGERED
|
||||||
|
to_state = STATE_ALARM_DISARMED
|
||||||
|
elif config[CONF_TYPE] == "armed_home":
|
||||||
|
from_state = STATE_ALARM_PENDING
|
||||||
|
to_state = STATE_ALARM_ARMED_HOME
|
||||||
|
elif config[CONF_TYPE] == "armed_away":
|
||||||
|
from_state = STATE_ALARM_PENDING
|
||||||
|
to_state = STATE_ALARM_ARMED_AWAY
|
||||||
|
elif config[CONF_TYPE] == "armed_night":
|
||||||
|
from_state = STATE_ALARM_PENDING
|
||||||
|
to_state = STATE_ALARM_ARMED_NIGHT
|
||||||
|
|
||||||
|
state_config = {
|
||||||
|
state.CONF_PLATFORM: "state",
|
||||||
|
CONF_ENTITY_ID: config[CONF_ENTITY_ID],
|
||||||
|
state.CONF_FROM: from_state,
|
||||||
|
state.CONF_TO: to_state,
|
||||||
|
}
|
||||||
|
state_config = state.TRIGGER_SCHEMA(state_config)
|
||||||
|
return await state.async_attach_trigger(
|
||||||
|
hass, state_config, action, automation_info, platform_type="device"
|
||||||
|
)
|
@ -6,6 +6,13 @@
|
|||||||
"arm_night": "Arm {entity_name} night",
|
"arm_night": "Arm {entity_name} night",
|
||||||
"disarm": "Disarm {entity_name}",
|
"disarm": "Disarm {entity_name}",
|
||||||
"trigger": "Trigger {entity_name}"
|
"trigger": "Trigger {entity_name}"
|
||||||
|
},
|
||||||
|
"trigger_type": {
|
||||||
|
"triggered": "{entity_name} triggered",
|
||||||
|
"disarmed": "{entity_name} disarmed",
|
||||||
|
"armed_home": "{entity_name} armed home",
|
||||||
|
"armed_away": "{entity_name} armed away",
|
||||||
|
"armed_night": "{entity_name} armed night"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
257
tests/components/alarm_control_panel/test_device_trigger.py
Normal file
257
tests/components/alarm_control_panel/test_device_trigger.py
Normal file
@ -0,0 +1,257 @@
|
|||||||
|
"""The tests for Alarm control panel device triggers."""
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from homeassistant.components.alarm_control_panel import DOMAIN
|
||||||
|
import homeassistant.components.automation as automation
|
||||||
|
from homeassistant.const import (
|
||||||
|
STATE_ALARM_ARMED_AWAY,
|
||||||
|
STATE_ALARM_ARMED_HOME,
|
||||||
|
STATE_ALARM_ARMED_NIGHT,
|
||||||
|
STATE_ALARM_DISARMED,
|
||||||
|
STATE_ALARM_PENDING,
|
||||||
|
STATE_ALARM_TRIGGERED,
|
||||||
|
)
|
||||||
|
from homeassistant.helpers import device_registry
|
||||||
|
from homeassistant.setup import async_setup_component
|
||||||
|
|
||||||
|
from tests.common import (
|
||||||
|
MockConfigEntry,
|
||||||
|
assert_lists_same,
|
||||||
|
async_get_device_automations,
|
||||||
|
async_mock_service,
|
||||||
|
mock_device_registry,
|
||||||
|
mock_registry,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture
|
||||||
|
def device_reg(hass):
|
||||||
|
"""Return an empty, loaded, registry."""
|
||||||
|
return mock_device_registry(hass)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture
|
||||||
|
def entity_reg(hass):
|
||||||
|
"""Return an empty, loaded, registry."""
|
||||||
|
return mock_registry(hass)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture
|
||||||
|
def calls(hass):
|
||||||
|
"""Track calls to a mock service."""
|
||||||
|
return async_mock_service(hass, "test", "automation")
|
||||||
|
|
||||||
|
|
||||||
|
async def test_get_triggers(hass, device_reg, entity_reg):
|
||||||
|
"""Test we get the expected triggers from a alarm_control_panel."""
|
||||||
|
config_entry = MockConfigEntry(domain="test", data={})
|
||||||
|
config_entry.add_to_hass(hass)
|
||||||
|
device_entry = device_reg.async_get_or_create(
|
||||||
|
config_entry_id=config_entry.entry_id,
|
||||||
|
connections={(device_registry.CONNECTION_NETWORK_MAC, "12:34:56:AB:CD:EF")},
|
||||||
|
)
|
||||||
|
entity_reg.async_get_or_create(DOMAIN, "test", "5678", device_id=device_entry.id)
|
||||||
|
hass.states.async_set(
|
||||||
|
"alarm_control_panel.test_5678", "attributes", {"supported_features": 15}
|
||||||
|
)
|
||||||
|
expected_triggers = [
|
||||||
|
{
|
||||||
|
"platform": "device",
|
||||||
|
"domain": DOMAIN,
|
||||||
|
"type": "disarmed",
|
||||||
|
"device_id": device_entry.id,
|
||||||
|
"entity_id": f"{DOMAIN}.test_5678",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"platform": "device",
|
||||||
|
"domain": DOMAIN,
|
||||||
|
"type": "triggered",
|
||||||
|
"device_id": device_entry.id,
|
||||||
|
"entity_id": f"{DOMAIN}.test_5678",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"platform": "device",
|
||||||
|
"domain": DOMAIN,
|
||||||
|
"type": "armed_home",
|
||||||
|
"device_id": device_entry.id,
|
||||||
|
"entity_id": f"{DOMAIN}.test_5678",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"platform": "device",
|
||||||
|
"domain": DOMAIN,
|
||||||
|
"type": "armed_away",
|
||||||
|
"device_id": device_entry.id,
|
||||||
|
"entity_id": f"{DOMAIN}.test_5678",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"platform": "device",
|
||||||
|
"domain": DOMAIN,
|
||||||
|
"type": "armed_night",
|
||||||
|
"device_id": device_entry.id,
|
||||||
|
"entity_id": f"{DOMAIN}.test_5678",
|
||||||
|
},
|
||||||
|
]
|
||||||
|
triggers = await async_get_device_automations(hass, "trigger", device_entry.id)
|
||||||
|
assert_lists_same(triggers, expected_triggers)
|
||||||
|
|
||||||
|
|
||||||
|
async def test_if_fires_on_state_change(hass, calls):
|
||||||
|
"""Test for turn_on and turn_off triggers firing."""
|
||||||
|
hass.states.async_set("alarm_control_panel.entity", STATE_ALARM_PENDING)
|
||||||
|
|
||||||
|
assert await async_setup_component(
|
||||||
|
hass,
|
||||||
|
automation.DOMAIN,
|
||||||
|
{
|
||||||
|
automation.DOMAIN: [
|
||||||
|
{
|
||||||
|
"trigger": {
|
||||||
|
"platform": "device",
|
||||||
|
"domain": DOMAIN,
|
||||||
|
"device_id": "",
|
||||||
|
"entity_id": "alarm_control_panel.entity",
|
||||||
|
"type": "triggered",
|
||||||
|
},
|
||||||
|
"action": {
|
||||||
|
"service": "test.automation",
|
||||||
|
"data_template": {
|
||||||
|
"some": (
|
||||||
|
"triggered - {{ trigger.platform}} - "
|
||||||
|
"{{ trigger.entity_id}} - {{ trigger.from_state.state}} - "
|
||||||
|
"{{ trigger.to_state.state}} - {{ trigger.for }}"
|
||||||
|
)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"trigger": {
|
||||||
|
"platform": "device",
|
||||||
|
"domain": DOMAIN,
|
||||||
|
"device_id": "",
|
||||||
|
"entity_id": "alarm_control_panel.entity",
|
||||||
|
"type": "disarmed",
|
||||||
|
},
|
||||||
|
"action": {
|
||||||
|
"service": "test.automation",
|
||||||
|
"data_template": {
|
||||||
|
"some": (
|
||||||
|
"disarmed - {{ trigger.platform}} - "
|
||||||
|
"{{ trigger.entity_id}} - {{ trigger.from_state.state}} - "
|
||||||
|
"{{ trigger.to_state.state}} - {{ trigger.for }}"
|
||||||
|
)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"trigger": {
|
||||||
|
"platform": "device",
|
||||||
|
"domain": DOMAIN,
|
||||||
|
"device_id": "",
|
||||||
|
"entity_id": "alarm_control_panel.entity",
|
||||||
|
"type": "armed_home",
|
||||||
|
},
|
||||||
|
"action": {
|
||||||
|
"service": "test.automation",
|
||||||
|
"data_template": {
|
||||||
|
"some": (
|
||||||
|
"armed_home - {{ trigger.platform}} - "
|
||||||
|
"{{ trigger.entity_id}} - {{ trigger.from_state.state}} - "
|
||||||
|
"{{ trigger.to_state.state}} - {{ trigger.for }}"
|
||||||
|
)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"trigger": {
|
||||||
|
"platform": "device",
|
||||||
|
"domain": DOMAIN,
|
||||||
|
"device_id": "",
|
||||||
|
"entity_id": "alarm_control_panel.entity",
|
||||||
|
"type": "armed_away",
|
||||||
|
},
|
||||||
|
"action": {
|
||||||
|
"service": "test.automation",
|
||||||
|
"data_template": {
|
||||||
|
"some": (
|
||||||
|
"armed_away - {{ trigger.platform}} - "
|
||||||
|
"{{ trigger.entity_id}} - {{ trigger.from_state.state}} - "
|
||||||
|
"{{ trigger.to_state.state}} - {{ trigger.for }}"
|
||||||
|
)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"trigger": {
|
||||||
|
"platform": "device",
|
||||||
|
"domain": DOMAIN,
|
||||||
|
"device_id": "",
|
||||||
|
"entity_id": "alarm_control_panel.entity",
|
||||||
|
"type": "armed_night",
|
||||||
|
},
|
||||||
|
"action": {
|
||||||
|
"service": "test.automation",
|
||||||
|
"data_template": {
|
||||||
|
"some": (
|
||||||
|
"armed_night - {{ trigger.platform}} - "
|
||||||
|
"{{ trigger.entity_id}} - {{ trigger.from_state.state}} - "
|
||||||
|
"{{ trigger.to_state.state}} - {{ trigger.for }}"
|
||||||
|
)
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
]
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fake that the entity is triggered.
|
||||||
|
hass.states.async_set("alarm_control_panel.entity", STATE_ALARM_TRIGGERED)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
assert len(calls) == 1
|
||||||
|
assert calls[0].data[
|
||||||
|
"some"
|
||||||
|
] == "triggered - device - {} - pending - triggered - None".format(
|
||||||
|
"alarm_control_panel.entity"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fake that the entity is disarmed.
|
||||||
|
hass.states.async_set("alarm_control_panel.entity", STATE_ALARM_DISARMED)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
assert len(calls) == 2
|
||||||
|
assert calls[1].data[
|
||||||
|
"some"
|
||||||
|
] == "disarmed - device - {} - triggered - disarmed - None".format(
|
||||||
|
"alarm_control_panel.entity"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fake that the entity is armed home.
|
||||||
|
hass.states.async_set("alarm_control_panel.entity", STATE_ALARM_PENDING)
|
||||||
|
hass.states.async_set("alarm_control_panel.entity", STATE_ALARM_ARMED_HOME)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
assert len(calls) == 3
|
||||||
|
assert calls[2].data[
|
||||||
|
"some"
|
||||||
|
] == "armed_home - device - {} - pending - armed_home - None".format(
|
||||||
|
"alarm_control_panel.entity"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fake that the entity is armed away.
|
||||||
|
hass.states.async_set("alarm_control_panel.entity", STATE_ALARM_PENDING)
|
||||||
|
hass.states.async_set("alarm_control_panel.entity", STATE_ALARM_ARMED_AWAY)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
assert len(calls) == 4
|
||||||
|
assert calls[3].data[
|
||||||
|
"some"
|
||||||
|
] == "armed_away - device - {} - pending - armed_away - None".format(
|
||||||
|
"alarm_control_panel.entity"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Fake that the entity is armed night.
|
||||||
|
hass.states.async_set("alarm_control_panel.entity", STATE_ALARM_PENDING)
|
||||||
|
hass.states.async_set("alarm_control_panel.entity", STATE_ALARM_ARMED_NIGHT)
|
||||||
|
await hass.async_block_till_done()
|
||||||
|
assert len(calls) == 5
|
||||||
|
assert calls[4].data[
|
||||||
|
"some"
|
||||||
|
] == "armed_night - device - {} - pending - armed_night - None".format(
|
||||||
|
"alarm_control_panel.entity"
|
||||||
|
)
|
Loading…
x
Reference in New Issue
Block a user