2017-01-28 04:05:46 +00:00
|
|
|
import pytest as pytest
|
|
|
|
|
2016-11-25 07:10:25 +00:00
|
|
|
from sanic.blueprints import Blueprint
|
2017-01-28 04:05:46 +00:00
|
|
|
from sanic.constants import HTTP_METHODS
|
2019-04-23 22:44:42 +01:00
|
|
|
from sanic.exceptions import InvalidUsage
|
|
|
|
from sanic.request import Request
|
|
|
|
from sanic.response import HTTPResponse, text
|
|
|
|
from sanic.views import CompositionView, HTTPMethodView
|
2016-11-25 07:10:25 +00: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_methods(app, method):
|
2016-11-26 06:45:08 +00:00
|
|
|
class DummyView(HTTPMethodView):
|
2017-03-14 18:53:58 +00:00
|
|
|
async def get(self, request):
|
2017-05-08 15:04:45 +01:00
|
|
|
assert request.stream is None
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("", headers={"method": "GET"})
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
def post(self, request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("", headers={"method": "POST"})
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2017-03-14 18:53:58 +00:00
|
|
|
async def put(self, request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("", headers={"method": "PUT"})
|
2017-01-28 04:05:46 +00:00
|
|
|
|
|
|
|
def head(self, request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("", headers={"method": "HEAD"})
|
2017-01-28 04:05:46 +00:00
|
|
|
|
|
|
|
def options(self, request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("", headers={"method": "OPTIONS"})
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2017-03-14 18:53:58 +00:00
|
|
|
async def patch(self, request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("", headers={"method": "PATCH"})
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
def delete(self, request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("", headers={"method": "DELETE"})
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
app.add_route(DummyView.as_view(), "/")
|
2017-05-08 15:04:45 +01:00
|
|
|
assert app.is_request_stream is False
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = getattr(app.test_client, method.lower())("/")
|
|
|
|
assert response.headers["method"] == method
|
2016-11-25 07:10:25 +00:00
|
|
|
|
|
|
|
|
2018-08-26 15:43:14 +01:00
|
|
|
def test_unexisting_methods(app):
|
2016-11-26 06:45:08 +00:00
|
|
|
class DummyView(HTTPMethodView):
|
|
|
|
def get(self, request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("I am get method")
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
app.add_route(DummyView.as_view(), "/")
|
|
|
|
request, response = app.test_client.get("/")
|
|
|
|
assert response.text == "I am get method"
|
|
|
|
request, response = app.test_client.post("/")
|
2020-01-20 14:58:14 +00:00
|
|
|
assert "Method POST not allowed for URL /" in response.text
|
2016-11-25 07:10:25 +00:00
|
|
|
|
|
|
|
|
2018-08-26 15:43:14 +01:00
|
|
|
def test_argument_methods(app):
|
2016-11-26 06:45:08 +00:00
|
|
|
class DummyView(HTTPMethodView):
|
|
|
|
def get(self, request, my_param_here):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("I am get method with %s" % my_param_here)
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
app.add_route(DummyView.as_view(), "/<my_param_here>")
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/test123")
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
assert response.text == "I am get method with test123"
|
2016-11-25 07:10:25 +00:00
|
|
|
|
|
|
|
|
2018-08-26 15:43:14 +01:00
|
|
|
def test_with_bp(app):
|
2018-12-30 11:18:06 +00:00
|
|
|
bp = Blueprint("test_text")
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
class DummyView(HTTPMethodView):
|
|
|
|
def get(self, request):
|
2017-05-08 15:04:45 +01:00
|
|
|
assert request.stream is None
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("I am get method")
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
bp.add_route(DummyView.as_view(), "/")
|
2016-11-25 07:10:25 +00:00
|
|
|
|
|
|
|
app.blueprint(bp)
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/")
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2017-05-08 15:04:45 +01:00
|
|
|
assert app.is_request_stream is False
|
2018-12-30 11:18:06 +00:00
|
|
|
assert response.text == "I am get method"
|
2016-11-25 07:10:25 +00:00
|
|
|
|
|
|
|
|
2018-08-26 15:43:14 +01:00
|
|
|
def test_with_bp_with_url_prefix(app):
|
2018-12-30 11:18:06 +00:00
|
|
|
bp = Blueprint("test_text", url_prefix="/test1")
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
class DummyView(HTTPMethodView):
|
|
|
|
def get(self, request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("I am get method")
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
bp.add_route(DummyView.as_view(), "/")
|
2016-11-25 07:10:25 +00:00
|
|
|
|
|
|
|
app.blueprint(bp)
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/test1/")
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
assert response.text == "I am get method"
|
2016-11-25 07:10:25 +00:00
|
|
|
|
|
|
|
|
2018-08-26 15:43:14 +01:00
|
|
|
def test_with_middleware(app):
|
2016-11-26 06:45:08 +00:00
|
|
|
class DummyView(HTTPMethodView):
|
|
|
|
def get(self, request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("I am get method")
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
app.add_route(DummyView.as_view(), "/")
|
2016-11-25 07:10:25 +00:00
|
|
|
|
|
|
|
results = []
|
|
|
|
|
|
|
|
@app.middleware
|
|
|
|
async def handler(request):
|
|
|
|
results.append(request)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/")
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
assert response.text == "I am get method"
|
2016-11-25 07:10:25 +00:00
|
|
|
assert type(results[0]) is Request
|
|
|
|
|
|
|
|
|
2018-08-26 15:43:14 +01:00
|
|
|
def test_with_middleware_response(app):
|
2016-11-25 07:10:25 +00:00
|
|
|
results = []
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@app.middleware("request")
|
2018-10-22 21:25:38 +01:00
|
|
|
async def process_request(request):
|
2016-11-25 07:10:25 +00:00
|
|
|
results.append(request)
|
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
@app.middleware("response")
|
2016-11-25 07:10:25 +00:00
|
|
|
async def process_response(request, response):
|
|
|
|
results.append(request)
|
|
|
|
results.append(response)
|
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
class DummyView(HTTPMethodView):
|
|
|
|
def get(self, request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("I am get method")
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
app.add_route(DummyView.as_view(), "/")
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
request, response = app.test_client.get("/")
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
assert response.text == "I am get method"
|
2016-11-25 07:10:25 +00:00
|
|
|
assert type(results[0]) is Request
|
|
|
|
assert type(results[1]) is Request
|
2017-01-27 10:11:29 +00:00
|
|
|
assert isinstance(results[2], HTTPResponse)
|
2017-01-07 05:13:49 +00:00
|
|
|
|
|
|
|
|
2018-08-26 15:43:14 +01:00
|
|
|
def test_with_custom_class_methods(app):
|
2017-01-07 05:13:49 +00:00
|
|
|
class DummyView(HTTPMethodView):
|
|
|
|
global_var = 0
|
|
|
|
|
|
|
|
def _iternal_method(self):
|
|
|
|
self.global_var += 10
|
|
|
|
|
|
|
|
def get(self, request):
|
|
|
|
self._iternal_method()
|
2018-12-30 11:18:06 +00:00
|
|
|
return text(
|
2020-06-05 15:14:18 +01:00
|
|
|
f"I am get method and global var " f"is {self.global_var}"
|
2018-12-30 11:18:06 +00:00
|
|
|
)
|
2017-01-07 05:13:49 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
app.add_route(DummyView.as_view(), "/")
|
|
|
|
request, response = app.test_client.get("/")
|
|
|
|
assert response.text == "I am get method and global var is 10"
|
2017-01-07 05:13:49 +00:00
|
|
|
|
|
|
|
|
2018-08-26 15:43:14 +01:00
|
|
|
def test_with_decorator(app):
|
2017-01-07 05:13:49 +00:00
|
|
|
results = []
|
|
|
|
|
|
|
|
def stupid_decorator(view):
|
|
|
|
def decorator(*args, **kwargs):
|
|
|
|
results.append(1)
|
|
|
|
return view(*args, **kwargs)
|
2018-12-30 11:18:06 +00:00
|
|
|
|
2017-01-07 05:13:49 +00:00
|
|
|
return decorator
|
|
|
|
|
|
|
|
class DummyView(HTTPMethodView):
|
|
|
|
decorators = [stupid_decorator]
|
|
|
|
|
|
|
|
def get(self, request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("I am get method")
|
2017-01-07 05:13:49 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
app.add_route(DummyView.as_view(), "/")
|
|
|
|
request, response = app.test_client.get("/")
|
|
|
|
assert response.text == "I am get method"
|
2017-01-07 05:13:49 +00:00
|
|
|
assert results[0] == 1
|
2017-02-02 21:24:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_composition_view_rejects_incorrect_methods():
|
|
|
|
def foo(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("Foo")
|
2017-02-02 21:24:16 +00:00
|
|
|
|
|
|
|
view = CompositionView()
|
|
|
|
|
|
|
|
with pytest.raises(InvalidUsage) as e:
|
2018-12-30 11:18:06 +00:00
|
|
|
view.add(["GET", "FOO"], foo)
|
2017-02-02 21:24:16 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
assert str(e.value) == "FOO is not a valid HTTP method."
|
2017-02-02 21:24:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_composition_view_rejects_duplicate_methods():
|
|
|
|
def foo(request):
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("Foo")
|
2017-02-02 21:24:16 +00:00
|
|
|
|
|
|
|
view = CompositionView()
|
|
|
|
|
|
|
|
with pytest.raises(InvalidUsage) as e:
|
2018-12-30 11:18:06 +00:00
|
|
|
view.add(["GET", "POST", "GET"], foo)
|
2017-02-02 21:24:16 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
assert str(e.value) == "Method GET is already registered."
|
2017-02-02 21:24:16 +00: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_composition_view_runs_methods_as_expected(app, method):
|
2017-02-02 21:24:16 +00:00
|
|
|
view = CompositionView()
|
2017-05-08 15:04:45 +01:00
|
|
|
|
|
|
|
def first(request):
|
|
|
|
assert request.stream is None
|
2018-12-30 11:18:06 +00:00
|
|
|
return text("first method")
|
|
|
|
|
|
|
|
view.add(["GET", "POST", "PUT"], first)
|
|
|
|
view.add(["DELETE", "PATCH"], lambda x: text("second method"))
|
2017-02-02 21:24:16 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
app.add_route(view, "/")
|
2017-05-08 15:04:45 +01:00
|
|
|
assert app.is_request_stream is False
|
2017-02-02 21:24:16 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
if method in ["GET", "POST", "PUT"]:
|
|
|
|
request, response = getattr(app.test_client, method.lower())("/")
|
|
|
|
assert response.text == "first method"
|
2017-02-02 21:24:16 +00:00
|
|
|
|
2018-12-13 17:50:50 +00:00
|
|
|
response = view(request)
|
2018-12-30 11:18:06 +00:00
|
|
|
assert response.body.decode() == "first method"
|
2018-12-13 17:50:50 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
if method in ["DELETE", "PATCH"]:
|
|
|
|
request, response = getattr(app.test_client, method.lower())("/")
|
|
|
|
assert response.text == "second method"
|
2017-02-02 21:24:16 +00:00
|
|
|
|
2018-12-13 17:50:50 +00:00
|
|
|
response = view(request)
|
2018-12-30 11:18:06 +00:00
|
|
|
assert response.body.decode() == "second method"
|
2018-12-13 17:50:50 +00:00
|
|
|
|
2017-02-13 16:45:55 +00: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_composition_view_rejects_invalid_methods(app, method):
|
2017-02-02 21:24:16 +00:00
|
|
|
view = CompositionView()
|
2018-12-30 11:18:06 +00:00
|
|
|
view.add(["GET", "POST", "PUT"], lambda x: text("first method"))
|
2017-02-02 21:24:16 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
app.add_route(view, "/")
|
2017-02-13 16:50:09 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
if method in ["GET", "POST", "PUT"]:
|
|
|
|
request, response = getattr(app.test_client, method.lower())("/")
|
2017-02-13 16:50:09 +00:00
|
|
|
assert response.status == 200
|
2018-12-30 11:18:06 +00:00
|
|
|
assert response.text == "first method"
|
2017-02-13 16:50:09 +00:00
|
|
|
|
2018-12-30 11:18:06 +00:00
|
|
|
if method in ["DELETE", "PATCH"]:
|
|
|
|
request, response = getattr(app.test_client, method.lower())("/")
|
2017-02-02 21:24:16 +00:00
|
|
|
assert response.status == 405
|