1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844
|
.. module:: aiohttp.test_utils
.. _aiohttp-testing:
Testing
=======
Testing aiohttp web servers
---------------------------
aiohttp provides plugin for *pytest* making writing web server tests
extremely easy, it also provides :ref:`test framework agnostic
utilities <aiohttp-testing-framework-agnostic-utilities>` for testing
with other frameworks such as :ref:`unittest
<aiohttp-testing-unittest-example>`.
Before starting to write your tests, you may also be interested on
reading :ref:`how to write testable
services<aiohttp-testing-writing-testable-services>` that interact
with the loop.
For using pytest plugin please install pytest-aiohttp_ library:
.. code-block:: shell
$ pip install pytest-aiohttp
If you don't want to install *pytest-aiohttp* for some reason you may
insert ``pytest_plugins = 'aiohttp.pytest_plugin'`` line into
``conftest.py`` instead for the same functionality.
Provisional Status
~~~~~~~~~~~~~~~~~~
The module is a **provisional**.
*aiohttp* has a year and half period for removing deprecated API
(:ref:`aiohttp-backward-compatibility-policy`).
But for :mod:`aiohttp.test_tools` the deprecation period could be reduced.
Moreover we may break *backward compatibility* without *deprecation
period* for some very strong reason.
The Test Client and Servers
~~~~~~~~~~~~~~~~~~~~~~~~~~~
*aiohttp* test utils provides a scaffolding for testing aiohttp-based
web servers.
They are consist of two parts: running test server and making HTTP
requests to this server.
:class:`~aiohttp.test_utils.TestServer` runs :class:`aiohttp.web.Application`
based server, :class:`~aiohttp.test_utils.RawTestServer` starts
:class:`aiohttp.web.Server` low level server.
For performing HTTP requests to these servers you have to create a
test client: :class:`~aiohttp.test_utils.TestClient` instance.
The client incapsulates :class:`aiohttp.ClientSession` by providing
proxy methods to the client for common operations such as
*ws_connect*, *get*, *post*, etc.
Pytest
~~~~~~
.. currentmodule:: pytest_aiohttp
The :data:`aiohttp_client` fixture available from pytest-aiohttp_ plugin
allows you to create a client to make requests to test your app.
A simple would be::
from aiohttp import web
async def hello(request):
return web.Response(text='Hello, world')
async def test_hello(aiohttp_client, loop):
app = web.Application()
app.router.add_get('/', hello)
client = await aiohttp_client(app)
resp = await client.get('/')
assert resp.status == 200
text = await resp.text()
assert 'Hello, world' in text
It also provides access to the app instance allowing tests to check the state
of the app. Tests can be made even more succinct with a fixture to create an
app test client::
import pytest
from aiohttp import web
async def previous(request):
if request.method == 'POST':
request.app['value'] = (await request.post())['value']
return web.Response(body=b'thanks for the data')
return web.Response(
body='value: {}'.format(request.app['value']).encode('utf-8'))
@pytest.fixture
def cli(loop, aiohttp_client):
app = web.Application()
app.router.add_get('/', previous)
app.router.add_post('/', previous)
return loop.run_until_complete(aiohttp_client(app))
async def test_set_value(cli):
resp = await cli.post('/', data={'value': 'foo'})
assert resp.status == 200
assert await resp.text() == 'thanks for the data'
assert cli.server.app['value'] == 'foo'
async def test_get_value(cli):
cli.server.app['value'] = 'bar'
resp = await cli.get('/')
assert resp.status == 200
assert await resp.text() == 'value: bar'
Pytest tooling has the following fixtures:
.. data:: aiohttp_server(app, *, port=None, **kwargs)
A fixture factory that creates
:class:`~aiohttp.test_utils.TestServer`::
async def test_f(aiohttp_server):
app = web.Application()
# fill route table
server = await aiohttp_server(app)
The server will be destroyed on exit from test function.
*app* is the :class:`aiohttp.web.Application` used
to start server.
*port* optional, port the server is run at, if
not provided a random unused port is used.
.. versionadded:: 3.0
*kwargs* are parameters passed to
:meth:`aiohttp.web.Application.make_handler`
.. versionchanged:: 3.0
.. deprecated:: 3.2
The fixture was renamed from ``test_server`` to ``aiohttp_server``.
.. data:: aiohttp_client(app, server_kwargs=None, **kwargs)
aiohttp_client(server, **kwargs)
aiohttp_client(raw_server, **kwargs)
A fixture factory that creates
:class:`~aiohttp.test_utils.TestClient` for access to tested server::
async def test_f(aiohttp_client):
app = web.Application()
# fill route table
client = await aiohttp_client(app)
resp = await client.get('/')
*client* and responses are cleaned up after test function finishing.
The fixture accepts :class:`aiohttp.web.Application`,
:class:`aiohttp.test_utils.TestServer` or
:class:`aiohttp.test_utils.RawTestServer` instance.
*server_kwargs* are parameters passed to the test server if an app
is passed, else ignored.
*kwargs* are parameters passed to
:class:`aiohttp.test_utils.TestClient` constructor.
.. versionchanged:: 3.0
The fixture was renamed from ``test_client`` to ``aiohttp_client``.
.. data:: aiohttp_raw_server(handler, *, port=None, **kwargs)
A fixture factory that creates
:class:`~aiohttp.test_utils.RawTestServer` instance from given web
handler.::
async def test_f(aiohttp_raw_server, aiohttp_client):
async def handler(request):
return web.Response(text="OK")
raw_server = await aiohttp_raw_server(handler)
client = await aiohttp_client(raw_server)
resp = await client.get('/')
*handler* should be a coroutine which accepts a request and returns
response, e.g.
*port* optional, port the server is run at, if
not provided a random unused port is used.
.. versionadded:: 3.0
.. data:: aiohttp_unused_port()
Function to return an unused port number for IPv4 TCP protocol::
async def test_f(aiohttp_client, aiohttp_unused_port):
port = aiohttp_unused_port()
app = web.Application()
# fill route table
client = await aiohttp_client(app, server_kwargs={'port': port})
...
.. versionchanged:: 3.0
The fixture was renamed from ``unused_port`` to ``aiohttp_unused_port``.
.. _aiohttp-testing-unittest-example:
.. _aiohttp-testing-unittest-style:
Unittest
~~~~~~~~
.. currentmodule:: aiohttp.test_utils
To test applications with the standard library's unittest or unittest-based
functionality, the AioHTTPTestCase is provided::
from aiohttp.test_utils import AioHTTPTestCase
from aiohttp import web
class MyAppTestCase(AioHTTPTestCase):
async def get_application(self):
"""
Override the get_app method to return your application.
"""
async def hello(request):
return web.Response(text='Hello, world')
app = web.Application()
app.router.add_get('/', hello)
return app
async def test_example(self):
async with self.client.request("GET", "/") as resp:
self.assertEqual(resp.status, 200)
text = await resp.text()
self.assertIn("Hello, world", text)
.. class:: AioHTTPTestCase
A base class to allow for unittest web applications using aiohttp.
Derived from :class:`unittest.TestCase`
Provides the following:
.. attribute:: client
an aiohttp test client, :class:`TestClient` instance.
.. attribute:: server
an aiohttp test server, :class:`TestServer` instance.
.. versionadded:: 2.3
.. attribute:: loop
The event loop in which the application and server are running.
.. deprecated:: 3.5
.. attribute:: app
The application returned by :meth:`~aiohttp.test_utils.AioHTTPTestCase.get_application`
(:class:`aiohttp.web.Application` instance).
.. comethod:: get_client()
This async method can be overridden to return the :class:`TestClient`
object used in the test.
:return: :class:`TestClient` instance.
.. versionadded:: 2.3
.. comethod:: get_server()
This async method can be overridden to return the :class:`TestServer`
object used in the test.
:return: :class:`TestServer` instance.
.. versionadded:: 2.3
.. comethod:: get_application()
This async method should be overridden
to return the :class:`aiohttp.web.Application`
object to test.
:return: :class:`aiohttp.web.Application` instance.
.. comethod:: setUpAsync()
This async method can be overridden to execute asynchronous code during
the ``setUp`` stage of the ``TestCase``::
async def setUpAsync(self):
await super().setUpAsync()
await foo()
.. versionadded:: 2.3
.. versionchanged:: 3.8
``await super().setUpAsync()`` call is required.
.. comethod:: tearDownAsync()
This async method can be overridden to execute asynchronous code during
the ``tearDown`` stage of the ``TestCase``::
async def tearDownAsync(self):
await super().tearDownAsync()
await foo()
.. versionadded:: 2.3
.. versionchanged:: 3.8
``await super().tearDownAsync()`` call is required.
.. method:: setUp()
Standard test initialization method.
.. method:: tearDown()
Standard test finalization method.
.. note::
The ``TestClient``'s methods are asynchronous: you have to
execute functions on the test client using asynchronous methods.::
class TestA(AioHTTPTestCase):
async def test_f(self):
async with self.client.get('/') as resp:
body = await resp.text()
.. decorator:: unittest_run_loop:
A decorator dedicated to use with asynchronous methods of an
:class:`AioHTTPTestCase`.
Handles executing an asynchronous function, using
the :attr:`AioHTTPTestCase.loop` of the :class:`AioHTTPTestCase`.
.. deprecated:: 3.8
In 3.8+ :class:`AioHTTPTestCase` inherits from :class:`unittest.IsolatedAsyncioTestCase`
making this decorator unneeded. It is now a no-op.
Faking request object
---------------------
aiohttp provides test utility for creating fake
:class:`aiohttp.web.Request` objects:
:func:`aiohttp.test_utils.make_mocked_request`, it could be useful in
case of simple unit tests, like handler tests, or simulate error
conditions that hard to reproduce on real server::
from aiohttp import web
from aiohttp.test_utils import make_mocked_request
def handler(request):
assert request.headers.get('token') == 'x'
return web.Response(body=b'data')
def test_handler():
req = make_mocked_request('GET', '/', headers={'token': 'x'})
resp = handler(req)
assert resp.body == b'data'
.. warning::
We don't recommend to apply
:func:`~aiohttp.test_utils.make_mocked_request` everywhere for
testing web-handler's business object -- please use test client and
real networking via 'localhost' as shown in examples before.
:func:`~aiohttp.test_utils.make_mocked_request` exists only for
testing complex cases (e.g. emulating network errors) which
are extremely hard or even impossible to test by conventional
way.
.. function:: make_mocked_request(method, path, headers=None, *, \
version=HttpVersion(1, 1), \
closing=False, \
app=None, \
match_info=sentinel, \
reader=sentinel, \
writer=sentinel, \
transport=sentinel, \
payload=sentinel, \
sslcontext=None, \
loop=...)
Creates mocked web.Request testing purposes.
Useful in unit tests, when spinning full web server is overkill or
specific conditions and errors are hard to trigger.
:param method: str, that represents HTTP method, like; GET, POST.
:type method: str
:param path: str, The URL including *PATH INFO* without the host or scheme
:type path: str
:param headers: mapping containing the headers. Can be anything accepted
by the multidict.CIMultiDict constructor.
:type headers: dict, multidict.CIMultiDict, list of pairs
:param match_info: mapping containing the info to match with url parameters.
:type match_info: dict
:param version: namedtuple with encoded HTTP version
:type version: aiohttp.protocol.HttpVersion
:param closing: flag indicates that connection should be closed after
response.
:type closing: bool
:param app: the aiohttp.web application attached for fake request
:type app: aiohttp.web.Application
:param writer: object for managing outcoming data
:type writer: aiohttp.StreamWriter
:param transport: asyncio transport instance
:type transport: asyncio.Transport
:param payload: raw payload reader object
:type payload: aiohttp.StreamReader
:param sslcontext: ssl.SSLContext object, for HTTPS connection
:type sslcontext: ssl.SSLContext
:param loop: An event loop instance, mocked loop by default.
:type loop: :class:`asyncio.AbstractEventLoop`
:return: :class:`aiohttp.web.Request` object.
.. versionadded:: 2.3
*match_info* parameter.
.. _aiohttp-testing-writing-testable-services:
.. _aiohttp-testing-framework-agnostic-utilities:
Framework Agnostic Utilities
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
High level test creation::
from aiohttp.test_utils import TestClient, TestServer, loop_context
from aiohttp import request
# loop_context is provided as a utility. You can use any
# asyncio.BaseEventLoop class in its place.
with loop_context() as loop:
app = _create_example_app()
with TestClient(TestServer(app), loop=loop) as client:
async def test_get_route():
nonlocal client
resp = await client.get("/")
assert resp.status == 200
text = await resp.text()
assert "Hello, world" in text
loop.run_until_complete(test_get_route())
If it's preferred to handle the creation / teardown on a more granular
basis, the TestClient object can be used directly::
from aiohttp.test_utils import TestClient, TestServer
with loop_context() as loop:
app = _create_example_app()
client = TestClient(TestServer(app), loop=loop)
loop.run_until_complete(client.start_server())
root = "http://127.0.0.1:{}".format(port)
async def test_get_route():
resp = await client.get("/")
assert resp.status == 200
text = await resp.text()
assert "Hello, world" in text
loop.run_until_complete(test_get_route())
loop.run_until_complete(client.close())
A full list of the utilities provided can be found at the
:mod:`api reference <aiohttp.test_utils>`
Testing API Reference
---------------------
Test server
~~~~~~~~~~~
Runs given :class:`aiohttp.web.Application` instance on random TCP port.
After creation the server is not started yet, use
:meth:`~aiohttp.test_utils.BaseTestServer.start_server` for actual server
starting and :meth:`~aiohttp.test_utils.BaseTestServer.close` for
stopping/cleanup.
Test server usually works in conjunction with
:class:`aiohttp.test_utils.TestClient` which provides handy client methods
for accessing to the server.
.. class:: BaseTestServer(*, scheme='http', host='127.0.0.1', port=None, socket_factory=get_port_socket)
Base class for test servers.
:param str scheme: HTTP scheme, non-protected ``"http"`` by default.
:param str host: a host for TCP socket, IPv4 *local host*
(``'127.0.0.1'``) by default.
:param int port: optional port for TCP socket, if not provided a
random unused port is used.
.. versionadded:: 3.0
:param collections.abc.Callable[[str,int,socket.AddressFamily],socket.socket] socket_factory: optional
Factory to create a socket for the server.
By default creates a TCP socket and binds it
to ``host`` and ``port``.
.. versionadded:: 3.8
.. attribute:: scheme
A *scheme* for tested application, ``'http'`` for non-protected
run and ``'https'`` for TLS encrypted server.
.. attribute:: host
*host* used to start a test server.
.. attribute:: port
*port* used to start the test server.
.. attribute:: handler
:class:`aiohttp.web.Server` used for HTTP requests serving.
.. attribute:: server
:class:`asyncio.AbstractServer` used for managing accepted connections.
.. attribute:: socket_factory
*socket_factory* used to create and bind a server socket.
.. versionadded:: 3.8
.. comethod:: start_server(loop=None, **kwargs)
:param loop: the event_loop to use
:type loop: asyncio.AbstractEventLoop
Start a test server.
.. comethod:: close()
Stop and finish executed test server.
.. method:: make_url(path)
Return an *absolute* :class:`~yarl.URL` for given *path*.
.. class:: RawTestServer(handler, *, scheme="http", host='127.0.0.1')
Low-level test server (derived from :class:`BaseTestServer`).
:param handler: a coroutine for handling web requests. The
handler should accept
:class:`aiohttp.web.BaseRequest` and return a
response instance,
e.g. :class:`~aiohttp.web.StreamResponse` or
:class:`~aiohttp.web.Response`.
The handler could raise
:class:`~aiohttp.web.HTTPException` as a signal for
non-200 HTTP response.
:param str scheme: HTTP scheme, non-protected ``"http"`` by default.
:param str host: a host for TCP socket, IPv4 *local host*
(``'127.0.0.1'``) by default.
:param int port: optional port for TCP socket, if not provided a
random unused port is used.
.. versionadded:: 3.0
.. class:: TestServer(app, *, scheme="http", host='127.0.0.1')
Test server (derived from :class:`BaseTestServer`) for starting
:class:`~aiohttp.web.Application`.
:param app: :class:`aiohttp.web.Application` instance to run.
:param str scheme: HTTP scheme, non-protected ``"http"`` by default.
:param str host: a host for TCP socket, IPv4 *local host*
(``'127.0.0.1'``) by default.
:param int port: optional port for TCP socket, if not provided a
random unused port is used.
.. versionadded:: 3.0
.. attribute:: app
:class:`aiohttp.web.Application` instance to run.
Test Client
~~~~~~~~~~~
.. class:: TestClient(app_or_server, *, loop=None, \
scheme='http', host='127.0.0.1', \
cookie_jar=None, **kwargs)
A test client used for making calls to tested server.
:param app_or_server: :class:`BaseTestServer` instance for making
client requests to it.
In order to pass a :class:`aiohttp.web.Application`
you need to convert it first to :class:`TestServer`
first with ``TestServer(app)``.
:param cookie_jar: an optional :class:`aiohttp.CookieJar` instance,
may be useful with
``CookieJar(unsafe=True, treat_as_secure_origin="http://127.0.0.1")``
option.
:param str scheme: HTTP scheme, non-protected ``"http"`` by default.
:param asyncio.AbstractEventLoop loop: the event_loop to use
:param str host: a host for TCP socket, IPv4 *local host*
(``'127.0.0.1'``) by default.
.. attribute:: scheme
A *scheme* for tested application, ``'http'`` for non-protected
run and ``'https'`` for TLS encrypted server.
.. attribute:: host
*host* used to start a test server.
.. attribute:: port
*port* used to start the server
.. attribute:: server
:class:`BaseTestServer` test server instance used in conjunction
with client.
.. attribute:: app
An alias for ``self.server.app``. return ``None`` if
``self.server`` is not :class:`TestServer`
instance(e.g. :class:`RawTestServer` instance for test low-level server).
.. attribute:: session
An internal :class:`aiohttp.ClientSession`.
Unlike the methods on the :class:`TestClient`, client session
requests do not automatically include the host in the url
queried, and will require an absolute path to the resource.
.. comethod:: start_server(**kwargs)
Start a test server.
.. comethod:: close()
Stop and finish executed test server.
.. method:: make_url(path)
Return an *absolute* :class:`~yarl.URL` for given *path*.
.. comethod:: request(method, path, *args, **kwargs)
Routes a request to tested http server.
The interface is identical to
:meth:`aiohttp.ClientSession.request`, except the loop kwarg is
overridden by the instance used by the test server.
.. comethod:: get(path, *args, **kwargs)
Perform an HTTP GET request.
.. comethod:: post(path, *args, **kwargs)
Perform an HTTP POST request.
.. comethod:: options(path, *args, **kwargs)
Perform an HTTP OPTIONS request.
.. comethod:: head(path, *args, **kwargs)
Perform an HTTP HEAD request.
.. comethod:: put(path, *args, **kwargs)
Perform an HTTP PUT request.
.. comethod:: patch(path, *args, **kwargs)
Perform an HTTP PATCH request.
.. comethod:: delete(path, *args, **kwargs)
Perform an HTTP DELETE request.
.. comethod:: ws_connect(path, *args, **kwargs)
Initiate websocket connection.
The api corresponds to :meth:`aiohttp.ClientSession.ws_connect`.
Utilities
~~~~~~~~~
.. function:: make_mocked_coro(return_value)
Creates a coroutine mock.
Behaves like a coroutine which returns *return_value*. But it is
also a mock object, you might test it as usual
:class:`~unittest.mock.Mock`::
mocked = make_mocked_coro(1)
assert 1 == await mocked(1, 2)
mocked.assert_called_with(1, 2)
:param return_value: A value that the the mock object will return when
called.
:returns: A mock object that behaves as a coroutine which returns
*return_value* when called.
.. function:: unused_port()
Return an unused port number for IPv4 TCP protocol.
:return int: ephemeral port number which could be reused by test server.
.. function:: loop_context(loop_factory=<function asyncio.new_event_loop>)
A contextmanager that creates an event_loop, for test purposes.
Handles the creation and cleanup of a test loop.
.. function:: setup_test_loop(loop_factory=<function asyncio.new_event_loop>)
Create and return an :class:`asyncio.AbstractEventLoop` instance.
The caller should also call teardown_test_loop, once they are done
with the loop.
.. note::
As side effect the function changes asyncio *default loop* by
:func:`asyncio.set_event_loop` call.
Previous default loop is not restored.
It should not be a problem for test suite: every test expects a
new test loop instance anyway.
.. versionchanged:: 3.1
The function installs a created event loop as *default*.
.. function:: teardown_test_loop(loop)
Teardown and cleanup an event_loop created by setup_test_loop.
:param loop: the loop to teardown
:type loop: asyncio.AbstractEventLoop
.. _pytest: http://pytest.org/latest/
.. _pytest-aiohttp: https://pypi.python.org/pypi/pytest-aiohttp
|