sanic/tests/test_named_routes.py

351 lines
10 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
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)
2018-08-26 15:43:14 +01:00
def test_versioned_named_routes_get(app, method):
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:
print(func)
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:
print(func)
raise
app.blueprint(bp)
assert app.router.routes_all[f"/v1/{method}"].name == route_name
2017-08-21 11:05:34 +01:00
route = app.router.routes_all[f"/v1/bp/{method}"]
assert route.name == f"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
2018-08-26 15:43:14 +01:00
def test_shorthand_default_routes_get(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
2018-12-30 11:18:06 +00:00
assert app.router.routes_all["/get"].name == "handler"
assert app.url_for("handler") == "/get"
2017-08-21 11:05:34 +01:00
2018-08-26 15:43:14 +01:00
def test_shorthand_named_routes_get(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)
2018-12-30 11:18:06 +00:00
assert app.router.routes_all["/get"].name == "route_get"
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
2018-12-30 11:18:06 +00:00
assert app.router.routes_all["/bp/get"].name == "test_bp.route_bp"
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
2018-08-26 15:43:14 +01:00
def test_shorthand_named_routes_post(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
2018-12-30 11:18:06 +00:00
assert app.router.routes_all["/post"].name == "route_name"
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
2018-08-26 15:43:14 +01:00
def test_shorthand_named_routes_put(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
2018-12-30 11:18:06 +00:00
assert app.router.routes_all["/put"].name == "route_put"
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
2018-08-26 15:43:14 +01:00
def test_shorthand_named_routes_delete(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
2018-12-30 11:18:06 +00:00
assert app.router.routes_all["/delete"].name == "route_delete"
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
2018-08-26 15:43:14 +01:00
def test_shorthand_named_routes_patch(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
2018-12-30 11:18:06 +00:00
assert app.router.routes_all["/patch"].name == "route_patch"
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
2018-08-26 15:43:14 +01:00
def test_shorthand_named_routes_head(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
2018-12-30 11:18:06 +00:00
assert app.router.routes_all["/head"].name == "route_head"
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
2018-08-26 15:43:14 +01:00
def test_shorthand_named_routes_options(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
2018-12-30 11:18:06 +00:00
assert app.router.routes_all["/options"].name == "route_options"
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
2018-08-26 15:43:14 +01:00
def test_named_static_routes(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
2018-12-30 11:18:06 +00:00
assert app.router.routes_all["/test"].name == "route_test"
assert app.router.routes_static["/test"].name == "route_test"
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
2018-12-30 11:18:06 +00:00
assert app.router.routes_all["/pizazz"].name == "route_pizazz"
assert app.router.routes_static["/pizazz"].name == "route_pizazz"
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
2018-08-26 15:43:14 +01:00
def test_named_dynamic_route(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
2018-12-30 11:18:06 +00:00
assert app.router.routes_all["/folder/<name>"].name == "route_dynamic"
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
2018-08-26 15:43:14 +01:00
def test_dynamic_named_route_regex(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
2018-12-30 11:18:06 +00:00
route = app.router.routes_all["/folder/<folder_id:[A-Za-z0-9]{0,4}>"]
assert route.name == "route_re"
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
2018-08-26 15:43:14 +01:00
def test_dynamic_named_route_path(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
2018-12-30 11:18:06 +00:00
route = app.router.routes_all["/<path:path>/info"]
assert route.name == "route_dynamic_path"
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
2018-08-26 15:43:14 +01:00
def test_dynamic_named_route_unhashable(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
2018-12-30 11:18:06 +00:00
route = app.router.routes_all["/folder/<unhashable:[A-Za-z0-9/]+>/end/"]
assert route.name == "route_unhashable"
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
2018-08-26 15:43:14 +01:00
def test_websocket_named_route(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()
2018-12-30 11:18:06 +00:00
assert app.router.routes_all["/ws"].name == "route_ws"
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
2018-08-26 15:43:14 +01:00
def test_websocket_named_route_with_subprotocols(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)
2018-12-30 11:18:06 +00:00
assert app.router.routes_all["/ws"].name == "route_ws"
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
2018-08-26 15:43:14 +01:00
def test_static_add_named_route(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
2018-12-30 11:18:06 +00:00
assert app.router.routes_all["/test"].name == "route_test"
assert app.router.routes_static["/test"].name == "route_test"
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
2018-12-30 11:18:06 +00:00
assert app.router.routes_all["/test2"].name == "route_test2"
assert app.router.routes_static["/test2"].name == "route_test2"
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
2018-08-26 15:43:14 +01:00
def test_dynamic_add_named_route(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")
assert app.router.routes_all["/folder/<name>"].name == "route_dynamic"
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
2018-08-26 15:43:14 +01:00
def test_dynamic_add_named_route_unhashable(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",
)
route = app.router.routes_all["/folder/<unhashable:[A-Za-z0-9/]+>/end/"]
assert route.name == "route_unhashable"
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
2018-08-26 15:43:14 +01:00
def test_overload_routes(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
2018-12-30 11:18:06 +00:00
assert app.router.routes_all["/overload"].name == "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")