snack_bar_test.dart 10.6 KB
Newer Older
Hixie's avatar
Hixie committed
1 2 3 4
// 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.

Adam Barth's avatar
Adam Barth committed
5
import 'package:flutter_test/flutter_test.dart';
6
import 'package:flutter/material.dart';
7 8 9 10 11 12 13
import 'package:test/test.dart';

void main() {
  test('SnackBar control test', () {
    testWidgets((WidgetTester tester) {
      String helloSnackBar = 'Hello SnackBar';
      Key tapTarget = new Key('tap-target');
Adam Barth's avatar
Adam Barth committed
14
      tester.pumpWidget(new MaterialApp(
15
        routes: <String, RouteBuilder>{
16
          '/': (RouteArguments args) {
Hixie's avatar
Hixie committed
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
            return new Scaffold(
              body: new Builder(
                builder: (BuildContext context) {
                  return new GestureDetector(
                    onTap: () {
                      Scaffold.of(context).showSnackBar(new SnackBar(
                        content: new Text(helloSnackBar),
                        duration: new Duration(seconds: 2)
                      ));
                    },
                    behavior: HitTestBehavior.opaque,
                    child: new Container(
                      height: 100.0,
                      width: 100.0,
                      key: tapTarget
                    )
                  );
                }
35 36 37 38 39
              )
            );
          }
        }
      ));
Hixie's avatar
Hixie committed
40
      expect(tester.findText(helloSnackBar), isNull);
41 42
      tester.tap(tester.findElementByKey(tapTarget));
      expect(tester.findText(helloSnackBar), isNull);
Hixie's avatar
Hixie committed
43
      tester.pump(); // schedule animation
44
      expect(tester.findText(helloSnackBar), isNotNull);
Hixie's avatar
Hixie committed
45 46 47 48 49
      tester.pump(); // begin animation
      expect(tester.findText(helloSnackBar), isNotNull);
      tester.pump(new Duration(milliseconds: 750)); // 0.75s // animation last frame; two second timer starts here
      expect(tester.findText(helloSnackBar), isNotNull);
      tester.pump(new Duration(milliseconds: 750)); // 1.50s
50
      expect(tester.findText(helloSnackBar), isNotNull);
Adam Barth's avatar
Adam Barth committed
51
      tester.pump(new Duration(milliseconds: 750)); // 2.25s
Hixie's avatar
Hixie committed
52 53 54 55 56
      expect(tester.findText(helloSnackBar), isNotNull);
      tester.pump(new Duration(milliseconds: 750)); // 3.00s // timer triggers to dismiss snackbar, reverse animation is scheduled
      tester.pump(); // begin animation
      expect(tester.findText(helloSnackBar), isNotNull); // frame 0 of dismiss animation
      tester.pump(new Duration(milliseconds: 750)); // 3.75s // last frame of animation, snackbar removed from build
57
      expect(tester.findText(helloSnackBar), isNull);
Hixie's avatar
Hixie committed
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
    });
  });

  test('SnackBar twice test', () {
    testWidgets((WidgetTester tester) {
      int snackBarCount = 0;
      Key tapTarget = new Key('tap-target');
      tester.pumpWidget(new MaterialApp(
        routes: <String, RouteBuilder>{
          '/': (RouteArguments args) {
            return new Scaffold(
              body: new Builder(
                builder: (BuildContext context) {
                  return new GestureDetector(
                    onTap: () {
                      snackBarCount += 1;
                      Scaffold.of(context).showSnackBar(new SnackBar(
                        content: new Text("bar$snackBarCount"),
                        duration: new Duration(seconds: 2)
                      ));
                    },
                    behavior: HitTestBehavior.opaque,
                    child: new Container(
                      height: 100.0,
                      width: 100.0,
                      key: tapTarget
                    )
                  );
                }
              )
            );
          }
        }
      ));
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNull);
      tester.tap(tester.findElementByKey(tapTarget)); // queue bar1
      tester.tap(tester.findElementByKey(tapTarget)); // queue bar2
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNull);
      tester.pump(); // schedule animation for bar1
      expect(tester.findText('bar1'), isNotNull);
      expect(tester.findText('bar2'), isNull);
      tester.pump(); // begin animation
      expect(tester.findText('bar1'), isNotNull);
      expect(tester.findText('bar2'), isNull);
      tester.pump(new Duration(milliseconds: 750)); // 0.75s // animation last frame; two second timer starts here
      expect(tester.findText('bar1'), isNotNull);
      expect(tester.findText('bar2'), isNull);
      tester.pump(new Duration(milliseconds: 750)); // 1.50s
      expect(tester.findText('bar1'), isNotNull);
      expect(tester.findText('bar2'), isNull);
Adam Barth's avatar
Adam Barth committed
110
      tester.pump(new Duration(milliseconds: 750)); // 2.25s
Hixie's avatar
Hixie committed
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
      expect(tester.findText('bar1'), isNotNull);
      expect(tester.findText('bar2'), isNull);
      tester.pump(new Duration(milliseconds: 750)); // 3.00s // timer triggers to dismiss snackbar, reverse animation is scheduled
      tester.pump(); // begin animation
      expect(tester.findText('bar1'), isNotNull);
      expect(tester.findText('bar2'), isNull);
      tester.pump(new Duration(milliseconds: 750)); // 3.75s // last frame of animation, snackbar removed from build, new snack bar put in its place
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNotNull);
      tester.pump(); // begin animation
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNotNull);
      tester.pump(new Duration(milliseconds: 750)); // 4.50s // animation last frame; two second timer starts here
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNotNull);
      tester.pump(new Duration(milliseconds: 750)); // 5.25s
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNotNull);
Adam Barth's avatar
Adam Barth committed
129
      tester.pump(new Duration(milliseconds: 750)); // 6.00s
Hixie's avatar
Hixie committed
130 131 132 133 134 135 136 137 138
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNotNull);
      tester.pump(new Duration(milliseconds: 750)); // 6.75s // timer triggers to dismiss snackbar, reverse animation is scheduled
      tester.pump(); // begin animation
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNotNull);
      tester.pump(new Duration(milliseconds: 750)); // 7.50s // last frame of animation, snackbar removed from build, new snack bar put in its place
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNull);
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

  test('SnackBar cancel test', () {
    testWidgets((WidgetTester tester) {
      int snackBarCount = 0;
      Key tapTarget = new Key('tap-target');
      int time;
      ScaffoldFeatureController<SnackBar> lastController;
      tester.pumpWidget(new MaterialApp(
        routes: <String, RouteBuilder>{
          '/': (RouteArguments args) {
            return new Scaffold(
              body: new Builder(
                builder: (BuildContext context) {
                  return new GestureDetector(
                    onTap: () {
                      snackBarCount += 1;
                      lastController = Scaffold.of(context).showSnackBar(new SnackBar(
                        content: new Text("bar$snackBarCount"),
                        duration: new Duration(seconds: time)
                      ));
                    },
                    behavior: HitTestBehavior.opaque,
                    child: new Container(
                      height: 100.0,
                      width: 100.0,
                      key: tapTarget
                    )
                  );
                }
              )
            );
          }
        }
      ));
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNull);
      time = 1000;
      tester.tap(tester.findElementByKey(tapTarget)); // queue bar1
      ScaffoldFeatureController<SnackBar> firstController = lastController;
      time = 2;
      tester.tap(tester.findElementByKey(tapTarget)); // queue bar2
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNull);
      tester.pump(); // schedule animation for bar1
      expect(tester.findText('bar1'), isNotNull);
      expect(tester.findText('bar2'), isNull);
      tester.pump(); // begin animation
      expect(tester.findText('bar1'), isNotNull);
      expect(tester.findText('bar2'), isNull);
      tester.pump(new Duration(milliseconds: 750)); // 0.75s // animation last frame; two second timer starts here
      expect(tester.findText('bar1'), isNotNull);
      expect(tester.findText('bar2'), isNull);
      tester.pump(new Duration(milliseconds: 750)); // 1.50s
      expect(tester.findText('bar1'), isNotNull);
      expect(tester.findText('bar2'), isNull);
Adam Barth's avatar
Adam Barth committed
196
      tester.pump(new Duration(milliseconds: 750)); // 2.25s
197 198
      expect(tester.findText('bar1'), isNotNull);
      expect(tester.findText('bar2'), isNull);
Adam Barth's avatar
Adam Barth committed
199
      tester.pump(new Duration(milliseconds: 10000)); // 12.25s
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
      expect(tester.findText('bar1'), isNotNull);
      expect(tester.findText('bar2'), isNull);

      firstController.close(); // snackbar is manually dismissed

      tester.pump(new Duration(milliseconds: 750)); // 13.00s // reverse animation is scheduled
      tester.pump(); // begin animation
      expect(tester.findText('bar1'), isNotNull);
      expect(tester.findText('bar2'), isNull);
      tester.pump(new Duration(milliseconds: 750)); // 13.75s // last frame of animation, snackbar removed from build, new snack bar put in its place
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNotNull);
      tester.pump(); // begin animation
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNotNull);
      tester.pump(new Duration(milliseconds: 750)); // 14.50s // animation last frame; two second timer starts here
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNotNull);
      tester.pump(new Duration(milliseconds: 750)); // 15.25s
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNotNull);
Adam Barth's avatar
Adam Barth committed
221
      tester.pump(new Duration(milliseconds: 750)); // 16.00s
222 223 224 225 226 227 228 229 230 231 232
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNotNull);
      tester.pump(new Duration(milliseconds: 750)); // 16.75s // timer triggers to dismiss snackbar, reverse animation is scheduled
      tester.pump(); // begin animation
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNotNull);
      tester.pump(new Duration(milliseconds: 750)); // 17.50s // last frame of animation, snackbar removed from build, new snack bar put in its place
      expect(tester.findText('bar1'), isNull);
      expect(tester.findText('bar2'), isNull);
    });
  });
233
}