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

test dei metodi get, delete e patch

This commit is contained in:
stefanogoldoni 2021-05-01 18:18:13 +02:00
parent 84b4c11e60
commit a14a44f546

View file

@ -10,7 +10,8 @@ class MyTestCase(unittest.TestCase):
global auth_code
# sono un utente normale
r = requests.post('http://localhost:5000/api/v1/login', json={'email': 'utente_test@nest.com', 'password': 'password'})
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']
@ -24,7 +25,8 @@ class MyTestCase(unittest.TestCase):
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'})
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']
@ -44,12 +46,14 @@ class MyTestCase(unittest.TestCase):
print("delete User NON eseguito correttamente!")
r = requests.delete(f'http://localhost:5000/api/v1/users/utente3@nest.com',
r = requests.delete(f'http://localhost:5000/api/v1/users/utente13@nest.com',
headers={'authorization': "Bearer " + auth_code})
j = json.loads(r.text)
assert j['result'] == "success"
# TODO AGGIUNGERE TESTING DI GET E PATCH
print("delete User eseguito correttamente!")
# TODO: AGGIUNGERE TESTING DI GET E PATCH
# chiedo le info di un utente che esiste
r = requests.get(f'http://localhost:5000/api/v1/users/utente_test@nest.com',
@ -57,8 +61,25 @@ class MyTestCase(unittest.TestCase):
j = json.loads(r.text)
assert j['result'] == "success"
print("User_delete eseguito correttamente!")
print("get User info eseguito correttamente!")
print("Testing del metodo user delete")
# chiedo le info di un utente che NON esiste
r = requests.get(f'http://localhost:5000/api/v1/users/utente_chenonesiste@nest.com',
headers={'authorization': "Bearer " + auth_code})
j = json.loads(r.text)
assert j['result'] == "failure"
print("get User info NON eseguito correttamente!")
# modifico le info di un utente
r = requests.patch(f'http://localhost:5000/api/v1/users/utente1@nest.com',
headers={'authorization': "Bearer " + auth_code},
json={'username': 'utente1_modificato', 'password': 'password'})
j = json.loads(r.text)
assert j['result'] == "success"
print("patch User info eseguito correttamente!")
print("Tutti i test eseguiti correttamente!")
print("Testing dei metodo user delete, get e patch")