b5e50ecb75
Mirror listener of blueprints
22 lines
662 B
Python
22 lines
662 B
Python
import asyncio
|
|
from sanic import Sanic
|
|
|
|
|
|
def test_bad_request_response():
|
|
app = Sanic('test_bad_request_response')
|
|
lines = []
|
|
@app.listener('after_server_start')
|
|
async def _request(sanic, loop):
|
|
connect = asyncio.open_connection('127.0.0.1', 42101)
|
|
reader, writer = await connect
|
|
writer.write(b'not http')
|
|
while True:
|
|
line = await reader.readline()
|
|
if not line:
|
|
break
|
|
lines.append(line)
|
|
app.stop()
|
|
app.run(host='127.0.0.1', port=42101, debug=False)
|
|
assert lines[0] == b'HTTP/1.1 400 Bad Request\r\n'
|
|
assert lines[-1] == b'Error: Bad Request'
|