* 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
116 lines
4.2 KiB
Python
116 lines
4.2 KiB
Python
"""The tests for the MQTT lock platform."""
|
|
import unittest
|
|
|
|
from homeassistant.bootstrap import _setup_component
|
|
from homeassistant.const import (STATE_LOCKED, STATE_UNLOCKED,
|
|
ATTR_ASSUMED_STATE)
|
|
import homeassistant.components.lock as lock
|
|
from tests.common import (
|
|
mock_mqtt_component, fire_mqtt_message, get_test_home_assistant)
|
|
|
|
|
|
class TestLockMQTT(unittest.TestCase):
|
|
"""Test the MQTT lock."""
|
|
|
|
def setUp(self): # pylint: disable=invalid-name
|
|
"""Setup things to be run when tests are started."""
|
|
self.hass = get_test_home_assistant()
|
|
self.mock_publish = mock_mqtt_component(self.hass)
|
|
|
|
def tearDown(self): # pylint: disable=invalid-name
|
|
"""Stop everything that was started."""
|
|
self.hass.stop()
|
|
|
|
def test_controlling_state_via_topic(self):
|
|
"""Test the controlling state via topic."""
|
|
self.hass.config.components = ['mqtt']
|
|
assert _setup_component(self.hass, lock.DOMAIN, {
|
|
lock.DOMAIN: {
|
|
'platform': 'mqtt',
|
|
'name': 'test',
|
|
'state_topic': 'state-topic',
|
|
'command_topic': 'command-topic',
|
|
'payload_lock': 'LOCK',
|
|
'payload_unlock': 'UNLOCK'
|
|
}
|
|
})
|
|
|
|
state = self.hass.states.get('lock.test')
|
|
self.assertEqual(STATE_UNLOCKED, state.state)
|
|
self.assertIsNone(state.attributes.get(ATTR_ASSUMED_STATE))
|
|
|
|
fire_mqtt_message(self.hass, 'state-topic', 'LOCK')
|
|
self.hass.block_till_done()
|
|
|
|
state = self.hass.states.get('lock.test')
|
|
self.assertEqual(STATE_LOCKED, state.state)
|
|
|
|
fire_mqtt_message(self.hass, 'state-topic', 'UNLOCK')
|
|
self.hass.block_till_done()
|
|
|
|
state = self.hass.states.get('lock.test')
|
|
self.assertEqual(STATE_UNLOCKED, state.state)
|
|
|
|
def test_sending_mqtt_commands_and_optimistic(self):
|
|
"""Test the sending MQTT commands in optimistic mode."""
|
|
self.hass.config.components = ['mqtt']
|
|
assert _setup_component(self.hass, lock.DOMAIN, {
|
|
lock.DOMAIN: {
|
|
'platform': 'mqtt',
|
|
'name': 'test',
|
|
'command_topic': 'command-topic',
|
|
'payload_lock': 'LOCK',
|
|
'payload_unlock': 'UNLOCK',
|
|
'qos': 2
|
|
}
|
|
})
|
|
|
|
state = self.hass.states.get('lock.test')
|
|
self.assertEqual(STATE_UNLOCKED, state.state)
|
|
self.assertTrue(state.attributes.get(ATTR_ASSUMED_STATE))
|
|
|
|
lock.lock(self.hass, 'lock.test')
|
|
self.hass.block_till_done()
|
|
|
|
self.assertEqual(('command-topic', 'LOCK', 2, False),
|
|
self.mock_publish.mock_calls[-1][1])
|
|
state = self.hass.states.get('lock.test')
|
|
self.assertEqual(STATE_LOCKED, state.state)
|
|
|
|
lock.unlock(self.hass, 'lock.test')
|
|
self.hass.block_till_done()
|
|
|
|
self.assertEqual(('command-topic', 'UNLOCK', 2, False),
|
|
self.mock_publish.mock_calls[-1][1])
|
|
state = self.hass.states.get('lock.test')
|
|
self.assertEqual(STATE_UNLOCKED, state.state)
|
|
|
|
def test_controlling_state_via_topic_and_json_message(self):
|
|
"""Test the controlling state via topic and JSON message."""
|
|
self.hass.config.components = ['mqtt']
|
|
assert _setup_component(self.hass, lock.DOMAIN, {
|
|
lock.DOMAIN: {
|
|
'platform': 'mqtt',
|
|
'name': 'test',
|
|
'state_topic': 'state-topic',
|
|
'command_topic': 'command-topic',
|
|
'payload_lock': 'LOCK',
|
|
'payload_unlock': 'UNLOCK',
|
|
'value_template': '{{ value_json.val }}'
|
|
}
|
|
})
|
|
|
|
state = self.hass.states.get('lock.test')
|
|
self.assertEqual(STATE_UNLOCKED, state.state)
|
|
|
|
fire_mqtt_message(self.hass, 'state-topic', '{"val":"LOCK"}')
|
|
self.hass.block_till_done()
|
|
|
|
state = self.hass.states.get('lock.test')
|
|
self.assertEqual(STATE_LOCKED, state.state)
|
|
|
|
fire_mqtt_message(self.hass, 'state-topic', '{"val":"UNLOCK"}')
|
|
self.hass.block_till_done()
|
|
|
|
state = self.hass.states.get('lock.test')
|
|
self.assertEqual(STATE_UNLOCKED, state.state)
|