mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 04:54:18 +00:00
completati i controlli sulle condition
This commit is contained in:
parent
1d6e393185
commit
758779d05a
1 changed files with 17 additions and 14 deletions
|
@ -1,37 +1,40 @@
|
|||
import json
|
||||
import unittest
|
||||
|
||||
import requests
|
||||
import json
|
||||
from database.tables.Enums import ConditionType
|
||||
|
||||
|
||||
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'})
|
||||
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
|
||||
r = requests.get(f'http://localhost:5000/api/v1/repositories/16/conditions',
|
||||
headers={'authorization': "Bearer " + auth_code})
|
||||
j = json.loads(r.text)
|
||||
assert j['result'] == "success"
|
||||
|
||||
print("Conditions dei Repositories letti correttamente!")
|
||||
|
||||
# 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'})
|
||||
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])
|
||||
r = requests.post(f'http://localhost:5000/api/v1/repositories/16/conditions',
|
||||
headers={'authorization': "Bearer " + auth_code},
|
||||
json={'type': 0, 'content': 'MarioDraghi'})
|
||||
j = json.loads(r.text)
|
||||
assert j['result'] == "success"
|
||||
print("Conditions dei Repositories creati correttamente!")
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
print('Testing dei metodi di modifica delle conditions')
|
||||
|
|
Loading…
Reference in a new issue