mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
1a23d9c81f
lets gooooo
72 lines
3.1 KiB
Python
72 lines
3.1 KiB
Python
from flask.testing import Client
|
|
|
|
'''A file that contains tests classes and methods for all the requests concerning authorizations .'''
|
|
|
|
|
|
class TestAuthozitazionsGet:
|
|
def test_for_success(self, flask_client: Client, user_headers):
|
|
r = flask_client.get('/api/v1/repositories/1/authorizations/', headers=user_headers)
|
|
assert r.status_code == 200
|
|
assert r.json["result"] == "success"
|
|
|
|
def test_get_non_existing_repository(self, flask_client: Client, admin_headers):
|
|
r = flask_client.get('/api/v1/repositories/99/authorizations/', headers=admin_headers)
|
|
assert r.status_code == 404
|
|
assert r.json["result"] == "failure"
|
|
|
|
def test_wrong_owner(self, flask_client: Client, admin_headers):
|
|
r = flask_client.get(f'/api/v1/repositories/1/authorizations/', headers=admin_headers)
|
|
assert r.status_code == 403
|
|
assert r.json["result"] == "failure"
|
|
|
|
def test_user_not_logged(self, flask_client: Client):
|
|
r = flask_client.get(f'/api/v1/repositories/1/authorizations/')
|
|
assert r.status_code == 401
|
|
|
|
|
|
class TestAuthorizationsPost:
|
|
def test_for_success(self, flask_client: Client, user_headers):
|
|
r = flask_client.post(f'api/v1/repositories/1/authorizations/', headers=user_headers, json={
|
|
'email': 'admin@admin.com'
|
|
})
|
|
assert r.status_code == 201
|
|
|
|
def test_user_not_logged(self, flask_client: Client):
|
|
r = flask_client.post(f'/api/v1/repositories/1/authorizations/')
|
|
assert r.status_code == 401
|
|
|
|
def test_wrong_owner(self, flask_client: Client, admin_headers):
|
|
r = flask_client.post(f'/api/v1/repositories/1/authorizations/', headers=admin_headers)
|
|
assert r.status_code == 403
|
|
assert r.json["result"] == "failure"
|
|
|
|
|
|
class TestAuthorizationsPut:
|
|
# FIXME this should work, right?
|
|
def test_for_success(self, flask_client: Client, user_headers):
|
|
r = flask_client.put(f'/api/v1/repositories/1/authorizations/', headers=user_headers, json={
|
|
'email': 'admin@admin.com'
|
|
})
|
|
assert r.status_code == 200
|
|
assert r.json["result"] == "success"
|
|
|
|
def test_authorization_already_existed(self, flask_client: Client, user_headers):
|
|
r = flask_client.put(f'/api/v1/repositories/1/authorizations/', headers=user_headers, json={
|
|
'email': 'admin@admin.com'
|
|
})
|
|
assert r.status_code == 200
|
|
|
|
def test_user_not_authorized(self, flask_client: Client, admin_headers):
|
|
r = flask_client.put(f'/api/v1/repositories/1/authorizations/', headers=admin_headers, json={
|
|
'email': 'admin@admin.com'
|
|
})
|
|
assert r.status_code == 403
|
|
|
|
def test_user_not_logged(self, flask_client: Client):
|
|
r = flask_client.put(f'/api/v1/repositories/1/authorizations/')
|
|
assert r.status_code == 401
|
|
|
|
def test_get_non_existing_repository(self, flask_client: Client, admin_headers):
|
|
r = flask_client.post('/api/v1/repositories/99/authorizations/', headers=admin_headers)
|
|
assert r.status_code == 404
|
|
assert r.json["result"] == "failure"
|