card_collection_test.dart 1.37 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// 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_test/flutter_test.dart';
import 'package:test/test.dart';

import '../card_collection.dart' as card_collection;

void main() {
  test("Card Collection smoke test", () {
    testWidgets((WidgetTester tester) {
      card_collection.main(); // builds the app and schedules a frame but doesn't trigger one
      tester.pump(); // see https://github.com/flutter/flutter/issues/1865
      tester.pump(); // triggers a frame

18
      Finder navigationMenu = find.byWidgetPredicate((Widget widget) {
19 20 21 22 23
        if (widget is Tooltip)
          return widget.message == 'Open navigation menu';
        return false;
      });

24
      expect(tester, hasWidget(navigationMenu));
25 26 27 28 29 30

      tester.tap(navigationMenu);
      tester.pump(); // start opening menu
      tester.pump(const Duration(seconds: 1)); // wait til it's really opened

      // smoke test for various checkboxes
31
      tester.tap(find.text('Make card labels editable'));
32
      tester.pump();
33
      tester.tap(find.text('Let the sun shine'));
34
      tester.pump();
35
      tester.tap(find.text('Make card labels editable'));
36
      tester.pump();
37
      tester.tap(find.text('Vary font sizes'));
38 39 40 41
      tester.pump();
    });
  });
}