2021-03-01 13:03:26 +00:00
|
|
|
import logging
|
2017-01-28 01:34:21 +00:00
|
|
|
import multiprocessing
|
2019-04-23 22:44:42 +01:00
|
|
|
import pickle
|
2017-01-28 01:34:21 +00:00
|
|
|
import random
|
|
|
|
import signal
|
2019-04-23 22:44:42 +01:00
|
|
|
|
2018-09-29 18:54:47 +01:00
|
|
|
import pytest
|
2017-01-08 17:55:08 +00:00
|
|
|
|
2021-01-19 13:54:20 +00:00
|
|
|
from sanic_testing.testing import HOST, PORT
|
|
|
|
|
2019-09-18 18:22:24 +01:00
|
|
|
from sanic import Blueprint
|
2021-03-01 13:03:26 +00:00
|
|
|
from sanic.log import logger
|
2018-11-04 05:04:12 +00:00
|
|
|
from sanic.response import text
|
2016-10-18 09:22:49 +01:00
|
|
|
|
|
|
|
|
2018-09-29 18:54:47 +01:00
|
|
|
@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
|
|
|
)
|
2018-08-26 15:43:14 +01:00
|
|
|
def test_multiprocessing(app):
|
2017-01-28 01:34:21 +00:00
|
|
|
"""Tests that the number of children we produce is correct"""
|
|
|
|
# Selects a number at random so we can spot check
|
2018-09-29 18:54:47 +01:00
|
|
|
num_workers = random.choice(range(2, multiprocessing.cpu_count() * 2 + 1))
|
2017-01-28 01:34:21 +00:00
|
|
|
process_list = set()
|
2016-12-26 22:37:05 +00:00
|
|
|
|
2017-01-28 01:34:21 +00:00
|
|
|
def stop_on_alarm(*args):
|
|
|
|
for process in multiprocessing.active_children():
|
|
|
|
process_list.add(process.pid)
|
|
|
|
process.terminate()
|
2016-12-26 22:37:05 +00:00
|
|
|
|
2017-01-28 01:34:21 +00:00
|
|
|
signal.signal(signal.SIGALRM, stop_on_alarm)
|
2018-03-16 05:06:58 +00:00
|
|
|
signal.alarm(3)
|
2018-03-16 04:28:52 +00:00
|
|
|
app.run(HOST, PORT, workers=num_workers)
|
2016-12-26 22:37:05 +00:00
|
|
|
|
2017-01-28 01:34:21 +00:00
|
|
|
assert len(process_list) == num_workers
|
2018-11-04 05:04:12 +00:00
|
|
|
|
|
|
|
|
2018-11-10 14:26:55 +00:00
|
|
|
@pytest.mark.skipif(
|
2018-12-30 11:18:06 +00:00
|
|
|
not hasattr(signal, "SIGALRM"),
|
|
|
|
reason="SIGALRM is not implemented for this platform",
|
2018-11-10 14:26:55 +00:00
|
|
|
)
|
2018-11-04 05:04:12 +00:00
|
|
|
def test_multiprocessing_with_blueprint(app):
|
|
|
|
# Selects a number at random so we can spot check
|
|
|
|
num_workers = random.choice(range(2, multiprocessing.cpu_count() * 2 + 1))
|
|
|
|
process_list = set()
|
|
|
|
|
|
|
|
def stop_on_alarm(*args):
|
|
|
|
for process in multiprocessing.active_children():
|
|
|
|
process_list.add(process.pid)
|
|
|
|
process.terminate()
|
|
|
|
|
|
|
|
signal.signal(signal.SIGALRM, stop_on_alarm)
|
|
|
|
signal.alarm(3)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
bp = Blueprint("test_text")
|
2018-11-04 05:04:12 +00:00
|
|
|
app.blueprint(bp)
|
|
|
|
app.run(HOST, PORT, workers=num_workers)
|
|
|
|
|
|
|
|
assert len(process_list) == num_workers
|
|
|
|
|
|
|
|
|
|
|
|
# this function must be outside a test function so that it can be
|
|
|
|
# able to be pickled (local functions cannot be pickled).
|
|
|
|
def handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("Hello")
|
|
|
|
|
2018-11-04 05:04:12 +00:00
|
|
|
|
2019-09-18 18:22:24 +01:00
|
|
|
# Multiprocessing on Windows requires app to be able to be pickled
|
2018-12-30 11:18:06 +00:00
|
|
|
@pytest.mark.parametrize("protocol", [3, 4])
|
2018-11-04 05:04:12 +00:00
|
|
|
def test_pickle_app(app, protocol):
|
2018-12-30 11:18:06 +00:00
|
|
|
app.route("/")(handler)
|
2021-02-08 10:18:29 +00:00
|
|
|
app.router.finalize()
|
2021-02-08 12:09:41 +00:00
|
|
|
app.router.reset()
|
2018-11-04 05:04:12 +00:00
|
|
|
p_app = pickle.dumps(app, protocol=protocol)
|
2019-09-18 18:22:24 +01:00
|
|
|
del app
|
2018-11-04 05:04:12 +00:00
|
|
|
up_p_app = pickle.loads(p_app)
|
2021-02-08 12:09:41 +00:00
|
|
|
up_p_app.router.finalize()
|
2018-11-04 05:04:12 +00:00
|
|
|
assert up_p_app
|
2019-09-18 18:22:24 +01:00
|
|
|
request, response = up_p_app.test_client.get("/")
|
2018-12-30 11:18:06 +00:00
|
|
|
assert response.text == "Hello"
|
2018-11-04 05:04:12 +00:00
|
|
|
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@pytest.mark.parametrize("protocol", [3, 4])
|
2018-11-04 05:27:25 +00:00
|
|
|
def test_pickle_app_with_bp(app, protocol):
|
2018-12-30 11:18:06 +00:00
|
|
|
bp = Blueprint("test_text")
|
|
|
|
bp.route("/")(handler)
|
2018-11-04 05:04:12 +00:00
|
|
|
app.blueprint(bp)
|
2021-02-08 12:09:41 +00:00
|
|
|
app.router.finalize()
|
|
|
|
app.router.reset()
|
2018-11-04 05:04:12 +00:00
|
|
|
p_app = pickle.dumps(app, protocol=protocol)
|
2019-09-18 18:22:24 +01:00
|
|
|
del app
|
2018-11-04 05:04:12 +00:00
|
|
|
up_p_app = pickle.loads(p_app)
|
2021-02-08 12:09:41 +00:00
|
|
|
up_p_app.router.finalize()
|
2018-11-04 05:04:12 +00:00
|
|
|
assert up_p_app
|
2019-09-18 18:22:24 +01:00
|
|
|
request, response = up_p_app.test_client.get("/")
|
2018-12-30 11:18:06 +00:00
|
|
|
assert response.text == "Hello"
|
2020-05-07 02:06:10 +01:00
|
|
|
|
2020-06-28 12:45:52 +01:00
|
|
|
|
2020-05-07 02:06:10 +01:00
|
|
|
@pytest.mark.parametrize("protocol", [3, 4])
|
|
|
|
def test_pickle_app_with_static(app, protocol):
|
|
|
|
app.route("/")(handler)
|
2020-06-28 12:45:52 +01:00
|
|
|
app.static("/static", "/tmp/static")
|
2021-02-08 12:09:41 +00:00
|
|
|
app.router.finalize()
|
|
|
|
app.router.reset()
|
2020-05-07 02:06:10 +01:00
|
|
|
p_app = pickle.dumps(app, protocol=protocol)
|
|
|
|
del app
|
|
|
|
up_p_app = pickle.loads(p_app)
|
2021-02-08 12:09:41 +00:00
|
|
|
up_p_app.router.finalize()
|
2020-05-07 02:06:10 +01:00
|
|
|
assert up_p_app
|
|
|
|
request, response = up_p_app.test_client.get("/static/missing.txt")
|
|
|
|
assert response.status == 404
|
2021-03-01 13:03:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_main_process_event(app, caplog):
|
|
|
|
# Selects a number at random so we can spot check
|
|
|
|
num_workers = random.choice(range(2, multiprocessing.cpu_count() * 2 + 1))
|
|
|
|
|
|
|
|
def stop_on_alarm(*args):
|
|
|
|
for process in multiprocessing.active_children():
|
|
|
|
process.terminate()
|
|
|
|
|
|
|
|
signal.signal(signal.SIGALRM, stop_on_alarm)
|
|
|
|
signal.alarm(1)
|
|
|
|
|
|
|
|
@app.listener("main_process_start")
|
|
|
|
def main_process_start(app, loop):
|
|
|
|
logger.info("main_process_start")
|
|
|
|
|
|
|
|
@app.listener("main_process_stop")
|
|
|
|
def main_process_stop(app, loop):
|
|
|
|
logger.info("main_process_stop")
|
|
|
|
|
2021-03-16 09:21:05 +00:00
|
|
|
@app.main_process_start
|
|
|
|
def main_process_start(app, loop):
|
|
|
|
logger.info("main_process_start")
|
|
|
|
|
|
|
|
@app.main_process_stop
|
|
|
|
def main_process_stop(app, loop):
|
|
|
|
logger.info("main_process_stop")
|
|
|
|
|
2021-03-01 13:03:26 +00:00
|
|
|
with caplog.at_level(logging.INFO):
|
|
|
|
app.run(HOST, PORT, workers=num_workers)
|
|
|
|
|
|
|
|
assert (
|
|
|
|
caplog.record_tuples.count(("sanic.root", 20, "main_process_start"))
|
2021-03-16 09:21:05 +00:00
|
|
|
== 2
|
2021-03-01 13:03:26 +00:00
|
|
|
)
|
|
|
|
assert (
|
|
|
|
caplog.record_tuples.count(("sanic.root", 20, "main_process_stop"))
|
2021-03-16 09:21:05 +00:00
|
|
|
== 2
|
2021-03-01 13:03:26 +00:00
|
|
|
)
|