2019-11-13 18:40:01 +01:00
|
|
|
import json
|
|
|
|
|
2021-01-02 19:28:03 +01:00
|
|
|
from flask import Flask
|
|
|
|
|
2021-11-01 10:33:34 +01:00
|
|
|
import fittrackee
|
2021-01-20 16:47:00 +01:00
|
|
|
from fittrackee.users.models import User
|
|
|
|
|
2021-02-20 23:20:20 +01:00
|
|
|
from ..api_test_case import ApiTestCaseMixin
|
2019-11-13 18:40:01 +01:00
|
|
|
|
2021-02-20 23:20:20 +01:00
|
|
|
|
|
|
|
class TestGetConfig(ApiTestCaseMixin):
|
2021-01-02 19:28:03 +01:00
|
|
|
def test_it_gets_application_config(
|
|
|
|
self, app: Flask, user_1: User
|
|
|
|
) -> None:
|
2021-02-20 23:20:20 +01:00
|
|
|
client, auth_token = self.get_test_client_and_auth_token(app)
|
2020-05-10 15:55:56 +02:00
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
'/api/config',
|
2021-02-20 23:20:20 +01:00
|
|
|
headers=dict(Authorization=f'Bearer {auth_token}'),
|
2020-05-10 15:55:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['gpx_limit_import'] == 10
|
|
|
|
assert data['data']['is_registration_enabled'] is True
|
|
|
|
assert data['data']['max_single_file_size'] == 1048576
|
|
|
|
assert data['data']['max_zip_file_size'] == 10485760
|
|
|
|
assert data['data']['max_users'] == 100
|
2020-09-16 13:01:15 +02:00
|
|
|
assert data['data']['map_attribution'] == (
|
|
|
|
'© <a href="http://www.openstreetmap.org/copyright" '
|
|
|
|
'target="_blank" rel="noopener noreferrer">OpenStreetMap</a> '
|
|
|
|
'contributors'
|
|
|
|
)
|
2021-11-01 10:33:34 +01:00
|
|
|
assert data['data']['version'] == fittrackee.__version__
|
2020-05-10 15:55:56 +02:00
|
|
|
|
|
|
|
def test_it_returns_error_if_application_has_no_config(
|
2021-01-02 19:28:03 +01:00
|
|
|
self, app_no_config: Flask, user_1_admin: User
|
|
|
|
) -> None:
|
2021-02-20 23:20:20 +01:00
|
|
|
client, auth_token = self.get_test_client_and_auth_token(
|
|
|
|
app_no_config, as_admin=True
|
2020-05-10 15:55:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
'/api/config',
|
|
|
|
content_type='application/json',
|
2021-02-20 23:20:20 +01:00
|
|
|
headers=dict(Authorization=f'Bearer {auth_token}'),
|
2020-05-10 15:55:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 500
|
|
|
|
assert 'error' in data['status']
|
2021-11-01 09:44:10 +01:00
|
|
|
assert 'error on getting configuration' in data['message']
|
2020-05-10 15:55:56 +02:00
|
|
|
|
|
|
|
def test_it_returns_error_if_application_has_several_config(
|
2021-01-02 19:28:03 +01:00
|
|
|
self, app: Flask, app_config: Flask, user_1_admin: User
|
|
|
|
) -> None:
|
2021-02-20 23:20:20 +01:00
|
|
|
client, auth_token = self.get_test_client_and_auth_token(
|
|
|
|
app, as_admin=True
|
2020-05-10 15:55:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
'/api/config',
|
|
|
|
content_type='application/json',
|
2021-02-20 23:20:20 +01:00
|
|
|
headers=dict(Authorization=f'Bearer {auth_token}'),
|
2020-05-10 15:55:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 500
|
|
|
|
assert 'error' in data['status']
|
2021-11-01 09:44:10 +01:00
|
|
|
assert 'error on getting configuration' in data['message']
|
2020-05-10 15:55:56 +02:00
|
|
|
|
|
|
|
|
2021-02-20 23:20:20 +01:00
|
|
|
class TestUpdateConfig(ApiTestCaseMixin):
|
2021-01-02 19:28:03 +01:00
|
|
|
def test_it_updates_config_when_user_is_admin(
|
|
|
|
self, app: Flask, user_1_admin: User
|
|
|
|
) -> None:
|
2021-02-20 23:20:20 +01:00
|
|
|
client, auth_token = self.get_test_client_and_auth_token(
|
|
|
|
app, as_admin=True
|
2020-05-10 15:55:56 +02:00
|
|
|
)
|
|
|
|
response = client.patch(
|
|
|
|
'/api/config',
|
|
|
|
content_type='application/json',
|
|
|
|
data=json.dumps(dict(gpx_limit_import=100, max_users=10)),
|
2021-02-20 23:20:20 +01:00
|
|
|
headers=dict(Authorization=f'Bearer {auth_token}'),
|
2020-05-10 15:55:56 +02:00
|
|
|
)
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['gpx_limit_import'] == 100
|
|
|
|
assert data['data']['is_registration_enabled'] is True
|
|
|
|
assert data['data']['max_single_file_size'] == 1048576
|
|
|
|
assert data['data']['max_zip_file_size'] == 10485760
|
|
|
|
assert data['data']['max_users'] == 10
|
|
|
|
|
2021-01-02 19:28:03 +01:00
|
|
|
def test_it_updates_all_config(
|
|
|
|
self, app: Flask, user_1_admin: User
|
|
|
|
) -> None:
|
2021-02-20 23:20:20 +01:00
|
|
|
client, auth_token = self.get_test_client_and_auth_token(
|
|
|
|
app, as_admin=True
|
2020-05-10 15:55:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
response = client.patch(
|
|
|
|
'/api/config',
|
|
|
|
content_type='application/json',
|
|
|
|
data=json.dumps(
|
|
|
|
dict(
|
|
|
|
gpx_limit_import=20,
|
|
|
|
max_single_file_size=10000,
|
|
|
|
max_zip_file_size=25000,
|
|
|
|
max_users=50,
|
|
|
|
)
|
|
|
|
),
|
2021-02-20 23:20:20 +01:00
|
|
|
headers=dict(Authorization=f'Bearer {auth_token}'),
|
2020-05-10 15:55:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['gpx_limit_import'] == 20
|
|
|
|
assert data['data']['is_registration_enabled'] is True
|
|
|
|
assert data['data']['max_single_file_size'] == 10000
|
|
|
|
assert data['data']['max_zip_file_size'] == 25000
|
|
|
|
assert data['data']['max_users'] == 50
|
|
|
|
|
2021-01-02 19:28:03 +01:00
|
|
|
def test_it_returns_403_when_user_is_not_an_admin(
|
|
|
|
self, app: Flask, user_1: User
|
|
|
|
) -> None:
|
2021-02-20 23:20:20 +01:00
|
|
|
client, auth_token = self.get_test_client_and_auth_token(app)
|
2020-05-10 15:55:56 +02:00
|
|
|
|
|
|
|
response = client.patch(
|
|
|
|
'/api/config',
|
|
|
|
content_type='application/json',
|
|
|
|
data=json.dumps(dict(gpx_limit_import=100, max_users=10)),
|
2021-02-20 23:20:20 +01:00
|
|
|
headers=dict(Authorization=f'Bearer {auth_token}'),
|
2020-05-10 15:55:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 403
|
|
|
|
assert 'success' not in data['status']
|
|
|
|
assert 'error' in data['status']
|
2021-11-01 09:44:10 +01:00
|
|
|
assert 'you do not have permissions' in data['message']
|
2020-05-10 15:55:56 +02:00
|
|
|
|
2021-01-02 19:28:03 +01:00
|
|
|
def test_it_returns_400_if_invalid_is_payload(
|
|
|
|
self, app: Flask, user_1_admin: User
|
|
|
|
) -> None:
|
2021-02-20 23:20:20 +01:00
|
|
|
client, auth_token = self.get_test_client_and_auth_token(
|
|
|
|
app, as_admin=True
|
2020-05-10 15:55:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
response = client.patch(
|
|
|
|
'/api/config',
|
|
|
|
content_type='application/json',
|
|
|
|
data=json.dumps(dict()),
|
2021-02-20 23:20:20 +01:00
|
|
|
headers=dict(Authorization=f'Bearer {auth_token}'),
|
2020-05-10 15:55:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 400
|
|
|
|
assert 'error' in data['status']
|
2021-11-01 09:44:10 +01:00
|
|
|
assert 'invalid payload' in data['message']
|
2020-05-10 15:55:56 +02:00
|
|
|
|
|
|
|
def test_it_returns_error_on_update_if_application_has_no_config(
|
2021-01-02 19:28:03 +01:00
|
|
|
self, app_no_config: Flask, user_1_admin: User
|
|
|
|
) -> None:
|
2021-02-20 23:20:20 +01:00
|
|
|
client, auth_token = self.get_test_client_and_auth_token(
|
|
|
|
app_no_config, as_admin=True
|
2020-05-10 15:55:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
response = client.patch(
|
|
|
|
'/api/config',
|
|
|
|
content_type='application/json',
|
|
|
|
data=json.dumps(dict(gpx_limit_import=100, max_users=10)),
|
2021-02-20 23:20:20 +01:00
|
|
|
headers=dict(Authorization=f'Bearer {auth_token}'),
|
2020-05-10 15:55:56 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 500
|
|
|
|
assert 'error' in data['status']
|
2021-11-01 09:44:10 +01:00
|
|
|
assert 'error when updating configuration' in data['message']
|
2021-02-20 14:14:26 +01:00
|
|
|
|
|
|
|
def test_it_raises_error_if_archive_max_size_is_below_files_max_size(
|
|
|
|
self, app: Flask, user_1_admin: User
|
|
|
|
) -> None:
|
2021-02-20 23:20:20 +01:00
|
|
|
client, auth_token = self.get_test_client_and_auth_token(
|
|
|
|
app, as_admin=True
|
2021-02-20 14:14:26 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
response = client.patch(
|
|
|
|
'/api/config',
|
|
|
|
content_type='application/json',
|
|
|
|
data=json.dumps(
|
|
|
|
dict(
|
|
|
|
gpx_limit_import=20,
|
|
|
|
max_single_file_size=10000,
|
|
|
|
max_zip_file_size=1000,
|
|
|
|
max_users=50,
|
|
|
|
)
|
|
|
|
),
|
2021-02-20 23:20:20 +01:00
|
|
|
headers=dict(Authorization=f'Bearer {auth_token}'),
|
2021-02-20 14:14:26 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 400
|
|
|
|
assert 'error' in data['status']
|
|
|
|
assert (
|
|
|
|
'Max. size of zip archive must be equal or greater than max. size '
|
|
|
|
'of uploaded files'
|
|
|
|
) in data['message']
|
2021-02-20 16:59:31 +01:00
|
|
|
|
|
|
|
def test_it_raises_error_if_archive_max_size_equals_0(
|
2021-02-20 21:37:31 +01:00
|
|
|
self, app_with_max_file_size_equals_0: Flask, user_1_admin: User
|
2021-02-20 16:59:31 +01:00
|
|
|
) -> None:
|
2021-02-20 23:20:20 +01:00
|
|
|
client, auth_token = self.get_test_client_and_auth_token(
|
|
|
|
app_with_max_file_size_equals_0, as_admin=True
|
2021-02-20 16:59:31 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
response = client.patch(
|
|
|
|
'/api/config',
|
|
|
|
content_type='application/json',
|
|
|
|
data=json.dumps(
|
|
|
|
dict(
|
|
|
|
max_zip_file_size=0,
|
|
|
|
)
|
|
|
|
),
|
2021-02-20 23:20:20 +01:00
|
|
|
headers=dict(Authorization=f'Bearer {auth_token}'),
|
2021-02-20 16:59:31 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 400
|
|
|
|
assert 'error' in data['status']
|
|
|
|
assert (
|
|
|
|
'Max. size of zip archive must be greater than 0'
|
|
|
|
in data['message']
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_it_raises_error_if_files_max_size_equals_0(
|
|
|
|
self, app: Flask, user_1_admin: User
|
|
|
|
) -> None:
|
2021-02-20 23:20:20 +01:00
|
|
|
client, auth_token = self.get_test_client_and_auth_token(
|
|
|
|
app, as_admin=True
|
2021-02-20 16:59:31 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
response = client.patch(
|
|
|
|
'/api/config',
|
|
|
|
content_type='application/json',
|
|
|
|
data=json.dumps(
|
|
|
|
dict(
|
|
|
|
max_single_file_size=0,
|
|
|
|
)
|
|
|
|
),
|
2021-02-20 23:20:20 +01:00
|
|
|
headers=dict(Authorization=f'Bearer {auth_token}'),
|
2021-02-20 16:59:31 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 400
|
|
|
|
assert 'error' in data['status']
|
|
|
|
assert (
|
|
|
|
'Max. size of uploaded files must be greater than 0'
|
|
|
|
in data['message']
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_it_raises_error_if_gpx_limit_import_equals_0(
|
|
|
|
self, app: Flask, user_1_admin: User
|
|
|
|
) -> None:
|
2021-02-20 23:20:20 +01:00
|
|
|
client, auth_token = self.get_test_client_and_auth_token(
|
|
|
|
app, as_admin=True
|
2021-02-20 16:59:31 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
response = client.patch(
|
|
|
|
'/api/config',
|
|
|
|
content_type='application/json',
|
|
|
|
data=json.dumps(
|
|
|
|
dict(
|
|
|
|
gpx_limit_import=0,
|
|
|
|
)
|
|
|
|
),
|
2021-02-20 23:20:20 +01:00
|
|
|
headers=dict(Authorization=f'Bearer {auth_token}'),
|
2021-02-20 16:59:31 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 400
|
|
|
|
assert 'error' in data['status']
|
|
|
|
assert (
|
|
|
|
'Max. files in a zip archive must be greater than 0'
|
|
|
|
in data['message']
|
|
|
|
)
|