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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter_test/flutter_test.dart';
import 'package:flutter/material.dart';
class TestOverlayRoute extends OverlayRoute<void> {
TestOverlayRoute({ RouteSettings settings }) : super(settings: settings);
@override
Iterable<OverlayEntry> createOverlayEntries() sync* {
yield new OverlayEntry(builder: _build);
}
Widget _build(BuildContext context) => const Text('Overlay');
}
class PersistentBottomSheetTest extends StatefulWidget {
const PersistentBottomSheetTest({ Key key }) : super(key: key);
@override
PersistentBottomSheetTestState createState() => new PersistentBottomSheetTestState();
}
class PersistentBottomSheetTestState extends State<PersistentBottomSheetTest> {
final GlobalKey<ScaffoldState> _scaffoldKey = new GlobalKey<ScaffoldState>();
bool setStateCalled = false;
void showBottomSheet() {
_scaffoldKey.currentState.showBottomSheet<Null>((BuildContext context) {
return const Text('bottomSheet');
})
.closed.whenComplete(() {
setState(() {
setStateCalled = true;
});
});
}
@override
Widget build(BuildContext context) {
return new Scaffold(
key: _scaffoldKey,
body: const Text('Sheet')
);
}
}
void main() {
testWidgets('Check onstage/offstage handling around transitions', (WidgetTester tester) async {
final GlobalKey containerKey1 = new GlobalKey();
final GlobalKey containerKey2 = new GlobalKey();
final Map<String, WidgetBuilder> routes = <String, WidgetBuilder>{
'/': (_) => new Container(key: containerKey1, child: const Text('Home')),
'/settings': (_) => new Container(key: containerKey2, child: const Text('Settings')),
};
await tester.pumpWidget(new MaterialApp(routes: routes));
expect(find.text('Home'), isOnstage);
expect(find.text('Settings'), findsNothing);
expect(find.text('Overlay'), findsNothing);
expect(Navigator.canPop(containerKey1.currentContext), isFalse);
Navigator.pushNamed(containerKey1.currentContext, '/settings');
expect(Navigator.canPop(containerKey1.currentContext), isTrue);
await tester.pump();
expect(find.text('Home'), isOnstage);
expect(find.text('Settings', skipOffstage: false), isOffstage);
expect(find.text('Overlay'), findsNothing);
await tester.pump(const Duration(milliseconds: 16));
expect(find.text('Home'), isOnstage);
expect(find.text('Settings'), isOnstage);
expect(find.text('Overlay'), findsNothing);
await tester.pump(const Duration(seconds: 1));
expect(find.text('Home'), findsNothing);
expect(find.text('Settings'), isOnstage);
expect(find.text('Overlay'), findsNothing);
Navigator.push(containerKey2.currentContext, new TestOverlayRoute());
await tester.pump();
expect(find.text('Home'), findsNothing);
expect(find.text('Settings'), isOnstage);
expect(find.text('Overlay'), isOnstage);
await tester.pump(const Duration(seconds: 1));
expect(find.text('Home'), findsNothing);
expect(find.text('Settings'), isOnstage);
expect(find.text('Overlay'), isOnstage);
expect(Navigator.canPop(containerKey2.currentContext), isTrue);
Navigator.pop(containerKey2.currentContext);
await tester.pump();
expect(find.text('Home'), findsNothing);
expect(find.text('Settings'), isOnstage);
expect(find.text('Overlay'), findsNothing);
await tester.pump(const Duration(seconds: 1));
expect(find.text('Home'), findsNothing);
expect(find.text('Settings'), isOnstage);
expect(find.text('Overlay'), findsNothing);
expect(Navigator.canPop(containerKey2.currentContext), isTrue);
Navigator.pop(containerKey2.currentContext);
await tester.pump();
await tester.pump();
expect(find.text('Home'), isOnstage);
expect(find.text('Settings'), isOnstage);
expect(find.text('Overlay'), findsNothing);
await tester.pump(const Duration(seconds: 1));
expect(find.text('Home'), isOnstage);
expect(find.text('Settings'), findsNothing);
expect(find.text('Overlay'), findsNothing);
expect(Navigator.canPop(containerKey1.currentContext), isFalse);
});
testWidgets('Check back gesture disables Heroes', (WidgetTester tester) async {
final GlobalKey containerKey1 = new GlobalKey();
final GlobalKey containerKey2 = new GlobalKey();
const String kHeroTag = 'hero';
final Map<String, WidgetBuilder> routes = <String, WidgetBuilder>{
'/': (_) => new Scaffold(
key: containerKey1,
body: new Container(
color: const Color(0xff00ffff),
child: const Hero(
tag: kHeroTag,
child: const Text('Home')
)
)
),
'/settings': (_) => new Scaffold(
key: containerKey2,
body: new Container(
padding: const EdgeInsets.all(100.0),
color: const Color(0xffff00ff),
child: const Hero(
tag: kHeroTag,
child: const Text('Settings')
)
)
),
};
await tester.pumpWidget(new MaterialApp(
routes: routes,
theme: new ThemeData(platform: TargetPlatform.iOS),
));
Navigator.pushNamed(containerKey1.currentContext, '/settings');
await tester.pump();
await tester.pump(const Duration(milliseconds: 16));
expect(find.text('Settings'), isOnstage);
// Settings text is heroing to its new location
Offset settingsOffset = tester.getTopLeft(find.text('Settings'));
expect(settingsOffset.dx, greaterThan(0.0));
expect(settingsOffset.dx, lessThan(100.0));
expect(settingsOffset.dy, greaterThan(0.0));
expect(settingsOffset.dy, lessThan(100.0));
await tester.pump(const Duration(seconds: 1));
expect(find.text('Home'), findsNothing);
expect(find.text('Settings'), isOnstage);
// Drag from left edge to invoke the gesture.
final TestGesture gesture = await tester.startGesture(const Offset(5.0, 100.0));
await gesture.moveBy(const Offset(50.0, 0.0));
await tester.pump();
// Home is now visible.
expect(find.text('Home'), isOnstage);
expect(find.text('Settings'), isOnstage);
// Home page is sliding in from the left, no heroes.
final Offset homeOffset = tester.getTopLeft(find.text('Home'));
expect(homeOffset.dx, lessThan(0.0));
expect(homeOffset.dy, 0.0);
// Settings page is sliding off to the right, no heroes.
settingsOffset = tester.getTopLeft(find.text('Settings'));
expect(settingsOffset.dx, greaterThan(100.0));
expect(settingsOffset.dy, 100.0);
});
testWidgets('Check back gesture doesn\'t start during transitions', (WidgetTester tester) async {
final GlobalKey containerKey1 = new GlobalKey();
final GlobalKey containerKey2 = new GlobalKey();
final Map<String, WidgetBuilder> routes = <String, WidgetBuilder>{
'/': (_) => new Scaffold(key: containerKey1, body: const Text('Home')),
'/settings': (_) => new Scaffold(key: containerKey2, body: const Text('Settings')),
};
await tester.pumpWidget(new MaterialApp(
routes: routes,
theme: new ThemeData(platform: TargetPlatform.iOS),
));
Navigator.pushNamed(containerKey1.currentContext, '/settings');
await tester.pump();
await tester.pump(const Duration(milliseconds: 100));
// We are mid-transition, both pages are on stage.
expect(find.text('Home'), isOnstage);
expect(find.text('Settings'), isOnstage);
// Drag from left edge to invoke the gesture. (near bottom so we grab
// the Settings page as it comes up).
TestGesture gesture = await tester.startGesture(const Offset(5.0, 550.0));
await gesture.moveBy(const Offset(500.0, 0.0));
await gesture.up();
await tester.pump();
await tester.pump(const Duration(milliseconds: 1000));
// The original forward navigation should have completed, instead of the
// back gesture, since we were mid transition.
expect(find.text('Home'), findsNothing);
expect(find.text('Settings'), isOnstage);
// Try again now that we're settled.
gesture = await tester.startGesture(const Offset(5.0, 550.0));
await gesture.moveBy(const Offset(500.0, 0.0));
await gesture.up();
await tester.pump();
await tester.pump(const Duration(milliseconds: 1000));
expect(find.text('Home'), isOnstage);
expect(find.text('Settings'), findsNothing);
});
// Tests bug https://github.com/flutter/flutter/issues/6451
testWidgets('Check back gesture with a persistent bottom sheet showing', (WidgetTester tester) async {
final GlobalKey containerKey1 = new GlobalKey();
final GlobalKey containerKey2 = new GlobalKey();
final Map<String, WidgetBuilder> routes = <String, WidgetBuilder>{
'/': (_) => new Scaffold(key: containerKey1, body: const Text('Home')),
'/sheet': (_) => new PersistentBottomSheetTest(key: containerKey2),
};
await tester.pumpWidget(new MaterialApp(
routes: routes,
theme: new ThemeData(platform: TargetPlatform.iOS),
));
Navigator.pushNamed(containerKey1.currentContext, '/sheet');
await tester.pump();
await tester.pump(const Duration(seconds: 1));
expect(find.text('Home'), findsNothing);
expect(find.text('Sheet'), isOnstage);
// Drag from left edge to invoke the gesture. We should go back.
TestGesture gesture = await tester.startGesture(const Offset(5.0, 100.0));
await gesture.moveBy(const Offset(500.0, 0.0));
await gesture.up();
await tester.pump();
await tester.pump(const Duration(seconds: 1));
Navigator.pushNamed(containerKey1.currentContext, '/sheet');
await tester.pump();
await tester.pump(const Duration(seconds: 1));
expect(find.text('Home'), findsNothing);
expect(find.text('Sheet'), isOnstage);
// Show the bottom sheet.
final PersistentBottomSheetTestState sheet = containerKey2.currentState;
sheet.showBottomSheet();
await tester.pump(const Duration(seconds: 1));
// Drag from left edge to invoke the gesture. Nothing should happen.
gesture = await tester.startGesture(const Offset(5.0, 100.0));
await gesture.moveBy(const Offset(500.0, 0.0));
await gesture.up();
await tester.pump();
await tester.pump(const Duration(seconds: 1));
expect(find.text('Home'), findsNothing);
expect(find.text('Sheet'), isOnstage);
// Sheet did not call setState (since the gesture did nothing).
expect(sheet.setStateCalled, isFalse);
});
testWidgets('Test completed future', (WidgetTester tester) async {
final Map<String, WidgetBuilder> routes = <String, WidgetBuilder>{
'/': (_) => const Center(child: const Text('home')),
'/next': (_) => const Center(child: const Text('next')),
};
await tester.pumpWidget(new MaterialApp(routes: routes));
final PageRoute<void> route = new MaterialPageRoute<void>(
settings: const RouteSettings(name: '/page'),
builder: (BuildContext context) => const Center(child: const Text('page')),
);
int popCount = 0;
route.popped.whenComplete(() {
popCount += 1;
});
int completeCount = 0;
route.completed.whenComplete(() {
completeCount += 1;
});
expect(popCount, 0);
expect(completeCount, 0);
Navigator.push(tester.element(find.text('home')), route);
expect(popCount, 0);
expect(completeCount, 0);
await tester.pump();
expect(popCount, 0);
expect(completeCount, 0);
await tester.pump(const Duration(milliseconds: 100));
expect(popCount, 0);
expect(completeCount, 0);
await tester.pump(const Duration(milliseconds: 100));
expect(popCount, 0);
expect(completeCount, 0);
await tester.pump(const Duration(seconds: 1));
expect(popCount, 0);
expect(completeCount, 0);
Navigator.pop(tester.element(find.text('page')));
expect(popCount, 0);
expect(completeCount, 0);
await tester.pump();
expect(popCount, 1);
expect(completeCount, 0);
await tester.pump(const Duration(milliseconds: 100));
expect(popCount, 1);
expect(completeCount, 0);
await tester.pump(const Duration(milliseconds: 100));
expect(popCount, 1);
expect(completeCount, 0);
await tester.pump(const Duration(seconds: 1));
expect(popCount, 1);
expect(completeCount, 1);
});
}