2018-06-06 00:22:24 +02:00
|
|
|
import json
|
|
|
|
|
2021-01-02 19:28:03 +01:00
|
|
|
from fittrackee.users.models import User
|
2021-01-10 11:16:43 +01:00
|
|
|
from fittrackee.workouts.models import Sport, Workout
|
2021-01-02 19:28:03 +01:00
|
|
|
from flask import Flask
|
|
|
|
|
2018-06-06 00:22:24 +02:00
|
|
|
|
2020-05-10 15:55:56 +02:00
|
|
|
class TestGetStatsByTime:
|
2021-01-10 11:16:43 +01:00
|
|
|
def test_it_gets_no_stats_when_user_has_no_workouts(
|
2021-01-02 19:28:03 +01:00
|
|
|
self, app: Flask, user_1: User
|
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1.username}/by_time',
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['statistics'] == {}
|
|
|
|
|
2021-01-02 19:28:03 +01:00
|
|
|
def test_it_returns_error_when_user_does_not_exists(
|
|
|
|
self, app: Flask, user_1: User
|
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
2020-07-14 16:23:48 +02:00
|
|
|
'/api/stats/1000/by_time',
|
2020-05-10 15:55:56 +02:00
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 404
|
|
|
|
assert 'not found' in data['status']
|
|
|
|
assert 'User does not exist.' in data['message']
|
|
|
|
|
|
|
|
def test_it_returns_error_if_date_format_is_invalid(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1.username}/by_time?from="2018-04-01&to=2018-04-30', # noqa
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 500
|
|
|
|
assert 'error' in data['status']
|
|
|
|
assert (
|
|
|
|
'Error. Please try again or contact the administrator.'
|
|
|
|
in data['message']
|
|
|
|
)
|
|
|
|
|
|
|
|
def test_it_returns_error_if_period_is_invalid(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1.username}/by_time?from=2018-04-01&to=2018-04-30&time=day', # noqa
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 400
|
|
|
|
assert 'fail' in data['status']
|
|
|
|
assert 'Invalid time period.' in data['message']
|
|
|
|
|
2021-01-10 11:16:43 +01:00
|
|
|
def test_it_gets_stats_by_time_all_workouts(
|
2020-05-10 15:55:56 +02:00
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1.username}/by_time',
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['statistics'] == {
|
|
|
|
'2017': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 2,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 15.0,
|
|
|
|
'total_duration': 4480,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2020-05-10 15:55:56 +02:00
|
|
|
'2018': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 5,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 39.0,
|
|
|
|
'total_duration': 11624,
|
|
|
|
},
|
|
|
|
'2': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 12.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2018-06-06 00:22:24 +02:00
|
|
|
}
|
2020-05-10 15:55:56 +02:00
|
|
|
|
|
|
|
def test_it_gets_stats_for_april_2018(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1.username}/by_time?from=2018-04-01&to=2018-04-30', # noqa
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['statistics'] == {
|
|
|
|
'2018': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 8.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
|
|
|
'2': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 12.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def test_it_gets_stats_for_april_2018_with_paris_timezone(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1_paris: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1_paris.username}/by_time?'
|
|
|
|
f'from=2018-04-01&to=2018-04-30',
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['statistics'] == {
|
|
|
|
'2018': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 8.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
|
|
|
'2': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 12.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def test_it_gets_stats_by_year(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1.username}/by_time?time=year',
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['statistics'] == {
|
|
|
|
'2017': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 2,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 15.0,
|
|
|
|
'total_duration': 4480,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2020-05-10 15:55:56 +02:00
|
|
|
'2018': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 5,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 39.0,
|
|
|
|
'total_duration': 11624,
|
|
|
|
},
|
|
|
|
'2': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 12.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2018-06-11 18:47:04 +02:00
|
|
|
}
|
2020-05-10 15:55:56 +02:00
|
|
|
|
|
|
|
def test_it_gets_stats_by_year_for_april_2018(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1.username}/by_time?from=2018-04-01&to=2018-04-30&time=year', # noqa
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['statistics'] == {
|
|
|
|
'2018': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 8.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
|
|
|
'2': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 12.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
2019-08-28 13:25:39 +02:00
|
|
|
}
|
2020-05-10 15:55:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
def test_it_gets_stats_by_year_for_april_2018_with_paris_timezone(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1_paris: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1_paris.username}/by_time?from=2018-04-01&to=2018-04-30&time=year', # noqa
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['statistics'] == {
|
|
|
|
'2018': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 8.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
|
|
|
'2': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 12.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def test_it_gets_stats_by_month(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1.username}/by_time?time=month',
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['statistics'] == {
|
|
|
|
'2017-03': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 5.0,
|
|
|
|
'total_duration': 1024,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2020-05-10 15:55:56 +02:00
|
|
|
'2017-06': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 10.0,
|
|
|
|
'total_duration': 3456,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2020-05-10 15:55:56 +02:00
|
|
|
'2018-01': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 10.0,
|
|
|
|
'total_duration': 1024,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2020-05-10 15:55:56 +02:00
|
|
|
'2018-02': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 2,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 11.0,
|
|
|
|
'total_duration': 1600,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2020-05-10 15:55:56 +02:00
|
|
|
'2018-04': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 8.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
|
|
|
'2': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 12.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2020-05-10 15:55:56 +02:00
|
|
|
'2018-05': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 10.0,
|
|
|
|
'total_duration': 3000,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2018-06-11 18:47:04 +02:00
|
|
|
}
|
2020-05-10 15:55:56 +02:00
|
|
|
|
|
|
|
def test_it_gets_stats_by_month_with_new_york_timezone(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1_full: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1_full.username}/by_time?time=month',
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['statistics'] == {
|
|
|
|
'2017-03': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 5.0,
|
|
|
|
'total_duration': 1024,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2020-05-10 15:55:56 +02:00
|
|
|
'2017-06': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 10.0,
|
|
|
|
'total_duration': 3456,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2020-05-10 15:55:56 +02:00
|
|
|
'2018-01': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 10.0,
|
|
|
|
'total_duration': 1024,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2020-05-10 15:55:56 +02:00
|
|
|
'2018-02': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 2,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 11.0,
|
|
|
|
'total_duration': 1600,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2020-05-10 15:55:56 +02:00
|
|
|
'2018-04': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 8.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
|
|
|
'2': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 12.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2020-05-10 15:55:56 +02:00
|
|
|
'2018-05': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 10.0,
|
|
|
|
'total_duration': 3000,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2018-06-06 00:22:24 +02:00
|
|
|
}
|
2020-05-10 15:55:56 +02:00
|
|
|
|
|
|
|
def test_it_gets_stats_by_month_for_april_2018(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1.username}/by_time?from=2018-04-01&to=2018-04-30&time=month', # noqa
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['statistics'] == {
|
|
|
|
'2018-04': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 8.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
|
|
|
'2': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 12.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
2019-08-28 13:25:39 +02:00
|
|
|
}
|
2020-05-10 15:55:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
def test_it_gets_stats_by_week(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1_full: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1_full.username}/by_time?time=week',
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['statistics'] == {
|
|
|
|
'2017-03-19': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 5.0,
|
|
|
|
'total_duration': 1024,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2020-05-10 15:55:56 +02:00
|
|
|
'2017-05-28': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 10.0,
|
|
|
|
'total_duration': 3456,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2020-05-10 15:55:56 +02:00
|
|
|
'2017-12-31': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 10.0,
|
|
|
|
'total_duration': 1024,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2020-05-10 15:55:56 +02:00
|
|
|
'2018-02-18': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 2,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 11.0,
|
|
|
|
'total_duration': 1600,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'2018-04-01': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 8.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
|
|
|
'2': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 12.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'2018-05-06': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 10.0,
|
|
|
|
'total_duration': 3000,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2018-06-06 12:09:09 +02:00
|
|
|
}
|
2020-05-10 15:55:56 +02:00
|
|
|
|
|
|
|
def test_it_gets_stats_by_week_for_week_13(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1.username}/by_time?from=2018-04-01&to=2018-04-30&time=week', # noqa
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['statistics'] == {
|
|
|
|
'2018-04-01': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 8.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
|
|
|
'2': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 12.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
2019-08-28 13:25:39 +02:00
|
|
|
}
|
2020-05-10 15:55:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
def test_if_get_stats_by_week_starting_with_monday(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1.username}/by_time?time=weekm',
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['statistics'] == {
|
|
|
|
'2017-03-20': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 5.0,
|
|
|
|
'total_duration': 1024,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2020-05-10 15:55:56 +02:00
|
|
|
'2017-05-29': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 10.0,
|
|
|
|
'total_duration': 3456,
|
|
|
|
}
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
2020-05-10 15:55:56 +02:00
|
|
|
'2018-01-01': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 10.0,
|
|
|
|
'total_duration': 1024,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'2018-02-19': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 2,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 11.0,
|
|
|
|
'total_duration': 1600,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'2018-03-26': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 8.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
|
|
|
'2': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 12.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'2018-05-07': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 10.0,
|
|
|
|
'total_duration': 3000,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
def test_it_gets_stats_by_week_starting_with_monday_for_week_13(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1.username}/by_time?from=2018-04-01&to=2018-04-30&time=weekm', # noqa
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['statistics'] == {
|
|
|
|
'2018-03-26': {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 8.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
|
|
|
'2': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 12.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
2019-08-28 13:25:39 +02:00
|
|
|
}
|
2020-05-10 15:55:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
class TestGetStatsBySport:
|
|
|
|
def test_it_gets_stats_by_sport(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1.username}/by_sport',
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['statistics'] == {
|
2019-08-28 13:25:39 +02:00
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 7,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 54.0,
|
|
|
|
'total_duration': 16104,
|
2019-08-28 13:25:39 +02:00
|
|
|
},
|
|
|
|
'2': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 1,
|
2019-08-28 13:25:39 +02:00
|
|
|
'total_distance': 12.0,
|
|
|
|
'total_duration': 6000,
|
|
|
|
},
|
2018-06-06 12:09:09 +02:00
|
|
|
}
|
2020-05-10 15:55:56 +02:00
|
|
|
|
|
|
|
def test_it_get_stats_for_sport_1(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1.username}/by_sport?sport_id=1',
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
|
|
|
assert data['data']['statistics'] == {
|
|
|
|
'1': {
|
2021-01-10 11:16:43 +01:00
|
|
|
'nb_workouts': 7,
|
2020-05-10 15:55:56 +02:00
|
|
|
'total_distance': 54.0,
|
|
|
|
'total_duration': 16104,
|
|
|
|
}
|
2018-06-06 12:09:09 +02:00
|
|
|
}
|
2020-05-10 15:55:56 +02:00
|
|
|
|
|
|
|
def test_it_returns_errors_if_user_does_not_exist(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
2020-07-14 16:23:48 +02:00
|
|
|
'/api/stats/1000/by_sport?sport_id=1',
|
2020-05-10 15:55:56 +02:00
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 404
|
|
|
|
assert 'not found' in data['status']
|
|
|
|
assert 'User does not exist.' in data['message']
|
|
|
|
|
|
|
|
def test_it_returns_error_if_sport_does_not_exist(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1.username}/by_sport?sport_id=999',
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 404
|
|
|
|
assert 'not found' in data['status']
|
|
|
|
assert 'Sport does not exist.' in data['message']
|
|
|
|
|
|
|
|
def test_it_returns_error_if_sport_id_is_invalid(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
seven_workouts_user_1: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
f'/api/stats/{user_1.username}/by_sport?sport_id="999',
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 500
|
|
|
|
assert 'error' in data['status']
|
|
|
|
assert (
|
|
|
|
'Error. Please try again or contact the administrator.'
|
|
|
|
in data['message']
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class TestGetAllStats:
|
2021-01-10 11:16:43 +01:00
|
|
|
def test_it_returns_all_stats_when_users_have_no_workouts(
|
2021-01-02 19:28:03 +01:00
|
|
|
self, app: Flask, user_1_admin: User, user_2: User
|
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(
|
|
|
|
dict(email='admin@example.com', password='12345678')
|
|
|
|
),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
'/api/stats/all',
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
2021-01-10 11:16:43 +01:00
|
|
|
assert data['data']['workouts'] == 0
|
2020-05-10 15:55:56 +02:00
|
|
|
assert data['data']['sports'] == 0
|
|
|
|
assert data['data']['users'] == 2
|
|
|
|
assert 'uploads_dir_size' in data['data']
|
|
|
|
|
2021-01-10 11:16:43 +01:00
|
|
|
def test_it_gets_app_all_stats_with_workouts(
|
2020-05-10 15:55:56 +02:00
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1_admin: User,
|
|
|
|
user_2: User,
|
|
|
|
user_3: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
workout_cycling_user_1: Workout,
|
|
|
|
workout_cycling_user_2: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(
|
|
|
|
dict(email='admin@example.com', password='12345678')
|
|
|
|
),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
'/api/stats/all',
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert 'success' in data['status']
|
2021-01-10 11:16:43 +01:00
|
|
|
assert data['data']['workouts'] == 3
|
2020-05-10 15:55:56 +02:00
|
|
|
assert data['data']['sports'] == 2
|
|
|
|
assert data['data']['users'] == 3
|
|
|
|
assert 'uploads_dir_size' in data['data']
|
|
|
|
|
|
|
|
def test_it_returns_error_if_user_has_no_admin_rights(
|
|
|
|
self,
|
2021-01-02 19:28:03 +01:00
|
|
|
app: Flask,
|
|
|
|
user_1: User,
|
|
|
|
user_2: User,
|
|
|
|
user_3: User,
|
|
|
|
sport_1_cycling: Sport,
|
|
|
|
sport_2_running: Sport,
|
2021-01-10 11:16:43 +01:00
|
|
|
workout_cycling_user_1: Workout,
|
|
|
|
workout_cycling_user_2: Workout,
|
|
|
|
workout_running_user_1: Workout,
|
2021-01-02 19:28:03 +01:00
|
|
|
) -> None:
|
2020-05-10 15:55:56 +02:00
|
|
|
client = app.test_client()
|
|
|
|
resp_login = client.post(
|
|
|
|
'/api/auth/login',
|
|
|
|
data=json.dumps(dict(email='test@test.com', password='12345678')),
|
|
|
|
content_type='application/json',
|
|
|
|
)
|
|
|
|
|
|
|
|
response = client.get(
|
|
|
|
'/api/stats/all',
|
|
|
|
headers=dict(
|
|
|
|
Authorization='Bearer '
|
|
|
|
+ json.loads(resp_login.data.decode())['auth_token']
|
|
|
|
),
|
|
|
|
)
|
|
|
|
|
|
|
|
data = json.loads(response.data.decode())
|
|
|
|
assert response.status_code == 403
|
|
|
|
assert 'success' not in data['status']
|
|
|
|
assert 'error' in data['status']
|
|
|
|
assert 'You do not have permissions.' in data['message']
|