1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 04:54:18 +00:00

manca test della delete perchè il server da errore 500

This commit is contained in:
stefanogoldoni 2021-04-30 00:06:23 +02:00
parent e5c85e1604
commit be7820521c

View file

@ -9,13 +9,43 @@ 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'})
# sono un utente normale
r = requests.post('http://localhost:5000/api/v1/login', json={'email': 'utente_test@nest.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'})
# elimino ma non sono admin
r = requests.delete(f'http://localhost:5000/api/v1/users/admin@admin.com',
headers={'authorization': "Bearer " + auth_code},)
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',
headers={'authorization': "Bearer " + auth_code},)
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',
headers={'authorization': "Bearer " + auth_code},)
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/utente12@nest.com',
headers={'authorization': "Bearer " + auth_code},)
j = json.loads(r.text)
assert j['result'] == "success"