1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
import 'package:flutter_test/flutter_test.dart';
import 'package:flutter_calendar_carousel/flutter_calendar_carousel.dart'
show WeekdayFormat;
import 'package:intl/intl.dart' show DateFormat;
import 'package:flutter_calendar_carousel/src/weekday_row.dart';
import 'package:flutter/material.dart';
void main() {
final locale = DateFormat.yMMM("en_US");
final margin = const EdgeInsets.only(bottom: 4.0);
testWidgets('test short weekday row', (WidgetTester tester) async {
await tester.pumpWidget(wrapped(
WeekdayRow(
0,
null,
weekdayPadding: EdgeInsets.all(0),
weekdayBackgroundColor: Colors.transparent,
showWeekdays: true,
weekdayFormat: WeekdayFormat.short,
weekdayMargin: margin,
weekdayTextStyle: null,
localeDate: locale,
),
));
expect(find.text('Sun'), findsOneWidget);
expect(find.text('Mon'), findsOneWidget);
expect(find.text('Tue'), findsOneWidget);
expect(find.text('Wed'), findsOneWidget);
expect(find.text('Thu'), findsOneWidget);
expect(find.text('Fri'), findsOneWidget);
expect(find.text('Sat'), findsOneWidget);
});
testWidgets('test narrow weekday row', (WidgetTester tester) async {
await tester.pumpWidget(wrapped(WeekdayRow(
0,
null,
weekdayPadding: EdgeInsets.all(0),
weekdayBackgroundColor: Colors.transparent,
showWeekdays: true,
weekdayFormat: WeekdayFormat.standaloneNarrow,
weekdayMargin: margin,
weekdayTextStyle: null,
localeDate: locale,
)));
// sat and sun
expect(find.text('S'), findsNWidgets(2));
// thurs and tues
expect(find.text('T'), findsNWidgets(2));
expect(find.text('M'), findsOneWidget);
expect(find.text('W'), findsOneWidget);
expect(find.text('F'), findsOneWidget);
});
testWidgets('test standalone weekday row', (WidgetTester tester) async {
await tester.pumpWidget(wrapped(WeekdayRow(
0,
null,
weekdayPadding: EdgeInsets.all(0),
weekdayBackgroundColor: Colors.transparent,
showWeekdays: true,
weekdayFormat: WeekdayFormat.standalone,
weekdayMargin: margin,
weekdayTextStyle: null,
localeDate: locale,
)));
expect(find.text('Sunday'), findsOneWidget);
expect(find.text('Monday'), findsOneWidget);
expect(find.text('Tuesday'), findsOneWidget);
expect(find.text('Wednesday'), findsOneWidget);
expect(find.text('Thursday'), findsOneWidget);
expect(find.text('Friday'), findsOneWidget);
expect(find.text('Saturday'), findsOneWidget);
});
testWidgets('test standalone short weekday row', (WidgetTester tester) async {
await tester.pumpWidget(wrapped(WeekdayRow(
0,
null,
weekdayPadding: EdgeInsets.all(0),
weekdayBackgroundColor: Colors.transparent,
showWeekdays: true,
weekdayFormat: WeekdayFormat.standaloneShort,
weekdayMargin: margin,
weekdayTextStyle: null,
localeDate: locale,
)));
expect(find.text('Sun'), findsOneWidget);
expect(find.text('Mon'), findsOneWidget);
expect(find.text('Tue'), findsOneWidget);
expect(find.text('Wed'), findsOneWidget);
expect(find.text('Thu'), findsOneWidget);
expect(find.text('Fri'), findsOneWidget);
expect(find.text('Sat'), findsOneWidget);
});
testWidgets('test row does not render', (WidgetTester tester) async {
final emptyContainer = WeekdayRow(
0,
null,
weekdayPadding: EdgeInsets.all(0),
weekdayBackgroundColor: Colors.transparent,
showWeekdays: false,
weekdayFormat: WeekdayFormat.standaloneNarrow,
weekdayMargin: margin,
weekdayTextStyle: null,
localeDate: locale,
);
await tester.pumpWidget(emptyContainer);
expect(find.byType(Container), findsOneWidget);
expect(find.byType(Row), findsNothing);
});
}
Widget wrapped(Widget widget) => Directionality(
textDirection: TextDirection.ltr,
child: widget,
);
|