core/tests/components/automation/test_template.py

435 lines
14 KiB
Python
Raw Normal View History

"""The tests for the Template automation."""
2015-12-16 21:27:43 +00:00
import unittest
from homeassistant.core import Context, callback
from homeassistant.setup import setup_component
2015-12-16 21:27:43 +00:00
import homeassistant.components.automation as automation
from tests.common import (
get_test_home_assistant, assert_setup_component, mock_component)
2016-02-14 23:08:23 +00:00
2015-12-16 21:27:43 +00:00
# pylint: disable=invalid-name
2015-12-16 21:27:43 +00:00
class TestAutomationTemplate(unittest.TestCase):
2016-03-09 09:25:50 +00:00
"""Test the event automation."""
2015-12-16 21:27:43 +00:00
def setUp(self):
2018-08-19 20:29:08 +00:00
"""Set up things to be run when tests are started."""
2016-02-14 23:08:23 +00:00
self.hass = get_test_home_assistant()
mock_component(self.hass, 'group')
2015-12-16 21:27:43 +00:00
self.hass.states.set('test.entity', 'hello')
self.calls = []
@callback
2015-12-16 21:27:43 +00:00
def record_call(service):
"""Record calls."""
2015-12-16 21:27:43 +00:00
self.calls.append(service)
self.hass.services.register('test', 'automation', record_call)
def tearDown(self):
2016-03-09 09:25:50 +00:00
"""Stop everything that was started."""
2015-12-16 21:27:43 +00:00
self.hass.stop()
def test_if_fires_on_change_bool(self):
2016-03-09 09:25:50 +00:00
"""Test for firing on boolean change."""
assert setup_component(self.hass, automation.DOMAIN, {
2015-12-16 21:27:43 +00:00
automation.DOMAIN: {
'trigger': {
'platform': 'template',
'value_template': '{{ true }}',
},
'action': {
'service': 'test.automation'
}
}
})
2015-12-16 21:27:43 +00:00
self.hass.states.set('test.entity', 'world')
self.hass.block_till_done()
2015-12-16 21:27:43 +00:00
self.assertEqual(1, len(self.calls))
automation.turn_off(self.hass)
self.hass.block_till_done()
self.hass.states.set('test.entity', 'planet')
self.hass.block_till_done()
self.assertEqual(1, len(self.calls))
2015-12-16 21:27:43 +00:00
def test_if_fires_on_change_str(self):
2016-03-09 09:25:50 +00:00
"""Test for firing on change."""
assert setup_component(self.hass, automation.DOMAIN, {
2015-12-16 21:27:43 +00:00
automation.DOMAIN: {
'trigger': {
'platform': 'template',
'value_template': 'true',
},
'action': {
'service': 'test.automation'
}
}
})
2015-12-16 21:27:43 +00:00
self.hass.states.set('test.entity', 'world')
self.hass.block_till_done()
2015-12-16 21:27:43 +00:00
self.assertEqual(1, len(self.calls))
def test_if_fires_on_change_str_crazy(self):
2016-03-09 09:25:50 +00:00
"""Test for firing on change."""
assert setup_component(self.hass, automation.DOMAIN, {
2015-12-16 21:27:43 +00:00
automation.DOMAIN: {
'trigger': {
'platform': 'template',
'value_template': 'TrUE',
},
'action': {
'service': 'test.automation'
}
}
})
2015-12-16 21:27:43 +00:00
self.hass.states.set('test.entity', 'world')
self.hass.block_till_done()
2015-12-16 21:27:43 +00:00
self.assertEqual(1, len(self.calls))
def test_if_not_fires_on_change_bool(self):
2016-03-09 09:25:50 +00:00
"""Test for not firing on boolean change."""
assert setup_component(self.hass, automation.DOMAIN, {
2015-12-16 21:27:43 +00:00
automation.DOMAIN: {
'trigger': {
'platform': 'template',
'value_template': '{{ false }}',
},
'action': {
'service': 'test.automation'
}
}
})
2015-12-16 21:27:43 +00:00
self.hass.states.set('test.entity', 'world')
self.hass.block_till_done()
2015-12-16 21:27:43 +00:00
self.assertEqual(0, len(self.calls))
def test_if_not_fires_on_change_str(self):
2016-03-09 09:25:50 +00:00
"""Test for not firing on string change."""
assert setup_component(self.hass, automation.DOMAIN, {
2015-12-16 21:27:43 +00:00
automation.DOMAIN: {
'trigger': {
'platform': 'template',
'value_template': 'False',
},
'action': {
'service': 'test.automation'
}
}
})
2015-12-16 21:27:43 +00:00
self.hass.states.set('test.entity', 'world')
self.hass.block_till_done()
2015-12-16 21:27:43 +00:00
self.assertEqual(0, len(self.calls))
def test_if_not_fires_on_change_str_crazy(self):
2016-03-09 09:25:50 +00:00
"""Test for not firing on string change."""
assert setup_component(self.hass, automation.DOMAIN, {
2015-12-16 21:27:43 +00:00
automation.DOMAIN: {
'trigger': {
'platform': 'template',
'value_template': 'Anything other than "true" is false.',
},
'action': {
'service': 'test.automation'
}
}
})
2015-12-16 21:27:43 +00:00
self.hass.states.set('test.entity', 'world')
self.hass.block_till_done()
2015-12-16 21:27:43 +00:00
self.assertEqual(0, len(self.calls))
def test_if_fires_on_no_change(self):
2016-03-09 09:25:50 +00:00
"""Test for firing on no change."""
assert setup_component(self.hass, automation.DOMAIN, {
2015-12-16 21:27:43 +00:00
automation.DOMAIN: {
'trigger': {
'platform': 'template',
'value_template': '{{ true }}',
},
'action': {
'service': 'test.automation'
}
}
})
2015-12-16 21:27:43 +00:00
self.hass.block_till_done()
self.calls = []
2015-12-16 21:27:43 +00:00
self.hass.states.set('test.entity', 'hello')
self.hass.block_till_done()
2015-12-16 21:27:43 +00:00
self.assertEqual(0, len(self.calls))
def test_if_fires_on_two_change(self):
2016-03-09 09:25:50 +00:00
"""Test for firing on two changes."""
assert setup_component(self.hass, automation.DOMAIN, {
2015-12-16 21:27:43 +00:00
automation.DOMAIN: {
'trigger': {
'platform': 'template',
'value_template': '{{ true }}',
},
'action': {
'service': 'test.automation'
}
}
})
2015-12-16 21:27:43 +00:00
# Trigger once
self.hass.states.set('test.entity', 'world')
self.hass.block_till_done()
2015-12-16 21:27:43 +00:00
self.assertEqual(1, len(self.calls))
# Trigger again
self.hass.states.set('test.entity', 'world')
self.hass.block_till_done()
2015-12-16 21:27:43 +00:00
self.assertEqual(1, len(self.calls))
def test_if_fires_on_change_with_template(self):
2016-03-09 09:25:50 +00:00
"""Test for firing on change with template."""
assert setup_component(self.hass, automation.DOMAIN, {
2015-12-16 21:27:43 +00:00
automation.DOMAIN: {
'trigger': {
'platform': 'template',
'value_template': '{{ is_state("test.entity", "world") }}',
},
'action': {
'service': 'test.automation'
}
}
})
2015-12-16 21:27:43 +00:00
self.hass.states.set('test.entity', 'world')
self.hass.block_till_done()
2015-12-16 21:27:43 +00:00
self.assertEqual(1, len(self.calls))
def test_if_not_fires_on_change_with_template(self):
2016-03-09 09:25:50 +00:00
"""Test for not firing on change with template."""
assert setup_component(self.hass, automation.DOMAIN, {
2015-12-16 21:27:43 +00:00
automation.DOMAIN: {
'trigger': {
'platform': 'template',
'value_template': '{{ is_state("test.entity", "hello") }}',
},
'action': {
'service': 'test.automation'
}
}
})
2015-12-16 21:27:43 +00:00
self.hass.block_till_done()
self.calls = []
2015-12-16 21:27:43 +00:00
self.hass.states.set('test.entity', 'world')
self.hass.block_till_done()
assert len(self.calls) == 0
2015-12-16 21:27:43 +00:00
def test_if_fires_on_change_with_template_advanced(self):
2016-03-09 09:25:50 +00:00
"""Test for firing on change with template advanced."""
context = Context()
assert setup_component(self.hass, automation.DOMAIN, {
2015-12-16 21:27:43 +00:00
automation.DOMAIN: {
'trigger': {
'platform': 'template',
'value_template': '{{ is_state("test.entity", "world") }}'
2015-12-16 21:27:43 +00:00
},
'action': {
'service': 'test.automation',
'data_template': {
'some':
'{{ trigger.%s }}' % '}} - {{ trigger.'.join((
'platform', 'entity_id', 'from_state.state',
'to_state.state'))
},
2015-12-16 21:27:43 +00:00
}
}
})
2015-12-16 21:27:43 +00:00
self.hass.block_till_done()
self.calls = []
self.hass.states.set('test.entity', 'world', context=context)
self.hass.block_till_done()
2015-12-16 21:27:43 +00:00
self.assertEqual(1, len(self.calls))
assert self.calls[0].context is context
self.assertEqual(
'template - test.entity - hello - world',
self.calls[0].data['some'])
2015-12-16 21:27:43 +00:00
def test_if_fires_on_no_change_with_template_advanced(self):
2016-03-09 09:25:50 +00:00
"""Test for firing on no change with template advanced."""
assert setup_component(self.hass, automation.DOMAIN, {
2015-12-16 21:27:43 +00:00
automation.DOMAIN: {
'trigger': {
'platform': 'template',
'value_template': '''{%- if is_state("test.entity", "world") -%}
true
{%- else -%}
false
{%- endif -%}''',
},
'action': {
'service': 'test.automation'
}
}
})
2015-12-16 21:27:43 +00:00
# Different state
self.hass.states.set('test.entity', 'worldz')
self.hass.block_till_done()
2015-12-16 21:27:43 +00:00
self.assertEqual(0, len(self.calls))
# Different state
self.hass.states.set('test.entity', 'hello')
self.hass.block_till_done()
2015-12-16 21:27:43 +00:00
self.assertEqual(0, len(self.calls))
def test_if_fires_on_change_with_template_2(self):
2016-03-09 09:25:50 +00:00
"""Test for firing on change with template."""
assert setup_component(self.hass, automation.DOMAIN, {
2015-12-16 21:27:43 +00:00
automation.DOMAIN: {
'trigger': {
'platform': 'template',
2016-02-14 21:07:21 +00:00
'value_template':
'{{ not is_state("test.entity", "world") }}',
2015-12-16 21:27:43 +00:00
},
'action': {
'service': 'test.automation'
}
}
})
2015-12-16 21:27:43 +00:00
self.hass.block_till_done()
self.calls = []
2015-12-16 21:27:43 +00:00
self.hass.states.set('test.entity', 'world')
self.hass.block_till_done()
assert len(self.calls) == 0
2015-12-16 21:27:43 +00:00
self.hass.states.set('test.entity', 'home')
self.hass.block_till_done()
assert len(self.calls) == 1
2015-12-16 21:27:43 +00:00
self.hass.states.set('test.entity', 'work')
self.hass.block_till_done()
assert len(self.calls) == 1
2015-12-16 22:07:14 +00:00
self.hass.states.set('test.entity', 'not_home')
self.hass.block_till_done()
assert len(self.calls) == 1
2015-12-16 21:27:43 +00:00
self.hass.states.set('test.entity', 'world')
self.hass.block_till_done()
assert len(self.calls) == 1
2015-12-16 21:27:43 +00:00
self.hass.states.set('test.entity', 'home')
self.hass.block_till_done()
assert len(self.calls) == 2
2015-12-16 21:27:43 +00:00
def test_if_action(self):
2016-03-09 09:25:50 +00:00
"""Test for firing if action."""
assert setup_component(self.hass, automation.DOMAIN, {
2015-12-16 21:27:43 +00:00
automation.DOMAIN: {
'trigger': {
'platform': 'event',
'event_type': 'test_event',
},
'condition': [{
2016-10-01 08:22:13 +00:00
'condition': 'template',
2015-12-16 21:27:43 +00:00
'value_template': '{{ is_state("test.entity", "world") }}'
}],
'action': {
'service': 'test.automation'
}
}
})
# Condition is not true yet
self.hass.bus.fire('test_event')
self.hass.block_till_done()
2015-12-16 21:27:43 +00:00
self.assertEqual(0, len(self.calls))
# Change condition to true, but it shouldn't be triggered yet
self.hass.states.set('test.entity', 'world')
self.hass.block_till_done()
2015-12-16 21:27:43 +00:00
self.assertEqual(0, len(self.calls))
# Condition is true and event is triggered
self.hass.bus.fire('test_event')
self.hass.block_till_done()
2015-12-16 21:27:43 +00:00
self.assertEqual(1, len(self.calls))
def test_if_fires_on_change_with_bad_template(self):
2016-03-09 09:25:50 +00:00
"""Test for firing on change with bad template."""
with assert_setup_component(0):
assert setup_component(self.hass, automation.DOMAIN, {
automation.DOMAIN: {
'trigger': {
'platform': 'template',
'value_template': '{{ ',
},
'action': {
'service': 'test.automation'
}
2015-12-16 21:27:43 +00:00
}
})
2015-12-16 21:27:43 +00:00
def test_if_fires_on_change_with_bad_template_2(self):
2016-03-09 09:25:50 +00:00
"""Test for firing on change with bad template."""
assert setup_component(self.hass, automation.DOMAIN, {
2015-12-16 21:27:43 +00:00
automation.DOMAIN: {
'trigger': {
'platform': 'template',
'value_template': '{{ xyz | round(0) }}',
},
'action': {
'service': 'test.automation'
}
}
})
2015-12-16 21:27:43 +00:00
self.hass.states.set('test.entity', 'world')
self.hass.block_till_done()
2015-12-16 21:27:43 +00:00
self.assertEqual(0, len(self.calls))
def test_wait_template_with_trigger(self):
"""Test using wait template with 'trigger.entity_id'."""
assert setup_component(self.hass, automation.DOMAIN, {
automation.DOMAIN: {
'trigger': {
'platform': 'template',
'value_template':
"{{ states.test.entity.state == 'world' }}",
},
'action': [
{'wait_template':
"{{ is_state(trigger.entity_id, 'hello') }}"},
{'service': 'test.automation',
'data_template': {
'some':
'{{ trigger.%s }}' % '}} - {{ trigger.'.join((
'platform', 'entity_id', 'from_state.state',
'to_state.state'))
}}
],
}
})
self.hass.block_till_done()
self.calls = []
self.hass.states.set('test.entity', 'world')
self.hass.block_till_done()
self.hass.states.set('test.entity', 'hello')
self.hass.block_till_done()
self.assertEqual(1, len(self.calls))
self.assertEqual(
'template - test.entity - hello - world',
self.calls[0].data['some'])