uvloop/tests/test_aiohttp.py

63 lines
1.7 KiB
Python
Raw Normal View History

try:
import aiohttp
2017-11-11 20:29:50 +00:00
import aiohttp.web
except ImportError:
skip_tests = True
else:
skip_tests = False
import asyncio
import unittest
from uvloop import _testbase as tb
class _TestAioHTTP:
def test_aiohttp_basic_1(self):
2017-11-11 20:29:50 +00:00
PAYLOAD = '<h1>It Works!</h1>' * 10000
2017-11-11 20:29:50 +00:00
async def on_request(request):
return aiohttp.web.Response(text=PAYLOAD)
asyncio.set_event_loop(self.loop)
2017-11-24 21:02:36 +00:00
app = aiohttp.web.Application()
2017-11-11 20:29:50 +00:00
app.router.add_get('/', on_request)
f = self.loop.create_server(
2017-11-11 20:29:50 +00:00
app.make_handler(),
'0.0.0.0', '0')
srv = self.loop.run_until_complete(f)
port = srv.sockets[0].getsockname()[1]
async def test():
2017-11-24 21:02:36 +00:00
# Make sure we're using the correct event loop.
self.assertIs(asyncio.get_event_loop(), self.loop)
for addr in (('localhost', port),
('127.0.0.1', port)):
async with aiohttp.ClientSession() as client:
async with client.get('http://{}:{}'.format(*addr)) as r:
self.assertEqual(r.status, 200)
2017-11-11 20:29:50 +00:00
result = await r.text()
self.assertEqual(result, PAYLOAD)
self.loop.run_until_complete(test())
2017-11-11 20:29:50 +00:00
self.loop.run_until_complete(app.shutdown())
self.loop.run_until_complete(app.cleanup())
2017-11-21 17:11:10 +00:00
srv.close()
self.loop.run_until_complete(srv.wait_closed())
@unittest.skipIf(skip_tests, "no aiohttp module")
class Test_UV_AioHTTP(_TestAioHTTP, tb.UVTestCase):
pass
@unittest.skipIf(skip_tests, "no aiohttp module")
class Test_AIO_AioHTTP(_TestAioHTTP, tb.AIOTestCase):
pass