
* Add event loop to the core * Add block_till_done to HA core object * Fix some tests * Linting core * Fix statemachine tests * Core test fixes * fix block_till_done to wait for loop and queue to empty * fix test_core for passing, and correct start/stop/block_till_done * Fix remote tests * Fix tests: block_till_done * Fix linting * Fix more tests * Fix final linting * Fix remote test * remove unnecessary import * reduce sleep to avoid slowing down the tests excessively * fix remaining tests to wait for non-threadsafe operations * Add async_ doc strings for event loop / coroutine info * Fix command line test to block for the right timeout * Fix py3.4.2 loop var access * Fix SERVICE_CALL_LIMIT being in effect for other tests * Fix lint errors * Fix lint error with proper placement * Fix slave start to not start a timer * Add asyncio compatible listeners. * Increase min Python version to 3.4.2 * Move async backports to util * Add backported async tests * Fix linting * Simplify Python version check * Fix lint * Remove unneeded try/except and queue listener appproriately. * Fix tuple vs. list unorderable error on version compare. * Fix version tests
78 lines
2.8 KiB
Python
78 lines
2.8 KiB
Python
"""The tests for the MQTT binary sensor platform."""
|
|
import unittest
|
|
|
|
from homeassistant.bootstrap import _setup_component
|
|
import homeassistant.components.binary_sensor as binary_sensor
|
|
from tests.common import mock_mqtt_component, fire_mqtt_message
|
|
from homeassistant.const import (STATE_OFF, STATE_ON)
|
|
|
|
from tests.common import get_test_home_assistant
|
|
|
|
|
|
class TestSensorMQTT(unittest.TestCase):
|
|
"""Test the MQTT sensor."""
|
|
|
|
def setUp(self): # pylint: disable=invalid-name
|
|
"""Setup things to be run when tests are started."""
|
|
self.hass = get_test_home_assistant()
|
|
mock_mqtt_component(self.hass)
|
|
|
|
def tearDown(self): # pylint: disable=invalid-name
|
|
"""Stop everything that was started."""
|
|
self.hass.stop()
|
|
|
|
def test_setting_sensor_value_via_mqtt_message(self):
|
|
"""Test the setting of the value via MQTT."""
|
|
self.hass.config.components = ['mqtt']
|
|
assert _setup_component(self.hass, binary_sensor.DOMAIN, {
|
|
binary_sensor.DOMAIN: {
|
|
'platform': 'mqtt',
|
|
'name': 'test',
|
|
'state_topic': 'test-topic',
|
|
'payload_on': 'ON',
|
|
'payload_off': 'OFF',
|
|
}
|
|
})
|
|
|
|
state = self.hass.states.get('binary_sensor.test')
|
|
self.assertEqual(STATE_OFF, state.state)
|
|
|
|
fire_mqtt_message(self.hass, 'test-topic', 'ON')
|
|
self.hass.block_till_done()
|
|
state = self.hass.states.get('binary_sensor.test')
|
|
self.assertEqual(STATE_ON, state.state)
|
|
|
|
fire_mqtt_message(self.hass, 'test-topic', 'OFF')
|
|
self.hass.block_till_done()
|
|
state = self.hass.states.get('binary_sensor.test')
|
|
self.assertEqual(STATE_OFF, state.state)
|
|
|
|
def test_valid_sensor_class(self):
|
|
"""Test the setting of a valid sensor class."""
|
|
self.hass.config.components = ['mqtt']
|
|
assert _setup_component(self.hass, binary_sensor.DOMAIN, {
|
|
binary_sensor.DOMAIN: {
|
|
'platform': 'mqtt',
|
|
'name': 'test',
|
|
'sensor_class': 'motion',
|
|
'state_topic': 'test-topic',
|
|
}
|
|
})
|
|
|
|
state = self.hass.states.get('binary_sensor.test')
|
|
self.assertEqual('motion', state.attributes.get('sensor_class'))
|
|
|
|
def test_invalid_sensor_class(self):
|
|
"""Test the setting of an invalid sensor class."""
|
|
self.hass.config.components = ['mqtt']
|
|
assert _setup_component(self.hass, binary_sensor.DOMAIN, {
|
|
binary_sensor.DOMAIN: {
|
|
'platform': 'mqtt',
|
|
'name': 'test',
|
|
'sensor_class': 'abc123',
|
|
'state_topic': 'test-topic',
|
|
}
|
|
})
|
|
|
|
state = self.hass.states.get('binary_sensor.test')
|
|
self.assertIsNone(state.attributes.get('sensor_class'))
|