Refactoring

This commit is contained in:
2022-03-30 11:10:48 +02:00
parent 4b7dfa8afd
commit 1f2487f1c1
10 changed files with 17 additions and 113 deletions

View File

@@ -2,6 +2,7 @@
This file (test_user.py) contains the functional tests for the `users` blueprint.
"""
import json
from tests.functional.helper_functions import get_token
def test_login_with_valid_data(test_client, init_database):
@@ -501,13 +502,3 @@ def test_get_users_admin1_logged_in(test_client, init_database):
content_type='application/json')
assert response.status_code == 200
assert b'Successfully received all users' in response.data
def get_token(test_client, email, password):
response = test_client.post('/api/user/login', data=json.dumps(dict(email=email, password=password)), content_type='application/json')
if "data" in json.loads(response.data):
if "token" in json.loads(response.data)["data"]:
return json.loads(response.data)["data"]["token"]
return ""