mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-21 20:44:18 +00:00
test per l'aggiunta di condizioni ad una repository, attualmente non funzionante, errore 500 quando si richiedono info sulla repo e 400 quando si aggiunge una condition, da risolvere
This commit is contained in:
parent
84b4c11e60
commit
75dc9f1c90
1 changed files with 36 additions and 0 deletions
36
code/backend/nest_backend/test/repository_conditions_test.py
Normal file
36
code/backend/nest_backend/test/repository_conditions_test.py
Normal file
|
@ -0,0 +1,36 @@
|
|||
import unittest
|
||||
import requests
|
||||
import json
|
||||
|
||||
|
||||
class MyTestCase(unittest.TestCase):
|
||||
def test_repository_condition(self):
|
||||
|
||||
# entro come user e recupero le informazioni sulla repo specificata
|
||||
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.get(f'http://localhost:5000/api/v1/repositories/1/conditions', headers={'authorization': "Bearer " + auth_code})
|
||||
j = json.loads(r.text) # INTERNAL SERVER ERROR status code 500
|
||||
assert j['result'] == "success"
|
||||
|
||||
|
||||
# entro come user ed aggiungo una condition alla repo specificata
|
||||
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/v1/repositories/1/conditions', headers={'authorization': "Bearer " + auth_code},
|
||||
json={'type': 'hashtag', 'content': 'MarioDraghi'})
|
||||
j = json.loads(r.text) # BAD REQUEST erroe 400
|
||||
assert j['result'] == "failure"
|
||||
|
||||
for i in j:
|
||||
print(j[i])
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
Loading…
Reference in a new issue