Raise the declared minimums in pubspec.yaml to what our deps already require: Flutter >=3.35.0 / Dart >=3.9.0 (was 3.19.0 / 3.5.0). alchemist 0.12 needs Flutter 3.32; Dart 3.9 first ships in Flutter 3.35, so 3.35 is the binding floor. Pin the exact build toolchain in .fvmrc (Flutter 3.44.1). Moving to the Dart 3.9 language level switches `dart format` to the new "tall" style and enables two new lints. This commit is the resulting mechanical churn, isolated from any behaviour change: - whole-tree `dart format` reformat (tall style) - `dart fix` for unnecessary_underscores + use_null_aware_elements No runtime behaviour change; `make test` green. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
70 lines
2.8 KiB
Dart
70 lines
2.8 KiB
Dart
import 'package:clide/builtin/claude/src/session_index.dart';
|
|
import 'package:clide/builtin/claude/src/session_picker.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import '../../helpers/kernel_fixture.dart';
|
|
import '../../helpers/widget_harness.dart';
|
|
|
|
void main() {
|
|
group('relativeTime', () {
|
|
final now = DateTime(2026, 5, 23, 12);
|
|
test('buckets recent times', () {
|
|
expect(relativeTime(now.subtract(const Duration(seconds: 10)), now: now), 'just now');
|
|
expect(relativeTime(now.subtract(const Duration(minutes: 5)), now: now), '5m ago');
|
|
expect(relativeTime(now.subtract(const Duration(hours: 3)), now: now), '3h ago');
|
|
expect(relativeTime(now.subtract(const Duration(days: 2)), now: now), '2d ago');
|
|
});
|
|
|
|
test('falls back to a date for older sessions', () {
|
|
expect(relativeTime(DateTime(2026, 1, 9), now: now), '2026-01-09');
|
|
});
|
|
});
|
|
|
|
group('SessionPickerDialog', () {
|
|
late KernelFixture f;
|
|
setUp(() async => f = await KernelFixture.create());
|
|
tearDown(() => f.dispose());
|
|
|
|
List<SessionSummary> two() => [
|
|
SessionSummary(id: 'aaa', modified: DateTime.now(), firstUser: 'first a', lastUser: 'last a'),
|
|
SessionSummary(id: 'bbb', modified: DateTime.now(), firstUser: 'first b', lastUser: 'last b'),
|
|
];
|
|
|
|
testWidgets('renders first … last labels and picks with arrow + Enter', (tester) async {
|
|
String? picked;
|
|
await tester.pumpWidget(harness(f, SessionPickerDialog(sessions: two(), onPick: (id) => picked = id, onCancel: () {})));
|
|
await tester.pump();
|
|
expect(find.text('first a … last a'), findsOneWidget);
|
|
expect(find.text('first b … last b'), findsOneWidget);
|
|
|
|
await tester.sendKeyEvent(LogicalKeyboardKey.arrowDown); // select bbb
|
|
await tester.pump();
|
|
await tester.sendKeyEvent(LogicalKeyboardKey.enter);
|
|
expect(picked, 'bbb');
|
|
});
|
|
|
|
testWidgets('Escape cancels', (tester) async {
|
|
var cancelled = false;
|
|
await tester.pumpWidget(harness(f, SessionPickerDialog(sessions: two(), onPick: (_) {}, onCancel: () => cancelled = true)));
|
|
await tester.pump();
|
|
await tester.sendKeyEvent(LogicalKeyboardKey.escape);
|
|
expect(cancelled, isTrue);
|
|
});
|
|
|
|
testWidgets('tap picks a row', (tester) async {
|
|
String? picked;
|
|
await tester.pumpWidget(harness(f, SessionPickerDialog(sessions: two(), onPick: (id) => picked = id, onCancel: () {})));
|
|
await tester.pump();
|
|
await tester.tap(find.text('first b … last b'));
|
|
expect(picked, 'bbb');
|
|
});
|
|
|
|
testWidgets('empty list shows a message', (tester) async {
|
|
await tester.pumpWidget(harness(f, SessionPickerDialog(sessions: const [], onPick: (_) {}, onCancel: () {})));
|
|
await tester.pump();
|
|
expect(find.text('No sessions found for this workspace.'), findsOneWidget);
|
|
});
|
|
});
|
|
}
|