1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2025-03-14 12:33:37 +00:00
pds-2021-g2-nest/code/backend/nest_backend/test/login_test.py
Lorenzo Balugani bbf7c1e360 Uniformed json output
Warning: breaking changes ahead! All the data that gets returned by functions is now incapsulated within "data" (response['data']).
2021-04-26 16:26:25 +02:00

20 lines
568 B
Python

import requests
import json
auth_code = ""
def test_login():
global auth_code
r = requests.post('http://localhost:5000/api/login', json={'email': 'admin@admin.com', 'password': 'amogus'})
j = json.loads(r.text)
assert j['result'] == "failure"
r = requests.post('http://localhost:5000/api/login', json={'email': 'admin@admin.com', 'password': 'password'})
j = json.loads(r.text)
assert j['result'] == "success"
auth_code = j['data']['access_token']
print("Login eseguito correttamente!")
print("Testing del login")
test_login()