Migrate core from threads to async awesomeness (#3248)

* 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
This commit is contained in:
Paulus Schoutsen 2016-09-12 19:16:14 -07:00 committed by Ben Bangert
parent 24f1bff7f1
commit 609d7ebea5
98 changed files with 1680 additions and 1109 deletions

View file

@ -61,7 +61,7 @@ class TestAPI(unittest.TestCase):
def tearDown(self):
"""Stop everything that was started."""
hass.pool.block_till_done()
hass.block_till_done()
def test_api_list_state_entities(self):
"""Test if the debug interface allows us to list state entities."""
@ -169,7 +169,7 @@ class TestAPI(unittest.TestCase):
_url(const.URL_API_EVENTS_EVENT.format("test.event_no_data")),
headers=HA_HEADERS)
hass.pool.block_till_done()
hass.block_till_done()
self.assertEqual(1, len(test_value))
@ -193,7 +193,7 @@ class TestAPI(unittest.TestCase):
data=json.dumps({"test": 1}),
headers=HA_HEADERS)
hass.pool.block_till_done()
hass.block_till_done()
self.assertEqual(1, len(test_value))
@ -213,7 +213,7 @@ class TestAPI(unittest.TestCase):
data=json.dumps('not an object'),
headers=HA_HEADERS)
hass.pool.block_till_done()
hass.block_till_done()
self.assertEqual(400, req.status_code)
self.assertEqual(0, len(test_value))
@ -224,7 +224,7 @@ class TestAPI(unittest.TestCase):
data=json.dumps([1, 2, 3]),
headers=HA_HEADERS)
hass.pool.block_till_done()
hass.block_till_done()
self.assertEqual(400, req.status_code)
self.assertEqual(0, len(test_value))
@ -294,7 +294,7 @@ class TestAPI(unittest.TestCase):
"test_domain", "test_service")),
headers=HA_HEADERS)
hass.pool.block_till_done()
hass.block_till_done()
self.assertEqual(1, len(test_value))
@ -318,7 +318,7 @@ class TestAPI(unittest.TestCase):
data=json.dumps({"test": 1}),
headers=HA_HEADERS)
hass.pool.block_till_done()
hass.block_till_done()
self.assertEqual(1, len(test_value))