123 lines
3.6 KiB
Python
123 lines
3.6 KiB
Python
"""
|
|
tests.components.sensor.test_template
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Tests template sensor.
|
|
"""
|
|
import homeassistant.components.sensor as sensor
|
|
|
|
from tests.common import get_test_home_assistant
|
|
|
|
|
|
class TestTemplateSensor:
|
|
""" Test the Template sensor. """
|
|
|
|
def setup_method(self, method):
|
|
self.hass = get_test_home_assistant()
|
|
|
|
def teardown_method(self, method):
|
|
""" Stop down stuff we started. """
|
|
self.hass.stop()
|
|
|
|
def test_template(self):
|
|
assert sensor.setup(self.hass, {
|
|
'sensor': {
|
|
'platform': 'template',
|
|
'sensors': {
|
|
'test_template_sensor': {
|
|
'value_template':
|
|
"It {{ states.sensor.test_state.state }}."
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
state = self.hass.states.get('sensor.test_template_sensor')
|
|
assert state.state == 'It .'
|
|
|
|
self.hass.states.set('sensor.test_state', 'Works')
|
|
self.hass.pool.block_till_done()
|
|
state = self.hass.states.get('sensor.test_template_sensor')
|
|
assert state.state == 'It Works.'
|
|
|
|
def test_template_syntax_error(self):
|
|
assert sensor.setup(self.hass, {
|
|
'sensor': {
|
|
'platform': 'template',
|
|
'sensors': {
|
|
'test_template_sensor': {
|
|
'value_template':
|
|
"{% if rubbish %}"
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
self.hass.states.set('sensor.test_state', 'Works')
|
|
self.hass.pool.block_till_done()
|
|
state = self.hass.states.get('sensor.test_template_sensor')
|
|
assert state.state == 'error'
|
|
|
|
def test_template_attribute_missing(self):
|
|
assert sensor.setup(self.hass, {
|
|
'sensor': {
|
|
'platform': 'template',
|
|
'sensors': {
|
|
'test_template_sensor': {
|
|
'value_template':
|
|
"It {{ states.sensor.test_state.attributes.missing }}."
|
|
}
|
|
}
|
|
}
|
|
})
|
|
|
|
state = self.hass.states.get('sensor.test_template_sensor')
|
|
assert state.state == 'error'
|
|
|
|
def test_invalid_name_does_not_create(self):
|
|
assert sensor.setup(self.hass, {
|
|
'sensor': {
|
|
'platform': 'template',
|
|
'sensors': {
|
|
'test INVALID sensor': {
|
|
'value_template':
|
|
"{{ states.sensor.test_state.state }}"
|
|
}
|
|
}
|
|
}
|
|
})
|
|
assert self.hass.states.all() == []
|
|
|
|
def test_invalid_sensor_does_not_create(self):
|
|
assert sensor.setup(self.hass, {
|
|
'sensor': {
|
|
'platform': 'template',
|
|
'sensors': {
|
|
'test_template_sensor': 'invalid'
|
|
}
|
|
}
|
|
})
|
|
assert self.hass.states.all() == []
|
|
|
|
def test_no_sensors_does_not_create(self):
|
|
assert sensor.setup(self.hass, {
|
|
'sensor': {
|
|
'platform': 'template'
|
|
}
|
|
})
|
|
assert self.hass.states.all() == []
|
|
|
|
def test_missing_template_does_not_create(self):
|
|
assert sensor.setup(self.hass, {
|
|
'sensor': {
|
|
'platform': 'template',
|
|
'sensors': {
|
|
'test_template_sensor': {
|
|
'not_value_template':
|
|
"{{ states.sensor.test_state.state }}"
|
|
}
|
|
}
|
|
}
|
|
})
|
|
assert self.hass.states.all() == []
|