sanic/tests/test_named_routes.py

439 lines
12 KiB
Python
Raw Normal View History

2017-08-21 11:05:34 +01:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import asyncio
2017-08-21 11:05:34 +01:00
import pytest
2021-02-08 10:18:29 +00:00
from sanic import Sanic
2017-08-21 11:05:34 +01:00
from sanic.blueprints import Blueprint
from sanic.constants import HTTP_METHODS
from sanic.exceptions import URLBuildError
from sanic.response import text
2017-08-21 11:05:34 +01:00
# ------------------------------------------------------------ #
# UTF-8
# ------------------------------------------------------------ #
2018-12-30 11:18:06 +00:00
@pytest.mark.parametrize("method", HTTP_METHODS)
2021-02-08 10:18:29 +00:00
def test_versioned_named_routes_get(method):
app = Sanic("app")
2018-12-30 11:18:06 +00:00
bp = Blueprint("test_bp", url_prefix="/bp")
2017-08-21 11:05:34 +01:00
method = method.lower()
route_name = f"route_{method}"
route_name2 = f"route2_{method}"
2017-08-21 11:05:34 +01:00
func = getattr(app, method)
if callable(func):
2018-12-30 11:18:06 +00:00
@func(f"/{method}", version=1, name=route_name)
2017-08-21 11:05:34 +01:00
def handler(request):
2018-12-30 11:18:06 +00:00
return text("OK")
2017-08-21 11:05:34 +01:00
else:
raise
func = getattr(bp, method)
if callable(func):
2018-12-30 11:18:06 +00:00
@func(f"/{method}", version=1, name=route_name2)
2017-08-21 11:05:34 +01:00
def handler2(request):
2018-12-30 11:18:06 +00:00
return text("OK")
2017-08-21 11:05:34 +01:00
else:
raise
app.blueprint(bp)
2021-02-08 10:18:29 +00:00
assert (
app.router.routes_all[
(
"v1",
method,
)
].name
== f"app.{route_name}"
)
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
route = app.router.routes_all[
(
"v1",
"bp",
method,
)
]
assert route.name == f"app.test_bp.{route_name2}"
2017-08-21 11:05:34 +01:00
assert app.url_for(route_name) == f"/v1/{method}"
url = app.url_for(f"test_bp.{route_name2}")
assert url == f"/v1/bp/{method}"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_shorthand_default_routes_get():
app = Sanic("app")
2018-12-30 11:18:06 +00:00
@app.get("/get")
2017-08-21 11:05:34 +01:00
def handler(request):
2018-12-30 11:18:06 +00:00
return text("OK")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
assert app.router.routes_all[("get",)].name == "app.handler"
2018-12-30 11:18:06 +00:00
assert app.url_for("handler") == "/get"
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_shorthand_named_routes_get():
app = Sanic("app")
2018-12-30 11:18:06 +00:00
bp = Blueprint("test_bp", url_prefix="/bp")
2017-08-21 11:05:34 +01:00
2018-12-30 11:18:06 +00:00
@app.get("/get", name="route_get")
2017-08-21 11:05:34 +01:00
def handler(request):
2018-12-30 11:18:06 +00:00
return text("OK")
2017-08-21 11:05:34 +01:00
2018-12-30 11:18:06 +00:00
@bp.get("/get", name="route_bp")
2017-08-21 11:05:34 +01:00
def handler2(request):
2018-12-30 11:18:06 +00:00
return text("Blueprint")
2017-08-21 11:05:34 +01:00
app.blueprint(bp)
2021-02-08 10:18:29 +00:00
assert app.router.routes_all[("get",)].name == "app.route_get"
2018-12-30 11:18:06 +00:00
assert app.url_for("route_get") == "/get"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
assert (
app.router.routes_all[
(
"bp",
"get",
)
].name
== "app.test_bp.route_bp"
)
2018-12-30 11:18:06 +00:00
assert app.url_for("test_bp.route_bp") == "/bp/get"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("test_bp.handler2")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_shorthand_named_routes_post():
app = Sanic("app")
2018-12-30 11:18:06 +00:00
@app.post("/post", name="route_name")
2017-08-21 11:05:34 +01:00
def handler(request):
2018-12-30 11:18:06 +00:00
return text("OK")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
assert app.router.routes_all[("post",)].name == "app.route_name"
2018-12-30 11:18:06 +00:00
assert app.url_for("route_name") == "/post"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_shorthand_named_routes_put():
app = Sanic("app")
2018-12-30 11:18:06 +00:00
@app.put("/put", name="route_put")
2017-08-21 11:05:34 +01:00
def handler(request):
2018-12-30 11:18:06 +00:00
return text("OK")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
assert app.router.routes_all[("put",)].name == "app.route_put"
2018-12-30 11:18:06 +00:00
assert app.url_for("route_put") == "/put"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_shorthand_named_routes_delete():
app = Sanic("app")
2018-12-30 11:18:06 +00:00
@app.delete("/delete", name="route_delete")
2017-08-21 11:05:34 +01:00
def handler(request):
2018-12-30 11:18:06 +00:00
return text("OK")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
assert app.router.routes_all[("delete",)].name == "app.route_delete"
2018-12-30 11:18:06 +00:00
assert app.url_for("route_delete") == "/delete"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_shorthand_named_routes_patch():
app = Sanic("app")
2018-12-30 11:18:06 +00:00
@app.patch("/patch", name="route_patch")
2017-08-21 11:05:34 +01:00
def handler(request):
2018-12-30 11:18:06 +00:00
return text("OK")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
assert app.router.routes_all[("patch",)].name == "app.route_patch"
2018-12-30 11:18:06 +00:00
assert app.url_for("route_patch") == "/patch"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_shorthand_named_routes_head():
app = Sanic("app")
2018-12-30 11:18:06 +00:00
@app.head("/head", name="route_head")
2017-08-21 11:05:34 +01:00
def handler(request):
2018-12-30 11:18:06 +00:00
return text("OK")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
assert app.router.routes_all[("head",)].name == "app.route_head"
2018-12-30 11:18:06 +00:00
assert app.url_for("route_head") == "/head"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_shorthand_named_routes_options():
app = Sanic("app")
2018-12-30 11:18:06 +00:00
@app.options("/options", name="route_options")
2017-08-21 11:05:34 +01:00
def handler(request):
2018-12-30 11:18:06 +00:00
return text("OK")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
assert app.router.routes_all[("options",)].name == "app.route_options"
2018-12-30 11:18:06 +00:00
assert app.url_for("route_options") == "/options"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_named_static_routes():
app = Sanic("app")
2018-12-30 11:18:06 +00:00
@app.route("/test", name="route_test")
2017-08-21 11:05:34 +01:00
async def handler1(request):
2018-12-30 11:18:06 +00:00
return text("OK1")
2017-08-21 11:05:34 +01:00
2018-12-30 11:18:06 +00:00
@app.route("/pizazz", name="route_pizazz")
2017-08-21 11:05:34 +01:00
async def handler2(request):
2018-12-30 11:18:06 +00:00
return text("OK2")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
assert app.router.routes_all[("test",)].name == "app.route_test"
assert app.router.routes_static[("test",)][0].name == "app.route_test"
2018-12-30 11:18:06 +00:00
assert app.url_for("route_test") == "/test"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler1")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
assert app.router.routes_all[("pizazz",)].name == "app.route_pizazz"
assert app.router.routes_static[("pizazz",)][0].name == "app.route_pizazz"
2018-12-30 11:18:06 +00:00
assert app.url_for("route_pizazz") == "/pizazz"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler2")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_named_dynamic_route():
app = Sanic("app")
2017-08-21 11:05:34 +01:00
results = []
2018-12-30 11:18:06 +00:00
@app.route("/folder/<name>", name="route_dynamic")
2017-08-21 11:05:34 +01:00
async def handler(request, name):
results.append(name)
2018-12-30 11:18:06 +00:00
return text("OK")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
assert (
app.router.routes_all[
(
"folder",
"<name>",
)
].name
== "app.route_dynamic"
)
2018-12-30 11:18:06 +00:00
assert app.url_for("route_dynamic", name="test") == "/folder/test"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_dynamic_named_route_regex():
app = Sanic("app")
2018-12-30 11:18:06 +00:00
@app.route("/folder/<folder_id:[A-Za-z0-9]{0,4}>", name="route_re")
2017-08-21 11:05:34 +01:00
async def handler(request, folder_id):
2018-12-30 11:18:06 +00:00
return text("OK")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
route = app.router.routes_all[
(
"folder",
"<folder_id:[A-Za-z0-9]{0,4}>",
)
]
assert route.name == "app.route_re"
2018-12-30 11:18:06 +00:00
assert app.url_for("route_re", folder_id="test") == "/folder/test"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_dynamic_named_route_path():
app = Sanic("app")
2018-12-30 11:18:06 +00:00
@app.route("/<path:path>/info", name="route_dynamic_path")
2017-08-21 11:05:34 +01:00
async def handler(request, path):
2018-12-30 11:18:06 +00:00
return text("OK")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
route = app.router.routes_all[
(
"<path:path>",
"info",
)
]
assert route.name == "app.route_dynamic_path"
2018-12-30 11:18:06 +00:00
assert app.url_for("route_dynamic_path", path="path/1") == "/path/1/info"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_dynamic_named_route_unhashable():
app = Sanic("app")
2018-12-30 11:18:06 +00:00
@app.route(
"/folder/<unhashable:[A-Za-z0-9/]+>/end/", name="route_unhashable"
)
2017-08-21 11:05:34 +01:00
async def handler(request, unhashable):
2018-12-30 11:18:06 +00:00
return text("OK")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
route = app.router.routes_all[
(
"folder",
"<unhashable:[A-Za-z0-9/]+>",
"end",
)
]
assert route.name == "app.route_unhashable"
2018-12-30 11:18:06 +00:00
url = app.url_for("route_unhashable", unhashable="test/asdf")
assert url == "/folder/test/asdf/end"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_websocket_named_route():
app = Sanic("app")
2017-08-21 11:05:34 +01:00
ev = asyncio.Event()
2018-12-30 11:18:06 +00:00
@app.websocket("/ws", name="route_ws")
2017-08-21 11:05:34 +01:00
async def handler(request, ws):
assert ws.subprotocol is None
ev.set()
2021-02-08 10:18:29 +00:00
assert app.router.routes_all[("ws",)].name == "app.route_ws"
2018-12-30 11:18:06 +00:00
assert app.url_for("route_ws") == "/ws"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_websocket_named_route_with_subprotocols():
app = Sanic("app")
2017-08-21 11:05:34 +01:00
results = []
2018-12-30 11:18:06 +00:00
@app.websocket("/ws", subprotocols=["foo", "bar"], name="route_ws")
2017-08-21 11:05:34 +01:00
async def handler(request, ws):
results.append(ws.subprotocol)
2021-02-08 10:18:29 +00:00
assert app.router.routes_all[("ws",)].name == "app.route_ws"
2018-12-30 11:18:06 +00:00
assert app.url_for("route_ws") == "/ws"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_static_add_named_route():
app = Sanic("app")
2017-08-21 11:05:34 +01:00
async def handler1(request):
2018-12-30 11:18:06 +00:00
return text("OK1")
2017-08-21 11:05:34 +01:00
async def handler2(request):
2018-12-30 11:18:06 +00:00
return text("OK2")
2017-08-21 11:05:34 +01:00
2018-12-30 11:18:06 +00:00
app.add_route(handler1, "/test", name="route_test")
app.add_route(handler2, "/test2", name="route_test2")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
assert app.router.routes_all[("test",)].name == "app.route_test"
assert app.router.routes_static[("test",)][0].name == "app.route_test"
2018-12-30 11:18:06 +00:00
assert app.url_for("route_test") == "/test"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler1")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
assert app.router.routes_all[("test2",)].name == "app.route_test2"
assert app.router.routes_static[("test2",)][0].name == "app.route_test2"
2018-12-30 11:18:06 +00:00
assert app.url_for("route_test2") == "/test2"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler2")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_dynamic_add_named_route():
app = Sanic("app")
2017-08-21 11:05:34 +01:00
results = []
async def handler(request, name):
results.append(name)
2018-12-30 11:18:06 +00:00
return text("OK")
2017-08-21 11:05:34 +01:00
2018-12-30 11:18:06 +00:00
app.add_route(handler, "/folder/<name>", name="route_dynamic")
2021-02-08 10:18:29 +00:00
assert (
app.router.routes_all[("folder", "<name>")].name == "app.route_dynamic"
)
2018-12-30 11:18:06 +00:00
assert app.url_for("route_dynamic", name="test") == "/folder/test"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_dynamic_add_named_route_unhashable():
app = Sanic("app")
2017-08-21 11:05:34 +01:00
async def handler(request, unhashable):
2018-12-30 11:18:06 +00:00
return text("OK")
app.add_route(
handler,
"/folder/<unhashable:[A-Za-z0-9/]+>/end/",
name="route_unhashable",
)
2021-02-08 10:18:29 +00:00
route = app.router.routes_all[
(
"folder",
"<unhashable:[A-Za-z0-9/]+>",
"end",
)
]
assert route.name == "app.route_unhashable"
2018-12-30 11:18:06 +00:00
url = app.url_for("route_unhashable", unhashable="folder1")
assert url == "/folder/folder1/end"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler")
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
def test_overload_routes():
app = Sanic("app")
2018-12-30 11:18:06 +00:00
@app.route("/overload", methods=["GET"], name="route_first")
2017-08-21 11:05:34 +01:00
async def handler1(request):
2018-12-30 11:18:06 +00:00
return text("OK1")
2017-08-21 11:05:34 +01:00
2018-12-30 11:18:06 +00:00
@app.route("/overload", methods=["POST", "PUT"], name="route_second")
2018-10-22 21:25:38 +01:00
async def handler2(request):
2018-12-30 11:18:06 +00:00
return text("OK2")
2017-08-21 11:05:34 +01:00
2018-12-30 11:18:06 +00:00
request, response = app.test_client.get(app.url_for("route_first"))
assert response.text == "OK1"
2017-08-21 11:05:34 +01:00
2018-12-30 11:18:06 +00:00
request, response = app.test_client.post(app.url_for("route_first"))
assert response.text == "OK2"
2017-08-21 11:05:34 +01:00
2018-12-30 11:18:06 +00:00
request, response = app.test_client.put(app.url_for("route_first"))
assert response.text == "OK2"
2017-08-21 11:05:34 +01:00
2018-12-30 11:18:06 +00:00
request, response = app.test_client.get(app.url_for("route_second"))
assert response.text == "OK1"
2017-08-21 11:05:34 +01:00
2018-12-30 11:18:06 +00:00
request, response = app.test_client.post(app.url_for("route_second"))
assert response.text == "OK2"
2017-08-21 11:05:34 +01:00
2018-12-30 11:18:06 +00:00
request, response = app.test_client.put(app.url_for("route_second"))
assert response.text == "OK2"
2017-08-21 11:05:34 +01:00
2021-02-08 10:18:29 +00:00
assert app.router.routes_all[("overload",)].name == "app.route_first"
2017-08-21 11:05:34 +01:00
with pytest.raises(URLBuildError):
2018-12-30 11:18:06 +00:00
app.url_for("handler1")
2018-12-30 11:18:06 +00:00
assert app.url_for("route_first") == "/overload"
assert app.url_for("route_second") == app.url_for("route_first")