2016-10-14 11:23:48 +01:00
|
|
|
from json import loads as json_loads, dumps as json_dumps
|
|
|
|
from sanic import Sanic
|
|
|
|
from sanic.response import json, text
|
2016-10-14 23:38:43 +01:00
|
|
|
from sanic.utils import sanic_endpoint_test
|
2016-10-14 11:23:48 +01:00
|
|
|
|
2016-10-15 03:53:49 +01:00
|
|
|
|
2016-10-14 11:23:48 +01:00
|
|
|
# ------------------------------------------------------------ #
|
|
|
|
# GET
|
|
|
|
# ------------------------------------------------------------ #
|
|
|
|
|
|
|
|
def test_sync():
|
2016-10-15 03:53:49 +01:00
|
|
|
app = Sanic('test_text')
|
|
|
|
|
|
|
|
@app.route('/')
|
|
|
|
def handler(request):
|
|
|
|
return text('Hello')
|
2016-10-14 11:23:48 +01:00
|
|
|
|
2016-10-15 03:53:49 +01:00
|
|
|
request, response = sanic_endpoint_test(app)
|
2016-10-14 11:23:48 +01:00
|
|
|
|
2016-10-15 03:53:49 +01:00
|
|
|
assert response.text == 'Hello'
|
2016-10-14 11:23:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_text():
|
2016-10-15 03:53:49 +01:00
|
|
|
app = Sanic('test_text')
|
2016-10-14 11:23:48 +01:00
|
|
|
|
2016-10-15 03:53:49 +01:00
|
|
|
@app.route('/')
|
|
|
|
async def handler(request):
|
|
|
|
return text('Hello')
|
2016-10-14 11:23:48 +01:00
|
|
|
|
2016-10-15 03:53:49 +01:00
|
|
|
request, response = sanic_endpoint_test(app)
|
2016-10-14 11:23:48 +01:00
|
|
|
|
2016-10-15 03:53:49 +01:00
|
|
|
assert response.text == 'Hello'
|
2016-10-14 11:23:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_json():
|
2016-10-15 03:53:49 +01:00
|
|
|
app = Sanic('test_json')
|
2016-10-14 11:23:48 +01:00
|
|
|
|
2016-10-15 03:53:49 +01:00
|
|
|
@app.route('/')
|
|
|
|
async def handler(request):
|
|
|
|
return json({"test": True})
|
2016-10-14 11:23:48 +01:00
|
|
|
|
2016-10-15 03:53:49 +01:00
|
|
|
request, response = sanic_endpoint_test(app)
|
2016-10-14 11:23:48 +01:00
|
|
|
|
2016-10-15 03:53:49 +01:00
|
|
|
try:
|
|
|
|
results = json_loads(response.text)
|
|
|
|
except:
|
|
|
|
raise ValueError("Expected JSON response but got '{}'".format(response))
|
2016-10-14 11:23:48 +01:00
|
|
|
|
2016-10-15 03:53:49 +01:00
|
|
|
assert results.get('test') == True
|
2016-10-14 11:23:48 +01:00
|
|
|
|
|
|
|
|
2016-12-08 04:33:56 +00:00
|
|
|
def test_invalid_json():
|
|
|
|
app = Sanic('test_json')
|
|
|
|
|
|
|
|
@app.route('/')
|
|
|
|
async def handler(request):
|
|
|
|
return json(request.json())
|
|
|
|
|
|
|
|
data = "I am not json"
|
|
|
|
request, response = sanic_endpoint_test(app, data=data)
|
|
|
|
|
|
|
|
assert response.status == 400
|
|
|
|
|
|
|
|
|
2016-10-14 11:23:48 +01:00
|
|
|
def test_query_string():
|
2016-10-15 03:53:49 +01:00
|
|
|
app = Sanic('test_query_string')
|
|
|
|
|
|
|
|
@app.route('/')
|
|
|
|
async def handler(request):
|
|
|
|
return text('OK')
|
2016-10-14 11:23:48 +01:00
|
|
|
|
2016-11-05 18:12:55 +00:00
|
|
|
request, response = sanic_endpoint_test(app, params=[("test1", "1"), ("test2", "false"), ("test2", "true")])
|
2016-10-14 11:23:48 +01:00
|
|
|
|
2016-10-15 03:53:49 +01:00
|
|
|
assert request.args.get('test1') == '1'
|
|
|
|
assert request.args.get('test2') == 'false'
|
2016-10-14 11:23:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
# ------------------------------------------------------------ #
|
|
|
|
# POST
|
|
|
|
# ------------------------------------------------------------ #
|
|
|
|
|
|
|
|
def test_post_json():
|
2016-10-15 03:53:49 +01:00
|
|
|
app = Sanic('test_post_json')
|
2016-10-14 11:23:48 +01:00
|
|
|
|
2016-10-15 03:53:49 +01:00
|
|
|
@app.route('/')
|
|
|
|
async def handler(request):
|
|
|
|
return text('OK')
|
2016-10-14 11:23:48 +01:00
|
|
|
|
2016-10-15 03:53:49 +01:00
|
|
|
payload = {'test': 'OK'}
|
|
|
|
headers = {'content-type': 'application/json'}
|
2016-10-14 11:23:48 +01:00
|
|
|
|
2016-10-15 03:53:49 +01:00
|
|
|
request, response = sanic_endpoint_test(app, data=json_dumps(payload), headers=headers)
|
2016-10-14 11:23:48 +01:00
|
|
|
|
2016-10-15 03:53:49 +01:00
|
|
|
assert request.json.get('test') == 'OK'
|
|
|
|
assert response.text == 'OK'
|
2016-10-19 08:23:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
def test_post_form_urlencoded():
|
|
|
|
app = Sanic('test_post_form_urlencoded')
|
|
|
|
|
|
|
|
@app.route('/')
|
|
|
|
async def handler(request):
|
|
|
|
return text('OK')
|
|
|
|
|
|
|
|
payload = 'test=OK'
|
|
|
|
headers = {'content-type': 'application/x-www-form-urlencoded'}
|
|
|
|
|
|
|
|
request, response = sanic_endpoint_test(app, data=payload, headers=headers)
|
|
|
|
|
|
|
|
assert request.form.get('test') == 'OK'
|
|
|
|
|
|
|
|
|
|
|
|
def test_post_form_multipart_form_data():
|
|
|
|
app = Sanic('test_post_form_multipart_form_data')
|
|
|
|
|
|
|
|
@app.route('/')
|
|
|
|
async def handler(request):
|
|
|
|
return text('OK')
|
|
|
|
|
|
|
|
payload = '------sanic\r\n' \
|
|
|
|
'Content-Disposition: form-data; name="test"\r\n' \
|
|
|
|
'\r\n' \
|
|
|
|
'OK\r\n' \
|
|
|
|
'------sanic--\r\n'
|
|
|
|
|
|
|
|
headers = {'content-type': 'multipart/form-data; boundary=----sanic'}
|
|
|
|
|
|
|
|
request, response = sanic_endpoint_test(app, data=payload, headers=headers)
|
|
|
|
|
|
|
|
assert request.form.get('test') == 'OK'
|