hass-core/tests/components/template/test_lock.py
Penny Wood f195ecca4b Consolidate all platforms that have tests (#22109)
* Moved climate components with tests into platform dirs.

* Updated tests from climate component.

* Moved binary_sensor components with tests into platform dirs.

* Updated tests from binary_sensor component.

* Moved calendar components with tests into platform dirs.

* Updated tests from calendar component.

* Moved camera components with tests into platform dirs.

* Updated tests from camera component.

* Moved cover components with tests into platform dirs.

* Updated tests from cover component.

* Moved device_tracker components with tests into platform dirs.

* Updated tests from device_tracker component.

* Moved fan components with tests into platform dirs.

* Updated tests from fan component.

* Moved geo_location components with tests into platform dirs.

* Updated tests from geo_location component.

* Moved image_processing components with tests into platform dirs.

* Updated tests from image_processing component.

* Moved light components with tests into platform dirs.

* Updated tests from light component.

* Moved lock components with tests into platform dirs.

* Moved media_player components with tests into platform dirs.

* Updated tests from media_player component.

* Moved scene components with tests into platform dirs.

* Moved sensor components with tests into platform dirs.

* Updated tests from sensor component.

* Moved switch components with tests into platform dirs.

* Updated tests from sensor component.

* Moved vacuum components with tests into platform dirs.

* Updated tests from vacuum component.

* Moved weather components with tests into platform dirs.

* Fixed __init__.py files

* Fixes for stuff moved as part of this branch.

* Fix stuff needed to merge with balloob's branch.

* Formatting issues.

* Missing __init__.py files.

* Fix-ups

* Fixup

* Regenerated requirements.

* Linting errors fixed.

* Fixed more broken tests.

* Missing init files.

* Fix broken tests.

* More broken tests

* There seems to be a thread race condition.
I suspect the logger stuff is running in another thread, which means waiting until the aio loop is done is missing the log messages.
Used sleep instead because that allows the logger thread to run. I think the api_streams sensor might not be thread safe.

* Disabled tests, will remove sensor in #22147

* Updated coverage and codeowners.
2019-03-18 23:07:39 -07:00

309 lines
10 KiB
Python

"""The tests for the Template lock platform."""
import logging
from homeassistant.core import callback
from homeassistant import setup
from homeassistant.components import lock
from homeassistant.const import STATE_ON, STATE_OFF
from tests.common import (get_test_home_assistant,
assert_setup_component)
_LOGGER = logging.getLogger(__name__)
class TestTemplateLock:
"""Test the Template lock."""
hass = None
calls = None
# pylint: disable=invalid-name
def setup_method(self, method):
"""Set up things to be run when tests are started."""
self.hass = get_test_home_assistant()
self.calls = []
@callback
def record_call(service):
"""Track function calls."""
self.calls.append(service)
self.hass.services.register('test', 'automation', record_call)
def teardown_method(self, method):
"""Stop everything that was started."""
self.hass.stop()
def test_template_state(self):
"""Test template."""
with assert_setup_component(1, 'lock'):
assert setup.setup_component(self.hass, 'lock', {
'lock': {
'platform': 'template',
'name': 'Test template lock',
'value_template':
"{{ states.switch.test_state.state }}",
'lock': {
'service': 'switch.turn_on',
'entity_id': 'switch.test_state'
},
'unlock': {
'service': 'switch.turn_off',
'entity_id': 'switch.test_state'
}
}
})
self.hass.start()
self.hass.block_till_done()
self.hass.states.set('switch.test_state', STATE_ON)
self.hass.block_till_done()
state = self.hass.states.get('lock.test_template_lock')
assert state.state == lock.STATE_LOCKED
self.hass.states.set('switch.test_state', STATE_OFF)
self.hass.block_till_done()
state = self.hass.states.get('lock.test_template_lock')
assert state.state == lock.STATE_UNLOCKED
def test_template_state_boolean_on(self):
"""Test the setting of the state with boolean on."""
with assert_setup_component(1, 'lock'):
assert setup.setup_component(self.hass, 'lock', {
'lock': {
'platform': 'template',
'value_template':
"{{ 1 == 1 }}",
'lock': {
'service': 'switch.turn_on',
'entity_id': 'switch.test_state'
},
'unlock': {
'service': 'switch.turn_off',
'entity_id': 'switch.test_state'
}
}
})
self.hass.start()
self.hass.block_till_done()
state = self.hass.states.get('lock.template_lock')
assert state.state == lock.STATE_LOCKED
def test_template_state_boolean_off(self):
"""Test the setting of the state with off."""
with assert_setup_component(1, 'lock'):
assert setup.setup_component(self.hass, 'lock', {
'lock': {
'platform': 'template',
'value_template':
"{{ 1 == 2 }}",
'lock': {
'service': 'switch.turn_on',
'entity_id': 'switch.test_state'
},
'unlock': {
'service': 'switch.turn_off',
'entity_id': 'switch.test_state'
}
}
})
self.hass.start()
self.hass.block_till_done()
state = self.hass.states.get('lock.template_lock')
assert state.state == lock.STATE_UNLOCKED
def test_template_syntax_error(self):
"""Test templating syntax error."""
with assert_setup_component(0, 'lock'):
assert setup.setup_component(self.hass, 'lock', {
'lock': {
'platform': 'template',
'value_template':
"{% if rubbish %}",
'lock': {
'service': 'switch.turn_on',
'entity_id': 'switch.test_state'
},
'unlock': {
'service': 'switch.turn_off',
'entity_id': 'switch.test_state'
}
}
})
self.hass.start()
self.hass.block_till_done()
assert self.hass.states.all() == []
def test_invalid_name_does_not_create(self):
"""Test invalid name."""
with assert_setup_component(0, 'lock'):
assert setup.setup_component(self.hass, 'lock', {
'switch': {
'platform': 'lock',
'name': '{{%}',
'value_template':
"{{ rubbish }",
'lock': {
'service': 'switch.turn_on',
'entity_id': 'switch.test_state'
},
'unlock': {
'service': 'switch.turn_off',
'entity_id': 'switch.test_state'
}
}
})
self.hass.start()
self.hass.block_till_done()
assert self.hass.states.all() == []
def test_invalid_lock_does_not_create(self):
"""Test invalid lock."""
with assert_setup_component(0, 'lock'):
assert setup.setup_component(self.hass, 'lock', {
'lock': {
'platform': 'template',
'value_template': "Invalid"
}
})
self.hass.start()
self.hass.block_till_done()
assert self.hass.states.all() == []
def test_missing_template_does_not_create(self):
"""Test missing template."""
with assert_setup_component(0, 'lock'):
assert setup.setup_component(self.hass, 'lock', {
'lock': {
'platform': 'template',
'not_value_template':
"{{ states.switch.test_state.state }}",
'lock': {
'service': 'switch.turn_on',
'entity_id': 'switch.test_state'
},
'unlock': {
'service': 'switch.turn_off',
'entity_id': 'switch.test_state'
}
}
})
self.hass.start()
self.hass.block_till_done()
assert self.hass.states.all() == []
def test_no_template_match_all(self, caplog):
"""Test that we do not allow locks that match on all."""
with assert_setup_component(1, 'lock'):
assert setup.setup_component(self.hass, 'lock', {
'lock': {
'platform': 'template',
'value_template': '{{ 1 + 1 }}',
'lock': {
'service': 'switch.turn_on',
'entity_id': 'switch.test_state'
},
'unlock': {
'service': 'switch.turn_off',
'entity_id': 'switch.test_state'
}
}
})
self.hass.start()
self.hass.block_till_done()
state = self.hass.states.get('lock.template_lock')
assert state.state == lock.STATE_UNLOCKED
assert ('Template lock Template Lock has no entity ids configured '
'to track nor were we able to extract the entities to track '
'from the value_template template. This entity will only '
'be able to be updated manually.') in caplog.text
self.hass.states.set('lock.template_lock', lock.STATE_LOCKED)
self.hass.block_till_done()
state = self.hass.states.get('lock.template_lock')
assert state.state == lock.STATE_LOCKED
def test_lock_action(self):
"""Test lock action."""
assert setup.setup_component(self.hass, 'lock', {
'lock': {
'platform': 'template',
'value_template':
"{{ states.switch.test_state.state }}",
'lock': {
'service': 'test.automation'
},
'unlock': {
'service': 'switch.turn_off',
'entity_id': 'switch.test_state'
}
}
})
self.hass.start()
self.hass.block_till_done()
self.hass.states.set('switch.test_state', STATE_OFF)
self.hass.block_till_done()
state = self.hass.states.get('lock.template_lock')
assert state.state == lock.STATE_UNLOCKED
self.hass.services.call(lock.DOMAIN, lock.SERVICE_LOCK, {
lock.ATTR_ENTITY_ID: 'lock.template_lock'
})
self.hass.block_till_done()
assert len(self.calls) == 1
def test_unlock_action(self):
"""Test unlock action."""
assert setup.setup_component(self.hass, 'lock', {
'lock': {
'platform': 'template',
'value_template':
"{{ states.switch.test_state.state }}",
'lock': {
'service': 'switch.turn_on',
'entity_id': 'switch.test_state'
},
'unlock': {
'service': 'test.automation'
}
}
})
self.hass.start()
self.hass.block_till_done()
self.hass.states.set('switch.test_state', STATE_ON)
self.hass.block_till_done()
state = self.hass.states.get('lock.template_lock')
assert state.state == lock.STATE_LOCKED
self.hass.services.call(lock.DOMAIN, lock.SERVICE_UNLOCK, {
lock.ATTR_ENTITY_ID: 'lock.template_lock'
})
self.hass.block_till_done()
assert len(self.calls) == 1