mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 13:04:19 +00:00
test dei metodi get, delete e patch
This commit is contained in:
parent
84b4c11e60
commit
a14a44f546
1 changed files with 28 additions and 7 deletions
|
@ -10,7 +10,8 @@ class MyTestCase(unittest.TestCase):
|
||||||
global auth_code
|
global auth_code
|
||||||
|
|
||||||
# sono un utente normale
|
# 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)
|
j = json.loads(r.text)
|
||||||
assert j['result'] == "success"
|
assert j['result'] == "success"
|
||||||
auth_code = j['data']['access_token']
|
auth_code = j['data']['access_token']
|
||||||
|
@ -24,7 +25,8 @@ class MyTestCase(unittest.TestCase):
|
||||||
print("delete User NON eseguito correttamente!")
|
print("delete User NON eseguito correttamente!")
|
||||||
|
|
||||||
# adesso divento admin
|
# 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)
|
j = json.loads(r.text)
|
||||||
assert j['result'] == "success"
|
assert j['result'] == "success"
|
||||||
auth_code = j['data']['access_token']
|
auth_code = j['data']['access_token']
|
||||||
|
@ -44,12 +46,14 @@ class MyTestCase(unittest.TestCase):
|
||||||
|
|
||||||
print("delete User NON eseguito correttamente!")
|
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})
|
headers={'authorization': "Bearer " + auth_code})
|
||||||
j = json.loads(r.text)
|
j = json.loads(r.text)
|
||||||
assert j['result'] == "success"
|
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
|
# chiedo le info di un utente che esiste
|
||||||
r = requests.get(f'http://localhost:5000/api/v1/users/utente_test@nest.com',
|
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)
|
j = json.loads(r.text)
|
||||||
assert j['result'] == "success"
|
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")
|
||||||
|
|
Loading…
Reference in a new issue