sanic/tests/test_multiprocessing.py

90 lines
2.6 KiB
Python
Raw Normal View History

import multiprocessing
import random
import signal
import pickle
2018-09-29 18:54:47 +01:00
import pytest
2018-03-16 04:28:52 +00:00
from sanic.testing import HOST, PORT
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):
"""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))
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)
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)
assert len(process_list) == num_workers
@pytest.mark.skipif(
2018-12-30 11:18:06 +00:00
not hasattr(signal, "SIGALRM"),
reason="SIGALRM is not implemented for this platform",
)
def test_multiprocessing_with_blueprint(app):
from sanic import Blueprint
2018-12-30 11:18:06 +00:00
# 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")
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")
# Muliprocessing on Windows requires app to be able to be pickled
2018-12-30 11:18:06 +00:00
@pytest.mark.parametrize("protocol", [3, 4])
def test_pickle_app(app, protocol):
2018-12-30 11:18:06 +00:00
app.route("/")(handler)
p_app = pickle.dumps(app, protocol=protocol)
up_p_app = pickle.loads(p_app)
assert up_p_app
2018-12-30 11:18:06 +00:00
request, response = app.test_client.get("/")
assert response.text == "Hello"
2018-12-30 11:18:06 +00:00
@pytest.mark.parametrize("protocol", [3, 4])
def test_pickle_app_with_bp(app, protocol):
from sanic import Blueprint
2018-12-30 11:18:06 +00:00
bp = Blueprint("test_text")
bp.route("/")(handler)
app.blueprint(bp)
p_app = pickle.dumps(app, protocol=protocol)
up_p_app = pickle.loads(p_app)
assert up_p_app
2018-12-30 11:18:06 +00:00
request, response = app.test_client.get("/")
assert app.is_request_stream is False
2018-12-30 11:18:06 +00:00
assert response.text == "Hello"