routes_test.dart 68.9 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5 6
import 'dart:collection';

7
import 'package:flutter/material.dart';
8
import 'package:flutter/services.dart';
9
import 'package:flutter_test/flutter_test.dart';
10

11 12
import 'semantics_tester.dart';

13 14
final List<String> results = <String>[];

15
Set<TestRoute> routes = HashSet<TestRoute>();
16

17
class TestRoute extends Route<String?> with LocalHistoryRoute<String?> {
18 19 20
  TestRoute(this.name);
  final String name;

21
  @override
22 23
  List<OverlayEntry> get overlayEntries => _entries;

24
  final List<OverlayEntry> _entries = <OverlayEntry>[];
25 26 27 28 29

  void log(String s) {
    results.add('$name: $s');
  }

30
  @override
31
  void install() {
32
    log('install');
33 34
    final OverlayEntry entry = OverlayEntry(
      builder: (BuildContext context) => Container(),
35
      opaque: true,
36 37
    );
    _entries.add(entry);
38
    routes.add(this);
39
    super.install();
40 41
  }

42
  @override
43
  TickerFuture didPush() {
44
    log('didPush');
45
    return super.didPush();
46 47
  }

48 49 50 51 52 53
  @override
  void didAdd() {
    log('didAdd');
    super.didAdd();
  }

54
  @override
55
  void didReplace(Route<dynamic>? oldRoute) {
Dan Field's avatar
Dan Field committed
56
    expect(oldRoute, isA<TestRoute>());
57
    final TestRoute castRoute = oldRoute! as TestRoute;
58 59
    log('didReplace ${castRoute.name}');
    super.didReplace(castRoute);
60 61
  }

62
  @override
63
  bool didPop(String? result) {
64
    log('didPop $result');
65 66
    bool returnValue;
    if (returnValue = super.didPop(result))
67
      navigator!.finalizeRoute(this);
68
    return returnValue;
69 70
  }

71
  @override
72
  void didPopNext(Route<dynamic> nextRoute) {
Dan Field's avatar
Dan Field committed
73
    expect(nextRoute, isA<TestRoute>());
74
    final TestRoute castRoute = nextRoute as TestRoute;
75 76
    log('didPopNext ${castRoute.name}');
    super.didPopNext(castRoute);
77 78
  }

79
  @override
80
  void didChangeNext(Route<dynamic>? nextRoute) {
Dan Field's avatar
Dan Field committed
81
    expect(nextRoute, anyOf(isNull, isA<TestRoute>()));
82
    final TestRoute? castRoute = nextRoute as TestRoute?;
83 84
    log('didChangeNext ${castRoute?.name}');
    super.didChangeNext(castRoute);
85 86
  }

87
  @override
88 89 90
  void dispose() {
    log('dispose');
    _entries.clear();
91
    routes.remove(this);
92
    super.dispose();
93 94 95 96
  }

}

97
Future<void> runNavigatorTest(
98 99
  WidgetTester tester,
  NavigatorState host,
100
  VoidCallback test,
101 102 103
  List<String> expectations, [
  List<String> expectationsAfterAnotherPump = const <String>[],
]) async {
104
  expect(host, isNotNull);
105
  test();
106 107
  expect(results, equals(expectations));
  results.clear();
108
  await tester.pump();
109 110
  expect(results, equals(expectationsAfterAnotherPump));
  results.clear();
111 112 113
}

void main() {
114
  testWidgets('Route settings', (WidgetTester tester) async {
115
    const RouteSettings settings = RouteSettings(name: 'A');
116
    expect(settings, hasOneLineDescription);
117 118
    final RouteSettings settings2 = settings.copyWith(name: 'B');
    expect(settings2.name, 'B');
119 120
  });

121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
  testWidgets('Route settings arguments', (WidgetTester tester) async {
    const RouteSettings settings = RouteSettings(name: 'A');
    expect(settings.arguments, isNull);

    final Object arguments = Object();
    final RouteSettings settings2 = RouteSettings(name: 'A', arguments: arguments);
    expect(settings2.arguments, same(arguments));

    final RouteSettings settings3 = settings2.copyWith();
    expect(settings3.arguments, equals(arguments));

    final Object arguments2 = Object();
    final RouteSettings settings4 = settings2.copyWith(arguments: arguments2);
    expect(settings4.arguments, same(arguments2));
    expect(settings4.arguments, isNot(same(arguments)));
  });

138
  testWidgets('Route management - push, replace, pop sequence', (WidgetTester tester) async {
139
    final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
140
    await tester.pumpWidget(
141
      Directionality(
142
        textDirection: TextDirection.ltr,
143
        child: Navigator(
144
          key: navigatorKey,
145
          onGenerateRoute: (_) => TestRoute('initial'),
146 147 148
        ),
      ),
    );
149
    final NavigatorState host = navigatorKey.currentState!;
150
    await runNavigatorTest(
151 152
      tester,
      host,
153
      () { },
154
      <String>[
155
        'initial: install',
156
        'initial: didAdd',
157
        'initial: didChangeNext null',
158
      ],
159
    );
160
    late TestRoute second;
161
    await runNavigatorTest(
162 163
      tester,
      host,
164
      () { host.push(second = TestRoute('second')); },
165
      <String>[ // stack is: initial, second
166 167 168 169
        'second: install',
        'second: didPush',
        'second: didChangeNext null',
        'initial: didChangeNext second',
170
      ],
171
    );
172
    await runNavigatorTest(
173 174
      tester,
      host,
175
      () { host.push(TestRoute('third')); },
176
      <String>[ // stack is: initial, second, third
177 178 179 180
        'third: install',
        'third: didPush',
        'third: didChangeNext null',
        'second: didChangeNext third',
181
      ],
182
    );
183
    await runNavigatorTest(
184 185
      tester,
      host,
186
      () { host.replace(oldRoute: second, newRoute: TestRoute('two')); },
187
      <String>[ // stack is: initial, two, third
188 189 190 191 192
        'two: install',
        'two: didReplace second',
        'two: didChangeNext third',
        'initial: didChangeNext two',
        'second: dispose',
193
      ],
194
    );
195
    await runNavigatorTest(
196 197
      tester,
      host,
198
      () { host.pop('hello'); },
199
      <String>[ // stack is: initial, two
200 201
        'third: didPop hello',
        'two: didPopNext third',
202 203
      ],
      <String>[
204
        'third: dispose',
205
      ],
206
    );
207
    await runNavigatorTest(
208 209
      tester,
      host,
210
      () { host.pop('good bye'); },
211
      <String>[ // stack is: initial
212 213
        'two: didPop good bye',
        'initial: didPopNext two',
214 215
      ],
      <String>[
216
        'two: dispose',
217
      ],
218
    );
219
    await tester.pumpWidget(Container());
220
    expect(results, equals(<String>['initial: dispose']));
221 222
    expect(routes.isEmpty, isTrue);
    results.clear();
223 224
  });

225
  testWidgets('Route management - push, remove, pop', (WidgetTester tester) async {
226
    final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
227
    await tester.pumpWidget(
228
      Directionality(
229
        textDirection: TextDirection.ltr,
230
        child: Navigator(
231
          key: navigatorKey,
232
          onGenerateRoute: (_) => TestRoute('first'),
233 234 235
        ),
      ),
    );
236
    final NavigatorState host = navigatorKey.currentState!;
237
    await runNavigatorTest(
238 239
      tester,
      host,
240
      () { },
241
      <String>[
242
        'first: install',
243
        'first: didAdd',
244
        'first: didChangeNext null',
245
      ],
246
    );
247
    late TestRoute second;
248
    await runNavigatorTest(
249 250
      tester,
      host,
251
      () { host.push(second = TestRoute('second')); },
252
      <String>[
253 254 255 256
        'second: install',
        'second: didPush',
        'second: didChangeNext null',
        'first: didChangeNext second',
257
      ],
258
    );
259
    await runNavigatorTest(
260 261
      tester,
      host,
262
      () { host.push(TestRoute('third')); },
263
      <String>[
264 265 266 267
        'third: install',
        'third: didPush',
        'third: didChangeNext null',
        'second: didChangeNext third',
268
      ],
269
    );
270
    await runNavigatorTest(
271 272
      tester,
      host,
273
      () { host.removeRouteBelow(second); },
274
      <String>[
275
        'first: dispose',
276
      ],
277
    );
278
    await runNavigatorTest(
279 280
      tester,
      host,
281
      () { host.pop('good bye'); },
282
      <String>[
283 284
        'third: didPop good bye',
        'second: didPopNext third',
285 286
      ],
      <String>[
287
        'third: dispose',
288
      ],
289
    );
290
    await runNavigatorTest(
291 292
      tester,
      host,
293
      () { host.push(TestRoute('three')); },
294
      <String>[
295 296 297 298
        'three: install',
        'three: didPush',
        'three: didChangeNext null',
        'second: didChangeNext three',
299
      ],
300
    );
301
    late TestRoute four;
302
    await runNavigatorTest(
303 304
      tester,
      host,
305
      () { host.push(four = TestRoute('four')); },
306
      <String>[
307 308 309 310
        'four: install',
        'four: didPush',
        'four: didChangeNext null',
        'three: didChangeNext four',
311
      ],
312
    );
313
    await runNavigatorTest(
314 315
      tester,
      host,
316
      () { host.removeRouteBelow(four); },
317
      <String>[
318 319
        'second: didChangeNext four',
        'three: dispose',
320
      ],
321
    );
322
    await runNavigatorTest(
323 324
      tester,
      host,
325
      () { host.pop('the end'); },
326
      <String>[
327 328
        'four: didPop the end',
        'second: didPopNext four',
329 330
      ],
      <String>[
331
        'four: dispose',
332
      ],
333
    );
334
    await tester.pumpWidget(Container());
335
    expect(results, equals(<String>['second: dispose']));
336 337
    expect(routes.isEmpty, isTrue);
    results.clear();
338 339
  });

340
  testWidgets('Route management - push, replace, popUntil', (WidgetTester tester) async {
341
    final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
342
    await tester.pumpWidget(
343
      Directionality(
344
        textDirection: TextDirection.ltr,
345
        child: Navigator(
346
          key: navigatorKey,
347
          onGenerateRoute: (_) => TestRoute('A'),
348 349 350
        ),
      ),
    );
351
    final NavigatorState host = navigatorKey.currentState!;
352
    await runNavigatorTest(
353 354
      tester,
      host,
355
      () { },
356
      <String>[
357
        'A: install',
358
        'A: didAdd',
359
        'A: didChangeNext null',
360
      ],
361
    );
362
    await runNavigatorTest(
363 364
      tester,
      host,
365
      () { host.push(TestRoute('B')); },
366
      <String>[
367 368 369 370
        'B: install',
        'B: didPush',
        'B: didChangeNext null',
        'A: didChangeNext B',
371
      ],
372
    );
373
    late TestRoute routeC;
374
    await runNavigatorTest(
375 376
      tester,
      host,
377
      () { host.push(routeC = TestRoute('C')); },
378
      <String>[
379 380 381 382
        'C: install',
        'C: didPush',
        'C: didChangeNext null',
        'B: didChangeNext C',
383
      ],
384
    );
385
    expect(routeC.isActive, isTrue);
386
    late TestRoute routeB;
387
    await runNavigatorTest(
388 389
      tester,
      host,
390
      () { host.replaceRouteBelow(anchorRoute: routeC, newRoute: routeB = TestRoute('b')); },
391
      <String>[
392 393 394 395 396
        'b: install',
        'b: didReplace B',
        'b: didChangeNext C',
        'A: didChangeNext b',
        'B: dispose',
397
      ],
398
    );
399
    await runNavigatorTest(
400 401
      tester,
      host,
Hans Muller's avatar
Hans Muller committed
402
      () { host.popUntil((Route<dynamic> route) => route == routeB); },
403
      <String>[
404 405
        'C: didPop null',
        'b: didPopNext C',
406 407
      ],
      <String>[
408
        'C: dispose',
409
      ],
410
    );
411
    await tester.pumpWidget(Container());
412
    expect(results, equals(<String>['A: dispose', 'b: dispose']));
413 414
    expect(routes.isEmpty, isTrue);
    results.clear();
415
  });
Hans Muller's avatar
Hans Muller committed
416 417

  testWidgets('Route localHistory - popUntil', (WidgetTester tester) async {
418 419
    final TestRoute routeA = TestRoute('A');
    routeA.addLocalHistoryEntry(LocalHistoryEntry(
Hans Muller's avatar
Hans Muller committed
420 421
      onRemove: () { routeA.log('onRemove 0'); }
    ));
422
    routeA.addLocalHistoryEntry(LocalHistoryEntry(
Hans Muller's avatar
Hans Muller committed
423 424
      onRemove: () { routeA.log('onRemove 1'); }
    ));
425
    final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
426
    await tester.pumpWidget(
427
      Directionality(
428
        textDirection: TextDirection.ltr,
429
        child: Navigator(
430
          key: navigatorKey,
431
          onGenerateRoute: (_) => routeA,
432 433 434
        ),
      ),
    );
435
    final NavigatorState host = navigatorKey.currentState!;
Hans Muller's avatar
Hans Muller committed
436 437 438 439 440 441
    await runNavigatorTest(
      tester,
      host,
      () { host.popUntil((Route<dynamic> route) => !route.willHandlePopInternally); },
      <String>[
        'A: install',
442
        'A: didAdd',
Hans Muller's avatar
Hans Muller committed
443 444 445 446 447
        'A: didChangeNext null',
        'A: didPop null',
        'A: onRemove 1',
        'A: didPop null',
        'A: onRemove 0',
448
      ],
Hans Muller's avatar
Hans Muller committed
449 450 451 452 453 454 455
    );

    await runNavigatorTest(
      tester,
      host,
      () { host.popUntil((Route<dynamic> route) => !route.willHandlePopInternally); },
      <String>[
456
      ],
Hans Muller's avatar
Hans Muller committed
457 458
    );
  });
459 460 461

  group('PageRouteObserver', () {
    test('calls correct listeners', () {
462
      final RouteObserver<PageRoute<dynamic>> observer = RouteObserver<PageRoute<dynamic>>();
463
      final MockRouteAware pageRouteAware1 = MockRouteAware();
464
      final MockPageRoute route1 = MockPageRoute();
465
      observer.subscribe(pageRouteAware1, route1);
466
      expect(pageRouteAware1.didPushCount, 1);
467

468
      final MockRouteAware pageRouteAware2 = MockRouteAware();
469
      final MockPageRoute route2 = MockPageRoute();
470
      observer.didPush(route2, route1);
471
      expect(pageRouteAware1.didPushNextCount, 1);
472 473

      observer.subscribe(pageRouteAware2, route2);
474
      expect(pageRouteAware2.didPushCount, 1);
475 476

      observer.didPop(route2, route1);
477 478
      expect(pageRouteAware2.didPopCount, 1);
      expect(pageRouteAware1.didPopNextCount, 1);
479 480 481
    });

    test('does not call listeners for non-PageRoute', () {
482
      final RouteObserver<PageRoute<dynamic>> observer = RouteObserver<PageRoute<dynamic>>();
483
      final MockRouteAware pageRouteAware = MockRouteAware();
484 485
      final MockPageRoute pageRoute = MockPageRoute();
      final MockRoute route = MockRoute();
486
      observer.subscribe(pageRouteAware, pageRoute);
487
      expect(pageRouteAware.didPushCount, 1);
488 489 490

      observer.didPush(route, pageRoute);
      observer.didPop(route, pageRoute);
491 492 493

      expect(pageRouteAware.didPushCount, 1);
      expect(pageRouteAware.didPopCount, 0);
494
    });
495 496

    test('does not call listeners when already subscribed', () {
497
      final RouteObserver<PageRoute<dynamic>> observer = RouteObserver<PageRoute<dynamic>>();
498
      final MockRouteAware pageRouteAware = MockRouteAware();
499
      final MockPageRoute pageRoute = MockPageRoute();
500 501
      observer.subscribe(pageRouteAware, pageRoute);
      observer.subscribe(pageRouteAware, pageRoute);
502
      expect(pageRouteAware.didPushCount, 1);
503 504 505
    });

    test('does not call listeners when unsubscribed', () {
506
      final RouteObserver<PageRoute<dynamic>> observer = RouteObserver<PageRoute<dynamic>>();
507
      final MockRouteAware pageRouteAware = MockRouteAware();
508 509
      final MockPageRoute pageRoute = MockPageRoute();
      final MockPageRoute nextPageRoute = MockPageRoute();
510 511
      observer.subscribe(pageRouteAware, pageRoute);
      observer.subscribe(pageRouteAware, nextPageRoute);
512
      expect(pageRouteAware.didPushCount, 2);
513 514 515 516 517

      observer.unsubscribe(pageRouteAware);

      observer.didPush(nextPageRoute, pageRoute);
      observer.didPop(nextPageRoute, pageRoute);
518 519 520

      expect(pageRouteAware.didPushCount, 2);
      expect(pageRouteAware.didPopCount, 0);
521
    });
522
  });
523

524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551
  testWidgets('Can autofocus a TextField nested in a Focus in a route.', (WidgetTester tester) async {
    final TextEditingController controller = TextEditingController();

    final FocusNode focusNode = FocusNode(debugLabel: 'Test Node');
    await tester.pumpWidget(
      Material(
        child: MaterialApp(
          onGenerateRoute: (RouteSettings settings) {
            return PageRouteBuilder<void>(
              settings: settings,
              pageBuilder: (BuildContext context, Animation<double> input, Animation<double> out) {
                return Focus(
                  child: TextField(
                    autofocus: true,
                    focusNode: focusNode,
                    controller: controller,
                  ),
                );
              },
            );
          },
        ),
      ),
    );
    await tester.pump();

    expect(focusNode.hasPrimaryFocus, isTrue);
  });
552

553 554 555 556 557 558 559 560
  group('PageRouteBuilder', () {
    testWidgets('reverseTransitionDuration defaults to 300ms', (WidgetTester tester) async {
      // Default PageRouteBuilder reverse transition duration should be 300ms.
      await tester.pumpWidget(
        MaterialApp(
          onGenerateRoute: (RouteSettings settings) {
            return MaterialPageRoute<dynamic>(
              builder: (BuildContext context) {
561
                return ElevatedButton(
562
                  onPressed: () {
563
                    Navigator.of(context).push<void>(
564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
                      PageRouteBuilder<void>(
                        settings: settings,
                        pageBuilder: (BuildContext context, Animation<double> input, Animation<double> out) {
                          return const Text('Page Two');
                        },
                      )
                    );
                  },
                  child: const Text('Open page'),
                );
              },
            );
          },
        )
      );

      // Open the new route.
581
      await tester.tap(find.byType(ElevatedButton));
582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609
      await tester.pumpAndSettle();
      expect(find.text('Open page'), findsNothing);
      expect(find.text('Page Two'), findsOneWidget);

      // Pop the new route.
      tester.state<NavigatorState>(find.byType(Navigator)).pop();
      await tester.pump();
      expect(find.text('Page Two'), findsOneWidget);

      // Text('Page Two') should be present halfway through the reverse transition.
      await tester.pump(const Duration(milliseconds: 150));
      expect(find.text('Page Two'), findsOneWidget);

      // Text('Page Two') should be present at the very end of the reverse transition.
      await tester.pump(const Duration(milliseconds: 150));
      expect(find.text('Page Two'), findsOneWidget);

      // Text('Page Two') have transitioned out after 300ms.
      await tester.pump(const Duration(milliseconds: 1));
      expect(find.text('Page Two'), findsNothing);
      expect(find.text('Open page'), findsOneWidget);
    });

    testWidgets('reverseTransitionDuration can be customized', (WidgetTester tester) async {
      await tester.pumpWidget(MaterialApp(
        onGenerateRoute: (RouteSettings settings) {
          return MaterialPageRoute<dynamic>(
            builder: (BuildContext context) {
610
              return ElevatedButton(
611
                onPressed: () {
612
                  Navigator.of(context).push<void>(
613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
                    PageRouteBuilder<void>(
                      settings: settings,
                      pageBuilder: (BuildContext context, Animation<double> input, Animation<double> out) {
                        return const Text('Page Two');
                      },
                      // modified value, default PageRouteBuilder reverse transition duration should be 300ms.
                      reverseTransitionDuration: const Duration(milliseconds: 150),
                    )
                  );
                },
                child: const Text('Open page'),
              );
            },
          );
        })
      );

      // Open the new route.
631
      await tester.tap(find.byType(ElevatedButton));
632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655
      await tester.pumpAndSettle();
      expect(find.text('Open page'), findsNothing);
      expect(find.text('Page Two'), findsOneWidget);

      // Pop the new route.
      tester.state<NavigatorState>(find.byType(Navigator)).pop();
      await tester.pump();
      expect(find.text('Page Two'), findsOneWidget);

      // Text('Page Two') should be present halfway through the reverse transition.
      await tester.pump(const Duration(milliseconds: 75));
      expect(find.text('Page Two'), findsOneWidget);

      // Text('Page Two') should be present at the very end of the reverse transition.
      await tester.pump(const Duration(milliseconds: 75));
      expect(find.text('Page Two'), findsOneWidget);

      // Text('Page Two') have transitioned out after 500ms.
      await tester.pump(const Duration(milliseconds: 1));
      expect(find.text('Page Two'), findsNothing);
      expect(find.text('Open page'), findsOneWidget);
    });
  });

656
  group('TransitionRoute', () {
657 658 659 660 661 662 663 664 665 666
    testWidgets('secondary animation is kDismissed when next route finishes pop', (WidgetTester tester) async {
      final GlobalKey<NavigatorState> navigator = GlobalKey<NavigatorState>();
      await tester.pumpWidget(
        MaterialApp(
          navigatorKey: navigator,
          home: const Text('home'),
        )
      );

      // Push page one, its secondary animation is kAlwaysDismissedAnimation.
667 668 669
      late ProxyAnimation secondaryAnimationProxyPageOne;
      late ProxyAnimation animationPageOne;
      navigator.currentState!.push(
670 671
        PageRouteBuilder<void>(
          pageBuilder: (_, Animation<double> animation, Animation<double> secondaryAnimation) {
672 673
            secondaryAnimationProxyPageOne = secondaryAnimation as ProxyAnimation;
            animationPageOne = animation as ProxyAnimation;
674 675 676 677 678 679
            return const Text('Page One');
          },
        ),
      );
      await tester.pump();
      await tester.pumpAndSettle();
680
      final ProxyAnimation secondaryAnimationPageOne = secondaryAnimationProxyPageOne.parent! as ProxyAnimation;
681 682 683 684 685
      expect(animationPageOne.value, 1.0);
      expect(secondaryAnimationPageOne.parent, kAlwaysDismissedAnimation);

      // Push page two, the secondary animation of page one is the primary
      // animation of page two.
686 687 688
      late ProxyAnimation secondaryAnimationProxyPageTwo;
      late ProxyAnimation animationPageTwo;
      navigator.currentState!.push(
689 690
        PageRouteBuilder<void>(
          pageBuilder: (_, Animation<double> animation, Animation<double> secondaryAnimation) {
691 692
            secondaryAnimationProxyPageTwo = secondaryAnimation as ProxyAnimation;
            animationPageTwo = animation as ProxyAnimation;
693 694 695 696 697 698
            return const Text('Page Two');
          },
        ),
      );
      await tester.pump();
      await tester.pumpAndSettle();
699
      final ProxyAnimation secondaryAnimationPageTwo = secondaryAnimationProxyPageTwo.parent! as ProxyAnimation;
700 701 702 703 704 705
      expect(animationPageTwo.value, 1.0);
      expect(secondaryAnimationPageTwo.parent, kAlwaysDismissedAnimation);
      expect(secondaryAnimationPageOne.parent, animationPageTwo.parent);

      // Pop page two, the secondary animation of page one becomes
      // kAlwaysDismissedAnimation.
706
      navigator.currentState!.pop();
707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724
      await tester.pump();
      await tester.pump(const Duration(milliseconds: 100));
      expect(secondaryAnimationPageOne.parent, animationPageTwo.parent);
      await tester.pumpAndSettle();
      expect(animationPageTwo.value, 0.0);
      expect(secondaryAnimationPageOne.parent, kAlwaysDismissedAnimation);
    });

    testWidgets('secondary animation is kDismissed when next route is removed', (WidgetTester tester) async {
      final GlobalKey<NavigatorState> navigator = GlobalKey<NavigatorState>();
      await tester.pumpWidget(
          MaterialApp(
            navigatorKey: navigator,
            home: const Text('home'),
          )
      );

      // Push page one, its secondary animation is kAlwaysDismissedAnimation.
725 726 727
      late ProxyAnimation secondaryAnimationProxyPageOne;
      late ProxyAnimation animationPageOne;
      navigator.currentState!.push(
728 729
        PageRouteBuilder<void>(
          pageBuilder: (_, Animation<double> animation, Animation<double> secondaryAnimation) {
730 731
            secondaryAnimationProxyPageOne = secondaryAnimation as ProxyAnimation;
            animationPageOne = animation as ProxyAnimation;
732 733 734 735 736 737
            return const Text('Page One');
          },
        ),
      );
      await tester.pump();
      await tester.pumpAndSettle();
738
      final ProxyAnimation secondaryAnimationPageOne = secondaryAnimationProxyPageOne.parent! as ProxyAnimation;
739 740 741 742 743
      expect(animationPageOne.value, 1.0);
      expect(secondaryAnimationPageOne.parent, kAlwaysDismissedAnimation);

      // Push page two, the secondary animation of page one is the primary
      // animation of page two.
744 745
      late ProxyAnimation secondaryAnimationProxyPageTwo;
      late ProxyAnimation animationPageTwo;
746
      Route<void> secondRoute;
747
      navigator.currentState!.push(
748 749
        secondRoute = PageRouteBuilder<void>(
          pageBuilder: (_, Animation<double> animation, Animation<double> secondaryAnimation) {
750 751
            secondaryAnimationProxyPageTwo = secondaryAnimation as ProxyAnimation;
            animationPageTwo = animation as ProxyAnimation;
752 753 754 755 756 757
            return const Text('Page Two');
          },
        ),
      );
      await tester.pump();
      await tester.pumpAndSettle();
758
      final ProxyAnimation secondaryAnimationPageTwo = secondaryAnimationProxyPageTwo.parent! as ProxyAnimation;
759 760 761 762 763 764
      expect(animationPageTwo.value, 1.0);
      expect(secondaryAnimationPageTwo.parent, kAlwaysDismissedAnimation);
      expect(secondaryAnimationPageOne.parent, animationPageTwo.parent);

      // Remove the second route, the secondary animation of page one is
      // kAlwaysDismissedAnimation again.
765
      navigator.currentState!.removeRoute(secondRoute);
766 767 768 769 770 771 772 773 774 775 776 777 778 779
      await tester.pump();
      expect(secondaryAnimationPageOne.parent, kAlwaysDismissedAnimation);
    });

    testWidgets('secondary animation is kDismissed after train hopping finishes and pop', (WidgetTester tester) async {
      final GlobalKey<NavigatorState> navigator = GlobalKey<NavigatorState>();
      await tester.pumpWidget(
          MaterialApp(
            navigatorKey: navigator,
            home: const Text('home'),
          )
      );

      // Push page one, its secondary animation is kAlwaysDismissedAnimation.
780 781 782
      late ProxyAnimation secondaryAnimationProxyPageOne;
      late ProxyAnimation animationPageOne;
      navigator.currentState!.push(
783 784
        PageRouteBuilder<void>(
          pageBuilder: (_, Animation<double> animation, Animation<double> secondaryAnimation) {
785 786
            secondaryAnimationProxyPageOne = secondaryAnimation as ProxyAnimation;
            animationPageOne = animation as ProxyAnimation;
787 788 789 790 791 792
            return const Text('Page One');
          },
        ),
      );
      await tester.pump();
      await tester.pumpAndSettle();
793
      final ProxyAnimation secondaryAnimationPageOne = secondaryAnimationProxyPageOne.parent! as ProxyAnimation;
794 795 796 797 798
      expect(animationPageOne.value, 1.0);
      expect(secondaryAnimationPageOne.parent, kAlwaysDismissedAnimation);

      // Push page two, the secondary animation of page one is the primary
      // animation of page two.
799 800
      late ProxyAnimation animationPageTwo;
      navigator.currentState!.push(
801 802
        PageRouteBuilder<void>(
          pageBuilder: (_, Animation<double> animation, Animation<double> secondaryAnimation) {
803
            animationPageTwo = animation as ProxyAnimation;
804 805 806 807 808 809 810 811 812 813
            return const Text('Page Two');
          },
        ),
      );
      await tester.pump();
      await tester.pump(const Duration(milliseconds: 100));
      expect(secondaryAnimationPageOne.parent, animationPageTwo.parent);

      // Replace with a different route while push is ongoing to trigger
      // TrainHopping.
814 815
      late ProxyAnimation animationPageThree;
      navigator.currentState!.pushReplacement(
816 817
        TestPageRouteBuilder(
          pageBuilder: (_, Animation<double> animation, Animation<double> secondaryAnimation) {
818
            animationPageThree = animation as ProxyAnimation;
819 820 821 822 823 824 825
            return const Text('Page Three');
          },
        ),
      );
      await tester.pump();
      await tester.pump(const Duration(milliseconds: 1));
      expect(secondaryAnimationPageOne.parent, isA<TrainHoppingAnimation>());
826
      final TrainHoppingAnimation trainHopper = secondaryAnimationPageOne.parent! as TrainHoppingAnimation;
827 828 829 830 831 832 833 834 835
      expect(trainHopper.currentTrain, animationPageTwo.parent);
      await tester.pump(const Duration(milliseconds: 100));
      expect(secondaryAnimationPageOne.parent, isNot(isA<TrainHoppingAnimation>()));
      expect(secondaryAnimationPageOne.parent, animationPageThree.parent);
      expect(trainHopper.currentTrain, isNull); // Has been disposed.
      await tester.pumpAndSettle();
      expect(secondaryAnimationPageOne.parent, animationPageThree.parent);

      // Pop page three.
836
      navigator.currentState!.pop();
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851
      await tester.pump();
      await tester.pumpAndSettle();
      expect(secondaryAnimationPageOne.parent, kAlwaysDismissedAnimation);
    });

    testWidgets('secondary animation is kDismissed when train hopping is interrupted', (WidgetTester tester) async {
      final GlobalKey<NavigatorState> navigator = GlobalKey<NavigatorState>();
      await tester.pumpWidget(
          MaterialApp(
            navigatorKey: navigator,
            home: const Text('home'),
          )
      );

      // Push page one, its secondary animation is kAlwaysDismissedAnimation.
852 853 854
      late ProxyAnimation secondaryAnimationProxyPageOne;
      late ProxyAnimation animationPageOne;
      navigator.currentState!.push(
855 856
        PageRouteBuilder<void>(
          pageBuilder: (_, Animation<double> animation, Animation<double> secondaryAnimation) {
857 858
            secondaryAnimationProxyPageOne = secondaryAnimation as ProxyAnimation;
            animationPageOne = animation as ProxyAnimation;
859 860 861 862 863 864
            return const Text('Page One');
          },
        ),
      );
      await tester.pump();
      await tester.pumpAndSettle();
865
      final ProxyAnimation secondaryAnimationPageOne = secondaryAnimationProxyPageOne.parent! as ProxyAnimation;
866 867 868 869 870
      expect(animationPageOne.value, 1.0);
      expect(secondaryAnimationPageOne.parent, kAlwaysDismissedAnimation);

      // Push page two, the secondary animation of page one is the primary
      // animation of page two.
871 872
      late ProxyAnimation animationPageTwo;
      navigator.currentState!.push(
873 874
        PageRouteBuilder<void>(
          pageBuilder: (_, Animation<double> animation, Animation<double> secondaryAnimation) {
875
            animationPageTwo = animation as ProxyAnimation;
876 877 878 879 880 881 882 883 884 885
            return const Text('Page Two');
          },
        ),
      );
      await tester.pump();
      await tester.pump(const Duration(milliseconds: 100));
      expect(secondaryAnimationPageOne.parent, animationPageTwo.parent);

      // Replace with a different route while push is ongoing to trigger
      // TrainHopping.
886
      navigator.currentState!.pushReplacement(
887 888 889 890 891 892 893 894 895
        TestPageRouteBuilder(
          pageBuilder: (_, Animation<double> animation, Animation<double> secondaryAnimation) {
            return const Text('Page Three');
          },
        ),
      );
      await tester.pump();
      await tester.pump(const Duration(milliseconds: 10));
      expect(secondaryAnimationPageOne.parent, isA<TrainHoppingAnimation>());
896
      final TrainHoppingAnimation trainHopper = secondaryAnimationPageOne.parent! as TrainHoppingAnimation;
897 898 899
      expect(trainHopper.currentTrain, animationPageTwo.parent);

      // Pop page three while replacement push is ongoing.
900
      navigator.currentState!.pop();
901 902
      await tester.pump();
      expect(secondaryAnimationPageOne.parent, isA<TrainHoppingAnimation>());
903
      final TrainHoppingAnimation trainHopper2 = secondaryAnimationPageOne.parent! as TrainHoppingAnimation;
904 905 906 907 908 909
      expect(trainHopper2.currentTrain, animationPageTwo.parent);
      expect(trainHopper.currentTrain, isNull); // Has been disposed.
      await tester.pumpAndSettle();
      expect(secondaryAnimationPageOne.parent, kAlwaysDismissedAnimation);
      expect(trainHopper2.currentTrain, isNull); // Has been disposed.
    });
910

911 912
    testWidgets('secondary animation is triggered when pop initial route', (WidgetTester tester) async {
      final GlobalKey<NavigatorState> navigator = GlobalKey<NavigatorState>();
913 914
      late Animation<double> secondaryAnimationOfRouteOne;
      late Animation<double> primaryAnimationOfRouteTwo;
915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937
      await tester.pumpWidget(
        MaterialApp(
          navigatorKey: navigator,
          onGenerateRoute: (RouteSettings settings) {
            return PageRouteBuilder<void>(
              settings: settings,
              pageBuilder: (_, Animation<double> animation, Animation<double> secondaryAnimation) {
                if (settings.name == '/')
                  secondaryAnimationOfRouteOne = secondaryAnimation;
                else
                  primaryAnimationOfRouteTwo = animation;
                return const Text('Page');
              },
            );
          },
          initialRoute: '/a',
        )
      );
      // The secondary animation of the bottom route should be chained with the
      // primary animation of top most route.
      expect(secondaryAnimationOfRouteOne.value, 1.0);
      expect(secondaryAnimationOfRouteOne.value, primaryAnimationOfRouteTwo.value);
      // Pops the top most route and verifies two routes are still chained.
938
      navigator.currentState!.pop();
939 940 941 942 943 944 945 946 947
      await tester.pump();
      await tester.pump(const Duration(milliseconds: 30));
      expect(secondaryAnimationOfRouteOne.value, 0.9);
      expect(secondaryAnimationOfRouteOne.value, primaryAnimationOfRouteTwo.value);
      await tester.pumpAndSettle();
      expect(secondaryAnimationOfRouteOne.value, 0.0);
      expect(secondaryAnimationOfRouteOne.value, primaryAnimationOfRouteTwo.value);
    });

948 949 950 951
    testWidgets('showGeneralDialog handles transparent barrier color', (WidgetTester tester) async {
      await tester.pumpWidget(MaterialApp(
        home: Builder(
          builder: (BuildContext context) {
952
            return ElevatedButton(
953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971
              onPressed: () {
                showGeneralDialog<void>(
                  context: context,
                  barrierDismissible: true,
                  barrierLabel: 'barrier_label',
                  barrierColor: const Color(0x00000000),
                  transitionDuration: Duration.zero,
                  pageBuilder: (BuildContext innerContext, _, __) {
                    return const SizedBox();
                  },
                );
              },
              child: const Text('Show Dialog'),
            );
          },
        ),
      ));

      // Open the dialog.
972
      await tester.tap(find.byType(ElevatedButton));
973 974 975 976 977 978 979 980 981 982 983 984 985
      await tester.pump();
      expect(find.byType(ModalBarrier), findsNWidgets(2));

      // Close the dialog.
      await tester.tapAt(Offset.zero);
      await tester.pump();
      expect(find.byType(ModalBarrier), findsNWidgets(1));
    });

    testWidgets('showGeneralDialog adds non-dismissable barrier when barrierDismissable is false', (WidgetTester tester) async {
      await tester.pumpWidget(MaterialApp(
        home: Builder(
          builder: (BuildContext context) {
986
            return ElevatedButton(
987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003
              onPressed: () {
                showGeneralDialog<void>(
                  context: context,
                  barrierDismissible: false,
                  transitionDuration: Duration.zero,
                  pageBuilder: (BuildContext innerContext, _, __) {
                    return const SizedBox();
                  },
                );
              },
              child: const Text('Show Dialog'),
            );
          },
        ),
      ));

      // Open the dialog.
1004
      await tester.tap(find.byType(ElevatedButton));
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017
      await tester.pump();
      expect(find.byType(ModalBarrier), findsNWidgets(2));
      final ModalBarrier barrier = find.byType(ModalBarrier).evaluate().last.widget as ModalBarrier;
      expect(barrier.dismissible, isFalse);

      // Close the dialog.
      final StatefulElement navigatorElement = find.byType(Navigator).evaluate().last as StatefulElement;
      final NavigatorState navigatorState = navigatorElement.state as NavigatorState;
      navigatorState.pop();
      await tester.pumpAndSettle();
      expect(find.byType(ModalBarrier), findsNWidgets(1));
    });

1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
    testWidgets('showGeneralDialog uses root navigator by default', (WidgetTester tester) async {
      final DialogObserver rootObserver = DialogObserver();
      final DialogObserver nestedObserver = DialogObserver();

      await tester.pumpWidget(MaterialApp(
        navigatorObservers: <NavigatorObserver>[rootObserver],
        home: Navigator(
          observers: <NavigatorObserver>[nestedObserver],
          onGenerateRoute: (RouteSettings settings) {
            return MaterialPageRoute<dynamic>(
              builder: (BuildContext context) {
1029
                return ElevatedButton(
1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048
                  onPressed: () {
                    showGeneralDialog<void>(
                      context: context,
                      barrierDismissible: false,
                      transitionDuration: Duration.zero,
                      pageBuilder: (BuildContext innerContext, _, __) {
                        return const SizedBox();
                      },
                    );
                  },
                  child: const Text('Show Dialog'),
                );
              },
            );
          },
        ),
      ));

      // Open the dialog.
1049
      await tester.tap(find.byType(ElevatedButton));
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065

      expect(rootObserver.dialogCount, 1);
      expect(nestedObserver.dialogCount, 0);
    });

    testWidgets('showGeneralDialog uses nested navigator if useRootNavigator is false', (WidgetTester tester) async {
      final DialogObserver rootObserver = DialogObserver();
      final DialogObserver nestedObserver = DialogObserver();

      await tester.pumpWidget(MaterialApp(
        navigatorObservers: <NavigatorObserver>[rootObserver],
        home: Navigator(
          observers: <NavigatorObserver>[nestedObserver],
          onGenerateRoute: (RouteSettings settings) {
            return MaterialPageRoute<dynamic>(
              builder: (BuildContext context) {
1066
                return ElevatedButton(
1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
                  onPressed: () {
                    showGeneralDialog<void>(
                      useRootNavigator: false,
                      context: context,
                      barrierDismissible: false,
                      transitionDuration: Duration.zero,
                      pageBuilder: (BuildContext innerContext, _, __) {
                        return const SizedBox();
                      },
                    );
                  },
                  child: const Text('Show Dialog'),
                );
              },
            );
          },
        ),
      ));

      // Open the dialog.
1087
      await tester.tap(find.byType(ElevatedButton));
1088 1089 1090 1091

      expect(rootObserver.dialogCount, 0);
      expect(nestedObserver.dialogCount, 1);
    });
1092

1093 1094 1095 1096 1097 1098 1099 1100 1101
    testWidgets('showGeneralDialog default argument values', (WidgetTester tester) async {
      final DialogObserver rootObserver = DialogObserver();

      await tester.pumpWidget(MaterialApp(
        navigatorObservers: <NavigatorObserver>[rootObserver],
        home: Navigator(
          onGenerateRoute: (RouteSettings settings) {
            return MaterialPageRoute<dynamic>(
              builder: (BuildContext context) {
1102
                return ElevatedButton(
1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
                  onPressed: () {
                    showGeneralDialog<void>(
                      context: context,
                      pageBuilder: (BuildContext innerContext, _, __) {
                        return const SizedBox();
                      },
                    );
                  },
                  child: const Text('Show Dialog'),
                );
              },
            );
          },
        ),
      ));

      // Open the dialog.
1120
      await tester.tap(find.byType(ElevatedButton));
1121 1122 1123 1124 1125 1126 1127
      expect(rootObserver.dialogRoutes.length, equals(1));
      final ModalRoute<dynamic> route = rootObserver.dialogRoutes.last;
      expect(route.barrierDismissible, isNotNull);
      expect(route.barrierColor, isNotNull);
      expect(route.transitionDuration, isNotNull);
    });

1128 1129 1130 1131 1132 1133 1134 1135
    testWidgets('reverseTransitionDuration defaults to transitionDuration', (WidgetTester tester) async {
      final GlobalKey containerKey = GlobalKey();

      // Default MaterialPageRoute transition duration should be 300ms.
      await tester.pumpWidget(MaterialApp(
        onGenerateRoute: (RouteSettings settings) {
          return MaterialPageRoute<dynamic>(
            builder: (BuildContext context) {
1136
              return ElevatedButton(
1137
                onPressed: () {
1138
                  Navigator.of(context).push<void>(
1139
                    MaterialPageRoute<void>(
1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156
                      builder: (BuildContext innerContext) {
                        return Container(
                          key: containerKey,
                          color: Colors.green,
                        );
                      },
                    ),
                  );
                },
                child: const Text('Open page'),
              );
            },
          );
        },
      ));

      // Open the new route.
1157
      await tester.tap(find.byType(ElevatedButton));
1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185
      await tester.pumpAndSettle();
      expect(find.text('Open page'), findsNothing);
      expect(find.byKey(containerKey), findsOneWidget);

      // Pop the new route.
      tester.state<NavigatorState>(find.byType(Navigator)).pop();
      await tester.pump();
      expect(find.byKey(containerKey), findsOneWidget);

      // Container should be present halfway through the transition.
      await tester.pump(const Duration(milliseconds: 150));
      expect(find.byKey(containerKey), findsOneWidget);

      // Container should be present at the very end of the transition.
      await tester.pump(const Duration(milliseconds: 150));
      expect(find.byKey(containerKey), findsOneWidget);

      // Container have transitioned out after 300ms.
      await tester.pump(const Duration(milliseconds: 1));
      expect(find.byKey(containerKey), findsNothing);
    });

    testWidgets('reverseTransitionDuration can be customized', (WidgetTester tester) async {
      final GlobalKey containerKey = GlobalKey();
      await tester.pumpWidget(MaterialApp(
        onGenerateRoute: (RouteSettings settings) {
          return MaterialPageRoute<dynamic>(
            builder: (BuildContext context) {
1186
              return ElevatedButton(
1187
                onPressed: () {
1188
                  Navigator.of(context).push<void>(
1189
                    ModifiedReverseTransitionDurationRoute<void>(
1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208
                      builder: (BuildContext innerContext) {
                        return Container(
                          key: containerKey,
                          color: Colors.green,
                        );
                      },
                      // modified value, default MaterialPageRoute transition duration should be 300ms.
                      reverseTransitionDuration: const Duration(milliseconds: 150),
                    ),
                  );
                },
                child: const Text('Open page'),
              );
            },
          );
        },
      ));

      // Open the new route.
1209
      await tester.tap(find.byType(ElevatedButton));
1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
      await tester.pumpAndSettle();
      expect(find.text('Open page'), findsNothing);
      expect(find.byKey(containerKey), findsOneWidget);

      // Pop the new route.
      tester.state<NavigatorState>(find.byType(Navigator)).pop();
      await tester.pump();
      expect(find.byKey(containerKey), findsOneWidget);

      // Container should be present halfway through the transition.
      await tester.pump(const Duration(milliseconds: 75));
      expect(find.byKey(containerKey), findsOneWidget);

      // Container should be present at the very end of the transition.
      await tester.pump(const Duration(milliseconds: 75));
      expect(find.byKey(containerKey), findsOneWidget);

      // Container have transitioned out after 150ms.
      await tester.pump(const Duration(milliseconds: 1));
      expect(find.byKey(containerKey), findsNothing);
    });

    testWidgets('custom reverseTransitionDuration does not result in interrupted animations', (WidgetTester tester) async {
      final GlobalKey containerKey = GlobalKey();
      await tester.pumpWidget(MaterialApp(
        theme: ThemeData(
          pageTransitionsTheme: const PageTransitionsTheme(
            builders: <TargetPlatform, PageTransitionsBuilder>{
              TargetPlatform.android: FadeUpwardsPageTransitionsBuilder(), // use a fade transition
            },
          ),
        ),
        onGenerateRoute: (RouteSettings settings) {
          return MaterialPageRoute<dynamic>(
            builder: (BuildContext context) {
1245
              return ElevatedButton(
1246
                onPressed: () {
1247
                  Navigator.of(context).push<void>(
1248
                    ModifiedReverseTransitionDurationRoute<void>(
1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267
                      builder: (BuildContext innerContext) {
                        return Container(
                          key: containerKey,
                          color: Colors.green,
                        );
                      },
                      // modified value, default MaterialPageRoute transition duration should be 300ms.
                      reverseTransitionDuration: const Duration(milliseconds: 150),
                    ),
                  );
                },
                child: const Text('Open page'),
              );
            },
          );
        },
      ));

      // Open the new route.
1268
      await tester.tap(find.byType(ElevatedButton));
1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296
      await tester.pump();
      await tester.pump(const Duration(milliseconds: 200)); // jump partway through the forward transition
      expect(find.byKey(containerKey), findsOneWidget);

      // Gets the opacity of the fade transition while animating forwards.
      final double topFadeTransitionOpacity = _getOpacity(containerKey, tester);

      // Pop the new route mid-transition.
      tester.state<NavigatorState>(find.byType(Navigator)).pop();
      await tester.pump();

      // Transition should not jump. In other words, the fade transition
      // opacity before and after animation changes directions should remain
      // the same.
      expect(_getOpacity(containerKey, tester), topFadeTransitionOpacity);

      // Reverse transition duration should be:
      // Forward transition elapsed time: 200ms / 300ms = 2 / 3
      // Reverse transition remaining time: 150ms * 2 / 3 = 100ms

      // Container should be present at the very end of the transition.
      await tester.pump(const Duration(milliseconds: 100));
      expect(find.byKey(containerKey), findsOneWidget);

      // Container have transitioned out after 100ms.
      await tester.pump(const Duration(milliseconds: 1));
      expect(find.byKey(containerKey), findsNothing);
    });
1297
  });
1298 1299 1300 1301 1302 1303 1304 1305

  group('ModalRoute', () {
    testWidgets('default barrierCurve', (WidgetTester tester) async {
      await tester.pumpWidget(MaterialApp(
        home: Material(
          child: Builder(
            builder: (BuildContext context) {
              return Center(
1306
                child: ElevatedButton(
1307 1308
                  child: const Text('X'),
                  onPressed: () {
1309
                    Navigator.of(context).push<void>(
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331
                      _TestDialogRouteWithCustomBarrierCurve<void>(
                        child: const Text('Hello World'),
                      )
                    );
                  },
                ),
              );
            }
          ),
        ),
      ));

      final CurveTween _defaultBarrierTween = CurveTween(curve: Curves.ease);
      int _getExpectedBarrierTweenAlphaValue(double t) {
        return Color.getAlphaFromOpacity(_defaultBarrierTween.transform(t));
      }

      await tester.tap(find.text('X'));
      await tester.pump();
      final Finder animatedModalBarrier = find.byType(AnimatedModalBarrier);
      expect(animatedModalBarrier, findsOneWidget);

1332
      Animation<Color?> modalBarrierAnimation;
1333 1334 1335 1336 1337 1338
      modalBarrierAnimation = tester.widget<AnimatedModalBarrier>(animatedModalBarrier).color;
      expect(modalBarrierAnimation.value, Colors.transparent);

      await tester.pump(const Duration(milliseconds: 25));
      modalBarrierAnimation = tester.widget<AnimatedModalBarrier>(animatedModalBarrier).color;
      expect(
1339
        modalBarrierAnimation.value!.alpha,
1340
        closeTo(_getExpectedBarrierTweenAlphaValue(0.25), 1),
1341 1342 1343 1344 1345
      );

      await tester.pump(const Duration(milliseconds: 25));
      modalBarrierAnimation = tester.widget<AnimatedModalBarrier>(animatedModalBarrier).color;
      expect(
1346
        modalBarrierAnimation.value!.alpha,
1347
        closeTo(_getExpectedBarrierTweenAlphaValue(0.50), 1),
1348 1349 1350 1351 1352
      );

      await tester.pump(const Duration(milliseconds: 25));
      modalBarrierAnimation = tester.widget<AnimatedModalBarrier>(animatedModalBarrier).color;
      expect(
1353
        modalBarrierAnimation.value!.alpha,
1354
        closeTo(_getExpectedBarrierTweenAlphaValue(0.75), 1),
1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367
      );

      await tester.pumpAndSettle();
      modalBarrierAnimation = tester.widget<AnimatedModalBarrier>(animatedModalBarrier).color;
      expect(modalBarrierAnimation.value, Colors.black);
    });

    testWidgets('custom barrierCurve', (WidgetTester tester) async {
      await tester.pumpWidget(MaterialApp(
        home: Material(
          child: Builder(
            builder: (BuildContext context) {
              return Center(
1368
                child: ElevatedButton(
1369 1370
                  child: const Text('X'),
                  onPressed: () {
1371
                    Navigator.of(context).push<void>(
1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394
                      _TestDialogRouteWithCustomBarrierCurve<void>(
                        child: const Text('Hello World'),
                        barrierCurve: Curves.linear,
                      ),
                    );
                  },
                ),
              );
            },
          ),
        ),
      ));

      final CurveTween _customBarrierTween = CurveTween(curve: Curves.linear);
      int _getExpectedBarrierTweenAlphaValue(double t) {
        return Color.getAlphaFromOpacity(_customBarrierTween.transform(t));
      }

      await tester.tap(find.text('X'));
      await tester.pump();
      final Finder animatedModalBarrier = find.byType(AnimatedModalBarrier);
      expect(animatedModalBarrier, findsOneWidget);

1395
      Animation<Color?> modalBarrierAnimation;
1396 1397 1398 1399 1400 1401
      modalBarrierAnimation = tester.widget<AnimatedModalBarrier>(animatedModalBarrier).color;
      expect(modalBarrierAnimation.value, Colors.transparent);

      await tester.pump(const Duration(milliseconds: 25));
      modalBarrierAnimation = tester.widget<AnimatedModalBarrier>(animatedModalBarrier).color;
      expect(
1402
        modalBarrierAnimation.value!.alpha,
1403
        closeTo(_getExpectedBarrierTweenAlphaValue(0.25), 1),
1404 1405 1406 1407 1408
      );

      await tester.pump(const Duration(milliseconds: 25));
      modalBarrierAnimation = tester.widget<AnimatedModalBarrier>(animatedModalBarrier).color;
      expect(
1409
        modalBarrierAnimation.value!.alpha,
1410
        closeTo(_getExpectedBarrierTweenAlphaValue(0.50), 1),
1411 1412 1413 1414 1415
      );

      await tester.pump(const Duration(milliseconds: 25));
      modalBarrierAnimation = tester.widget<AnimatedModalBarrier>(animatedModalBarrier).color;
      expect(
1416
        modalBarrierAnimation.value!.alpha,
1417
        closeTo(_getExpectedBarrierTweenAlphaValue(0.75), 1),
1418 1419 1420 1421 1422 1423
      );

      await tester.pumpAndSettle();
      modalBarrierAnimation = tester.widget<AnimatedModalBarrier>(animatedModalBarrier).color;
      expect(modalBarrierAnimation.value, Colors.black);
    });
1424

1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487
    testWidgets('white barrierColor', (WidgetTester tester) async {
      await tester.pumpWidget(MaterialApp(
        home: Material(
          child: Builder(
              builder: (BuildContext context) {
                return Center(
                  child: ElevatedButton(
                    child: const Text('X'),
                    onPressed: () {
                      Navigator.of(context).push<void>(
                          _TestDialogRouteWithCustomBarrierCurve<void>(
                            child: const Text('Hello World'),
                            barrierColor: Colors.white,
                          )
                      );
                    },
                  ),
                );
              }
          ),
        ),
      ));

      final CurveTween _defaultBarrierTween = CurveTween(curve: Curves.ease);
      int _getExpectedBarrierTweenAlphaValue(double t) {
        return Color.getAlphaFromOpacity(_defaultBarrierTween.transform(t));
      }

      await tester.tap(find.text('X'));
      await tester.pump();
      final Finder animatedModalBarrier = find.byType(AnimatedModalBarrier);
      expect(animatedModalBarrier, findsOneWidget);

      Animation<Color?> modalBarrierAnimation;
      modalBarrierAnimation = tester.widget<AnimatedModalBarrier>(animatedModalBarrier).color;
      expect(modalBarrierAnimation.value, Colors.white.withOpacity(0));

      await tester.pump(const Duration(milliseconds: 25));
      modalBarrierAnimation = tester.widget<AnimatedModalBarrier>(animatedModalBarrier).color;
      expect(
        modalBarrierAnimation.value!.alpha,
        closeTo(_getExpectedBarrierTweenAlphaValue(0.25), 1),
      );

      await tester.pump(const Duration(milliseconds: 25));
      modalBarrierAnimation = tester.widget<AnimatedModalBarrier>(animatedModalBarrier).color;
      expect(
        modalBarrierAnimation.value!.alpha,
        closeTo(_getExpectedBarrierTweenAlphaValue(0.50), 1),
      );

      await tester.pump(const Duration(milliseconds: 25));
      modalBarrierAnimation = tester.widget<AnimatedModalBarrier>(animatedModalBarrier).color;
      expect(
        modalBarrierAnimation.value!.alpha,
        closeTo(_getExpectedBarrierTweenAlphaValue(0.75), 1),
      );

      await tester.pumpAndSettle();
      modalBarrierAnimation = tester.widget<AnimatedModalBarrier>(animatedModalBarrier).color;
      expect(modalBarrierAnimation.value, Colors.white);
    });

1488 1489 1490 1491 1492 1493 1494 1495
    testWidgets('modal route semantics order', (WidgetTester tester) async {
      // Regression test for https://github.com/flutter/flutter/issues/46625.
      final SemanticsTester semantics = SemanticsTester(tester);
      await tester.pumpWidget(MaterialApp(
        home: Material(
          child: Builder(
            builder: (BuildContext context) {
              return Center(
1496
                child: ElevatedButton(
1497 1498
                  child: const Text('X'),
                  onPressed: () {
1499
                    Navigator.of(context).push<void>(
1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560
                      _TestDialogRouteWithCustomBarrierCurve<void>(
                        child: const Text('Hello World'),
                        barrierLabel: 'test label',
                        barrierCurve: Curves.linear,
                      ),
                    );
                  },
                ),
              );
            },
          ),
        ),
      ));

      await tester.tap(find.text('X'));
      await tester.pumpAndSettle();
      expect(find.text('Hello World'), findsOneWidget);

      final TestSemantics expectedSemantics = TestSemantics.root(
        children: <TestSemantics>[
          TestSemantics.rootChild(
            id: 1,
            rect: TestSemantics.fullScreen,
            children: <TestSemantics>[
              TestSemantics(
                id: 6,
                rect: TestSemantics.fullScreen,
                children: <TestSemantics>[
                  TestSemantics(
                    id: 7,
                    rect: TestSemantics.fullScreen,
                    flags: <SemanticsFlag>[SemanticsFlag.scopesRoute],
                    children: <TestSemantics>[
                      TestSemantics(
                        id: 8,
                        label: 'Hello World',
                        rect: TestSemantics.fullScreen,
                        textDirection: TextDirection.ltr,
                      ),
                    ],
                  ),
                ],
              ),
              // Modal barrier is put after modal scope
              TestSemantics(
                id: 5,
                rect: TestSemantics.fullScreen,
                actions: <SemanticsAction>[SemanticsAction.tap],
                label: 'test label',
                textDirection: TextDirection.ltr,
              ),
            ],
          ),
        ],
      )
      ;

      expect(semantics, hasSemantics(expectedSemantics));
      semantics.dispose();
    }, variant: const TargetPlatformVariant(<TargetPlatform>{TargetPlatform.iOS}));

1561
    testWidgets('focus traverse correct when pop multiple page simultaneously', (WidgetTester tester) async {
1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572
      // Regression test: https://github.com/flutter/flutter/issues/48903
      final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
      await tester.pumpWidget(MaterialApp(
        navigatorKey: navigatorKey,
        home: const Text('dummy1'),
      ));
      final Element textOnPageOne = tester.element(find.text('dummy1'));
      final FocusScopeNode focusNodeOnPageOne = FocusScope.of(textOnPageOne);
      expect(focusNodeOnPageOne.hasFocus, isTrue);

      // Pushes one page.
1573
      navigatorKey.currentState!.push<void>(
1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586
        MaterialPageRoute<void>(
          builder: (BuildContext context) => const Text('dummy2'),
        )
      );
      await tester.pumpAndSettle();

      final Element textOnPageTwo = tester.element(find.text('dummy2'));
      final FocusScopeNode focusNodeOnPageTwo = FocusScope.of(textOnPageTwo);
      // The focus should be on second page.
      expect(focusNodeOnPageOne.hasFocus, isFalse);
      expect(focusNodeOnPageTwo.hasFocus, isTrue);

      // Pushes another page.
1587
      navigatorKey.currentState!.push<void>(
1588 1589 1590 1591 1592 1593 1594
        MaterialPageRoute<void>(
          builder: (BuildContext context) => const Text('dummy3'),
        )
      );
      await tester.pumpAndSettle();
      final Element textOnPageThree = tester.element(find.text('dummy3'));
      final FocusScopeNode focusNodeOnPageThree = FocusScope.of(textOnPageThree);
1595 1596 1597 1598 1599 1600
      // The focus should be on third page.
      expect(focusNodeOnPageOne.hasFocus, isFalse);
      expect(focusNodeOnPageTwo.hasFocus, isFalse);
      expect(focusNodeOnPageThree.hasFocus, isTrue);

      // Pops two pages simultaneously.
1601
      navigatorKey.currentState!.popUntil((Route<void> route) => route.isFirst);
1602 1603 1604 1605 1606
      await tester.pumpAndSettle();
      // It should refocus page one after pops.
      expect(focusNodeOnPageOne.hasFocus, isTrue);
    });

1607
    testWidgets('focus traversal is correct when popping multiple pages simultaneously - with focused children', (WidgetTester tester) async {
1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618
      // Regression test: https://github.com/flutter/flutter/issues/48903
      final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
      await tester.pumpWidget(MaterialApp(
        navigatorKey: navigatorKey,
        home: const Text('dummy1'),
      ));
      final Element textOnPageOne = tester.element(find.text('dummy1'));
      final FocusScopeNode focusNodeOnPageOne = FocusScope.of(textOnPageOne);
      expect(focusNodeOnPageOne.hasFocus, isTrue);

      // Pushes one page.
1619
      navigatorKey.currentState!.push<void>(
1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638
          MaterialPageRoute<void>(
            builder: (BuildContext context) => const Material(child: TextField()),
          )
      );
      await tester.pumpAndSettle();

      final Element textOnPageTwo = tester.element(find.byType(TextField));
      final FocusScopeNode focusNodeOnPageTwo = FocusScope.of(textOnPageTwo);
      // The focus should be on second page.
      expect(focusNodeOnPageOne.hasFocus, isFalse);
      expect(focusNodeOnPageTwo.hasFocus, isTrue);

      // Move the focus to another node.
      focusNodeOnPageTwo.nextFocus();
      await tester.pumpAndSettle();
      expect(focusNodeOnPageTwo.hasFocus, isTrue);
      expect(focusNodeOnPageTwo.hasPrimaryFocus, isFalse);

      // Pushes another page.
1639
      navigatorKey.currentState!.push<void>(
1640 1641 1642 1643 1644 1645 1646
          MaterialPageRoute<void>(
            builder: (BuildContext context) => const Text('dummy3'),
          )
      );
      await tester.pumpAndSettle();
      final Element textOnPageThree = tester.element(find.text('dummy3'));
      final FocusScopeNode focusNodeOnPageThree = FocusScope.of(textOnPageThree);
1647 1648 1649 1650 1651 1652
      // The focus should be on third page.
      expect(focusNodeOnPageOne.hasFocus, isFalse);
      expect(focusNodeOnPageTwo.hasFocus, isFalse);
      expect(focusNodeOnPageThree.hasFocus, isTrue);

      // Pops two pages simultaneously.
1653
      navigatorKey.currentState!.popUntil((Route<void> route) => route.isFirst);
1654 1655 1656 1657
      await tester.pumpAndSettle();
      // It should refocus page one after pops.
      expect(focusNodeOnPageOne.hasFocus, isTrue);
    });
1658 1659 1660

    testWidgets('child with local history can be disposed', (WidgetTester tester) async {
      // Regression test: https://github.com/flutter/flutter/issues/52478
1661
      await tester.pumpWidget(const MaterialApp(
1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679
        home: WidgetWithLocalHistory(),
      ));

      final WidgetWithLocalHistoryState state = tester.state(find.byType(WidgetWithLocalHistory));
      state.addLocalHistory();
      // Waits for modal route to update its internal state;
      await tester.pump();

      // Pumps a new widget to dispose WidgetWithLocalHistory. This should cause
      // it to remove the local history entry from modal route during
      // finalizeTree.
      await tester.pumpWidget(const MaterialApp(
        home: Text('dummy'),
      ));
      // Waits for modal route to update its internal state;
      await tester.pump();
      expect(tester.takeException(), null);
    });
1680
  });
1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701

  testWidgets('can be dismissed with escape keyboard shortcut', (WidgetTester tester) async {
    final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
    await tester.pumpWidget(MaterialApp(
      navigatorKey: navigatorKey,
      home: const Text('dummy1'),
    ));
    final Element textOnPageOne = tester.element(find.text('dummy1'));

    // Show a simple dialog
    showDialog<void>(
      context: textOnPageOne,
      builder: (BuildContext context) => const Text('dialog1'),
    );
    await tester.pumpAndSettle();
    expect(find.text('dialog1'), findsOneWidget);

    // Try to dismiss the dialog with the shortcut key
    await tester.sendKeyEvent(LogicalKeyboardKey.escape);
    await tester.pumpAndSettle();
    expect(find.text('dialog1'), findsNothing);
1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724
  });

  testWidgets('can not be dismissed with escape keyboard shortcut if barrier not dismissible', (WidgetTester tester) async {
    final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
    await tester.pumpWidget(MaterialApp(
      navigatorKey: navigatorKey,
      home: const Text('dummy1'),
    ));
    final Element textOnPageOne = tester.element(find.text('dummy1'));

    // Show a simple dialog
    showDialog<void>(
      context: textOnPageOne,
      barrierDismissible: false,
      builder: (BuildContext context) => const Text('dialog1'),
    );
    await tester.pumpAndSettle();
    expect(find.text('dialog1'), findsOneWidget);

    // Try to dismiss the dialog with the shortcut key
    await tester.sendKeyEvent(LogicalKeyboardKey.escape);
    await tester.pumpAndSettle();
    expect(find.text('dialog1'), findsOneWidget);
1725
  });
1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747

  testWidgets('ModalRoute.of works for void routes', (WidgetTester tester) async {
    final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
    await tester.pumpWidget(MaterialApp(
      navigatorKey: navigatorKey,
      home: const Text('home'),
    ));
    expect(find.text('page2'), findsNothing);

    navigatorKey.currentState!.push<void>(MaterialPageRoute<void>(
      builder: (BuildContext context) {
        return const Text('page2');
      }
    ));

    await tester.pumpAndSettle();
    expect(find.text('page2'), findsOneWidget);

    final ModalRoute<void>? parentRoute = ModalRoute.of<void>(tester.element(find.text('page2')));
    expect(parentRoute, isNotNull);
    expect(parentRoute, isA<MaterialPageRoute<void>>());
  });
1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777

  testWidgets('RawDialogRoute is state restorable', (WidgetTester tester) async {
    await tester.pumpWidget(
      MaterialApp(
        restorationScopeId: 'app',
        home: _RestorableDialogTestWidget(),
      ),
    );

    expect(find.byType(AlertDialog), findsNothing);

    await tester.tap(find.text('X'));
    await tester.pumpAndSettle();

    expect(find.byType(AlertDialog), findsOneWidget);
    final TestRestorationData restorationData = await tester.getRestorationData();

    await tester.restartAndRestore();

    expect(find.byType(AlertDialog), findsOneWidget);

    // Tap on the barrier.
    await tester.tapAt(const Offset(10.0, 10.0));
    await tester.pumpAndSettle();

    expect(find.byType(AlertDialog), findsNothing);

    await tester.restoreFrom(restorationData);
    expect(find.byType(AlertDialog), findsOneWidget);
  }, skip: isBrowser); // https://github.com/flutter/flutter/issues/33615
1778
}
1779

1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792
double _getOpacity(GlobalKey key, WidgetTester tester) {
  final Finder finder = find.ancestor(
    of: find.byKey(key),
    matching: find.byType(FadeTransition),
  );
  return tester.widgetList(finder).fold<double>(1.0, (double a, Widget widget) {
    final FadeTransition transition = widget as FadeTransition;
    return a * transition.opacity.value;
  });
}

class ModifiedReverseTransitionDurationRoute<T> extends MaterialPageRoute<T> {
  ModifiedReverseTransitionDurationRoute({
1793 1794 1795
    required WidgetBuilder builder,
    RouteSettings? settings,
    required this.reverseTransitionDuration,
1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806
    bool fullscreenDialog = false,
  }) : super(
         builder: builder,
         settings: settings,
         fullscreenDialog: fullscreenDialog,
       );

  @override
  final Duration reverseTransitionDuration;
}

1807 1808 1809 1810 1811 1812 1813 1814 1815
class MockPageRoute extends Fake implements PageRoute<dynamic> { }

class MockRoute extends Fake implements Route<dynamic> { }

class MockRouteAware extends Fake implements RouteAware {
  int didPushCount = 0;
  int didPushNextCount = 0;
  int didPopCount = 0;
  int didPopNextCount = 0;
1816

1817 1818 1819 1820
  @override
  void didPush() {
    didPushCount += 1;
  }
1821

1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836
  @override
  void didPushNext() {
    didPushNextCount += 1;
  }

  @override
  void didPop() {
    didPopCount += 1;
  }

  @override
  void didPopNext() {
    didPopNextCount += 1;
  }
}
1837 1838

class TestPageRouteBuilder extends PageRouteBuilder<void> {
1839
  TestPageRouteBuilder({required RoutePageBuilder pageBuilder}) : super(pageBuilder: pageBuilder);
1840 1841 1842 1843 1844 1845

  @override
  Animation<double> createAnimation() {
    return CurvedAnimation(parent: super.createAnimation(), curve: Curves.easeOutExpo);
  }
}
1846 1847

class DialogObserver extends NavigatorObserver {
1848
  final List<ModalRoute<dynamic>> dialogRoutes = <ModalRoute<dynamic>>[];
1849 1850 1851
  int dialogCount = 0;

  @override
1852
  void didPush(Route<dynamic> route, Route<dynamic>? previousRoute) {
1853 1854
    if (route is RawDialogRoute) {
      dialogRoutes.add(route);
1855 1856 1857 1858
      dialogCount++;
    }
    super.didPush(route, previousRoute);
  }
1859 1860

  @override
1861
  void didPop(Route<dynamic> route, Route<dynamic>? previousRoute) {
1862
    if (route is RawDialogRoute) {
1863 1864 1865 1866 1867
      dialogRoutes.removeLast();
      dialogCount--;
    }
    super.didPop(route, previousRoute);
  }
1868
}
1869 1870 1871

class _TestDialogRouteWithCustomBarrierCurve<T> extends PopupRoute<T> {
  _TestDialogRouteWithCustomBarrierCurve({
1872
    required Widget child,
1873
    this.barrierLabel,
1874
    this.barrierColor = Colors.black,
1875
    Curve? barrierCurve,
1876 1877 1878 1879 1880 1881 1882 1883 1884
  }) : _barrierCurve = barrierCurve,
       _child = child;

  final Widget _child;

  @override
  bool get barrierDismissible => true;

  @override
1885
  final String? barrierLabel;
1886 1887

  @override
1888
  final Color? barrierColor;
1889 1890 1891 1892 1893 1894

  @override
  Curve get barrierCurve {
    if (_barrierCurve == null) {
      return super.barrierCurve;
    }
1895
    return _barrierCurve!;
1896
  }
1897
  final Curve? _barrierCurve;
1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910

  @override
  Duration get transitionDuration => const Duration(milliseconds: 100); // easier value to test against

  @override
  Widget buildPage(BuildContext context, Animation<double> animation, Animation<double> secondaryAnimation) {
    return Semantics(
      child: _child,
      scopesRoute: true,
      explicitChildNodes: true,
    );
  }
}
1911 1912

class WidgetWithLocalHistory extends StatefulWidget {
1913 1914
  const WidgetWithLocalHistory({Key? key}) : super(key: key);

1915 1916 1917 1918 1919
  @override
  WidgetWithLocalHistoryState createState() => WidgetWithLocalHistoryState();
}

class WidgetWithLocalHistoryState extends State<WidgetWithLocalHistory> {
1920
  late LocalHistoryEntry _localHistory;
1921 1922

  void addLocalHistory() {
1923
    final ModalRoute<dynamic> route = ModalRoute.of(context)!;
1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938
    _localHistory = LocalHistoryEntry();
    route.addLocalHistoryEntry(_localHistory);
  }

  @override
  void dispose() {
    super.dispose();
    _localHistory.remove();
  }

  @override
  Widget build(BuildContext context) {
    return const Text('dummy');
  }
}
1939 1940 1941 1942 1943

class TransitionDetector extends DefaultTransitionDelegate<void> {
  bool hasTransition = false;
  @override
  Iterable<RouteTransitionRecord> resolve({
1944 1945 1946
    required List<RouteTransitionRecord> newPageRouteHistory,
    required Map<RouteTransitionRecord?, RouteTransitionRecord> locationToExitingPageRoute,
    required Map<RouteTransitionRecord?, List<RouteTransitionRecord>> pageRouteToPagelessRoutes
1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957
  }) {
    hasTransition = true;
    return super.resolve(
      newPageRouteHistory: newPageRouteHistory,
      locationToExitingPageRoute: locationToExitingPageRoute,
      pageRouteToPagelessRoutes: pageRouteToPagelessRoutes
    );
  }
}

Widget buildNavigator({
1958 1959 1960 1961
  required List<Page<dynamic>> pages,
  required PopPageCallback onPopPage,
  GlobalKey<NavigatorState>? key,
  TransitionDelegate<dynamic>? transitionDelegate
1962 1963
}) {
  return MediaQuery(
1964
    data: MediaQueryData.fromWindow(WidgetsBinding.instance!.window),
1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982
    child: Localizations(
      locale: const Locale('en', 'US'),
      delegates: const <LocalizationsDelegate<dynamic>>[
        DefaultMaterialLocalizations.delegate,
        DefaultWidgetsLocalizations.delegate
      ],
      child: Directionality(
        textDirection: TextDirection.ltr,
        child: Navigator(
          key: key,
          pages: pages,
          onPopPage: onPopPage,
          transitionDelegate: transitionDelegate ?? const DefaultTransitionDelegate<dynamic>(),
        ),
      ),
    ),
  );
}
1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010

class _RestorableDialogTestWidget extends StatelessWidget {
  static Route<Object?> _dialogBuilder(BuildContext context, Object? arguments) {
    return RawDialogRoute<void>(
      pageBuilder: (
        BuildContext context,
        Animation<double> animation,
        Animation<double> secondaryAnimation,
      ) {
        return const AlertDialog(title: Text('Alert!'));
      },
    );
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: OutlinedButton(
          onPressed: () {
            Navigator.of(context).restorablePush(_dialogBuilder);
          },
          child: const Text('X'),
        ),
      ),
    );
  }
}