2016-11-25 07:10:25 +00:00
|
|
|
from sanic import Sanic
|
|
|
|
from sanic.response import text, HTTPResponse
|
2016-11-26 06:45:08 +00:00
|
|
|
from sanic.views import HTTPMethodView
|
2016-11-25 07:10:25 +00:00
|
|
|
from sanic.blueprints import Blueprint
|
|
|
|
from sanic.request import Request
|
|
|
|
from sanic.utils import sanic_endpoint_test
|
|
|
|
|
|
|
|
|
|
|
|
def test_methods():
|
|
|
|
app = Sanic('test_methods')
|
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
class DummyView(HTTPMethodView):
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
def get(self, request):
|
2016-11-25 07:10:25 +00:00
|
|
|
return text('I am get method')
|
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
def post(self, request):
|
2016-11-25 07:10:25 +00:00
|
|
|
return text('I am post method')
|
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
def put(self, request):
|
2016-11-25 07:10:25 +00:00
|
|
|
return text('I am put method')
|
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
def patch(self, request):
|
2016-11-25 07:10:25 +00:00
|
|
|
return text('I am patch method')
|
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
def delete(self, request):
|
2016-11-25 07:10:25 +00:00
|
|
|
return text('I am delete method')
|
|
|
|
|
2017-01-07 04:30:23 +00:00
|
|
|
app.add_route(DummyView.as_view(), '/')
|
2016-11-25 07:10:25 +00:00
|
|
|
|
|
|
|
request, response = sanic_endpoint_test(app, method="get")
|
|
|
|
assert response.text == 'I am get method'
|
|
|
|
request, response = sanic_endpoint_test(app, method="post")
|
|
|
|
assert response.text == 'I am post method'
|
|
|
|
request, response = sanic_endpoint_test(app, method="put")
|
|
|
|
assert response.text == 'I am put method'
|
|
|
|
request, response = sanic_endpoint_test(app, method="patch")
|
|
|
|
assert response.text == 'I am patch method'
|
|
|
|
request, response = sanic_endpoint_test(app, method="delete")
|
|
|
|
assert response.text == 'I am delete method'
|
|
|
|
|
|
|
|
|
|
|
|
def test_unexisting_methods():
|
|
|
|
app = Sanic('test_unexisting_methods')
|
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
class DummyView(HTTPMethodView):
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
def get(self, request):
|
2016-11-25 07:10:25 +00:00
|
|
|
return text('I am get method')
|
|
|
|
|
2017-01-07 04:30:23 +00:00
|
|
|
app.add_route(DummyView.as_view(), '/')
|
2016-11-25 07:10:25 +00:00
|
|
|
request, response = sanic_endpoint_test(app, method="get")
|
|
|
|
assert response.text == 'I am get method'
|
|
|
|
request, response = sanic_endpoint_test(app, method="post")
|
|
|
|
assert response.text == 'Error: Method POST not allowed for URL /'
|
|
|
|
|
|
|
|
|
|
|
|
def test_argument_methods():
|
|
|
|
app = Sanic('test_argument_methods')
|
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
class DummyView(HTTPMethodView):
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
def get(self, request, my_param_here):
|
2016-11-25 07:10:25 +00:00
|
|
|
return text('I am get method with %s' % my_param_here)
|
|
|
|
|
2017-01-07 04:30:23 +00:00
|
|
|
app.add_route(DummyView.as_view(), '/<my_param_here>')
|
2016-11-25 07:10:25 +00:00
|
|
|
|
|
|
|
request, response = sanic_endpoint_test(app, uri='/test123')
|
|
|
|
|
|
|
|
assert response.text == 'I am get method with test123'
|
|
|
|
|
|
|
|
|
|
|
|
def test_with_bp():
|
|
|
|
app = Sanic('test_with_bp')
|
|
|
|
bp = Blueprint('test_text')
|
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
class DummyView(HTTPMethodView):
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
def get(self, request):
|
2016-11-25 07:10:25 +00:00
|
|
|
return text('I am get method')
|
|
|
|
|
2017-01-07 04:30:23 +00:00
|
|
|
bp.add_route(DummyView.as_view(), '/')
|
2016-11-25 07:10:25 +00:00
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
request, response = sanic_endpoint_test(app)
|
|
|
|
|
|
|
|
assert response.text == 'I am get method'
|
|
|
|
|
|
|
|
|
|
|
|
def test_with_bp_with_url_prefix():
|
|
|
|
app = Sanic('test_with_bp_with_url_prefix')
|
|
|
|
bp = Blueprint('test_text', url_prefix='/test1')
|
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
class DummyView(HTTPMethodView):
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
def get(self, request):
|
2016-11-25 07:10:25 +00:00
|
|
|
return text('I am get method')
|
|
|
|
|
2017-01-07 04:30:23 +00:00
|
|
|
bp.add_route(DummyView.as_view(), '/')
|
2016-11-25 07:10:25 +00:00
|
|
|
|
|
|
|
app.blueprint(bp)
|
|
|
|
request, response = sanic_endpoint_test(app, uri='/test1/')
|
|
|
|
|
|
|
|
assert response.text == 'I am get method'
|
|
|
|
|
|
|
|
|
|
|
|
def test_with_middleware():
|
|
|
|
app = Sanic('test_with_middleware')
|
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
class DummyView(HTTPMethodView):
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
def get(self, request):
|
2016-11-25 07:10:25 +00:00
|
|
|
return text('I am get method')
|
|
|
|
|
2017-01-07 04:30:23 +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)
|
|
|
|
|
|
|
|
request, response = sanic_endpoint_test(app)
|
|
|
|
|
|
|
|
assert response.text == 'I am get method'
|
|
|
|
assert type(results[0]) is Request
|
|
|
|
|
|
|
|
|
|
|
|
def test_with_middleware_response():
|
|
|
|
app = Sanic('test_with_middleware_response')
|
|
|
|
|
|
|
|
results = []
|
|
|
|
|
|
|
|
@app.middleware('request')
|
|
|
|
async def process_response(request):
|
|
|
|
results.append(request)
|
|
|
|
|
|
|
|
@app.middleware('response')
|
|
|
|
async def process_response(request, response):
|
|
|
|
results.append(request)
|
|
|
|
results.append(response)
|
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
class DummyView(HTTPMethodView):
|
2016-11-25 07:10:25 +00:00
|
|
|
|
2016-11-26 06:45:08 +00:00
|
|
|
def get(self, request):
|
2016-11-25 07:10:25 +00:00
|
|
|
return text('I am get method')
|
|
|
|
|
2017-01-07 04:30:23 +00:00
|
|
|
app.add_route(DummyView.as_view(), '/')
|
2016-11-25 07:10:25 +00:00
|
|
|
|
|
|
|
request, response = sanic_endpoint_test(app)
|
|
|
|
|
|
|
|
assert response.text == 'I am get method'
|
|
|
|
assert type(results[0]) is Request
|
|
|
|
assert type(results[1]) is Request
|
|
|
|
assert issubclass(type(results[2]), HTTPResponse)
|
2017-01-07 05:13:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_with_custom_class_methods():
|
|
|
|
app = Sanic('test_with_custom_class_methods')
|
|
|
|
|
|
|
|
class DummyView(HTTPMethodView):
|
|
|
|
global_var = 0
|
|
|
|
|
|
|
|
def _iternal_method(self):
|
|
|
|
self.global_var += 10
|
|
|
|
|
|
|
|
def get(self, request):
|
|
|
|
self._iternal_method()
|
|
|
|
return text('I am get method and global var is {}'.format(self.global_var))
|
|
|
|
|
|
|
|
app.add_route(DummyView.as_view(), '/')
|
|
|
|
request, response = sanic_endpoint_test(app, method="get")
|
|
|
|
assert response.text == 'I am get method and global var is 10'
|
|
|
|
|
|
|
|
|
|
|
|
def test_with_decorator():
|
|
|
|
app = Sanic('test_with_decorator')
|
|
|
|
|
|
|
|
results = []
|
|
|
|
|
|
|
|
def stupid_decorator(view):
|
|
|
|
def decorator(*args, **kwargs):
|
|
|
|
results.append(1)
|
|
|
|
return view(*args, **kwargs)
|
|
|
|
return decorator
|
|
|
|
|
|
|
|
class DummyView(HTTPMethodView):
|
|
|
|
decorators = [stupid_decorator]
|
|
|
|
|
|
|
|
def get(self, request):
|
|
|
|
return text('I am get method')
|
|
|
|
|
|
|
|
app.add_route(DummyView.as_view(), '/')
|
|
|
|
request, response = sanic_endpoint_test(app, method="get", debug=True)
|
|
|
|
assert response.text == 'I am get method'
|
|
|
|
assert results[0] == 1
|