2016-12-29 21:35:41 +00:00
|
|
|
from sanic.response import HTTPResponse
|
2018-03-16 04:28:52 +00:00
|
|
|
from sanic.testing import HOST, PORT
|
2016-12-29 21:35:41 +00:00
|
|
|
from unittest.mock import MagicMock
|
|
|
|
import asyncio
|
2017-01-22 02:26:32 +00:00
|
|
|
from queue import Queue
|
2016-12-29 21:35:41 +00:00
|
|
|
|
|
|
|
|
2017-01-22 02:26:32 +00:00
|
|
|
async def stop(app, loop):
|
|
|
|
await asyncio.sleep(0.1)
|
2016-12-29 21:35:41 +00:00
|
|
|
app.stop()
|
|
|
|
|
2017-01-22 02:26:32 +00:00
|
|
|
calledq = Queue()
|
|
|
|
|
2018-10-22 21:25:38 +01:00
|
|
|
|
2017-01-22 02:26:32 +00:00
|
|
|
def set_loop(app, loop):
|
|
|
|
loop.add_signal_handler = MagicMock()
|
|
|
|
|
2018-10-22 21:25:38 +01:00
|
|
|
|
2017-01-22 02:26:32 +00:00
|
|
|
def after(app, loop):
|
|
|
|
calledq.put(loop.add_signal_handler.called)
|
2016-12-29 21:35:41 +00:00
|
|
|
|
2018-10-22 21:25:38 +01:00
|
|
|
|
2018-08-26 15:43:14 +01:00
|
|
|
def test_register_system_signals(app):
|
2016-12-29 21:35:41 +00:00
|
|
|
"""Test if sanic register system signals"""
|
|
|
|
|
|
|
|
@app.route('/hello')
|
|
|
|
async def hello_route(request):
|
|
|
|
return HTTPResponse()
|
|
|
|
|
2017-02-11 14:30:17 +00:00
|
|
|
app.listener('after_server_start')(stop)
|
|
|
|
app.listener('before_server_start')(set_loop)
|
|
|
|
app.listener('after_server_stop')(after)
|
|
|
|
|
2018-03-16 04:28:52 +00:00
|
|
|
app.run(HOST, PORT)
|
2018-10-22 21:25:38 +01:00
|
|
|
assert calledq.get() is True
|
2016-12-29 21:35:41 +00:00
|
|
|
|
|
|
|
|
2018-08-26 15:43:14 +01:00
|
|
|
def test_dont_register_system_signals(app):
|
2016-12-29 21:35:41 +00:00
|
|
|
"""Test if sanic don't register system signals"""
|
|
|
|
|
|
|
|
@app.route('/hello')
|
|
|
|
async def hello_route(request):
|
|
|
|
return HTTPResponse()
|
|
|
|
|
2017-02-11 14:30:17 +00:00
|
|
|
app.listener('after_server_start')(stop)
|
|
|
|
app.listener('before_server_start')(set_loop)
|
|
|
|
app.listener('after_server_stop')(after)
|
|
|
|
|
2018-03-16 04:28:52 +00:00
|
|
|
app.run(HOST, PORT, register_sys_signals=False)
|
2018-10-22 21:25:38 +01:00
|
|
|
assert calledq.get() is False
|