1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/code/backend/nest_backend/test/user_delete_test.py

27 lines
751 B
Python
Raw Normal View History

import requests
import json
import unittest
auth_code = ""
class MyTestCase(unittest.TestCase):
def test_user_delete(self):
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/remove', headers={'authorization': "Bearer " + auth_code},
json={'email': 'utente_test@nest.com'})
j = json.loads(r.text)
assert j['result'] == "success"
print("User_delete eseguito correttamente!")
print("Testing del metodo user_delete")