mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-22 21:14:18 +00:00
38 lines
1.3 KiB
Python
38 lines
1.3 KiB
Python
from flask.testing import Client
|
|
|
|
|
|
class TestUserGet:
|
|
def test_for_success(self, flask_client: Client, admin_headers):
|
|
r = flask_client.get(f'/api/v1/users/admin@admin.com', headers=admin_headers)
|
|
assert b'success' in r.data
|
|
|
|
|
|
class TestUserAdd:
|
|
def test_for_success(self, flask_client: Client, admin_headers):
|
|
r = flask_client.post(f'/api/v1/users/', headers=admin_headers, json={
|
|
'email': 'utente_test@nest.com',
|
|
'password': 'password',
|
|
'username': 'utente_test'
|
|
})
|
|
assert b'success' in r.data
|
|
|
|
def test_for_failure(self, flask_client: Client, user_headers):
|
|
r = flask_client.post(f'/api/v1/users/', headers=user_headers, json={
|
|
'email': 'utente_test@nest.com',
|
|
'password': 'password',
|
|
'username': 'utente_test'
|
|
})
|
|
assert b'failure' in r.data
|
|
|
|
|
|
class TestUserDelete:
|
|
def test_for_success(self, flask_client: Client, admin_headers):
|
|
r = flask_client.delete(f'/api/v1/users/utente_test@nest.com', headers=admin_headers)
|
|
assert b'success' in r.data
|
|
|
|
# the admin tries to commit suicide
|
|
def test_for_failure(self, flask_client: Client, admin_headers):
|
|
r = flask_client.delete(f'/api/v1/users/admin@admin.com', headers=admin_headers)
|
|
assert b'failure' in r.data
|
|
|
|
|