mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-23 13:34:19 +00:00
25 lines
745 B
Python
25 lines
745 B
Python
import requests
|
|
import json
|
|
|
|
auth_code = ""
|
|
|
|
|
|
def test_user_create():
|
|
global auth_code
|
|
|
|
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']
|
|
|
|
r = requests.post(f'http://localhost:5000/api/user/create', headers={'authorization': "Bearer " + auth_code},
|
|
json={'email': 'utente5@nest.com', 'password': '1234', 'username': 'utente5'})
|
|
j = json.loads(r.text)
|
|
assert j['result'] == "success"
|
|
|
|
auth_code = j['data']['access_token']
|
|
print("User_create eseguito correttamente!")
|
|
|
|
|
|
print("Testing del metodo user_create")
|
|
test_user_create()
|