refactor uvloop detection in its own method

This commit is contained in:
Denis Makogon 2019-01-15 17:32:40 +02:00
parent 1af16836d4
commit f8f0241c27

View File

@ -9,6 +9,14 @@ from sanic.exceptions import SanicException
from sanic.response import text from sanic.response import text
def uvloop_installed():
try:
import uvloop
return True
except ImportError:
return False
def test_app_loop_running(app): def test_app_loop_running(app):
@app.get("/test") @app.get("/test")
async def handler(request): async def handler(request):
@ -19,37 +27,28 @@ def test_app_loop_running(app):
assert response.text == "pass" assert response.text == "pass"
@pytest.mark.skipif(sys.version_info < (3, 7), @pytest.mark.skipif(sys.version_info < (3, 7) and uvloop_installed(),
reason="requires python3.7 or higher") reason="requires python3.7 or higher")
def test_create_asyncio_server(app): def test_create_asyncio_server(app):
loop = asyncio.get_event_loop() loop = asyncio.get_event_loop()
asyncio_srv_coro = app.create_server( asyncio_srv_coro = app.create_server(
return_asyncio_server=True) return_asyncio_server=True)
assert isawaitable(asyncio_srv_coro) assert isawaitable(asyncio_srv_coro)
srv = loop.run_until_complete(asyncio_srv_coro)
try: assert srv.is_serving() is True
import uvloop
except ImportError:
# this test is valid only for sanic + asyncio setup
srv = loop.run_until_complete(asyncio_srv_coro)
assert srv.is_serving() is True
@pytest.mark.skipif(sys.version_info < (3, 7), @pytest.mark.skipif(sys.version_info < (3, 7) and uvloop_installed(),
reason="requires python3.7 or higher") reason="requires python3.7 or higher")
def test_asyncio_server_start_serving(app): def test_asyncio_server_start_serving(app):
try: loop = asyncio.get_event_loop()
import uvloop asyncio_srv_coro = app.create_server(
except ImportError: return_asyncio_server=True,
# this test is valid only for sanic + asyncio setup asyncio_server_kwargs=dict(
loop = asyncio.get_event_loop() start_serving=False
asyncio_srv_coro = app.create_server( ))
return_asyncio_server=True, srv = loop.run_until_complete(asyncio_srv_coro)
asyncio_server_kwargs=dict( assert srv.is_serving() is False
start_serving=False
))
srv = loop.run_until_complete(asyncio_srv_coro)
assert srv.is_serving() is False
def test_app_loop_not_running(app): def test_app_loop_not_running(app):