progress_indicator_test.dart 1.92 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'package:flutter_test/flutter_test.dart';
import 'package:flutter/rendering.dart';
import 'package:flutter/material.dart';

void main() {

  // The "can be constructed" tests that follow are primarily to ensure that any
  // animations started by the progress indicators are stopped at dispose() time.

14 15
  testWidgets('LinearProgressIndicator(value: 0.0) can be constructed', (WidgetTester tester) async {
    await tester.pumpWidget(
16 17 18 19
      new Center(
        child: new SizedBox(
          width: 200.0,
          child: new LinearProgressIndicator(value: 0.0)
20
        )
21 22
      )
    );
23 24
  });

25 26
  testWidgets('LinearProgressIndicator(value: null) can be constructed', (WidgetTester tester) async {
    await tester.pumpWidget(
27 28 29 30
      new Center(
        child: new SizedBox(
          width: 200.0,
          child: new LinearProgressIndicator(value: null)
31
        )
32 33
      )
    );
34 35
  });

36 37
  testWidgets('CircularProgressIndicator(value: 0.0) can be constructed', (WidgetTester tester) async {
    await tester.pumpWidget(
38 39 40 41
      new Center(
        child: new CircularProgressIndicator(value: 0.0)
      )
    );
42 43
  });

44 45
  testWidgets('CircularProgressIndicator(value: null) can be constructed', (WidgetTester tester) async {
    await tester.pumpWidget(
46 47 48 49
      new Center(
        child: new CircularProgressIndicator(value: null)
      )
    );
50 51
  });

52 53
  testWidgets('LinearProgressIndicator causes a repaint when it changes', (WidgetTester tester) async {
    await tester.pumpWidget(new Block(children: <Widget>[new LinearProgressIndicator(value: 0.0)]));
54
    List<Layer> layers1 = tester.layers;
55
    await tester.pumpWidget(new Block(children: <Widget>[new LinearProgressIndicator(value: 0.5)]));
56 57
    List<Layer> layers2 = tester.layers;
    expect(layers1, isNot(equals(layers2)));
58 59
  });
}