1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/code/backend/nest_backend/test/repository_test.py

38 lines
1.3 KiB
Python
Raw Normal View History

import json
import unittest
import requests
class MyTestCase(unittest.TestCase):
def test_repository_edit(self):
global auth_code
# eseguo il login
2021-05-02 15:59:02 +00:00
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']
2021-05-02 16:03:19 +00:00
# ritorno le info sulla repository speficicata
2021-05-02 15:59:02 +00:00
r = requests.get(f'http://localhost:5000/api/v1/repositories/17', headers={'authorization': "Bearer " + auth_code})
j = json.loads(r.text)
assert j['result'] == "success"
2021-05-02 16:03:19 +00:00
# cancello la repository specificata
2021-05-02 15:59:02 +00:00
r = requests.delete(f'http://localhost:5000/api/v1/repositories/17', headers={'authorization': "Bearer " + auth_code})
j = json.loads(r.text)
2021-05-02 16:03:19 +00:00
assert j['result'] == "success"
2021-05-02 16:03:19 +00:00
# modifico il nome e lo stato della repository specificata
2021-05-02 15:59:02 +00:00
r = requests.patch(f'http://localhost:5000/api/v1/repositories/16', headers={'authorization': "Bearer " + auth_code},
json={'name': 'newname', 'open': True})
j = json.loads(r.text)
assert j['result'] == "success"
print('Testing del metodo repository_edit')