1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 12:59:34 +00:00

Handle empty service in script action gracefully (#27467)

* Handle empty service in script action gracefully

* Add test
This commit is contained in:
Erik Montnemery
2019-10-12 21:28:47 +02:00
committed by Paulus Schoutsen
parent ee8b72fb71
commit 42691b783e
2 changed files with 20 additions and 0 deletions

View File

@@ -842,6 +842,25 @@ async def test_automation_with_error_in_script(hass, caplog):
assert "Service not found" in caplog.text
async def test_automation_with_error_in_script_2(hass, caplog):
"""Test automation with an error in script."""
assert await async_setup_component(
hass,
automation.DOMAIN,
{
automation.DOMAIN: {
"alias": "hello",
"trigger": {"platform": "event", "event_type": "test_event"},
"action": {"service": None, "entity_id": "hello.world"},
}
},
)
hass.bus.async_fire("test_event")
await hass.async_block_till_done()
assert "string value is None" in caplog.text
async def test_automation_restore_last_triggered_with_initial_state(hass):
"""Ensure last_triggered is restored, even when initial state is set."""
time = dt_util.utcnow()