91 lines
3.2 KiB
Dart
91 lines
3.2 KiB
Dart
|
|
import 'package:flutter_test/flutter_test.dart';
|
||
|
|
import 'package:ocideck/services/rehearsal_controller.dart';
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
// Bestuurbare klok zodat de timing deterministisch is.
|
||
|
|
late DateTime now;
|
||
|
|
DateTime clock() => now;
|
||
|
|
|
||
|
|
setUp(() => now = DateTime(2026, 1, 1, 10, 0, 0));
|
||
|
|
void advance(Duration d) => now = now.add(d);
|
||
|
|
|
||
|
|
test('elapsed loopt met de klok mee', () {
|
||
|
|
final c = RehearsalController(now: clock);
|
||
|
|
expect(c.elapsed, Duration.zero);
|
||
|
|
advance(const Duration(seconds: 90));
|
||
|
|
expect(c.elapsed, const Duration(seconds: 90));
|
||
|
|
});
|
||
|
|
|
||
|
|
test('per-slide-tijd telt op per slide en houdt volgorde aan', () {
|
||
|
|
final c = RehearsalController(now: clock);
|
||
|
|
c.observe('a', 0);
|
||
|
|
advance(const Duration(seconds: 30));
|
||
|
|
c.observe('b', 1);
|
||
|
|
advance(const Duration(seconds: 20));
|
||
|
|
c.observe('a', 0); // terug naar a
|
||
|
|
advance(const Duration(seconds: 10));
|
||
|
|
|
||
|
|
final run = c.finish();
|
||
|
|
expect(run.total, const Duration(seconds: 60));
|
||
|
|
expect(run.perSlide.map((t) => t.slideId).toList(), ['a', 'b']);
|
||
|
|
expect(run.perSlide[0].spent, const Duration(seconds: 40)); // 30 + 10
|
||
|
|
expect(run.perSlide[1].spent, const Duration(seconds: 20));
|
||
|
|
});
|
||
|
|
|
||
|
|
test('observe is idempotent: dezelfde slide sluit niet af', () {
|
||
|
|
final c = RehearsalController(now: clock);
|
||
|
|
c.observe('a', 0);
|
||
|
|
advance(const Duration(seconds: 5));
|
||
|
|
c.observe('a', 0); // geen wissel
|
||
|
|
advance(const Duration(seconds: 5));
|
||
|
|
expect(c.currentSlideElapsed, const Duration(seconds: 10));
|
||
|
|
});
|
||
|
|
|
||
|
|
test('aftelling: resterend wordt negatief na de doeltijd', () {
|
||
|
|
final c = RehearsalController(now: clock, target: const Duration(minutes: 1));
|
||
|
|
advance(const Duration(seconds: 40));
|
||
|
|
expect(c.remaining, const Duration(seconds: 20));
|
||
|
|
advance(const Duration(seconds: 30));
|
||
|
|
expect(c.remaining, const Duration(seconds: -10));
|
||
|
|
});
|
||
|
|
|
||
|
|
test('geen doeltijd → geen resterende tijd; nul-target zet aftelling uit', () {
|
||
|
|
final c = RehearsalController(now: clock);
|
||
|
|
expect(c.remaining, isNull);
|
||
|
|
c.target = Duration.zero;
|
||
|
|
expect(c.target, isNull);
|
||
|
|
c.target = const Duration(minutes: 5);
|
||
|
|
expect(c.target, const Duration(minutes: 5));
|
||
|
|
});
|
||
|
|
|
||
|
|
test('reset wist run en per-slide-tijden, behoudt doeltijd', () {
|
||
|
|
final c = RehearsalController(now: clock, target: const Duration(minutes: 1));
|
||
|
|
c.observe('a', 0);
|
||
|
|
advance(const Duration(seconds: 30));
|
||
|
|
c.reset();
|
||
|
|
expect(c.elapsed, Duration.zero);
|
||
|
|
expect(c.target, const Duration(minutes: 1));
|
||
|
|
// Na reset is er nog geen geregistreerde slide.
|
||
|
|
advance(const Duration(seconds: 5));
|
||
|
|
expect(c.finish().perSlide, isEmpty);
|
||
|
|
});
|
||
|
|
|
||
|
|
test('hasMeaningfulData vereist een slide én ≥10s', () {
|
||
|
|
final c = RehearsalController(now: clock);
|
||
|
|
expect(c.hasMeaningfulData, isFalse);
|
||
|
|
c.observe('a', 0);
|
||
|
|
advance(const Duration(seconds: 9));
|
||
|
|
expect(c.hasMeaningfulData, isFalse);
|
||
|
|
advance(const Duration(seconds: 1));
|
||
|
|
expect(c.hasMeaningfulData, isTrue);
|
||
|
|
});
|
||
|
|
|
||
|
|
test('delta beschrijft over/onder de doeltijd', () {
|
||
|
|
final c = RehearsalController(now: clock, target: const Duration(minutes: 1));
|
||
|
|
c.observe('a', 0);
|
||
|
|
advance(const Duration(seconds: 70));
|
||
|
|
final run = c.finish();
|
||
|
|
expect(run.delta, const Duration(seconds: 10)); // over de tijd
|
||
|
|
});
|
||
|
|
}
|