1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-25 06:24:19 +00:00

testati tutti i casi del metodo user_delete

This commit is contained in:
stefanogoldoni 2021-04-28 23:23:46 +02:00
parent 5b71de4a51
commit 4f3c4936b0

View file

@ -9,13 +9,44 @@ class MyTestCase(unittest.TestCase):
def test_user_delete(self):
global auth_code
#testo come utente normale
r = requests.post('http://localhost:5000/api/login', json={'email': 'utente_test@nest.com', 'password': 'password'})
j = json.loads(r.text)
assert j['result'] == "success"
auth_code = j['data']['access_token']
#cancellazione utente qualunque: fallisce, non sono admin
r = requests.post(f'http://localhost:5000/api/user/remove', headers={'authorization': "Bearer " + auth_code},
json={'email': 'utente_qualunque@nest.com'})
j = json.loads(r.text)
assert j['result'] == "failure"
#testo come utente admin
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']
#test cancellazione senza specificare user, fallisce
r = requests.post(f'http://localhost:5000/api/user/remove', headers={'authorization': "Bearer " + auth_code},
json={'email': 'utente15@nest.com'})
json={'email': ''})
j = json.loads(r.text)
assert j['result'] == "failure"
#test cancellazione user non esistente, fallisce
r = requests.post(f'http://localhost:5000/api/user/remove', headers={'authorization': "Bearer " + auth_code},
json={'email': 'none@nest.com'})
j = json.loads(r.text)
assert j['result'] == "failure"
#test cancellazione user corrente, fallisce
r = requests.post(f'http://localhost:5000/api/user/remove', headers={'authorization': "Bearer " + auth_code},
json={'email': 'admin@nest.com'})
j = json.loads(r.text)
assert j['result'] == "failure"
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"