29 lines
711 B
Python
29 lines
711 B
Python
from sanic import Sanic
|
|
from sanic.response import json
|
|
from multiprocessing import Event
|
|
from signal import signal, SIGINT
|
|
import asyncio
|
|
import requests
|
|
from threading import Thread
|
|
|
|
def test_async_run():
|
|
app = Sanic(__name__)
|
|
|
|
@app.route("/")
|
|
async def test(request):
|
|
return json({"answer": "42"})
|
|
|
|
server = app.create_server(host="0.0.0.0", port=8001)
|
|
|
|
loop = asyncio.get_event_loop()
|
|
task = asyncio.ensure_future(server)
|
|
signal(SIGINT, lambda s, f: loop.close())
|
|
try:
|
|
t = Thread(target=loop.run_forever)
|
|
t.start()
|
|
except:
|
|
loop.stop()
|
|
res = requests.get('http://localhost:8001')
|
|
loop.stop()
|
|
assert res.json()['answer'] == '42'
|