2015-01-14 00:26:24 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Copyright (C) 2015 GNS3 Technologies Inc.
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-04-26 15:10:33 +00:00
|
|
|
import io
|
2015-01-14 00:26:24 +00:00
|
|
|
import asyncio
|
2016-03-15 09:45:05 +00:00
|
|
|
import unittest.mock
|
2015-01-14 00:26:24 +00:00
|
|
|
|
|
|
|
|
2015-01-15 12:02:43 +00:00
|
|
|
class _asyncio_patch:
|
2015-01-20 12:24:00 +00:00
|
|
|
|
2015-01-15 12:02:43 +00:00
|
|
|
"""
|
|
|
|
A wrapper around python patch supporting asyncio.
|
|
|
|
Like the original patch you can use it as context
|
2015-01-20 17:55:17 +00:00
|
|
|
manager (with)
|
2015-01-15 12:02:43 +00:00
|
|
|
|
|
|
|
The original patch source code is the main source of
|
|
|
|
inspiration:
|
|
|
|
https://hg.python.org/cpython/file/3.4/Lib/unittest/mock.py
|
|
|
|
"""
|
2015-01-20 12:24:00 +00:00
|
|
|
|
2015-01-15 12:02:43 +00:00
|
|
|
def __init__(self, function, *args, **kwargs):
|
|
|
|
self.function = function
|
|
|
|
self.args = args
|
|
|
|
self.kwargs = kwargs
|
|
|
|
|
|
|
|
def __enter__(self):
|
|
|
|
"""Used when enter in the with block"""
|
2016-03-15 09:45:05 +00:00
|
|
|
self._patcher = unittest.mock.patch(self.function, return_value=self._fake_anwser())
|
2015-01-21 16:11:21 +00:00
|
|
|
mock_class = self._patcher.start()
|
|
|
|
return mock_class
|
2015-01-15 12:02:43 +00:00
|
|
|
|
|
|
|
def __exit__(self, *exc_info):
|
|
|
|
"""Used when leaving the with block"""
|
|
|
|
self._patcher.stop()
|
2015-01-14 00:26:24 +00:00
|
|
|
|
2015-01-15 12:02:43 +00:00
|
|
|
def _fake_anwser(self):
|
|
|
|
future = asyncio.Future()
|
2015-02-06 10:31:54 +00:00
|
|
|
if "return_value" in self.kwargs:
|
|
|
|
future.set_result(self.kwargs["return_value"])
|
2016-01-04 15:30:06 +00:00
|
|
|
elif "side_effect" in self.kwargs:
|
|
|
|
if isinstance(self.kwargs["side_effect"], Exception):
|
|
|
|
future.set_exception(self.kwargs["side_effect"])
|
|
|
|
else:
|
|
|
|
raise NotImplementedError
|
2015-02-06 10:31:54 +00:00
|
|
|
else:
|
|
|
|
future.set_result(True)
|
2015-01-15 12:02:43 +00:00
|
|
|
return future
|
|
|
|
|
|
|
|
|
|
|
|
def asyncio_patch(function, *args, **kwargs):
|
|
|
|
return _asyncio_patch(function, *args, **kwargs)
|
2016-03-01 13:53:43 +00:00
|
|
|
|
|
|
|
|
2016-03-15 09:45:05 +00:00
|
|
|
class AsyncioMagicMock(unittest.mock.MagicMock):
|
2016-03-01 13:53:43 +00:00
|
|
|
"""
|
|
|
|
Magic mock returning coroutine
|
|
|
|
"""
|
2016-03-15 09:45:05 +00:00
|
|
|
|
2016-06-07 17:38:01 +00:00
|
|
|
def __init__(self, return_value=None, return_values=None, **kwargs):
|
|
|
|
"""
|
|
|
|
:return_values: Array of return value at each call will return the next
|
|
|
|
"""
|
2016-03-01 13:53:43 +00:00
|
|
|
if return_value:
|
|
|
|
future = asyncio.Future()
|
|
|
|
future.set_result(return_value)
|
|
|
|
kwargs["return_value"] = future
|
|
|
|
super().__init__(**kwargs)
|
2016-03-15 09:45:05 +00:00
|
|
|
|
|
|
|
def _get_child_mock(self, **kw):
|
|
|
|
"""Create the child mocks for attributes and return value.
|
|
|
|
By default child mocks will be the same type as the parent.
|
|
|
|
Subclasses of Mock may want to override this to customize the way
|
|
|
|
child mocks are made.
|
|
|
|
For non-callable mocks the callable variant will be used (rather than
|
|
|
|
any custom subclass).
|
|
|
|
|
|
|
|
Original code: https://github.com/python/cpython/blob/121f86338111e49c547a55eb7f26db919bfcbde9/Lib/unittest/mock.py
|
|
|
|
"""
|
|
|
|
return AsyncioMagicMock(**kw)
|
2016-04-26 15:10:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
class AsyncioBytesIO(io.BytesIO):
|
|
|
|
"""
|
|
|
|
An async wrapper arround io.BytesIO to fake an
|
|
|
|
async network connection
|
|
|
|
"""
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def read(self, length=-1):
|
|
|
|
return super().read(length)
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def write(self, data):
|
|
|
|
return super().write(data)
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
|
|
|
def close(self):
|
|
|
|
return super().close()
|