pytest-aiohttp 1.0.5

Creator: bradpython12

Last updated:

Add to Cart

Description:

pytestaiohttp 1.0.5

pytest plugin for aiohttp support
The library provides useful fixtures for creation test aiohttp server and client.

Installation
$ pip install pytest-aiohttp
Add asyncio_mode = auto line to pytest configuration (see pytest-asyncio modes for details). The plugin works
with strict mode also.


Usage
Write tests in pytest-asyncio style
using provided fixtures for aiohttp test server and client creation. The plugin provides
resources cleanup out-of-the-box.
The simple usage example:
from aiohttp import web


async def hello(request):
return web.Response(body=b"Hello, world")


def create_app():
app = web.Application()
app.router.add_route("GET", "/", hello)
return app


async def test_hello(aiohttp_client):
client = await aiohttp_client(create_app())
resp = await client.get("/")
assert resp.status == 200
text = await resp.text()
assert "Hello, world" in text
See aiohttp documentation <https://docs.aiohttp.org/en/stable/testing.html#pytest> for
more details about fixtures usage.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.