mirror of
https://github.com/kuhyx/diet-guard.git
synced 2026-07-04 13:23:11 +02:00
Milestone 1 of the diet-app-as-wise-balloon plan: a phone-native way to log meals away from the PC, sharing the exact on-disk JSON shape diet_guard already uses (same field names, no translation layer). - lib/models/: 1:1 Dart mirrors of the Python dataclasses (Nutrition, FoodEntry, MealItem, FoodBankRecord, Slot), including the per-100g/ amount-eaten portion scaling that matches _resolve.resolve_nutrition's semantics exactly. - lib/services/log_storage_service.dart: plain-JSON persistence to food_log.json's exact shape (no sqflite -- the canonical format already is this JSON). - lib/services/foodbank_service.dart: ports _foodbank.py's upsert/fuzzy search logic for autocomplete. - lib/screens/: log_meal_screen.dart (single-item logging) and meal_builder_screen.dart (composite multi-item meals, logging full per-component macros via the new components field). Verified end-to-end on a physical device (BL9000): built, installed, logged a real meal through the UI. 77 Flutter tests passing, `flutter analyze` clean against very_good_analysis. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01FU3f5KQ1GHXsbbSecfVEyF
178 lines
5.9 KiB
Dart
178 lines
5.9 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:diet_guard_app/models/food_entry.dart';
|
|
import 'package:diet_guard_app/models/local_time.dart';
|
|
import 'package:diet_guard_app/models/meal_component.dart';
|
|
import 'package:diet_guard_app/models/nutrition.dart';
|
|
import 'package:diet_guard_app/services/log_storage_service.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
const _manual = Nutrition(
|
|
kcal: 150,
|
|
proteinG: 5,
|
|
carbsG: 20,
|
|
fatG: 3,
|
|
grams: 50,
|
|
source: 'manual',
|
|
);
|
|
|
|
void main() {
|
|
late Directory tempDir;
|
|
|
|
setUp(() async {
|
|
tempDir = await Directory.systemTemp.createTemp('diet_guard_test_');
|
|
LogStorageService.resetForTesting(testDir: tempDir);
|
|
});
|
|
|
|
tearDown(() async {
|
|
LogStorageService.resetForTesting();
|
|
await tempDir.delete(recursive: true);
|
|
});
|
|
|
|
group('readLog', () {
|
|
test('returns an empty log when no file exists yet', () async {
|
|
expect(await LogStorageService.instance.readLog(), isEmpty);
|
|
});
|
|
|
|
test('returns an empty log for unparsable JSON', () async {
|
|
final file = File('${tempDir.path}/food_log.json');
|
|
await file.writeAsString('not json');
|
|
expect(await LogStorageService.instance.readLog(), isEmpty);
|
|
});
|
|
|
|
test('returns an empty log when the JSON root is not a map', () async {
|
|
final file = File('${tempDir.path}/food_log.json');
|
|
await file.writeAsString('[]');
|
|
expect(await LogStorageService.instance.readLog(), isEmpty);
|
|
});
|
|
|
|
test('skips a date key whose value is not a list', () async {
|
|
final file = File('${tempDir.path}/food_log.json');
|
|
await file.writeAsString('{"2026-06-22": "not a list"}');
|
|
expect(await LogStorageService.instance.readLog(), isEmpty);
|
|
});
|
|
});
|
|
|
|
group('logMeal', () {
|
|
test('assigns a fresh id and never an hmac', () async {
|
|
final entry = await LogStorageService.instance.logMeal(
|
|
'toast',
|
|
_manual,
|
|
slot: 8,
|
|
);
|
|
expect(entry.id, isNotEmpty);
|
|
expect(entry.hmac, isNull);
|
|
expect(entry.slot, 8);
|
|
expect(entry.desc, 'toast');
|
|
});
|
|
|
|
test('persists components when given', () async {
|
|
const components = [
|
|
MealComponent(
|
|
name: 'bread',
|
|
kcal: 100,
|
|
proteinG: 3,
|
|
carbsG: 18,
|
|
fatG: 1,
|
|
grams: 40,
|
|
),
|
|
];
|
|
final entry = await LogStorageService.instance.logMeal(
|
|
'toast meal',
|
|
_manual,
|
|
components: components,
|
|
);
|
|
expect(entry.components, hasLength(1));
|
|
final reloaded = await LogStorageService.instance.todayEntries();
|
|
expect(reloaded.single.components!.single.name, 'bread');
|
|
});
|
|
|
|
test('two logged meals both persist under today\'s date key', () async {
|
|
await LogStorageService.instance.logMeal('a', _manual);
|
|
await LogStorageService.instance.logMeal('b', _manual);
|
|
final entries = await LogStorageService.instance.todayEntries();
|
|
expect(entries, hasLength(2));
|
|
});
|
|
});
|
|
|
|
group('undoLastToday', () {
|
|
test('returns null when today has no entries', () async {
|
|
expect(await LogStorageService.instance.undoLastToday(), isNull);
|
|
});
|
|
|
|
test('tombstones the most recent entry in place', () async {
|
|
await LogStorageService.instance.logMeal('first', _manual);
|
|
final second = await LogStorageService.instance.logMeal(
|
|
'second',
|
|
_manual,
|
|
);
|
|
final undone = await LogStorageService.instance.undoLastToday();
|
|
expect(undone!.id, second.id);
|
|
expect(undone.deleted, isTrue);
|
|
});
|
|
|
|
test('tombstoned entries are excluded from todayEntries', () async {
|
|
await LogStorageService.instance.logMeal('only', _manual);
|
|
await LogStorageService.instance.undoLastToday();
|
|
expect(await LogStorageService.instance.todayEntries(), isEmpty);
|
|
});
|
|
|
|
test('never touches a previous day\'s entries', () async {
|
|
final yesterdayKey = localDateKey(
|
|
DateTime.now().subtract(const Duration(days: 1)),
|
|
);
|
|
final yesterday = FoodEntry(
|
|
id: 'yesterday-1',
|
|
time: '${yesterdayKey}T08:00:00+02:00',
|
|
desc: 'yesterday meal',
|
|
grams: 50,
|
|
kcal: 150,
|
|
proteinG: 5,
|
|
carbsG: 20,
|
|
fatG: 3,
|
|
source: 'manual',
|
|
);
|
|
await LogStorageService.instance.writeLog({yesterdayKey: [yesterday]});
|
|
await LogStorageService.instance.logMeal('today', _manual);
|
|
|
|
expect(await LogStorageService.instance.undoLastToday(), isNotNull);
|
|
|
|
final log = await LogStorageService.instance.readLog();
|
|
expect(log[yesterdayKey]!.single.deleted, isFalse);
|
|
});
|
|
|
|
test('skips an already-tombstoned entry and undoes the one before it',
|
|
() async {
|
|
final first = await LogStorageService.instance.logMeal('first', _manual);
|
|
await LogStorageService.instance.logMeal('second', _manual);
|
|
await LogStorageService.instance.undoLastToday();
|
|
final undoneAgain = await LogStorageService.instance.undoLastToday();
|
|
expect(undoneAgain!.id, first.id);
|
|
expect(await LogStorageService.instance.undoLastToday(), isNull);
|
|
});
|
|
});
|
|
|
|
group('todayTotalKcal', () {
|
|
test('sums kcal across today\'s non-tombstoned entries', () async {
|
|
await LogStorageService.instance.logMeal('a', _manual);
|
|
await LogStorageService.instance.logMeal('b', _manual);
|
|
expect(await LogStorageService.instance.todayTotalKcal(), 300.0);
|
|
});
|
|
|
|
test('excludes a tombstoned entry from the total', () async {
|
|
await LogStorageService.instance.logMeal('a', _manual);
|
|
await LogStorageService.instance.logMeal('b', _manual);
|
|
await LogStorageService.instance.undoLastToday();
|
|
expect(await LogStorageService.instance.todayTotalKcal(), 150.0);
|
|
});
|
|
});
|
|
|
|
group('loggedSlotsToday', () {
|
|
test('returns only the slots with a logged entry', () async {
|
|
await LogStorageService.instance.logMeal('a', _manual, slot: 8);
|
|
await LogStorageService.instance.logMeal('b', _manual);
|
|
expect(await LogStorageService.instance.loggedSlotsToday(), {8});
|
|
});
|
|
});
|
|
}
|