example_code_display_test.dart 1.84 KB
Newer Older
1 2 3 4 5 6 7 8 9
// Copyright 2016 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/material.dart';
import 'package:flutter_gallery/gallery/app.dart';
import 'package:flutter_test/flutter_test.dart';

void main() {
10
  final TestWidgetsFlutterBinding binding = TestWidgetsFlutterBinding.ensureInitialized();
11
  if (binding is LiveTestWidgetsFlutterBinding)
12
    binding.framePolicy = LiveTestWidgetsFlutterBindingFramePolicy.fullyLive;
13 14 15 16

  testWidgets('Flutter gallery button example code displays', (WidgetTester tester) async {
    // Regression test for https://github.com/flutter/flutter/issues/6147

17
    await tester.pumpWidget(const GalleryApp());
18 19 20 21 22
    await tester.pump(); // see https://github.com/flutter/flutter/issues/1865
    await tester.pump(); // triggers a frame


    // Scroll the Buttons demo into view so that a tap will succeed
23
    final Offset allDemosOrigin = tester.getTopRight(find.text('Vignettes'));
24 25
    final Finder button = find.text('Buttons');
    while (button.evaluate().isEmpty) {
26 27
      await tester.dragFrom(allDemosOrigin, const Offset(0.0, -200.0));
      await tester.pumpAndSettle();
28
    }
29 30 31 32 33 34 35 36 37 38 39 40

    // Launch the buttons demo and then prove that showing the example
    // code dialog does not crash.

    await tester.tap(find.text('Buttons'));
    await tester.pump(); // start animation
    await tester.pump(const Duration(seconds: 1)); // end animation

    await tester.tap(find.text('RAISED'));
    await tester.pump(); // start animation
    await tester.pump(const Duration(seconds: 1)); // end animation

41
    await tester.tap(find.byTooltip('Show example code'));
42 43 44 45 46 47
    await tester.pump(); // start animation
    await tester.pump(const Duration(seconds: 1)); // end animation

    expect(find.text('Example code'), findsOneWidget);
  });
}