2019-09-16 18:59:16 +01:00
|
|
|
import asyncio
|
2017-01-04 06:23:35 +00:00
|
|
|
import signal
|
|
|
|
|
2020-03-26 04:42:46 +00:00
|
|
|
from contextlib import closing
|
|
|
|
from socket import socket
|
|
|
|
|
2017-01-04 06:23:35 +00:00
|
|
|
import pytest
|
|
|
|
|
2021-01-19 13:54:20 +00:00
|
|
|
from sanic_testing.testing import HOST, PORT
|
2017-01-04 06:23:35 +00:00
|
|
|
|
2021-08-05 20:55:42 +01:00
|
|
|
from sanic.exceptions import InvalidUsage, SanicException
|
2021-02-15 19:50:20 +00:00
|
|
|
|
2019-04-23 22:44:42 +01:00
|
|
|
|
2017-01-04 06:23:35 +00:00
|
|
|
AVAILABLE_LISTENERS = [
|
2018-12-30 11:18:06 +00:00
|
|
|
"before_server_start",
|
|
|
|
"after_server_start",
|
|
|
|
"before_server_stop",
|
|
|
|
"after_server_stop",
|
2017-01-04 06:23:35 +00:00
|
|
|
]
|
|
|
|
|
2018-09-29 18:54:47 +01:00
|
|
|
skipif_no_alarm = pytest.mark.skipif(
|
2018-12-30 11:18:06 +00:00
|
|
|
not hasattr(signal, "SIGALRM"),
|
|
|
|
reason="SIGALRM is not implemented for this platform, we have to come "
|
|
|
|
"up with another timeout strategy to test these",
|
2018-09-29 18:54:47 +01:00
|
|
|
)
|
|
|
|
|
2017-01-04 06:23:35 +00:00
|
|
|
|
|
|
|
def create_listener(listener_name, in_list):
|
|
|
|
async def _listener(app, loop):
|
2020-02-25 20:01:13 +00:00
|
|
|
print(f"DEBUG MESSAGE FOR PYTEST for {listener_name}")
|
2017-01-04 06:23:35 +00:00
|
|
|
in_list.insert(0, app.name + listener_name)
|
2018-12-30 11:18:06 +00:00
|
|
|
|
2017-01-04 06:23:35 +00:00
|
|
|
return _listener
|
|
|
|
|
|
|
|
|
|
|
|
def start_stop_app(random_name_app, **run_kwargs):
|
|
|
|
def stop_on_alarm(signum, frame):
|
2018-12-30 11:18:06 +00:00
|
|
|
raise KeyboardInterrupt("SIGINT for sanic to stop gracefully")
|
2017-01-04 06:23:35 +00:00
|
|
|
|
|
|
|
signal.signal(signal.SIGALRM, stop_on_alarm)
|
|
|
|
signal.alarm(1)
|
|
|
|
try:
|
2018-03-16 04:28:52 +00:00
|
|
|
random_name_app.run(HOST, PORT, **run_kwargs)
|
2017-01-04 06:23:35 +00:00
|
|
|
except KeyboardInterrupt:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2018-09-29 18:54:47 +01:00
|
|
|
@skipif_no_alarm
|
2018-12-30 11:18:06 +00:00
|
|
|
@pytest.mark.parametrize("listener_name", AVAILABLE_LISTENERS)
|
2018-08-26 15:43:14 +01:00
|
|
|
def test_single_listener(app, listener_name):
|
2017-01-04 06:23:35 +00:00
|
|
|
"""Test that listeners on their own work"""
|
2018-08-26 15:43:14 +01:00
|
|
|
output = []
|
2017-02-11 14:30:17 +00:00
|
|
|
# Register listener
|
2018-12-30 11:18:06 +00:00
|
|
|
app.listener(listener_name)(create_listener(listener_name, output))
|
2018-08-26 15:43:14 +01:00
|
|
|
start_stop_app(app)
|
|
|
|
assert app.name + listener_name == output.pop()
|
2017-01-04 06:23:35 +00:00
|
|
|
|
|
|
|
|
2018-09-29 18:54:47 +01:00
|
|
|
@skipif_no_alarm
|
2018-12-30 11:18:06 +00:00
|
|
|
@pytest.mark.parametrize("listener_name", AVAILABLE_LISTENERS)
|
2018-08-26 15:43:14 +01:00
|
|
|
def test_register_listener(app, listener_name):
|
2018-02-09 22:01:17 +00:00
|
|
|
"""
|
|
|
|
Test that listeners on their own work with
|
|
|
|
app.register_listener method
|
|
|
|
"""
|
2018-08-26 15:43:14 +01:00
|
|
|
output = []
|
2018-02-09 22:01:17 +00:00
|
|
|
# Register listener
|
|
|
|
listener = create_listener(listener_name, output)
|
2018-09-29 18:54:47 +01:00
|
|
|
app.register_listener(listener, event=listener_name)
|
2018-08-26 15:43:14 +01:00
|
|
|
start_stop_app(app)
|
|
|
|
assert app.name + listener_name == output.pop()
|
2018-02-09 22:01:17 +00:00
|
|
|
|
|
|
|
|
2018-09-29 18:54:47 +01:00
|
|
|
@skipif_no_alarm
|
2018-08-26 15:43:14 +01:00
|
|
|
def test_all_listeners(app):
|
|
|
|
output = []
|
2017-02-11 14:30:17 +00:00
|
|
|
for listener_name in AVAILABLE_LISTENERS:
|
|
|
|
listener = create_listener(listener_name, output)
|
2018-08-26 15:43:14 +01:00
|
|
|
app.listener(listener_name)(listener)
|
|
|
|
start_stop_app(app)
|
2017-01-04 06:23:35 +00:00
|
|
|
for listener_name in AVAILABLE_LISTENERS:
|
2018-08-26 15:43:14 +01:00
|
|
|
assert app.name + listener_name == output.pop()
|
2017-08-09 06:21:40 +01:00
|
|
|
|
|
|
|
|
2021-02-15 19:50:20 +00:00
|
|
|
@skipif_no_alarm
|
|
|
|
def test_all_listeners_as_convenience(app):
|
|
|
|
output = []
|
|
|
|
for listener_name in AVAILABLE_LISTENERS:
|
|
|
|
listener = create_listener(listener_name, output)
|
|
|
|
method = getattr(app, listener_name)
|
|
|
|
method(listener)
|
|
|
|
start_stop_app(app)
|
|
|
|
for listener_name in AVAILABLE_LISTENERS:
|
|
|
|
assert app.name + listener_name == output.pop()
|
|
|
|
|
|
|
|
|
2019-06-04 08:58:00 +01:00
|
|
|
@pytest.mark.asyncio
|
2018-08-26 15:43:14 +01:00
|
|
|
async def test_trigger_before_events_create_server(app):
|
2017-08-09 06:21:40 +01:00
|
|
|
class MySanicDb:
|
|
|
|
pass
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@app.listener("before_server_start")
|
2017-08-09 06:21:40 +01:00
|
|
|
async def init_db(app, loop):
|
2021-12-23 22:30:27 +00:00
|
|
|
app.ctx.db = MySanicDb()
|
2017-08-09 06:21:40 +01:00
|
|
|
|
2021-08-05 20:55:42 +01:00
|
|
|
srv = await app.create_server(
|
|
|
|
debug=True, return_asyncio_server=True, port=PORT
|
|
|
|
)
|
|
|
|
await srv.startup()
|
|
|
|
await srv.before_start()
|
2017-08-09 06:21:40 +01:00
|
|
|
|
2021-12-23 22:30:27 +00:00
|
|
|
assert hasattr(app.ctx, "db")
|
|
|
|
assert isinstance(app.ctx.db, MySanicDb)
|
2019-09-16 18:59:16 +01:00
|
|
|
|
2019-10-23 17:12:20 +01:00
|
|
|
|
2021-02-15 19:50:20 +00:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_trigger_before_events_create_server_missing_event(app):
|
|
|
|
class MySanicDb:
|
|
|
|
pass
|
|
|
|
|
|
|
|
with pytest.raises(InvalidUsage):
|
|
|
|
|
|
|
|
@app.listener
|
|
|
|
async def init_db(app, loop):
|
2021-12-23 22:30:27 +00:00
|
|
|
app.ctx.db = MySanicDb()
|
2021-02-15 19:50:20 +00:00
|
|
|
|
2021-12-23 22:30:27 +00:00
|
|
|
assert not hasattr(app.ctx, "db")
|
2021-02-15 19:50:20 +00:00
|
|
|
|
|
|
|
|
2019-09-16 18:59:16 +01:00
|
|
|
def test_create_server_trigger_events(app):
|
|
|
|
"""Test if create_server can trigger server events"""
|
|
|
|
|
|
|
|
flag1 = False
|
|
|
|
flag2 = False
|
|
|
|
flag3 = False
|
|
|
|
|
|
|
|
async def stop(app, loop):
|
|
|
|
nonlocal flag1
|
|
|
|
flag1 = True
|
|
|
|
await asyncio.sleep(0.1)
|
|
|
|
app.stop()
|
|
|
|
|
|
|
|
async def before_stop(app, loop):
|
|
|
|
nonlocal flag2
|
|
|
|
flag2 = True
|
|
|
|
|
|
|
|
async def after_stop(app, loop):
|
|
|
|
nonlocal flag3
|
|
|
|
flag3 = True
|
|
|
|
|
|
|
|
app.listener("after_server_start")(stop)
|
|
|
|
app.listener("before_server_stop")(before_stop)
|
|
|
|
app.listener("after_server_stop")(after_stop)
|
|
|
|
|
|
|
|
loop = asyncio.get_event_loop()
|
2020-03-26 04:42:46 +00:00
|
|
|
|
|
|
|
# Use random port for tests
|
|
|
|
with closing(socket()) as sock:
|
|
|
|
sock.bind(("127.0.0.1", 0))
|
|
|
|
|
|
|
|
serv_coro = app.create_server(return_asyncio_server=True, sock=sock)
|
|
|
|
serv_task = asyncio.ensure_future(serv_coro, loop=loop)
|
|
|
|
server = loop.run_until_complete(serv_task)
|
2021-08-05 20:55:42 +01:00
|
|
|
loop.run_until_complete(server.startup())
|
|
|
|
loop.run_until_complete(server.after_start())
|
2020-03-26 04:42:46 +00:00
|
|
|
try:
|
|
|
|
loop.run_forever()
|
2021-08-05 20:55:42 +01:00
|
|
|
except KeyboardInterrupt:
|
2020-03-26 04:42:46 +00:00
|
|
|
loop.stop()
|
|
|
|
finally:
|
|
|
|
# Run the on_stop function if provided
|
2021-08-05 20:55:42 +01:00
|
|
|
loop.run_until_complete(server.before_stop())
|
2020-03-26 04:42:46 +00:00
|
|
|
|
|
|
|
# Wait for server to close
|
|
|
|
close_task = server.close()
|
|
|
|
loop.run_until_complete(close_task)
|
|
|
|
|
|
|
|
# Complete all tasks on the loop
|
|
|
|
signal.stopped = True
|
|
|
|
for connection in server.connections:
|
|
|
|
connection.close_if_idle()
|
2021-08-05 20:55:42 +01:00
|
|
|
loop.run_until_complete(server.after_stop())
|
2020-03-26 04:42:46 +00:00
|
|
|
assert flag1 and flag2 and flag3
|
2021-08-05 20:55:42 +01:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_missing_startup_raises_exception(app):
|
|
|
|
@app.listener("before_server_start")
|
|
|
|
async def init_db(app, loop):
|
|
|
|
...
|
|
|
|
|
|
|
|
srv = await app.create_server(
|
|
|
|
debug=True, return_asyncio_server=True, port=PORT
|
|
|
|
)
|
|
|
|
|
|
|
|
with pytest.raises(SanicException):
|
|
|
|
await srv.before_start()
|