|
7 | 7 | skip_tests = False
|
8 | 8 |
|
9 | 9 | import asyncio
|
| 10 | +import os |
10 | 11 | import sys
|
11 | 12 | import unittest
|
12 | 13 | import weakref
|
13 | 14 |
|
14 | 15 | from uvloop import _testbase as tb
|
15 | 16 |
|
16 | 17 |
|
17 |
| -class _TestAioHTTP: |
| 18 | +class _TestAioHTTP(tb.SSLTestCase): |
18 | 19 |
|
19 | 20 | def test_aiohttp_basic_1(self):
|
20 | 21 |
|
@@ -115,6 +116,64 @@ async def stop():
|
115 | 116 |
|
116 | 117 | self.loop.run_until_complete(stop())
|
117 | 118 |
|
| 119 | + def test_aiohttp_connection_lost_when_busy(self): |
| 120 | + if self.implementation == 'asyncio': |
| 121 | + raise unittest.SkipTest('bug in asyncio #118950 tests in CPython.') |
| 122 | + |
| 123 | + cert = tb._cert_fullname(__file__, 'ssl_cert.pem') |
| 124 | + key = tb._cert_fullname(__file__, 'ssl_key.pem') |
| 125 | + ssl_context = self._create_server_ssl_context(cert, key) |
| 126 | + client_ssl_context = self._create_client_ssl_context() |
| 127 | + |
| 128 | + asyncio.set_event_loop(self.loop) |
| 129 | + app = aiohttp.web.Application() |
| 130 | + |
| 131 | + async def handler(request): |
| 132 | + ws = aiohttp.web.WebSocketResponse() |
| 133 | + await ws.prepare(request) |
| 134 | + async for msg in ws: |
| 135 | + print("Received:", msg.data) |
| 136 | + return ws |
| 137 | + |
| 138 | + app.router.add_get('/', handler) |
| 139 | + |
| 140 | + runner = aiohttp.web.AppRunner(app) |
| 141 | + self.loop.run_until_complete(runner.setup()) |
| 142 | + host = '0.0.0.0' |
| 143 | + site = aiohttp.web.TCPSite(runner, host, '0', ssl_context=ssl_context) |
| 144 | + self.loop.run_until_complete(site.start()) |
| 145 | + port = site._server.sockets[0].getsockname()[1] |
| 146 | + session = aiohttp.ClientSession(loop=self.loop) |
| 147 | + |
| 148 | + async def test(): |
| 149 | + async with session.ws_connect( |
| 150 | + f"wss://{host}:{port}/", |
| 151 | + ssl=client_ssl_context |
| 152 | + ) as ws: |
| 153 | + transport = ws._writer.transport |
| 154 | + s = transport.get_extra_info('socket') |
| 155 | + |
| 156 | + if self.implementation == 'asyncio': |
| 157 | + s._sock.close() |
| 158 | + else: |
| 159 | + os.close(s.fileno()) |
| 160 | + |
| 161 | + # FLOW_CONTROL_HIGH_WATER * 1024 |
| 162 | + bytes_to_send = 64 * 1024 |
| 163 | + iterations = 10 |
| 164 | + msg = b'Hello world, still there?' |
| 165 | + |
| 166 | + # Send enough messages to trigger a socket write + one extra |
| 167 | + for _ in range(iterations + 1): |
| 168 | + await ws.send_bytes( |
| 169 | + msg * ((bytes_to_send // len(msg)) // iterations)) |
| 170 | + |
| 171 | + self.assertRaises( |
| 172 | + ConnectionResetError, self.loop.run_until_complete, test()) |
| 173 | + |
| 174 | + self.loop.run_until_complete(session.close()) |
| 175 | + self.loop.run_until_complete(runner.cleanup()) |
| 176 | + |
118 | 177 |
|
119 | 178 | @unittest.skipIf(skip_tests, "no aiohttp module")
|
120 | 179 | class Test_UV_AioHTTP(_TestAioHTTP, tb.UVTestCase):
|
|
0 commit comments