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

incompleto

This commit is contained in:
Giovanni Anniballi 2021-04-28 21:35:32 +00:00
parent ff64b2edac
commit 78fd695210

View file

@ -0,0 +1,27 @@
import json
import unittest
import requests
class MyTestCase(unittest.TestCase):
def test_repository_edit(self):
global auth_code
r = requests.post('http://localhost:5000/api/login', json={'email': 'admin@admin.com', 'password': 'password'})
j = json.loads(r.text)
assert j['result'] == "success"
auth_code = j['data']['access_token']
r = requests.put(f'http://localhost:5000/api/repository/edit', headers={'authorization': "Bearer " + auth_code},
json={'id': '1', 'name': 'newname'})
j = json.loads(r.text)
assert j['result'] == "success"
print('Repository_edit eseguito correttamente!')
print('Testing del metodo repository_edit')