1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-23 05:24:18 +00:00
pds-2021-g2-nest/code/backend/nest_backend/test/user_create_test.py

32 lines
798 B
Python
Raw Normal View History

import unittest
2021-04-26 21:19:17 +00:00
import requests
import json
2021-04-26 21:19:17 +00:00
auth_code = ""
class MyTestCase(unittest.TestCase):
def test_user_create(self):
global auth_code
2021-04-26 21:19:17 +00:00
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': 'utente16@nest.com', 'password': '', 'username': 'utente16'})
2021-04-26 21:19:17 +00:00
j = json.loads(r.text)
assert j['result'] == "success"
print("User_create eseguito correttamente!")
print("Testing del metodo user_create")
if __name__ == '__main__':
unittest.main()