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

update repository_test

This commit is contained in:
Giovanni Anniballi 2021-05-02 16:03:19 +00:00
parent a075ecbe88
commit 86ed277f31

View file

@ -13,15 +13,17 @@ class MyTestCase(unittest.TestCase):
assert j['result'] == "success" assert j['result'] == "success"
auth_code = j['data']['access_token'] auth_code = j['data']['access_token']
'''# ritorno le info sulla repo speficicata dopo /repositories # ritorno le info sulla repository speficicata
r = requests.get(f'http://localhost:5000/api/v1/repositories/17', headers={'authorization': "Bearer " + auth_code}) r = requests.get(f'http://localhost:5000/api/v1/repositories/17', headers={'authorization': "Bearer " + auth_code})
j = json.loads(r.text) j = json.loads(r.text)
assert j['result'] == "success" assert j['result'] == "success"
# cancello la repository specificata
r = requests.delete(f'http://localhost:5000/api/v1/repositories/17', headers={'authorization': "Bearer " + auth_code}) r = requests.delete(f'http://localhost:5000/api/v1/repositories/17', headers={'authorization': "Bearer " + auth_code})
j = json.loads(r.text) j = json.loads(r.text)
assert j['result'] == "success"''' assert j['result'] == "success"
# modifico il nome e lo stato della repository specificata
r = requests.patch(f'http://localhost:5000/api/v1/repositories/16', headers={'authorization': "Bearer " + auth_code}, r = requests.patch(f'http://localhost:5000/api/v1/repositories/16', headers={'authorization': "Bearer " + auth_code},
json={'name': 'newname', 'open': True}) json={'name': 'newname', 'open': True})
j = json.loads(r.text) j = json.loads(r.text)