2017-02-21 06:41:53 +00:00
|
|
|
import asyncio
|
2016-10-24 09:21:06 +01:00
|
|
|
import inspect
|
2018-07-21 06:31:15 +01:00
|
|
|
import os
|
2018-11-25 19:56:34 +00:00
|
|
|
|
2017-07-13 04:18:56 +01:00
|
|
|
import pytest
|
2016-10-24 09:21:06 +01:00
|
|
|
|
2018-11-25 19:56:34 +00:00
|
|
|
from sanic.app import Sanic
|
2016-10-16 09:48:51 +01:00
|
|
|
from sanic.blueprints import Blueprint
|
2017-07-13 04:18:56 +01:00
|
|
|
from sanic.constants import HTTP_METHODS
|
2022-05-26 10:48:32 +01:00
|
|
|
from sanic.exceptions import BadRequest, NotFound, SanicException, ServerError
|
2018-11-25 19:56:34 +00:00
|
|
|
from sanic.request import Request
|
2019-04-23 22:44:42 +01:00
|
|
|
from sanic.response import json, text
|
2016-10-15 20:38:12 +01:00
|
|
|
|
|
|
|
|
|
|
|
# ------------------------------------------------------------ #
|
|
|
|
# GET
|
|
|
|
# ------------------------------------------------------------ #
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp(app: Sanic):
|
2021-03-14 08:09:07 +00:00
|
|
|
bp = Blueprint("test_text")
|
|
|
|
|
|
|
|
@bp.route("/")
|
|
|
|
def handler(request):
|
|
|
|
return text("Hello")
|
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
request, response = app.test_client.get("/")
|
|
|
|
|
|
|
|
assert response.text == "Hello"
|
|
|
|
|
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_app_access(app: Sanic):
|
2021-03-14 08:09:07 +00:00
|
|
|
bp = Blueprint("test")
|
|
|
|
|
|
|
|
with pytest.raises(
|
|
|
|
SanicException,
|
|
|
|
match="<Blueprint test> has not yet been registered to an app",
|
|
|
|
):
|
|
|
|
bp.apps
|
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
|
|
|
|
assert app in bp.apps
|
|
|
|
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@pytest.fixture(scope="module")
|
2018-11-25 19:56:34 +00:00
|
|
|
def static_file_directory():
|
|
|
|
"""The static directory to serve"""
|
|
|
|
current_file = inspect.getfile(inspect.currentframe())
|
|
|
|
current_directory = os.path.dirname(os.path.abspath(current_file))
|
2018-12-30 11:18:06 +00:00
|
|
|
static_directory = os.path.join(current_directory, "static")
|
2018-11-25 19:56:34 +00:00
|
|
|
return static_directory
|
|
|
|
|
|
|
|
|
2018-07-21 06:31:15 +01:00
|
|
|
def get_file_path(static_file_directory, file_name):
|
|
|
|
return os.path.join(static_file_directory, file_name)
|
|
|
|
|
2018-10-14 14:31:13 +01:00
|
|
|
|
2018-07-21 06:31:15 +01:00
|
|
|
def get_file_content(static_file_directory, file_name):
|
|
|
|
"""The content of the static file to check"""
|
2018-12-30 11:18:06 +00:00
|
|
|
with open(get_file_path(static_file_directory, file_name), "rb") as file:
|
2018-07-21 06:31:15 +01:00
|
|
|
return file.read()
|
|
|
|
|
2018-10-14 14:31:13 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@pytest.mark.parametrize("method", HTTP_METHODS)
|
2018-08-26 15:43:14 +01:00
|
|
|
def test_versioned_routes_get(app, method):
|
2018-12-30 11:18:06 +00:00
|
|
|
bp = Blueprint("test_text")
|
2017-07-13 04:18:56 +01:00
|
|
|
|
|
|
|
method = method.lower()
|
|
|
|
|
|
|
|
func = getattr(bp, method)
|
|
|
|
if callable(func):
|
2018-12-30 11:18:06 +00:00
|
|
|
|
2020-02-25 20:01:13 +00:00
|
|
|
@func(f"/{method}", version=1)
|
2017-07-13 04:18:56 +01:00
|
|
|
def handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("OK")
|
|
|
|
|
2017-07-13 04:18:56 +01:00
|
|
|
else:
|
2020-02-25 20:01:13 +00:00
|
|
|
raise Exception(f"{func} is not callable")
|
2017-07-13 04:18:56 +01:00
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
|
|
|
|
client_method = getattr(app.test_client, method)
|
|
|
|
|
2020-02-25 20:01:13 +00:00
|
|
|
request, response = client_method(f"/v1/{method}")
|
2017-07-13 04:18:56 +01:00
|
|
|
assert response.status == 200
|
|
|
|
|
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_strict_slash(app: Sanic):
|
2018-12-30 11:18:06 +00:00
|
|
|
bp = Blueprint("test_text")
|
2017-03-24 01:37:06 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@bp.get("/get", strict_slashes=True)
|
2018-10-14 14:31:13 +01:00
|
|
|
def get_handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("OK")
|
2017-03-24 01:37:06 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@bp.post("/post/", strict_slashes=True)
|
2018-10-14 14:31:13 +01:00
|
|
|
def post_handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("OK")
|
2017-03-24 01:37:06 +00:00
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
|
2021-02-09 14:17:53 +00:00
|
|
|
request, response = app.test_client.get("/get")
|
|
|
|
assert response.text == "OK"
|
|
|
|
assert response.json is None
|
2017-03-24 01:37:06 +00:00
|
|
|
|
2021-02-09 14:17:53 +00:00
|
|
|
request, response = app.test_client.get("/get/")
|
|
|
|
assert response.status == 404
|
2017-03-24 01:37:06 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.post("/post/")
|
|
|
|
assert response.text == "OK"
|
2017-03-24 01:37:06 +00:00
|
|
|
|
2021-02-09 14:17:53 +00:00
|
|
|
request, response = app.test_client.post("/post")
|
|
|
|
assert response.status == 404
|
2017-03-24 01:37:06 +00:00
|
|
|
|
2018-10-14 14:31:13 +01:00
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_strict_slash_default_value(app: Sanic):
|
2018-12-30 11:18:06 +00:00
|
|
|
bp = Blueprint("test_text", strict_slashes=True)
|
2017-08-21 07:37:22 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@bp.get("/get")
|
2018-10-14 14:31:13 +01:00
|
|
|
def get_handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("OK")
|
2017-08-21 07:37:22 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@bp.post("/post/")
|
2018-10-14 14:31:13 +01:00
|
|
|
def post_handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("OK")
|
2017-08-21 07:37:22 +01:00
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/get/")
|
2017-08-21 07:37:22 +01:00
|
|
|
assert response.status == 404
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.post("/post")
|
2017-08-21 07:37:22 +01:00
|
|
|
assert response.status == 404
|
|
|
|
|
2018-10-14 14:31:13 +01:00
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_strict_slash_without_passing_default_value(app: Sanic):
|
2018-12-30 11:18:06 +00:00
|
|
|
bp = Blueprint("test_text")
|
2017-08-21 07:37:22 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@bp.get("/get")
|
2018-10-14 14:31:13 +01:00
|
|
|
def get_handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("OK")
|
2017-08-21 07:37:22 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@bp.post("/post/")
|
2018-10-14 14:31:13 +01:00
|
|
|
def post_handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("OK")
|
2017-08-21 07:37:22 +01:00
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/get/")
|
|
|
|
assert response.text == "OK"
|
2017-08-21 07:37:22 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.post("/post")
|
|
|
|
assert response.text == "OK"
|
2017-08-21 07:37:22 +01:00
|
|
|
|
2018-10-14 14:31:13 +01:00
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_strict_slash_default_value_can_be_overwritten(app: Sanic):
|
2018-12-30 11:18:06 +00:00
|
|
|
bp = Blueprint("test_text", strict_slashes=True)
|
2017-08-21 07:37:22 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@bp.get("/get", strict_slashes=False)
|
2018-10-14 14:31:13 +01:00
|
|
|
def get_handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("OK")
|
2017-08-21 07:37:22 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@bp.post("/post/", strict_slashes=False)
|
2018-10-14 14:31:13 +01:00
|
|
|
def post_handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("OK")
|
2017-08-21 07:37:22 +01:00
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/get/")
|
|
|
|
assert response.text == "OK"
|
2017-08-21 07:37:22 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.post("/post")
|
|
|
|
assert response.text == "OK"
|
2017-03-24 01:37:06 +00:00
|
|
|
|
2018-10-14 14:31:13 +01:00
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_with_url_prefix(app: Sanic):
|
2018-12-30 11:18:06 +00:00
|
|
|
bp = Blueprint("test_text", url_prefix="/test1")
|
2016-10-15 20:38:12 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@bp.route("/")
|
2016-10-15 20:38:12 +01:00
|
|
|
def handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("Hello")
|
2016-10-15 20:38:12 +01:00
|
|
|
|
2016-10-24 09:21:06 +01:00
|
|
|
app.blueprint(bp)
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/test1/")
|
2016-10-15 20:38:12 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
assert response.text == "Hello"
|
2016-10-15 20:38:12 +01:00
|
|
|
|
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_several_bp_with_url_prefix(app: Sanic):
|
2018-12-30 11:18:06 +00:00
|
|
|
bp = Blueprint("test_text", url_prefix="/test1")
|
|
|
|
bp2 = Blueprint("test_text2", url_prefix="/test2")
|
2016-10-15 20:38:12 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@bp.route("/")
|
2016-10-15 20:38:12 +01:00
|
|
|
def handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("Hello")
|
2016-10-15 20:38:12 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@bp2.route("/")
|
2016-10-15 20:38:12 +01:00
|
|
|
def handler2(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("Hello2")
|
2016-10-15 20:38:12 +01:00
|
|
|
|
2016-10-24 09:21:06 +01:00
|
|
|
app.blueprint(bp)
|
|
|
|
app.blueprint(bp2)
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/test1/")
|
|
|
|
assert response.text == "Hello"
|
2016-10-15 20:38:12 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/test2/")
|
|
|
|
assert response.text == "Hello2"
|
2016-10-15 20:38:12 +01:00
|
|
|
|
2018-10-14 14:31:13 +01:00
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_with_host(app: Sanic):
|
2021-02-08 10:18:29 +00:00
|
|
|
bp = Blueprint("test_bp_host", url_prefix="/test1", host="example.com")
|
2017-01-11 02:07:58 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@bp.route("/")
|
2018-10-14 14:31:13 +01:00
|
|
|
def handler1(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("Hello")
|
2017-01-11 02:07:58 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@bp.route("/", host="sub.example.com")
|
2018-10-14 14:31:13 +01:00
|
|
|
def handler2(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("Hello subdomain!")
|
2017-01-11 06:08:15 +00:00
|
|
|
|
2017-01-11 02:07:58 +00:00
|
|
|
app.blueprint(bp)
|
|
|
|
headers = {"Host": "example.com"}
|
2021-02-07 09:38:37 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/test1/", headers=headers)
|
2021-02-08 10:18:29 +00:00
|
|
|
assert response.text == "Hello"
|
2017-01-11 02:07:58 +00:00
|
|
|
|
2017-01-11 06:08:15 +00:00
|
|
|
headers = {"Host": "sub.example.com"}
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/test1/", headers=headers)
|
2021-02-03 20:36:44 +00:00
|
|
|
assert response.body == b"Hello subdomain!"
|
2017-01-11 06:08:15 +00:00
|
|
|
|
2017-01-11 02:07:58 +00:00
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_several_bp_with_host(app: Sanic):
|
2021-02-07 09:38:37 +00:00
|
|
|
bp = Blueprint(
|
|
|
|
"test_text",
|
|
|
|
url_prefix="/test",
|
|
|
|
host="example.com",
|
|
|
|
strict_slashes=True,
|
|
|
|
)
|
|
|
|
bp2 = Blueprint(
|
|
|
|
"test_text2",
|
|
|
|
url_prefix="/test",
|
|
|
|
host="sub.example.com",
|
|
|
|
strict_slashes=True,
|
|
|
|
)
|
2018-12-30 11:18:06 +00:00
|
|
|
|
|
|
|
@bp.route("/")
|
2017-01-11 02:07:58 +00:00
|
|
|
def handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("Hello")
|
2017-01-11 02:07:58 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@bp2.route("/")
|
2018-10-14 14:31:13 +01:00
|
|
|
def handler1(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("Hello2")
|
2017-01-11 02:07:58 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@bp2.route("/other/")
|
2017-01-11 02:07:58 +00:00
|
|
|
def handler2(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("Hello3")
|
2017-01-11 02:07:58 +00:00
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
app.blueprint(bp2)
|
|
|
|
|
|
|
|
assert bp.host == "example.com"
|
|
|
|
headers = {"Host": "example.com"}
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/test/", headers=headers)
|
2021-02-03 20:36:44 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
assert response.text == "Hello"
|
2017-01-11 02:07:58 +00:00
|
|
|
|
|
|
|
assert bp2.host == "sub.example.com"
|
|
|
|
headers = {"Host": "sub.example.com"}
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/test/", headers=headers)
|
2017-01-11 02:07:58 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
assert response.text == "Hello2"
|
|
|
|
request, response = app.test_client.get("/test/other/", headers=headers)
|
|
|
|
assert response.text == "Hello3"
|
2016-10-16 09:48:51 +01:00
|
|
|
|
2018-10-14 14:31:13 +01:00
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_with_host_list(app: Sanic):
|
2020-06-28 12:45:52 +01:00
|
|
|
bp = Blueprint(
|
|
|
|
"test_bp_host",
|
|
|
|
url_prefix="/test1",
|
|
|
|
host=["example.com", "sub.example.com"],
|
|
|
|
)
|
2020-06-28 07:42:18 +01:00
|
|
|
|
|
|
|
@bp.route("/")
|
|
|
|
def handler1(request):
|
|
|
|
return text("Hello")
|
|
|
|
|
|
|
|
@bp.route("/", host=["sub1.example.com"])
|
|
|
|
def handler2(request):
|
|
|
|
return text("Hello subdomain!")
|
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
headers = {"Host": "example.com"}
|
|
|
|
request, response = app.test_client.get("/test1/", headers=headers)
|
|
|
|
assert response.text == "Hello"
|
|
|
|
|
|
|
|
headers = {"Host": "sub.example.com"}
|
|
|
|
request, response = app.test_client.get("/test1/", headers=headers)
|
|
|
|
assert response.text == "Hello"
|
|
|
|
|
|
|
|
headers = {"Host": "sub1.example.com"}
|
|
|
|
request, response = app.test_client.get("/test1/", headers=headers)
|
|
|
|
|
|
|
|
assert response.text == "Hello subdomain!"
|
|
|
|
|
2023-03-26 13:24:08 +01:00
|
|
|
route_names = [r.name for r in app.router.routes]
|
|
|
|
assert "test_bp_with_host_list.test_bp_host.handler1" in route_names
|
|
|
|
assert "test_bp_with_host_list.test_bp_host.handler2" in route_names
|
|
|
|
|
2020-06-28 07:42:18 +01:00
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_several_bp_with_host_list(app: Sanic):
|
2020-06-28 12:45:52 +01:00
|
|
|
bp = Blueprint(
|
|
|
|
"test_text",
|
|
|
|
url_prefix="/test",
|
|
|
|
host=["example.com", "sub.example.com"],
|
|
|
|
)
|
|
|
|
bp2 = Blueprint(
|
|
|
|
"test_text2",
|
|
|
|
url_prefix="/test",
|
|
|
|
host=["sub1.example.com", "sub2.example.com"],
|
|
|
|
)
|
2020-06-28 07:42:18 +01:00
|
|
|
|
|
|
|
@bp.route("/")
|
|
|
|
def handler(request):
|
|
|
|
return text("Hello")
|
|
|
|
|
|
|
|
@bp2.route("/")
|
|
|
|
def handler1(request):
|
|
|
|
return text("Hello2")
|
|
|
|
|
|
|
|
@bp2.route("/other/")
|
|
|
|
def handler2(request):
|
|
|
|
return text("Hello3")
|
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
app.blueprint(bp2)
|
|
|
|
|
|
|
|
assert bp.host == ["example.com", "sub.example.com"]
|
|
|
|
headers = {"Host": "example.com"}
|
|
|
|
request, response = app.test_client.get("/test/", headers=headers)
|
|
|
|
assert response.text == "Hello"
|
|
|
|
|
|
|
|
assert bp.host == ["example.com", "sub.example.com"]
|
|
|
|
headers = {"Host": "sub.example.com"}
|
|
|
|
request, response = app.test_client.get("/test/", headers=headers)
|
|
|
|
assert response.text == "Hello"
|
|
|
|
|
|
|
|
assert bp2.host == ["sub1.example.com", "sub2.example.com"]
|
|
|
|
headers = {"Host": "sub1.example.com"}
|
|
|
|
request, response = app.test_client.get("/test/", headers=headers)
|
|
|
|
assert response.text == "Hello2"
|
|
|
|
request, response = app.test_client.get("/test/other/", headers=headers)
|
|
|
|
assert response.text == "Hello3"
|
|
|
|
|
|
|
|
assert bp2.host == ["sub1.example.com", "sub2.example.com"]
|
|
|
|
headers = {"Host": "sub2.example.com"}
|
|
|
|
request, response = app.test_client.get("/test/", headers=headers)
|
|
|
|
assert response.text == "Hello2"
|
|
|
|
request, response = app.test_client.get("/test/other/", headers=headers)
|
|
|
|
assert response.text == "Hello3"
|
|
|
|
|
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_middleware(app: Sanic):
|
2020-05-14 00:54:47 +01:00
|
|
|
blueprint = Blueprint("test_bp_middleware")
|
2016-10-16 09:48:51 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.middleware("response")
|
2016-10-16 09:48:51 +01:00
|
|
|
async def process_response(request, response):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("OK")
|
2016-10-16 09:48:51 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@app.route("/")
|
2016-10-16 09:48:51 +01:00
|
|
|
async def handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("FAIL")
|
2016-10-16 09:48:51 +01:00
|
|
|
|
2016-10-24 09:21:06 +01:00
|
|
|
app.blueprint(blueprint)
|
2016-10-16 09:48:51 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/")
|
2016-10-16 09:48:51 +01:00
|
|
|
|
|
|
|
assert response.status == 200
|
2019-12-20 16:01:05 +00:00
|
|
|
assert response.text == "FAIL"
|
2016-10-16 09:48:51 +01:00
|
|
|
|
2020-06-05 15:14:18 +01:00
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_middleware_with_route(app: Sanic):
|
2021-02-03 22:42:24 +00:00
|
|
|
blueprint = Blueprint("test_bp_middleware")
|
|
|
|
|
|
|
|
@blueprint.middleware("response")
|
|
|
|
async def process_response(request, response):
|
|
|
|
return text("OK")
|
|
|
|
|
|
|
|
@app.route("/")
|
|
|
|
async def handler(request):
|
|
|
|
return text("FAIL")
|
|
|
|
|
|
|
|
@blueprint.route("/bp")
|
|
|
|
async def bp_handler(request):
|
|
|
|
return text("FAIL")
|
|
|
|
|
|
|
|
app.blueprint(blueprint)
|
|
|
|
|
|
|
|
request, response = app.test_client.get("/bp")
|
|
|
|
|
|
|
|
assert response.status == 200
|
|
|
|
assert response.text == "OK"
|
|
|
|
|
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_middleware_order(app: Sanic):
|
2020-05-14 00:54:47 +01:00
|
|
|
blueprint = Blueprint("test_bp_middleware_order")
|
2021-03-05 08:26:03 +00:00
|
|
|
order = []
|
2020-06-05 15:14:18 +01:00
|
|
|
|
2020-05-14 00:54:47 +01:00
|
|
|
@blueprint.middleware("request")
|
|
|
|
def mw_1(request):
|
|
|
|
order.append(1)
|
2020-06-05 15:14:18 +01:00
|
|
|
|
2020-05-14 00:54:47 +01:00
|
|
|
@blueprint.middleware("request")
|
|
|
|
def mw_2(request):
|
|
|
|
order.append(2)
|
2020-06-05 15:14:18 +01:00
|
|
|
|
2020-05-14 00:54:47 +01:00
|
|
|
@blueprint.middleware("request")
|
|
|
|
def mw_3(request):
|
|
|
|
order.append(3)
|
2020-06-05 15:14:18 +01:00
|
|
|
|
2020-05-14 00:54:47 +01:00
|
|
|
@blueprint.middleware("response")
|
|
|
|
def mw_4(request, response):
|
|
|
|
order.append(6)
|
2020-06-05 15:14:18 +01:00
|
|
|
|
2020-05-14 00:54:47 +01:00
|
|
|
@blueprint.middleware("response")
|
|
|
|
def mw_5(request, response):
|
|
|
|
order.append(5)
|
2020-06-05 15:14:18 +01:00
|
|
|
|
2020-05-14 00:54:47 +01:00
|
|
|
@blueprint.middleware("response")
|
|
|
|
def mw_6(request, response):
|
|
|
|
order.append(4)
|
|
|
|
|
|
|
|
@blueprint.route("/")
|
|
|
|
def process_response(request):
|
|
|
|
return text("OK")
|
|
|
|
|
|
|
|
app.blueprint(blueprint)
|
|
|
|
order.clear()
|
|
|
|
request, response = app.test_client.get("/")
|
|
|
|
|
|
|
|
assert response.status == 200
|
|
|
|
assert order == [1, 2, 3, 4, 5, 6]
|
2018-10-14 14:31:13 +01:00
|
|
|
|
2020-06-05 15:14:18 +01:00
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_exception_handler(app: Sanic):
|
2018-12-30 11:18:06 +00:00
|
|
|
blueprint = Blueprint("test_middleware")
|
2016-10-16 09:48:51 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.route("/1")
|
2016-10-16 09:48:51 +01:00
|
|
|
def handler_1(request):
|
2022-05-12 18:39:35 +01:00
|
|
|
raise BadRequest("OK")
|
2016-10-16 09:48:51 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.route("/2")
|
2016-10-16 09:48:51 +01:00
|
|
|
def handler_2(request):
|
|
|
|
raise ServerError("OK")
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.route("/3")
|
2016-10-16 09:48:51 +01:00
|
|
|
def handler_3(request):
|
|
|
|
raise NotFound("OK")
|
|
|
|
|
|
|
|
@blueprint.exception(NotFound, ServerError)
|
|
|
|
def handler_exception(request, exception):
|
|
|
|
return text("OK")
|
|
|
|
|
2016-10-24 09:21:06 +01:00
|
|
|
app.blueprint(blueprint)
|
2016-10-16 09:48:51 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/1")
|
2016-10-16 09:48:51 +01:00
|
|
|
assert response.status == 400
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/2")
|
2016-10-16 09:48:51 +01:00
|
|
|
assert response.status == 200
|
2018-12-30 11:18:06 +00:00
|
|
|
assert response.text == "OK"
|
2016-10-16 09:48:51 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/3")
|
2016-10-21 12:11:18 +01:00
|
|
|
assert response.status == 200
|
|
|
|
|
2018-10-14 14:31:13 +01:00
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_exception_handler_applied(app: Sanic):
|
2021-09-29 11:47:31 +01:00
|
|
|
class Error(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
handled = Blueprint("handled")
|
|
|
|
nothandled = Blueprint("nothandled")
|
|
|
|
|
|
|
|
@handled.exception(Error)
|
|
|
|
def handle_error(req, e):
|
2023-10-25 02:28:52 +01:00
|
|
|
return text(f"handled {e}")
|
2021-09-29 11:47:31 +01:00
|
|
|
|
|
|
|
@handled.route("/ok")
|
|
|
|
def ok(request):
|
|
|
|
raise Error("uh oh")
|
|
|
|
|
|
|
|
@nothandled.route("/notok")
|
|
|
|
def notok(request):
|
|
|
|
raise Error("uh oh")
|
|
|
|
|
|
|
|
app.blueprint(handled)
|
|
|
|
app.blueprint(nothandled)
|
|
|
|
|
|
|
|
_, response = app.test_client.get("/ok")
|
|
|
|
assert response.status == 200
|
|
|
|
assert response.text == "handled uh oh"
|
|
|
|
|
|
|
|
_, response = app.test_client.get("/notok")
|
|
|
|
assert response.status == 500
|
|
|
|
|
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_exception_handler_not_applied(app: Sanic):
|
2021-09-29 11:47:31 +01:00
|
|
|
class Error(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
handled = Blueprint("handled")
|
|
|
|
nothandled = Blueprint("nothandled")
|
|
|
|
|
|
|
|
@handled.exception(Error)
|
|
|
|
def handle_error(req, e):
|
2023-10-25 02:28:52 +01:00
|
|
|
return text(f"handled {e}")
|
2021-09-29 11:47:31 +01:00
|
|
|
|
|
|
|
@nothandled.route("/notok")
|
|
|
|
def notok(request):
|
|
|
|
raise Error("uh oh")
|
|
|
|
|
|
|
|
app.blueprint(handled)
|
|
|
|
app.blueprint(nothandled)
|
|
|
|
|
|
|
|
_, response = app.test_client.get("/notok")
|
|
|
|
assert response.status == 500
|
|
|
|
|
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_listeners(app: Sanic):
|
2021-02-07 09:38:37 +00:00
|
|
|
app.route("/")(lambda x: x)
|
2018-12-30 11:18:06 +00:00
|
|
|
blueprint = Blueprint("test_middleware")
|
2016-10-21 12:11:18 +01:00
|
|
|
|
|
|
|
order = []
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.listener("before_server_start")
|
2016-10-21 12:11:18 +01:00
|
|
|
def handler_1(sanic, loop):
|
|
|
|
order.append(1)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.listener("after_server_start")
|
2016-10-21 12:11:18 +01:00
|
|
|
def handler_2(sanic, loop):
|
|
|
|
order.append(2)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.listener("after_server_start")
|
2016-10-21 12:11:18 +01:00
|
|
|
def handler_3(sanic, loop):
|
|
|
|
order.append(3)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.listener("before_server_stop")
|
2016-10-21 12:11:18 +01:00
|
|
|
def handler_4(sanic, loop):
|
|
|
|
order.append(5)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.listener("before_server_stop")
|
2016-10-21 12:11:18 +01:00
|
|
|
def handler_5(sanic, loop):
|
|
|
|
order.append(4)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.listener("after_server_stop")
|
2016-10-21 12:11:18 +01:00
|
|
|
def handler_6(sanic, loop):
|
|
|
|
order.append(6)
|
|
|
|
|
2016-10-24 09:21:06 +01:00
|
|
|
app.blueprint(blueprint)
|
2016-10-21 12:11:18 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/")
|
2016-10-21 12:11:18 +01:00
|
|
|
|
2018-10-14 14:31:13 +01:00
|
|
|
assert order == [1, 2, 3, 4, 5, 6]
|
|
|
|
|
2016-10-24 09:21:06 +01:00
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_static(app: Sanic):
|
2016-10-24 09:21:06 +01:00
|
|
|
current_file = inspect.getfile(inspect.currentframe())
|
2018-12-30 11:18:06 +00:00
|
|
|
with open(current_file, "rb") as file:
|
2016-10-24 09:21:06 +01:00
|
|
|
current_file_contents = file.read()
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
blueprint = Blueprint("test_static")
|
2016-10-24 09:21:06 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
blueprint.static("/testing.file", current_file)
|
2016-10-24 09:21:06 +01:00
|
|
|
|
|
|
|
app.blueprint(blueprint)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/testing.file")
|
2016-10-24 09:21:06 +01:00
|
|
|
assert response.status == 200
|
2017-01-11 02:07:58 +00:00
|
|
|
assert response.body == current_file_contents
|
2017-01-30 07:20:38 +00:00
|
|
|
|
2018-10-14 14:31:13 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@pytest.mark.parametrize("file_name", ["test.html"])
|
2018-08-26 15:43:14 +01:00
|
|
|
def test_bp_static_content_type(app, file_name):
|
2018-07-21 06:31:15 +01:00
|
|
|
# This is done here, since no other test loads a file here
|
|
|
|
current_file = inspect.getfile(inspect.currentframe())
|
|
|
|
current_directory = os.path.dirname(os.path.abspath(current_file))
|
2018-12-30 11:18:06 +00:00
|
|
|
static_directory = os.path.join(current_directory, "static")
|
2018-07-21 06:31:15 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
blueprint = Blueprint("test_static")
|
2018-07-21 06:31:15 +01:00
|
|
|
blueprint.static(
|
2018-12-30 11:18:06 +00:00
|
|
|
"/testing.file",
|
2018-07-21 06:31:15 +01:00
|
|
|
get_file_path(static_directory, file_name),
|
2018-12-30 11:18:06 +00:00
|
|
|
content_type="text/html; charset=utf-8",
|
2018-07-21 06:31:15 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
app.blueprint(blueprint)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/testing.file")
|
2018-07-21 06:31:15 +01:00
|
|
|
assert response.status == 200
|
|
|
|
assert response.body == get_file_content(static_directory, file_name)
|
2018-12-30 11:18:06 +00:00
|
|
|
assert response.headers["Content-Type"] == "text/html; charset=utf-8"
|
2018-07-21 06:31:15 +01:00
|
|
|
|
2018-10-14 14:31:13 +01:00
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_shorthand(app: Sanic):
|
2018-12-30 11:18:06 +00:00
|
|
|
blueprint = Blueprint("test_shorhand_routes")
|
2017-02-21 06:41:53 +00:00
|
|
|
ev = asyncio.Event()
|
2017-01-30 07:20:38 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.get("/get")
|
2017-01-30 07:20:38 +00:00
|
|
|
def handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("OK")
|
2017-01-30 07:20:38 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.put("/put")
|
2018-10-14 14:31:13 +01:00
|
|
|
def put_handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("OK")
|
2017-01-30 07:20:38 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.post("/post")
|
2018-10-14 14:31:13 +01:00
|
|
|
def post_handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("OK")
|
2017-01-30 07:20:38 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.head("/head")
|
2018-10-14 14:31:13 +01:00
|
|
|
def head_handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("OK")
|
2017-01-30 07:20:38 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.options("/options")
|
2018-10-14 14:31:13 +01:00
|
|
|
def options_handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("OK")
|
2017-01-30 07:20:38 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.patch("/patch")
|
2018-10-14 14:31:13 +01:00
|
|
|
def patch_handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("OK")
|
2017-01-30 07:20:38 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.delete("/delete")
|
2018-10-14 14:31:13 +01:00
|
|
|
def delete_handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("OK")
|
2017-01-30 07:20:38 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@blueprint.websocket("/ws/", strict_slashes=True)
|
2018-10-14 14:31:13 +01:00
|
|
|
async def websocket_handler(request, ws):
|
2017-02-21 06:41:53 +00:00
|
|
|
ev.set()
|
|
|
|
|
2017-01-30 07:20:38 +00:00
|
|
|
app.blueprint(blueprint)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/get")
|
2021-02-03 20:36:44 +00:00
|
|
|
assert response.body == b"OK"
|
2017-01-30 07:20:38 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.post("/get")
|
2017-01-30 07:20:38 +00:00
|
|
|
assert response.status == 405
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.put("/put")
|
2021-02-03 20:36:44 +00:00
|
|
|
assert response.body == b"OK"
|
2017-01-30 07:20:38 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/post")
|
2017-01-30 07:20:38 +00:00
|
|
|
assert response.status == 405
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.post("/post")
|
2021-02-03 20:36:44 +00:00
|
|
|
assert response.body == b"OK"
|
2017-01-30 07:20:38 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/post")
|
2017-01-30 07:20:38 +00:00
|
|
|
assert response.status == 405
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.head("/head")
|
2017-01-30 07:21:00 +00:00
|
|
|
assert response.status == 200
|
2017-01-30 07:20:38 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/head")
|
2017-01-30 07:20:38 +00:00
|
|
|
assert response.status == 405
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.options("/options")
|
2021-02-03 20:36:44 +00:00
|
|
|
assert response.body == b"OK"
|
2017-01-30 07:20:38 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/options")
|
2017-01-30 07:20:38 +00:00
|
|
|
assert response.status == 405
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.patch("/patch")
|
2021-02-03 20:36:44 +00:00
|
|
|
assert response.body == b"OK"
|
2017-01-30 07:20:38 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/patch")
|
2017-01-30 07:20:38 +00:00
|
|
|
assert response.status == 405
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.delete("/delete")
|
2021-02-03 20:36:44 +00:00
|
|
|
assert response.body == b"OK"
|
2017-01-30 07:20:38 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/delete")
|
2017-01-30 07:20:38 +00:00
|
|
|
assert response.status == 405
|
2017-02-21 06:41:53 +00:00
|
|
|
|
2019-04-23 22:44:42 +01:00
|
|
|
request, response = app.test_client.websocket("/ws/")
|
|
|
|
assert response.opened is True
|
2017-02-21 06:41:53 +00:00
|
|
|
assert ev.is_set()
|
2018-01-19 01:20:51 +00:00
|
|
|
|
2018-10-14 14:31:13 +01:00
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_group(app: Sanic):
|
2018-12-30 11:18:06 +00:00
|
|
|
deep_0 = Blueprint("deep_0", url_prefix="/deep")
|
|
|
|
deep_1 = Blueprint("deep_1", url_prefix="/deep1")
|
2018-01-19 01:20:51 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@deep_0.route("/")
|
2018-01-19 01:20:51 +00:00
|
|
|
def handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("D0_OK")
|
2018-07-21 06:31:15 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@deep_1.route("/bottom")
|
2018-10-14 14:31:13 +01:00
|
|
|
def bottom_handler(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("D1B_OK")
|
2018-01-19 01:20:51 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
mid_0 = Blueprint.group(deep_0, deep_1, url_prefix="/mid")
|
|
|
|
mid_1 = Blueprint("mid_tier", url_prefix="/mid1")
|
2018-07-21 06:31:15 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@mid_1.route("/")
|
2018-10-14 14:31:13 +01:00
|
|
|
def handler1(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("M1_OK")
|
2018-01-19 01:20:51 +00:00
|
|
|
|
|
|
|
top = Blueprint.group(mid_0, mid_1)
|
2018-07-21 06:31:15 +01:00
|
|
|
|
2018-01-19 01:20:51 +00:00
|
|
|
app.blueprint(top)
|
2018-07-21 06:31:15 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@app.route("/")
|
2018-10-14 14:31:13 +01:00
|
|
|
def handler2(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("TOP_OK")
|
2018-07-21 06:31:15 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/")
|
|
|
|
assert response.text == "TOP_OK"
|
2018-07-21 06:31:15 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/mid1")
|
|
|
|
assert response.text == "M1_OK"
|
2018-07-21 06:31:15 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/mid/deep")
|
|
|
|
assert response.text == "D0_OK"
|
2018-07-21 06:31:15 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/mid/deep1/bottom")
|
|
|
|
assert response.text == "D1B_OK"
|
2018-09-29 11:23:16 +01:00
|
|
|
|
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_bp_group_with_default_url_prefix(app: Sanic):
|
2018-09-29 11:23:16 +01:00
|
|
|
from sanic.response import json
|
2018-10-14 14:31:13 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
bp_resources = Blueprint("bp_resources")
|
|
|
|
|
|
|
|
@bp_resources.get("/")
|
2018-09-29 11:23:16 +01:00
|
|
|
def list_resources_handler(request):
|
|
|
|
resource = {}
|
|
|
|
return json([resource])
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
bp_resource = Blueprint("bp_resource", url_prefix="/<resource_id>")
|
2018-10-14 14:31:13 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@bp_resource.get("/")
|
2018-09-29 11:23:16 +01:00
|
|
|
def get_resource_hander(request, resource_id):
|
2018-12-30 11:18:06 +00:00
|
|
|
resource = {"resource_id": resource_id}
|
2018-09-29 11:23:16 +01:00
|
|
|
return json(resource)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
bp_resources_group = Blueprint.group(
|
|
|
|
bp_resources, bp_resource, url_prefix="/resources"
|
|
|
|
)
|
|
|
|
bp_api_v1 = Blueprint("bp_api_v1")
|
2018-10-14 14:31:13 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@bp_api_v1.get("/info")
|
2018-09-29 11:23:16 +01:00
|
|
|
def api_v1_info(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("api_version: v1")
|
2018-09-29 11:23:16 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
bp_api_v1_group = Blueprint.group(
|
|
|
|
bp_api_v1, bp_resources_group, url_prefix="/v1"
|
|
|
|
)
|
|
|
|
bp_api_group = Blueprint.group(bp_api_v1_group, url_prefix="/api")
|
2018-09-29 11:23:16 +01:00
|
|
|
app.blueprint(bp_api_group)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/api/v1/info")
|
|
|
|
assert response.text == "api_version: v1"
|
2018-09-29 11:23:16 +01:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/api/v1/resources")
|
2018-09-29 11:23:16 +01:00
|
|
|
assert response.json == [{}]
|
|
|
|
|
|
|
|
from uuid import uuid4
|
2018-12-30 11:18:06 +00:00
|
|
|
|
2018-09-29 11:23:16 +01:00
|
|
|
resource_id = str(uuid4())
|
2020-06-05 15:14:18 +01:00
|
|
|
request, response = app.test_client.get(f"/api/v1/resources/{resource_id}")
|
2018-12-30 11:18:06 +00:00
|
|
|
assert response.json == {"resource_id": resource_id}
|
2018-11-25 19:56:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_blueprint_middleware_with_args(app: Sanic):
|
|
|
|
bp = Blueprint(name="with_args_bp", url_prefix="/wa")
|
|
|
|
|
|
|
|
@bp.middleware
|
|
|
|
def middleware_with_no_tag(request: Request):
|
|
|
|
if request.headers.get("content-type") == "application/json":
|
|
|
|
request.headers["accepts"] = "plain/text"
|
|
|
|
else:
|
|
|
|
request.headers["accepts"] = "application/json"
|
|
|
|
|
|
|
|
@bp.route("/")
|
|
|
|
def default_route(request):
|
|
|
|
if request.headers.get("accepts") == "application/json":
|
|
|
|
return json({"test": "value"})
|
|
|
|
else:
|
|
|
|
return text("value")
|
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
_, response = app.test_client.get(
|
|
|
|
"/wa", headers={"content-type": "application/json"}
|
|
|
|
)
|
2018-11-25 19:56:34 +00:00
|
|
|
assert response.text == "value"
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
_, response = app.test_client.get(
|
|
|
|
"/wa", headers={"content-type": "plain/text"}
|
|
|
|
)
|
2018-11-25 19:56:34 +00:00
|
|
|
assert response.json.get("test") == "value"
|
|
|
|
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@pytest.mark.parametrize("file_name", ["test.file"])
|
2021-02-07 09:38:37 +00:00
|
|
|
def test_static_blueprint_name(static_file_directory, file_name):
|
|
|
|
app = Sanic("app")
|
2018-11-25 19:56:34 +00:00
|
|
|
current_file = inspect.getfile(inspect.currentframe())
|
2018-12-30 11:18:06 +00:00
|
|
|
with open(current_file, "rb") as file:
|
2019-04-23 22:44:42 +01:00
|
|
|
file.read()
|
2018-11-25 19:56:34 +00:00
|
|
|
|
|
|
|
bp = Blueprint(name="static", url_prefix="/static", strict_slashes=False)
|
|
|
|
|
|
|
|
bp.static(
|
|
|
|
"/test.file/",
|
|
|
|
get_file_path(static_file_directory, file_name),
|
|
|
|
name="static.testing",
|
2018-12-30 11:18:06 +00:00
|
|
|
strict_slashes=True,
|
|
|
|
)
|
2018-11-25 19:56:34 +00:00
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
uri = app.url_for("static", name="static.testing")
|
2021-03-01 13:30:52 +00:00
|
|
|
assert uri == "/static/test.file/"
|
2018-11-25 19:56:34 +00:00
|
|
|
|
|
|
|
_, response = app.test_client.get("/static/test.file")
|
|
|
|
assert response.status == 404
|
|
|
|
|
|
|
|
_, response = app.test_client.get("/static/test.file/")
|
|
|
|
assert response.status == 200
|
|
|
|
|
2020-10-25 19:22:19 +00:00
|
|
|
|
2020-10-24 20:57:02 +01:00
|
|
|
@pytest.mark.parametrize("file_name", ["test.file"])
|
|
|
|
def test_static_blueprintp_mw(app: Sanic, static_file_directory, file_name):
|
2021-12-23 22:30:27 +00:00
|
|
|
current_file = inspect.getfile(inspect.currentframe()) # type: ignore
|
2020-10-24 20:57:02 +01:00
|
|
|
with open(current_file, "rb") as file:
|
|
|
|
file.read()
|
|
|
|
|
|
|
|
triggered = False
|
|
|
|
|
|
|
|
bp = Blueprint(name="test_mw", url_prefix="")
|
|
|
|
|
2020-10-25 19:22:19 +00:00
|
|
|
@bp.middleware("request")
|
2020-10-24 20:57:02 +01:00
|
|
|
def bp_mw1(request):
|
|
|
|
nonlocal triggered
|
|
|
|
triggered = True
|
|
|
|
|
|
|
|
bp.static(
|
|
|
|
"/test.file",
|
|
|
|
get_file_path(static_file_directory, file_name),
|
|
|
|
strict_slashes=True,
|
2020-10-25 19:22:19 +00:00
|
|
|
name="static",
|
2020-10-24 20:57:02 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
|
|
|
|
uri = app.url_for("test_mw.static")
|
|
|
|
assert uri == "/test.file"
|
|
|
|
|
|
|
|
_, response = app.test_client.get("/test.file")
|
|
|
|
assert triggered is True
|
|
|
|
|
2018-11-25 19:56:34 +00:00
|
|
|
|
|
|
|
def test_websocket_route(app: Sanic):
|
|
|
|
event = asyncio.Event()
|
|
|
|
|
|
|
|
async def websocket_handler(request, ws):
|
|
|
|
assert ws.subprotocol is None
|
|
|
|
event.set()
|
|
|
|
|
|
|
|
bp = Blueprint(name="handler", url_prefix="/ws")
|
|
|
|
bp.add_websocket_route(websocket_handler, "/test", name="test")
|
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
|
2019-04-23 22:44:42 +01:00
|
|
|
_, response = app.test_client.websocket("/ws/test")
|
|
|
|
assert response.opened is True
|
2018-11-25 19:56:34 +00:00
|
|
|
assert event.is_set()
|
2018-12-13 17:50:50 +00:00
|
|
|
|
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_duplicate_blueprint(app: Sanic):
|
2018-12-30 11:18:06 +00:00
|
|
|
bp_name = "bp"
|
2018-12-13 17:50:50 +00:00
|
|
|
bp = Blueprint(bp_name)
|
|
|
|
bp1 = Blueprint(bp_name)
|
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
|
|
|
|
with pytest.raises(AssertionError) as excinfo:
|
|
|
|
app.blueprint(bp1)
|
|
|
|
|
|
|
|
assert str(excinfo.value) == (
|
2020-02-25 20:01:13 +00:00
|
|
|
f'A blueprint with the name "{bp_name}" is already registered. '
|
2018-12-30 11:18:06 +00:00
|
|
|
"Blueprint names must be unique."
|
2020-02-25 20:01:13 +00:00
|
|
|
)
|
2018-12-13 17:50:50 +00:00
|
|
|
|
|
|
|
|
2021-02-07 09:38:37 +00:00
|
|
|
def test_strict_slashes_behavior_adoption():
|
|
|
|
app = Sanic("app")
|
2019-06-06 13:21:58 +01:00
|
|
|
app.strict_slashes = True
|
2021-02-07 09:38:37 +00:00
|
|
|
bp = Blueprint("bp")
|
|
|
|
bp2 = Blueprint("bp2", strict_slashes=False)
|
2019-06-06 13:21:58 +01:00
|
|
|
|
|
|
|
@app.get("/test")
|
|
|
|
def handler_test(request):
|
|
|
|
return text("Test")
|
|
|
|
|
2021-02-07 09:38:37 +00:00
|
|
|
@app.get("/f1", strict_slashes=False)
|
|
|
|
def f1(request):
|
|
|
|
return text("f1")
|
2019-06-06 13:21:58 +01:00
|
|
|
|
|
|
|
@bp.get("/one", strict_slashes=False)
|
|
|
|
def one(request):
|
|
|
|
return text("one")
|
|
|
|
|
|
|
|
@bp.get("/second")
|
|
|
|
def second(request):
|
|
|
|
return text("second")
|
|
|
|
|
2021-02-07 09:38:37 +00:00
|
|
|
@bp2.get("/third")
|
|
|
|
def third(request):
|
|
|
|
return text("third")
|
|
|
|
|
2019-06-06 13:21:58 +01:00
|
|
|
app.blueprint(bp)
|
2021-02-07 09:38:37 +00:00
|
|
|
app.blueprint(bp2)
|
|
|
|
|
|
|
|
assert app.test_client.get("/test")[1].status == 200
|
|
|
|
assert app.test_client.get("/test/")[1].status == 404
|
2019-06-06 13:21:58 +01:00
|
|
|
|
|
|
|
assert app.test_client.get("/one")[1].status == 200
|
|
|
|
assert app.test_client.get("/one/")[1].status == 200
|
|
|
|
|
|
|
|
assert app.test_client.get("/second")[1].status == 200
|
|
|
|
assert app.test_client.get("/second/")[1].status == 404
|
|
|
|
|
|
|
|
assert app.test_client.get("/third")[1].status == 200
|
|
|
|
assert app.test_client.get("/third/")[1].status == 200
|
|
|
|
|
|
|
|
assert app.test_client.get("/f1")[1].status == 200
|
|
|
|
assert app.test_client.get("/f1/")[1].status == 200
|
2021-03-07 12:54:45 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_blueprint_group_versioning():
|
|
|
|
app = Sanic(name="blueprint-group-test")
|
|
|
|
|
|
|
|
bp1 = Blueprint(name="bp1", url_prefix="/bp1")
|
|
|
|
bp2 = Blueprint(name="bp2", url_prefix="/bp2", version=2)
|
|
|
|
|
|
|
|
bp3 = Blueprint(name="bp3", url_prefix="/bp3")
|
|
|
|
|
|
|
|
@bp3.get("/r1")
|
|
|
|
async def bp3_r1(request):
|
|
|
|
return json({"from": "bp3/r1"})
|
|
|
|
|
|
|
|
@bp1.get("/pre-group")
|
|
|
|
async def pre_group(request):
|
|
|
|
return json({"from": "bp1/pre-group"})
|
|
|
|
|
|
|
|
group = Blueprint.group([bp1, bp2], url_prefix="/group1", version=1)
|
|
|
|
|
|
|
|
group2 = Blueprint.group([bp3])
|
|
|
|
|
|
|
|
@bp1.get("/r1")
|
|
|
|
async def r1(request):
|
|
|
|
return json({"from": "bp1/r1"})
|
|
|
|
|
|
|
|
@bp2.get("/r2")
|
|
|
|
async def r2(request):
|
|
|
|
return json({"from": "bp2/r2"})
|
|
|
|
|
|
|
|
@bp2.get("/r3", version=3)
|
|
|
|
async def r3(request):
|
|
|
|
return json({"from": "bp2/r3"})
|
|
|
|
|
|
|
|
app.blueprint([group, group2])
|
|
|
|
|
|
|
|
assert app.test_client.get("/v1/group1/bp1/r1/")[1].status == 200
|
|
|
|
assert app.test_client.get("/v2/group1/bp2/r2")[1].status == 200
|
|
|
|
assert app.test_client.get("/v1/group1/bp1/pre-group")[1].status == 200
|
|
|
|
assert app.test_client.get("/v3/group1/bp2/r3")[1].status == 200
|
|
|
|
assert app.test_client.get("/bp3/r1")[1].status == 200
|
|
|
|
|
|
|
|
assert group.version == 1
|
|
|
|
assert group2.strict_slashes is None
|
|
|
|
|
|
|
|
|
|
|
|
def test_blueprint_group_strict_slashes():
|
|
|
|
app = Sanic(name="blueprint-group-test")
|
|
|
|
bp1 = Blueprint(name="bp1", url_prefix=None, strict_slashes=False)
|
|
|
|
|
|
|
|
bp2 = Blueprint(
|
|
|
|
name="bp2", version=3, url_prefix="/bp2", strict_slashes=None
|
|
|
|
)
|
|
|
|
|
|
|
|
bp3 = Blueprint(
|
|
|
|
name="bp3", version=None, url_prefix="/bp3/", strict_slashes=None
|
|
|
|
)
|
|
|
|
|
|
|
|
@bp1.get("/r1")
|
|
|
|
async def bp1_r1(request):
|
|
|
|
return json({"from": "bp1/r1"})
|
|
|
|
|
|
|
|
@bp2.get("/r1")
|
|
|
|
async def bp2_r1(request):
|
|
|
|
return json({"from": "bp2/r1"})
|
|
|
|
|
|
|
|
@bp2.get("/r2/")
|
|
|
|
async def bp2_r2(request):
|
|
|
|
return json({"from": "bp2/r2"})
|
|
|
|
|
|
|
|
@bp3.get("/r1")
|
|
|
|
async def bp3_r1(request):
|
|
|
|
return json({"from": "bp3/r1"})
|
|
|
|
|
|
|
|
group = Blueprint.group(
|
|
|
|
[bp1, bp2],
|
|
|
|
url_prefix="/slash-check/",
|
|
|
|
version=1.3,
|
|
|
|
strict_slashes=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
group2 = Blueprint.group(
|
|
|
|
[bp3], url_prefix="/other-prefix/", version="v2", strict_slashes=False
|
|
|
|
)
|
|
|
|
|
|
|
|
app.blueprint(group)
|
|
|
|
app.blueprint(group2)
|
|
|
|
|
|
|
|
assert app.test_client.get("/v1.3/slash-check/r1")[1].status == 200
|
|
|
|
assert app.test_client.get("/v1.3/slash-check/r1/")[1].status == 200
|
|
|
|
assert app.test_client.get("/v3/slash-check/bp2/r1")[1].status == 200
|
|
|
|
assert app.test_client.get("/v3/slash-check/bp2/r1/")[1].status == 404
|
|
|
|
assert app.test_client.get("/v3/slash-check/bp2/r2")[1].status == 404
|
|
|
|
assert app.test_client.get("/v3/slash-check/bp2/r2/")[1].status == 200
|
|
|
|
assert app.test_client.get("/v2/other-prefix/bp3/r1")[1].status == 200
|
2021-03-14 08:09:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_blueprint_registered_multiple_apps():
|
|
|
|
app1 = Sanic("app1")
|
|
|
|
app2 = Sanic("app2")
|
|
|
|
bp = Blueprint("bp")
|
|
|
|
|
|
|
|
@bp.get("/")
|
|
|
|
async def handler(request):
|
|
|
|
return text(request.route.name)
|
|
|
|
|
|
|
|
app1.blueprint(bp)
|
|
|
|
app2.blueprint(bp)
|
|
|
|
|
|
|
|
for app in (app1, app2):
|
|
|
|
_, response = app.test_client.get("/")
|
|
|
|
assert response.text == f"{app.name}.bp.handler"
|
2021-03-17 18:55:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_bp_set_attribute_warning():
|
|
|
|
bp = Blueprint("bp")
|
2021-12-23 22:30:27 +00:00
|
|
|
message = (
|
|
|
|
"Setting variables on Blueprint instances is not allowed. You should "
|
|
|
|
"change your Blueprint instance to use instance.ctx.foo instead."
|
2021-03-17 18:55:52 +00:00
|
|
|
)
|
2021-12-23 22:30:27 +00:00
|
|
|
with pytest.raises(AttributeError, match=message):
|
|
|
|
bp.foo = 1
|
2021-11-17 15:29:41 +00:00
|
|
|
|
|
|
|
|
2022-09-15 12:43:20 +01:00
|
|
|
def test_early_registration(app: Sanic):
|
2021-11-17 15:29:41 +00:00
|
|
|
assert len(app.router.routes) == 0
|
|
|
|
|
|
|
|
bp = Blueprint("bp")
|
|
|
|
|
|
|
|
@bp.get("/one")
|
|
|
|
async def one(_):
|
|
|
|
return text("one")
|
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
|
|
|
|
assert len(app.router.routes) == 1
|
|
|
|
|
|
|
|
@bp.get("/two")
|
|
|
|
async def two(_):
|
|
|
|
return text("two")
|
|
|
|
|
|
|
|
@bp.get("/three")
|
|
|
|
async def three(_):
|
|
|
|
return text("three")
|
|
|
|
|
|
|
|
assert len(app.router.routes) == 3
|
|
|
|
|
|
|
|
for path in ("one", "two", "three"):
|
|
|
|
_, response = app.test_client.get(f"/{path}")
|
|
|
|
assert response.text == path
|
2022-09-15 12:43:20 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_remove_double_slashes_defined_on_bp(app: Sanic):
|
|
|
|
bp = Blueprint("bp", url_prefix="/foo/", strict_slashes=True)
|
|
|
|
|
|
|
|
@bp.get("/")
|
|
|
|
async def handler(_):
|
|
|
|
...
|
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
app.router.finalize()
|
|
|
|
|
|
|
|
assert app.router.routes[0].path == "foo/"
|
|
|
|
|
|
|
|
|
|
|
|
def test_remove_double_slashes_defined_on_register(app: Sanic):
|
|
|
|
bp = Blueprint("bp")
|
|
|
|
|
|
|
|
@bp.get("/")
|
|
|
|
async def index(_):
|
|
|
|
...
|
|
|
|
|
|
|
|
app.blueprint(bp, url_prefix="/foo/", strict_slashes=True)
|
|
|
|
app.router.finalize()
|
|
|
|
|
|
|
|
assert app.router.routes[0].path == "foo/"
|