1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2025-03-15 04:53:35 +00:00
pds-2021-g2-nest/code/backend/nest_backend/test/login_test.py

21 lines
568 B
Python
Raw Normal View History

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()