2021-04-28 22:14:38 +00:00
|
|
|
import requests
|
|
|
|
import json
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
auth_code = ""
|
|
|
|
|
|
|
|
|
|
|
|
class MyTestCase(unittest.TestCase):
|
|
|
|
def test_user_delete(self):
|
|
|
|
global auth_code
|
|
|
|
|
2021-04-29 22:06:23 +00:00
|
|
|
# sono un utente normale
|
|
|
|
r = requests.post('http://localhost:5000/api/v1/login', json={'email': 'utente_test@nest.com', 'password': 'password'})
|
2021-04-28 22:14:38 +00:00
|
|
|
j = json.loads(r.text)
|
|
|
|
assert j['result'] == "success"
|
|
|
|
auth_code = j['data']['access_token']
|
|
|
|
|
2021-04-29 22:06:23 +00:00
|
|
|
# elimino ma non sono admin
|
|
|
|
r = requests.delete(f'http://localhost:5000/api/v1/users/admin@admin.com',
|
2021-05-01 10:28:26 +00:00
|
|
|
headers={'authorization': "Bearer " + auth_code})
|
2021-04-29 22:06:23 +00:00
|
|
|
j = json.loads(r.text)
|
|
|
|
assert j['result'] == "failure"
|
|
|
|
|
|
|
|
print("delete User NON eseguito correttamente!")
|
|
|
|
|
|
|
|
# adesso divento admin
|
|
|
|
r = requests.post('http://localhost:5000/api/v1/login', json={'email': 'admin@admin.com', 'password': 'password'})
|
|
|
|
j = json.loads(r.text)
|
|
|
|
assert j['result'] == "success"
|
|
|
|
auth_code = j['data']['access_token']
|
|
|
|
|
|
|
|
# elimino un utente che non c'è
|
|
|
|
r = requests.delete(f'http://localhost:5000/api/v1/users/none@nest.com',
|
2021-05-01 10:28:26 +00:00
|
|
|
headers={'authorization': "Bearer " + auth_code})
|
2021-04-29 22:06:23 +00:00
|
|
|
j = json.loads(r.text)
|
|
|
|
assert j['result'] == "failure"
|
|
|
|
|
|
|
|
print("delete User NON eseguito correttamente!")
|
|
|
|
|
|
|
|
r = requests.delete(f'http://localhost:5000/api/v1/users/admin@admin.com',
|
2021-05-01 10:28:26 +00:00
|
|
|
headers={'authorization': "Bearer " + auth_code})
|
2021-04-29 22:06:23 +00:00
|
|
|
j = json.loads(r.text)
|
|
|
|
assert j['result'] == "failure"
|
|
|
|
|
|
|
|
print("delete User NON eseguito correttamente!")
|
|
|
|
|
2021-04-29 22:12:25 +00:00
|
|
|
r = requests.delete(f'http://localhost:5000/api/v1/users/utente3@nest.com',
|
2021-05-01 10:28:26 +00:00
|
|
|
headers={'authorization': "Bearer " + auth_code})
|
2021-04-28 22:14:38 +00:00
|
|
|
j = json.loads(r.text)
|
|
|
|
assert j['result'] == "success"
|
|
|
|
|
2021-04-30 23:28:57 +00:00
|
|
|
# TODO AGGIUNGERE TESTING DI GET E PATCH
|
2021-05-01 10:28:26 +00:00
|
|
|
|
|
|
|
# chiedo le info di un utente che esiste
|
|
|
|
r = requests.get(f'http://localhost:5000/api/v1/users/utente_test@nest.com',
|
|
|
|
headers={'authorization': "Bearer " + auth_code})
|
|
|
|
j = json.loads(r.text)
|
|
|
|
assert j['result'] == "success"
|
|
|
|
|
2021-04-28 22:14:38 +00:00
|
|
|
print("User_delete eseguito correttamente!")
|
|
|
|
|
2021-04-29 22:12:25 +00:00
|
|
|
print("Testing del metodo user delete")
|
2021-04-28 22:14:38 +00:00
|
|
|
|
|
|
|
|