2016-10-24 06:48:01 +00:00
|
|
|
"""Aiohttp test utils."""
|
2020-04-10 21:57:39 +00:00
|
|
|
import asyncio
|
2016-10-24 06:48:01 +00:00
|
|
|
from contextlib import contextmanager
|
2021-10-01 22:52:45 +00:00
|
|
|
from http import HTTPStatus
|
2016-10-24 06:48:01 +00:00
|
|
|
import json as _json
|
2018-03-04 05:28:04 +00:00
|
|
|
import re
|
2016-10-24 06:48:01 +00:00
|
|
|
from unittest import mock
|
2018-03-04 05:28:04 +00:00
|
|
|
from urllib.parse import parse_qs
|
|
|
|
|
|
|
|
from aiohttp import ClientSession
|
2020-04-10 21:57:39 +00:00
|
|
|
from aiohttp.client_exceptions import ClientError, ClientResponseError
|
2018-08-10 16:09:42 +00:00
|
|
|
from aiohttp.streams import StreamReader
|
Config-flow for DLNA-DMR integration (#55267)
* Modernize dlna_dmr component: configflow, test, types
* Support config-flow with ssdp discovery
* Add unit tests
* Enforce strict typing
* Gracefully handle network devices (dis)appearing
* Fix Aiohttp mock response headers type to match actual response class
* Fixes from code review
* Fixes from code review
* Import device config in flow if unavailable at hass start
* Support SSDP advertisements
* Ignore bad BOOTID, fix ssdp:byebye handling
* Only listen for events on interface connected to device
* Release all listeners when entities are removed
* Warn about deprecated dlna_dmr configuration
* Use sublogger for dlna_dmr.config_flow for easier filtering
* Tests for dlna_dmr.data module
* Rewrite DMR tests for HA style
* Fix DMR strings: "Digital Media *Renderer*"
* Update DMR entity state and device info when changed
* Replace deprecated async_upnp_client State with TransportState
* supported_features are dynamic, based on current device state
* Cleanup fully when subscription fails
* Log warnings when device connection fails unexpectedly
* Set PARALLEL_UPDATES to unlimited
* Fix spelling
* Fixes from code review
* Simplify has & can checks to just can, which includes has
* Treat transitioning state as playing (not idle) to reduce UI jerking
* Test if device is usable
* Handle ssdp:update messages properly
* Fix _remove_ssdp_callbacks being shared by all DlnaDmrEntity instances
* Fix tests for transitioning state
* Mock DmrDevice.is_profile_device (added to support embedded devices)
* Use ST & NT SSDP headers to find DMR devices, not deviceType
The deviceType is extracted from the device's description XML, and will not
be what we want when dealing with embedded devices.
* Use UDN from SSDP headers, not device description, as unique_id
The SSDP headers have the UDN of the embedded device that we're interested
in, whereas the device description (`ATTR_UPNP_UDN`) field will always be
for the root device.
* Fix DMR string English localization
* Test config flow with UDN from SSDP headers
* Bump async-upnp-client==0.22.1, fix flake8 error
* fix test for remapping
* DMR HA Device connections based on root and embedded UDN
* DmrDevice's UpnpDevice is now named profile_device
* Use device type from SSDP headers, not device description
* Mark dlna_dmr constants as Final
* Use embedded device UDN and type for unique ID when connected via URL
* More informative connection error messages
* Also match SSDP messages on NT headers
The NT header is to ssdp:alive messages what ST is to M-SEARCH responses.
* Bump async-upnp-client==0.22.2
* fix merge
* Bump async-upnp-client==0.22.3
Co-authored-by: Steven Looman <steven.looman@gmail.com>
Co-authored-by: J. Nick Koston <nick@koston.org>
2021-09-27 20:47:01 +00:00
|
|
|
from multidict import CIMultiDict
|
2018-03-04 05:28:04 +00:00
|
|
|
from yarl import URL
|
2016-10-24 06:48:01 +00:00
|
|
|
|
2018-08-20 14:34:18 +00:00
|
|
|
from homeassistant.const import EVENT_HOMEASSISTANT_CLOSE
|
|
|
|
|
2020-04-07 16:33:23 +00:00
|
|
|
RETYPE = type(re.compile(""))
|
2018-07-07 14:48:02 +00:00
|
|
|
|
2016-10-24 06:48:01 +00:00
|
|
|
|
2018-08-10 16:09:42 +00:00
|
|
|
def mock_stream(data):
|
|
|
|
"""Mock a stream with data."""
|
|
|
|
protocol = mock.Mock(_reading_paused=False)
|
2020-10-25 12:16:23 +00:00
|
|
|
stream = StreamReader(protocol, limit=2 ** 16)
|
2018-08-10 16:09:42 +00:00
|
|
|
stream.feed_data(data)
|
|
|
|
stream.feed_eof()
|
|
|
|
return stream
|
|
|
|
|
|
|
|
|
2016-10-24 06:48:01 +00:00
|
|
|
class AiohttpClientMocker:
|
|
|
|
"""Mock Aiohttp client requests."""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
"""Initialize the request mocker."""
|
|
|
|
self._mocks = []
|
2017-01-09 16:08:37 +00:00
|
|
|
self._cookies = {}
|
2016-10-24 06:48:01 +00:00
|
|
|
self.mock_calls = []
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
def request(
|
|
|
|
self,
|
|
|
|
method,
|
|
|
|
url,
|
|
|
|
*,
|
|
|
|
auth=None,
|
2021-10-01 22:52:45 +00:00
|
|
|
status=HTTPStatus.OK,
|
2019-07-31 19:25:30 +00:00
|
|
|
text=None,
|
|
|
|
data=None,
|
|
|
|
content=None,
|
|
|
|
json=None,
|
|
|
|
params=None,
|
|
|
|
headers={},
|
|
|
|
exc=None,
|
|
|
|
cookies=None,
|
2020-04-10 21:57:39 +00:00
|
|
|
side_effect=None,
|
2019-07-31 19:25:30 +00:00
|
|
|
):
|
2016-10-24 06:48:01 +00:00
|
|
|
"""Mock a request."""
|
2020-04-07 16:33:23 +00:00
|
|
|
if not isinstance(url, RETYPE):
|
2018-03-04 05:28:04 +00:00
|
|
|
url = URL(url)
|
2016-12-01 06:20:21 +00:00
|
|
|
if params:
|
2018-08-10 16:09:42 +00:00
|
|
|
url = url.with_query(params)
|
2016-12-02 02:30:41 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
self._mocks.append(
|
|
|
|
AiohttpClientMockResponse(
|
2020-04-10 21:57:39 +00:00
|
|
|
method=method,
|
|
|
|
url=url,
|
|
|
|
status=status,
|
|
|
|
response=content,
|
|
|
|
json=json,
|
|
|
|
text=text,
|
|
|
|
cookies=cookies,
|
|
|
|
exc=exc,
|
|
|
|
headers=headers,
|
|
|
|
side_effect=side_effect,
|
2019-07-31 19:25:30 +00:00
|
|
|
)
|
|
|
|
)
|
2016-10-24 06:48:01 +00:00
|
|
|
|
|
|
|
def get(self, *args, **kwargs):
|
|
|
|
"""Register a mock get request."""
|
2019-07-31 19:25:30 +00:00
|
|
|
self.request("get", *args, **kwargs)
|
2016-10-24 06:48:01 +00:00
|
|
|
|
|
|
|
def put(self, *args, **kwargs):
|
|
|
|
"""Register a mock put request."""
|
2019-07-31 19:25:30 +00:00
|
|
|
self.request("put", *args, **kwargs)
|
2016-10-24 06:48:01 +00:00
|
|
|
|
|
|
|
def post(self, *args, **kwargs):
|
|
|
|
"""Register a mock post request."""
|
2019-07-31 19:25:30 +00:00
|
|
|
self.request("post", *args, **kwargs)
|
2016-10-24 06:48:01 +00:00
|
|
|
|
|
|
|
def delete(self, *args, **kwargs):
|
|
|
|
"""Register a mock delete request."""
|
2019-07-31 19:25:30 +00:00
|
|
|
self.request("delete", *args, **kwargs)
|
2016-10-24 06:48:01 +00:00
|
|
|
|
|
|
|
def options(self, *args, **kwargs):
|
|
|
|
"""Register a mock options request."""
|
2019-07-31 19:25:30 +00:00
|
|
|
self.request("options", *args, **kwargs)
|
2016-10-24 06:48:01 +00:00
|
|
|
|
2019-04-15 22:27:13 +00:00
|
|
|
def patch(self, *args, **kwargs):
|
|
|
|
"""Register a mock patch request."""
|
2019-07-31 19:25:30 +00:00
|
|
|
self.request("patch", *args, **kwargs)
|
2019-04-15 22:27:13 +00:00
|
|
|
|
2016-10-24 06:48:01 +00:00
|
|
|
@property
|
|
|
|
def call_count(self):
|
2017-05-02 16:18:47 +00:00
|
|
|
"""Return the number of requests made."""
|
2016-10-24 06:48:01 +00:00
|
|
|
return len(self.mock_calls)
|
|
|
|
|
2017-01-09 16:08:37 +00:00
|
|
|
def clear_requests(self):
|
|
|
|
"""Reset mock calls."""
|
|
|
|
self._mocks.clear()
|
|
|
|
self._cookies.clear()
|
|
|
|
self.mock_calls.clear()
|
|
|
|
|
2018-03-04 05:28:04 +00:00
|
|
|
def create_session(self, loop):
|
|
|
|
"""Create a ClientSession that is bound to this mocker."""
|
|
|
|
session = ClientSession(loop=loop)
|
2018-03-15 20:49:49 +00:00
|
|
|
# Setting directly on `session` will raise deprecation warning
|
2019-07-31 19:25:30 +00:00
|
|
|
object.__setattr__(session, "_request", self.match_request)
|
2018-03-04 05:28:04 +00:00
|
|
|
return session
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
async def match_request(
|
|
|
|
self,
|
|
|
|
method,
|
|
|
|
url,
|
|
|
|
*,
|
|
|
|
data=None,
|
|
|
|
auth=None,
|
|
|
|
params=None,
|
|
|
|
headers=None,
|
|
|
|
allow_redirects=None,
|
|
|
|
timeout=None,
|
|
|
|
json=None,
|
|
|
|
cookies=None,
|
|
|
|
**kwargs,
|
|
|
|
):
|
2016-10-24 06:48:01 +00:00
|
|
|
"""Match a request against pre-registered requests."""
|
2017-04-07 05:19:08 +00:00
|
|
|
data = data or json
|
2018-03-04 05:28:04 +00:00
|
|
|
url = URL(url)
|
|
|
|
if params:
|
|
|
|
url = url.with_query(params)
|
|
|
|
|
2016-10-24 06:48:01 +00:00
|
|
|
for response in self._mocks:
|
2016-12-01 06:20:21 +00:00
|
|
|
if response.match_request(method, url, params):
|
2018-01-10 18:48:31 +00:00
|
|
|
self.mock_calls.append((method, url, data, headers))
|
2020-04-10 21:57:39 +00:00
|
|
|
if response.side_effect:
|
|
|
|
response = await response.side_effect(method, url, data)
|
2017-01-09 16:08:37 +00:00
|
|
|
if response.exc:
|
|
|
|
raise response.exc
|
2016-10-24 06:48:01 +00:00
|
|
|
return response
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
assert False, "No mock registered for {} {} {}".format(
|
|
|
|
method.upper(), url, params
|
|
|
|
)
|
2016-10-24 06:48:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
class AiohttpClientMockResponse:
|
|
|
|
"""Mock Aiohttp client response."""
|
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
def __init__(
|
2020-04-10 21:57:39 +00:00
|
|
|
self,
|
|
|
|
method,
|
|
|
|
url,
|
2021-10-01 22:52:45 +00:00
|
|
|
status=HTTPStatus.OK,
|
2020-04-10 21:57:39 +00:00
|
|
|
response=None,
|
|
|
|
json=None,
|
|
|
|
text=None,
|
|
|
|
cookies=None,
|
|
|
|
exc=None,
|
|
|
|
headers=None,
|
|
|
|
side_effect=None,
|
2019-07-31 19:25:30 +00:00
|
|
|
):
|
2016-10-24 06:48:01 +00:00
|
|
|
"""Initialize a fake response."""
|
2020-04-10 21:57:39 +00:00
|
|
|
if json is not None:
|
|
|
|
text = _json.dumps(json)
|
|
|
|
if text is not None:
|
|
|
|
response = text.encode("utf-8")
|
|
|
|
if response is None:
|
|
|
|
response = b""
|
|
|
|
|
2016-10-24 06:48:01 +00:00
|
|
|
self.method = method
|
2016-11-03 02:34:12 +00:00
|
|
|
self._url = url
|
2016-10-24 06:48:01 +00:00
|
|
|
self.status = status
|
|
|
|
self.response = response
|
2017-01-09 16:08:37 +00:00
|
|
|
self.exc = exc
|
2020-04-10 21:57:39 +00:00
|
|
|
self.side_effect = side_effect
|
Config-flow for DLNA-DMR integration (#55267)
* Modernize dlna_dmr component: configflow, test, types
* Support config-flow with ssdp discovery
* Add unit tests
* Enforce strict typing
* Gracefully handle network devices (dis)appearing
* Fix Aiohttp mock response headers type to match actual response class
* Fixes from code review
* Fixes from code review
* Import device config in flow if unavailable at hass start
* Support SSDP advertisements
* Ignore bad BOOTID, fix ssdp:byebye handling
* Only listen for events on interface connected to device
* Release all listeners when entities are removed
* Warn about deprecated dlna_dmr configuration
* Use sublogger for dlna_dmr.config_flow for easier filtering
* Tests for dlna_dmr.data module
* Rewrite DMR tests for HA style
* Fix DMR strings: "Digital Media *Renderer*"
* Update DMR entity state and device info when changed
* Replace deprecated async_upnp_client State with TransportState
* supported_features are dynamic, based on current device state
* Cleanup fully when subscription fails
* Log warnings when device connection fails unexpectedly
* Set PARALLEL_UPDATES to unlimited
* Fix spelling
* Fixes from code review
* Simplify has & can checks to just can, which includes has
* Treat transitioning state as playing (not idle) to reduce UI jerking
* Test if device is usable
* Handle ssdp:update messages properly
* Fix _remove_ssdp_callbacks being shared by all DlnaDmrEntity instances
* Fix tests for transitioning state
* Mock DmrDevice.is_profile_device (added to support embedded devices)
* Use ST & NT SSDP headers to find DMR devices, not deviceType
The deviceType is extracted from the device's description XML, and will not
be what we want when dealing with embedded devices.
* Use UDN from SSDP headers, not device description, as unique_id
The SSDP headers have the UDN of the embedded device that we're interested
in, whereas the device description (`ATTR_UPNP_UDN`) field will always be
for the root device.
* Fix DMR string English localization
* Test config flow with UDN from SSDP headers
* Bump async-upnp-client==0.22.1, fix flake8 error
* fix test for remapping
* DMR HA Device connections based on root and embedded UDN
* DmrDevice's UpnpDevice is now named profile_device
* Use device type from SSDP headers, not device description
* Mark dlna_dmr constants as Final
* Use embedded device UDN and type for unique ID when connected via URL
* More informative connection error messages
* Also match SSDP messages on NT headers
The NT header is to ssdp:alive messages what ST is to M-SEARCH responses.
* Bump async-upnp-client==0.22.2
* fix merge
* Bump async-upnp-client==0.22.3
Co-authored-by: Steven Looman <steven.looman@gmail.com>
Co-authored-by: J. Nick Koston <nick@koston.org>
2021-09-27 20:47:01 +00:00
|
|
|
self._headers = CIMultiDict(headers or {})
|
2017-01-16 10:06:23 +00:00
|
|
|
self._cookies = {}
|
|
|
|
|
|
|
|
if cookies:
|
|
|
|
for name, data in cookies.items():
|
|
|
|
cookie = mock.MagicMock()
|
|
|
|
cookie.value = data
|
|
|
|
self._cookies[name] = cookie
|
|
|
|
|
2016-12-01 06:20:21 +00:00
|
|
|
def match_request(self, method, url, params=None):
|
2016-10-24 06:48:01 +00:00
|
|
|
"""Test if response answers request."""
|
2016-11-03 02:34:12 +00:00
|
|
|
if method.lower() != self.method.lower():
|
|
|
|
return False
|
|
|
|
|
|
|
|
# regular expression matching
|
2020-04-07 16:33:23 +00:00
|
|
|
if isinstance(self._url, RETYPE):
|
2018-03-04 05:28:04 +00:00
|
|
|
return self._url.search(str(url)) is not None
|
2016-11-03 02:34:12 +00:00
|
|
|
|
2019-07-31 19:25:30 +00:00
|
|
|
if (
|
|
|
|
self._url.scheme != url.scheme
|
|
|
|
or self._url.host != url.host
|
|
|
|
or self._url.path != url.path
|
|
|
|
):
|
2016-11-03 02:34:12 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
# Ensure all query components in matcher are present in the request
|
2018-03-04 05:28:04 +00:00
|
|
|
request_qs = parse_qs(url.query_string)
|
|
|
|
matcher_qs = parse_qs(self._url.query_string)
|
2016-11-03 02:34:12 +00:00
|
|
|
for key, vals in matcher_qs.items():
|
|
|
|
for val in vals:
|
|
|
|
try:
|
|
|
|
request_qs.get(key, []).remove(val)
|
|
|
|
except ValueError:
|
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
2016-10-24 06:48:01 +00:00
|
|
|
|
2017-01-30 00:15:40 +00:00
|
|
|
@property
|
|
|
|
def headers(self):
|
|
|
|
"""Return content_type."""
|
|
|
|
return self._headers
|
|
|
|
|
2017-01-16 10:06:23 +00:00
|
|
|
@property
|
|
|
|
def cookies(self):
|
|
|
|
"""Return dict of cookies."""
|
|
|
|
return self._cookies
|
|
|
|
|
2018-12-06 08:20:53 +00:00
|
|
|
@property
|
|
|
|
def url(self):
|
|
|
|
"""Return yarl of URL."""
|
|
|
|
return self._url
|
|
|
|
|
2018-12-17 10:27:03 +00:00
|
|
|
@property
|
|
|
|
def content_type(self):
|
|
|
|
"""Return yarl of URL."""
|
2019-07-31 19:25:30 +00:00
|
|
|
return self._headers.get("content-type")
|
2018-12-17 10:27:03 +00:00
|
|
|
|
2018-08-10 16:09:42 +00:00
|
|
|
@property
|
|
|
|
def content(self):
|
|
|
|
"""Return content."""
|
|
|
|
return mock_stream(self.response)
|
|
|
|
|
2020-04-07 16:33:23 +00:00
|
|
|
async def read(self):
|
2016-10-24 06:48:01 +00:00
|
|
|
"""Return mock response."""
|
|
|
|
return self.response
|
|
|
|
|
2021-01-31 16:59:14 +00:00
|
|
|
async def text(self, encoding="utf-8", errors="strict"):
|
2016-10-24 06:48:01 +00:00
|
|
|
"""Return mock response as a string."""
|
2021-01-31 16:59:14 +00:00
|
|
|
return self.response.decode(encoding, errors=errors)
|
2016-10-24 06:48:01 +00:00
|
|
|
|
2020-08-10 12:19:38 +00:00
|
|
|
async def json(self, encoding="utf-8", content_type=None):
|
2017-01-14 07:18:03 +00:00
|
|
|
"""Return mock response as a json."""
|
|
|
|
return _json.loads(self.response.decode(encoding))
|
|
|
|
|
2016-10-24 06:48:01 +00:00
|
|
|
def release(self):
|
|
|
|
"""Mock release."""
|
|
|
|
|
2017-12-31 23:04:49 +00:00
|
|
|
def raise_for_status(self):
|
|
|
|
"""Raise error if status is 400 or higher."""
|
|
|
|
if self.status >= 400:
|
2019-09-19 18:34:41 +00:00
|
|
|
request_info = mock.Mock(real_url="http://example.com")
|
2017-12-31 23:04:49 +00:00
|
|
|
raise ClientResponseError(
|
2019-09-19 18:34:41 +00:00
|
|
|
request_info=request_info,
|
|
|
|
history=None,
|
|
|
|
code=self.status,
|
|
|
|
headers=self.headers,
|
2019-07-31 19:25:30 +00:00
|
|
|
)
|
2017-12-31 23:04:49 +00:00
|
|
|
|
2017-01-16 10:06:23 +00:00
|
|
|
def close(self):
|
|
|
|
"""Mock close."""
|
|
|
|
|
2016-10-24 06:48:01 +00:00
|
|
|
|
|
|
|
@contextmanager
|
|
|
|
def mock_aiohttp_client():
|
|
|
|
"""Context manager to mock aiohttp client."""
|
|
|
|
mocker = AiohttpClientMocker()
|
|
|
|
|
2021-01-20 21:10:40 +00:00
|
|
|
def create_session(hass, *args, **kwargs):
|
2018-08-20 14:34:18 +00:00
|
|
|
session = mocker.create_session(hass.loop)
|
|
|
|
|
|
|
|
async def close_session(event):
|
|
|
|
"""Close session."""
|
|
|
|
await session.close()
|
|
|
|
|
|
|
|
hass.bus.async_listen_once(EVENT_HOMEASSISTANT_CLOSE, close_session)
|
|
|
|
|
|
|
|
return session
|
|
|
|
|
2018-03-04 05:28:04 +00:00
|
|
|
with mock.patch(
|
2021-04-09 17:14:33 +00:00
|
|
|
"homeassistant.helpers.aiohttp_client._async_create_clientsession",
|
2019-07-31 19:25:30 +00:00
|
|
|
side_effect=create_session,
|
|
|
|
):
|
2016-10-24 06:48:01 +00:00
|
|
|
yield mocker
|
2020-04-10 21:57:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
class MockLongPollSideEffect:
|
2020-04-11 13:26:54 +00:00
|
|
|
"""Imitate a long_poll request.
|
|
|
|
|
|
|
|
It should be created and used as a side effect for a GET/PUT/etc. request.
|
|
|
|
Once created, actual responses are queued with queue_response
|
|
|
|
If queue is empty, will await until done.
|
|
|
|
"""
|
2020-04-10 21:57:39 +00:00
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
"""Initialize the queue."""
|
|
|
|
self.semaphore = asyncio.Semaphore(0)
|
|
|
|
self.response_list = []
|
|
|
|
self.stopping = False
|
|
|
|
|
|
|
|
async def __call__(self, method, url, data):
|
|
|
|
"""Fetch the next response from the queue or wait until the queue has items."""
|
|
|
|
if self.stopping:
|
|
|
|
raise ClientError()
|
|
|
|
await self.semaphore.acquire()
|
|
|
|
kwargs = self.response_list.pop(0)
|
|
|
|
return AiohttpClientMockResponse(method=method, url=url, **kwargs)
|
|
|
|
|
|
|
|
def queue_response(self, **kwargs):
|
|
|
|
"""Add a response to the long_poll queue."""
|
|
|
|
self.response_list.append(kwargs)
|
|
|
|
self.semaphore.release()
|
|
|
|
|
|
|
|
def stop(self):
|
2020-04-11 18:20:19 +00:00
|
|
|
"""Stop the current request and future ones.
|
|
|
|
|
|
|
|
This avoids an exception if there is someone waiting when exiting test.
|
|
|
|
"""
|
2020-04-10 21:57:39 +00:00
|
|
|
self.stopping = True
|
|
|
|
self.queue_response(exc=ClientError())
|