mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 00:17:48 +01:00
129 lines
3.7 KiB
Dart
129 lines
3.7 KiB
Dart
/*
|
|
* This file is part of wger Workout Manager <https://github.com/wger-project>.
|
|
* Copyright (c) 2020, 2025 wger Team
|
|
*
|
|
* wger Workout Manager is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:wger/helpers/consts.dart';
|
|
import 'package:wger/models/workouts/log.dart';
|
|
|
|
void main() {
|
|
group('Log.volume', () {
|
|
test('returns weight * repetitions for metric (kg) and repetition unit', () {
|
|
final log = Log(
|
|
exerciseId: 1,
|
|
routineId: 1,
|
|
rir: null,
|
|
date: DateTime.now(),
|
|
weight: 100,
|
|
weightUnitId: WEIGHT_UNIT_KG,
|
|
repetitions: 5,
|
|
repetitionsUnitId: REP_UNIT_REPETITIONS_ID,
|
|
);
|
|
|
|
expect(log.volume(metric: true), equals(500));
|
|
});
|
|
|
|
test('returns 0 when weight unit does not match metric flag', () {
|
|
final log = Log(
|
|
exerciseId: 2,
|
|
routineId: 1,
|
|
rir: null,
|
|
date: DateTime.now(),
|
|
weight: 100,
|
|
weightUnitId: WEIGHT_UNIT_LB, // pounds
|
|
repetitions: 5,
|
|
repetitionsUnitId: REP_UNIT_REPETITIONS_ID,
|
|
);
|
|
|
|
// metric = true expects KG -> mismatch -> 0
|
|
expect(log.volume(metric: true), equals(0));
|
|
});
|
|
|
|
test('returns weight * repetitions for imperial (lb) when metric=false', () {
|
|
final log = Log(
|
|
exerciseId: 3,
|
|
routineId: 1,
|
|
rir: null,
|
|
date: DateTime.now(),
|
|
weight: 220, // lb
|
|
weightUnitId: WEIGHT_UNIT_LB,
|
|
repetitions: 3,
|
|
repetitionsUnitId: REP_UNIT_REPETITIONS_ID,
|
|
);
|
|
|
|
expect(log.volume(metric: false), equals(660));
|
|
});
|
|
|
|
test('returns 0 when repetitions unit is not repetitions', () {
|
|
final log = Log(
|
|
exerciseId: 4,
|
|
routineId: 1,
|
|
rir: null,
|
|
date: DateTime.now(),
|
|
weight: 50,
|
|
weightUnitId: WEIGHT_UNIT_KG,
|
|
repetitions: 10,
|
|
repetitionsUnitId: 999, // some other unit id
|
|
);
|
|
|
|
expect(log.volume(metric: true), equals(0));
|
|
});
|
|
|
|
test('returns 0 when weight or repetitions are null', () {
|
|
final a = Log(
|
|
exerciseId: 5,
|
|
routineId: 1,
|
|
rir: null,
|
|
date: DateTime.now(),
|
|
weight: null,
|
|
weightUnitId: WEIGHT_UNIT_KG,
|
|
repetitions: 5,
|
|
repetitionsUnitId: REP_UNIT_REPETITIONS_ID,
|
|
);
|
|
|
|
final b = Log(
|
|
exerciseId: 6,
|
|
routineId: 1,
|
|
rir: null,
|
|
date: DateTime.now(),
|
|
weight: 50,
|
|
weightUnitId: WEIGHT_UNIT_KG,
|
|
repetitions: null,
|
|
repetitionsUnitId: REP_UNIT_REPETITIONS_ID,
|
|
);
|
|
|
|
expect(a.volume(metric: true), equals(0));
|
|
expect(b.volume(metric: true), equals(0));
|
|
});
|
|
|
|
test('works with non-integer (num) weight and repetitions', () {
|
|
final log = Log(
|
|
exerciseId: 7,
|
|
routineId: 1,
|
|
rir: null,
|
|
date: DateTime.now(),
|
|
weight: 10.5,
|
|
weightUnitId: WEIGHT_UNIT_KG,
|
|
repetitions: 3,
|
|
repetitionsUnitId: REP_UNIT_REPETITIONS_ID,
|
|
);
|
|
|
|
expect(log.volume(metric: true), closeTo(31.5, 0.0001));
|
|
});
|
|
});
|
|
}
|