* Upgrade pytest-aiohttp * Make sure executors, tasks and timers are closed Some test will trigger warnings on garbage collect, these warnings spills over into next test. Some test trigger tasks that raise errors on shutdown, these spill over into next test. This is to mimic older pytest-aiohttp and it's behaviour on test cleanup. Discussions on similar changes for pytest-aiohttp are here: https://github.com/pytest-dev/pytest-asyncio/pull/309 * Replace loop with event_loop * Make sure time is frozen for tests * Make sure the ConditionType is not async /home-assistant/homeassistant/helpers/template.py:2082: RuntimeWarning: coroutine 'AsyncMockMixin._execute_mock_call' was never awaited def wrapper(*args, **kwargs): Enable tracemalloc to get traceback where the object was allocated. See https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings for more info. * Increase litejet press tests with a factor 10 The times are simulated anyway, and we can't stop the normal event from occuring. * Use async handlers for aiohttp tests/components/motioneye/test_camera.py::test_get_still_image_from_camera tests/components/motioneye/test_camera.py::test_get_still_image_from_camera tests/components/motioneye/test_camera.py::test_get_stream_from_camera tests/components/motioneye/test_camera.py::test_get_stream_from_camera tests/components/motioneye/test_camera.py::test_camera_option_stream_url_template tests/components/motioneye/test_camera.py::test_camera_option_stream_url_template /Users/joakim/src/hass/home-assistant/venv/lib/python3.9/site-packages/aiohttp/web_urldispatcher.py:189: DeprecationWarning: Bare functions are deprecated, use async ones warnings.warn( * Switch to freezegun in modbus tests The tests allowed clock to tick in between steps * Make sure skybell object are fully mocked Old tests would trigger attempts to post to could services: ``` DEBUG:aioskybell:HTTP post https://cloud.myskybell.com/api/v3/login/ Request with headers: {'content-type': 'application/json', 'accept': '*/*', 'x-skybell-app-id': 'd2b542c7-a7e4-4e1e-b77d-2b76911c7c46', 'x-skybell-client-id': '1f36a3c0-6dee-4997-a6db-4e1c67338e57'} ``` * Fix sorting that broke after rebase
81 lines
2.5 KiB
Python
81 lines
2.5 KiB
Python
"""Tests for emulated_roku library bindings."""
|
|
from unittest.mock import AsyncMock, Mock, patch
|
|
|
|
from homeassistant.components.emulated_roku.binding import (
|
|
ATTR_APP_ID,
|
|
ATTR_COMMAND_TYPE,
|
|
ATTR_KEY,
|
|
ATTR_SOURCE_NAME,
|
|
EVENT_ROKU_COMMAND,
|
|
ROKU_COMMAND_KEYDOWN,
|
|
ROKU_COMMAND_KEYPRESS,
|
|
ROKU_COMMAND_KEYUP,
|
|
ROKU_COMMAND_LAUNCH,
|
|
EmulatedRoku,
|
|
)
|
|
|
|
|
|
async def test_events_fired_properly(hass):
|
|
"""Test that events are fired correctly."""
|
|
binding = EmulatedRoku(
|
|
hass, "Test Emulated Roku", "1.2.3.4", 8060, None, None, None
|
|
)
|
|
|
|
events = []
|
|
roku_event_handler = None
|
|
|
|
def instantiate(
|
|
event_loop,
|
|
handler,
|
|
roku_usn,
|
|
host_ip,
|
|
listen_port,
|
|
advertise_ip=None,
|
|
advertise_port=None,
|
|
bind_multicast=None,
|
|
):
|
|
nonlocal roku_event_handler
|
|
roku_event_handler = handler
|
|
|
|
return Mock(start=AsyncMock(), close=AsyncMock())
|
|
|
|
def listener(event):
|
|
events.append(event)
|
|
|
|
with patch(
|
|
"homeassistant.components.emulated_roku.binding.EmulatedRokuServer", instantiate
|
|
):
|
|
hass.bus.async_listen(EVENT_ROKU_COMMAND, listener)
|
|
|
|
assert await binding.setup() is True
|
|
|
|
assert roku_event_handler is not None
|
|
|
|
roku_event_handler.on_keydown("Test Emulated Roku", "A")
|
|
roku_event_handler.on_keyup("Test Emulated Roku", "A")
|
|
roku_event_handler.on_keypress("Test Emulated Roku", "C")
|
|
roku_event_handler.launch("Test Emulated Roku", "1")
|
|
|
|
await hass.async_block_till_done()
|
|
|
|
assert len(events) == 4
|
|
|
|
assert events[0].event_type == EVENT_ROKU_COMMAND
|
|
assert events[0].data[ATTR_COMMAND_TYPE] == ROKU_COMMAND_KEYDOWN
|
|
assert events[0].data[ATTR_SOURCE_NAME] == "Test Emulated Roku"
|
|
assert events[0].data[ATTR_KEY] == "A"
|
|
|
|
assert events[1].event_type == EVENT_ROKU_COMMAND
|
|
assert events[1].data[ATTR_COMMAND_TYPE] == ROKU_COMMAND_KEYUP
|
|
assert events[1].data[ATTR_SOURCE_NAME] == "Test Emulated Roku"
|
|
assert events[1].data[ATTR_KEY] == "A"
|
|
|
|
assert events[2].event_type == EVENT_ROKU_COMMAND
|
|
assert events[2].data[ATTR_COMMAND_TYPE] == ROKU_COMMAND_KEYPRESS
|
|
assert events[2].data[ATTR_SOURCE_NAME] == "Test Emulated Roku"
|
|
assert events[2].data[ATTR_KEY] == "C"
|
|
|
|
assert events[3].event_type == EVENT_ROKU_COMMAND
|
|
assert events[3].data[ATTR_COMMAND_TYPE] == ROKU_COMMAND_LAUNCH
|
|
assert events[3].data[ATTR_SOURCE_NAME] == "Test Emulated Roku"
|
|
assert events[3].data[ATTR_APP_ID] == "1"
|