Cleaned up test.

This commit is contained in:
Sean Parsons 2016-12-26 06:27:56 -05:00
parent daf845a6cd
commit 57fbca8997

View File

@ -119,11 +119,9 @@ def test_post_token():
async def handler(request): async def handler(request):
return text('OK') return text('OK')
payload = {'test': 'OK'}
# uuid4 generated token. # uuid4 generated token.
token = 'a1d895e0-553a-421a-8e22-5ff8ecb48cbf' token = 'a1d895e0-553a-421a-8e22-5ff8ecb48cbf'
payload = {'test': 'OK'}
headers = { headers = {
'content-type': 'application/json', 'content-type': 'application/json',
'Authorization': 'Token {}'.format(token) 'Authorization': 'Token {}'.format(token)
@ -132,33 +130,6 @@ def test_post_token():
request, response = sanic_endpoint_test(app, data=json_dumps(payload), headers=headers) request, response = sanic_endpoint_test(app, data=json_dumps(payload), headers=headers)
assert request.token == token assert request.token == token
assert response.text == 'OK'
# uuid4 generated token.
token = 'a1d895e0-553a-421a-8e22'
headers = {
'content-type': 'application/json',
'Authorization': 'Bearer {}'.format(token)
}
request, response = sanic_endpoint_test(app, data=json_dumps(payload), headers=headers)
assert request.token == token
assert response.text == 'OK'
# uuid4 generated token.
token = '421a-8e22-5ff8ecb48cbf'
headers = {
'content-type': 'application/json',
'Authorization': 'Basic {}'.format(token)
}
request, response = sanic_endpoint_test(app, data=json_dumps(payload), headers=headers)
assert request.token == token
assert response.text == 'OK'
def test_post_form_urlencoded(): def test_post_form_urlencoded():