progress_indicator_test.dart 14.6 KB
Newer Older
1 2 3 4 5 6 7 8
// 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';

9 10
import '../rendering/mock_canvas.dart';

11 12 13 14 15
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.

16 17
  testWidgets('LinearProgressIndicator(value: 0.0) can be constructed and has empty semantics by default', (WidgetTester tester) async {
    final SemanticsHandle handle = tester.ensureSemantics();
18
    await tester.pumpWidget(
19 20
      const Directionality(
        textDirection: TextDirection.ltr,
21 22
        child: Center(
          child: SizedBox(
23
            width: 200.0,
24
            child: LinearProgressIndicator(value: 0.0),
25 26 27
          ),
        ),
      ),
28
    );
29 30 31

    expect(tester.getSemantics(find.byType(LinearProgressIndicator)), matchesSemantics());
    handle.dispose();
32 33
  });

34 35
  testWidgets('LinearProgressIndicator(value: null) can be constructed and has empty semantics by default', (WidgetTester tester) async {
    final SemanticsHandle handle = tester.ensureSemantics();
36
    await tester.pumpWidget(
37 38
      const Directionality(
        textDirection: TextDirection.rtl,
39 40
        child: Center(
          child: SizedBox(
41
            width: 200.0,
42
            child: LinearProgressIndicator(value: null),
43 44 45
          ),
        ),
      ),
46
    );
47 48 49

    expect(tester.getSemantics(find.byType(LinearProgressIndicator)), matchesSemantics());
    handle.dispose();
50 51
  });

52 53 54 55
  testWidgets('LinearProgressIndicator paint (LTR)', (WidgetTester tester) async {
    await tester.pumpWidget(
      const Directionality(
        textDirection: TextDirection.ltr,
56 57
        child: Center(
          child: SizedBox(
58
            width: 200.0,
59
            child: LinearProgressIndicator(value: 0.25),
60 61 62 63 64 65 66 67
          ),
        ),
      ),
    );

    expect(
      find.byType(LinearProgressIndicator),
      paints
68 69
        ..rect(rect: Rect.fromLTRB(0.0, 0.0, 200.0, 6.0))
        ..rect(rect: Rect.fromLTRB(0.0, 0.0, 50.0, 6.0))
70 71 72 73 74 75 76 77 78
    );

    expect(tester.binding.transientCallbackCount, 0);
  });

  testWidgets('LinearProgressIndicator paint (RTL)', (WidgetTester tester) async {
    await tester.pumpWidget(
      const Directionality(
        textDirection: TextDirection.rtl,
79 80
        child: Center(
          child: SizedBox(
81
            width: 200.0,
82
            child: LinearProgressIndicator(value: 0.25),
83 84 85 86 87 88 89 90
          ),
        ),
      ),
    );

    expect(
      find.byType(LinearProgressIndicator),
      paints
91 92
        ..rect(rect: Rect.fromLTRB(0.0, 0.0, 200.0, 6.0))
        ..rect(rect: Rect.fromLTRB(150.0, 0.0, 200.0, 6.0))
93 94 95 96 97 98 99 100 101
    );

    expect(tester.binding.transientCallbackCount, 0);
  });

  testWidgets('LinearProgressIndicator indeterminate (LTR)', (WidgetTester tester) async {
    await tester.pumpWidget(
      const Directionality(
        textDirection: TextDirection.ltr,
102 103
        child: Center(
          child: SizedBox(
104
            width: 200.0,
105
            child: LinearProgressIndicator(),
106 107 108 109 110
          ),
        ),
      ),
    );

111
    await tester.pump(const Duration(milliseconds: 300));
112
    final double animationValue = const Interval(0.0, 750.0 / 1800.0, curve: Cubic(0.2, 0.0, 0.8, 1.0))
113
      .transform(300.0 / 1800.0);
114 115 116 117

    expect(
      find.byType(LinearProgressIndicator),
      paints
118 119
        ..rect(rect: Rect.fromLTRB(0.0, 0.0, 200.0, 6.0))
        ..rect(rect: Rect.fromLTRB(0.0, 0.0, animationValue * 200.0, 6.0))
120 121 122 123 124 125 126 127 128
    );

    expect(tester.binding.transientCallbackCount, 1);
  });

  testWidgets('LinearProgressIndicator paint (RTL)', (WidgetTester tester) async {
    await tester.pumpWidget(
      const Directionality(
        textDirection: TextDirection.rtl,
129 130
        child: Center(
          child: SizedBox(
131
            width: 200.0,
132
            child: LinearProgressIndicator(),
133 134 135 136 137
          ),
        ),
      ),
    );

138
    await tester.pump(const Duration(milliseconds: 300));
139
    final double animationValue = const Interval(0.0, 750.0 / 1800.0, curve: Cubic(0.2, 0.0, 0.8, 1.0))
140
      .transform(300.0 / 1800.0);
141 142 143 144

    expect(
      find.byType(LinearProgressIndicator),
      paints
145 146
        ..rect(rect: Rect.fromLTRB(0.0, 0.0, 200.0, 6.0))
        ..rect(rect: Rect.fromLTRB(200.0 - animationValue * 200.0, 0.0, 200.0, 6.0))
147 148 149 150 151
    );

    expect(tester.binding.transientCallbackCount, 1);
  });

152 153 154 155
  testWidgets('LinearProgressIndicator with colors', (WidgetTester tester) async {
    await tester.pumpWidget(
      const Directionality(
        textDirection: TextDirection.ltr,
156 157
        child: Center(
          child: SizedBox(
158
            width: 200.0,
159
            child: LinearProgressIndicator(
160
              value: 0.25,
161
              valueColor: AlwaysStoppedAnimation<Color>(Colors.white),
162 163 164 165 166 167 168 169 170 171
              backgroundColor: Colors.black,
            ),
          ),
        ),
      ),
    );

    expect(
      find.byType(LinearProgressIndicator),
      paints
172 173
        ..rect(rect: Rect.fromLTRB(0.0, 0.0, 200.0, 6.0))
        ..rect(rect: Rect.fromLTRB(0.0, 0.0, 50.0, 6.0), color: Colors.white)
174 175 176
    );
  });

177 178
  testWidgets('CircularProgressIndicator(value: 0.0) can be constructed and has value semantics by default', (WidgetTester tester) async {
    final SemanticsHandle handle = tester.ensureSemantics();
179
    await tester.pumpWidget(
180 181 182 183 184
      const Directionality(
        textDirection: TextDirection.ltr,
        child: Center(
          child: CircularProgressIndicator(value: 0.0)
        )
185 186
      )
    );
187 188 189 190 191 192

    expect(tester.getSemantics(find.byType(CircularProgressIndicator)), matchesSemantics(
      value: '0%',
      textDirection: TextDirection.ltr,
    ));
    handle.dispose();
193 194
  });

195 196
  testWidgets('CircularProgressIndicator(value: null) can be constructed and has empty semantics by default', (WidgetTester tester) async {
    final SemanticsHandle handle = tester.ensureSemantics();
197
    await tester.pumpWidget(
198
      const Center(
199
        child: CircularProgressIndicator(value: null)
200 201
      )
    );
202 203 204

    expect(tester.getSemantics(find.byType(CircularProgressIndicator)), matchesSemantics());
    handle.dispose();
205 206
  });

207
  testWidgets('LinearProgressIndicator causes a repaint when it changes', (WidgetTester tester) async {
208
    await tester.pumpWidget(Directionality(
209
      textDirection: TextDirection.ltr,
210
      child: ListView(children: const <Widget>[LinearProgressIndicator(value: 0.0)]),
211
    ));
212
    final List<Layer> layers1 = tester.layers;
213
    await tester.pumpWidget(Directionality(
214
      textDirection: TextDirection.ltr,
215
      child: ListView(children: const <Widget>[LinearProgressIndicator(value: 0.5)])),
216
    );
217
    final List<Layer> layers2 = tester.layers;
218
    expect(layers1, isNot(equals(layers2)));
219
  });
220 221 222 223 224 225 226 227 228 229 230

  testWidgets('CircularProgressIndicator stoke width', (WidgetTester tester) async {
    await tester.pumpWidget(const CircularProgressIndicator());

    expect(find.byType(CircularProgressIndicator), paints..arc(strokeWidth: 4.0));

    await tester.pumpWidget(const CircularProgressIndicator(strokeWidth: 16.0));

    expect(find.byType(CircularProgressIndicator), paints..arc(strokeWidth: 16.0));
  });

231 232 233 234 235 236
  testWidgets('Indeterminate RefreshProgressIndicator keeps spinning until end of time (approximate)', (WidgetTester tester) async {
    // Regression test for https://github.com/flutter/flutter/issues/13782

    await tester.pumpWidget(
      const Directionality(
        textDirection: TextDirection.ltr,
237 238
        child: Center(
          child: SizedBox(
239
            width: 200.0,
240
            child: RefreshProgressIndicator(),
241 242 243 244 245 246
          ),
        ),
      ),
    );
    expect(tester.hasRunningAnimations, isTrue);

247
    await tester.pump(const Duration(seconds: 5));
248 249 250 251 252 253 254 255 256
    expect(tester.hasRunningAnimations, isTrue);

    await tester.pump(const Duration(milliseconds: 1));
    expect(tester.hasRunningAnimations, isTrue);

    await tester.pump(const Duration(days: 9999));
    expect(tester.hasRunningAnimations, isTrue);
  });

257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
  testWidgets('Determinate CircularProgressIndicator stops the animator', (WidgetTester tester) async {
    double progressValue;
    StateSetter setState;
    await tester.pumpWidget(
      Center(
        child: StatefulBuilder(
          builder: (BuildContext context, StateSetter setter) {
            setState = setter;
            return CircularProgressIndicator(value: progressValue);
          }
        ),
      )
    );
    expect(tester.hasRunningAnimations, isTrue);

    setState(() { progressValue = 1.0; });
    await tester.pump(const Duration(milliseconds: 1));
    expect(tester.hasRunningAnimations, isFalse);

    setState(() { progressValue = null; });
    await tester.pump(const Duration(milliseconds: 1));
    expect(tester.hasRunningAnimations, isTrue);
  });
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345

  testWidgets('LinearProgressIndicator with height 12.0', (WidgetTester tester) async {
    await tester.pumpWidget(
      const Directionality(
        textDirection: TextDirection.ltr,
        child: Center(
          child: SizedBox(
            width: 100.0,
            height: 12.0,
            child: LinearProgressIndicator(value: 0.25),
          ),
        ),
      ),
    );
    expect(
        find.byType(LinearProgressIndicator),
        paints
          ..rect(rect: Rect.fromLTRB(0.0, 0.0, 100.0, 12.0))
          ..rect(rect: Rect.fromLTRB(0.0, 0.0, 25.0, 12.0))
    );
    expect(tester.binding.transientCallbackCount, 0);
  });

  testWidgets('LinearProgressIndicator with a height less than the minumum', (WidgetTester tester) async {
    await tester.pumpWidget(
      const Directionality(
        textDirection: TextDirection.ltr,
        child: Center(
          child: SizedBox(
            width: 100.0,
            height: 3.0,
            child: LinearProgressIndicator(value: 0.25),
          ),
        ),
      ),
    );
    expect(
        find.byType(LinearProgressIndicator),
        paints
          ..rect(rect: Rect.fromLTRB(0.0, 0.0, 100.0, 3.0))
          ..rect(rect: Rect.fromLTRB(0.0, 0.0, 25.0, 3.0))
    );
    expect(tester.binding.transientCallbackCount, 0);
  });

  testWidgets('LinearProgressIndicator with default height', (WidgetTester tester) async {
    await tester.pumpWidget(
      const Directionality(
        textDirection: TextDirection.ltr,
        child: Center(
          child: SizedBox(
            width: 100.0,
            height: 4.0,
            child: LinearProgressIndicator(value: 0.25),
          ),
        ),
      ),
    );
    expect(
        find.byType(LinearProgressIndicator),
        paints
          ..rect(rect: Rect.fromLTRB(0.0, 0.0, 100.0, 4.0))
          ..rect(rect: Rect.fromLTRB(0.0, 0.0, 25.0, 4.0))
    );
    expect(tester.binding.transientCallbackCount, 0);
  });
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488

  testWidgets('LinearProgressIndicator can be made accessible', (WidgetTester tester) async {
    final SemanticsHandle handle = tester.ensureSemantics();
    final GlobalKey key = GlobalKey();
    const String label = 'Label';
    const String value = '25%';
    await tester.pumpWidget(
      Directionality(
        textDirection: TextDirection.ltr,
        child: LinearProgressIndicator(
          key: key,
          value: 0.25,
          semanticsLabel: label,
          semanticsValue: value,
        ),
      ),
    );

    expect(tester.getSemantics(find.byKey(key)), matchesSemantics(
      textDirection: TextDirection.ltr,
      label: label,
      value: value,
    ));

    handle.dispose();
  });

  testWidgets('LinearProgressIndicator that is determinate gets default a11y value', (WidgetTester tester) async {
    final SemanticsHandle handle = tester.ensureSemantics();
    final GlobalKey key = GlobalKey();
    const String label = 'Label';
    await tester.pumpWidget(
      Directionality(
        textDirection: TextDirection.ltr,
        child: LinearProgressIndicator(
          key: key,
          value: 0.25,
          semanticsLabel: label,
        ),
      ),
    );

    expect(tester.getSemantics(find.byKey(key)), matchesSemantics(
      textDirection: TextDirection.ltr,
      label: label,
      value: '25%',
    ));

    handle.dispose();
  });

  testWidgets('LinearProgressIndicator that is determinate does not default a11y value when label is null', (WidgetTester tester) async {
    final SemanticsHandle handle = tester.ensureSemantics();
    final GlobalKey key = GlobalKey();
    await tester.pumpWidget(
      Directionality(
        textDirection: TextDirection.ltr,
        child: LinearProgressIndicator(
          key: key,
          value: 0.25,
        ),
      ),
    );

    expect(tester.getSemantics(find.byKey(key)), matchesSemantics());

    handle.dispose();
  });

  testWidgets('LinearProgressIndicator that is indeterminate does not default a11y value', (WidgetTester tester) async {
    final SemanticsHandle handle = tester.ensureSemantics();
    final GlobalKey key = GlobalKey();
    const String label = 'Progress';
    await tester.pumpWidget(
      Directionality(
        textDirection: TextDirection.ltr,
        child: LinearProgressIndicator(
          key: key,
          value: 0.25,
          semanticsLabel: label,
        ),
      ),
    );

    expect(tester.getSemantics(find.byKey(key)), matchesSemantics(
      textDirection: TextDirection.ltr,
      label: label,
    ));

    handle.dispose();
  });

  testWidgets('CircularProgressIndicator can be made accessible', (WidgetTester tester) async {
    final SemanticsHandle handle = tester.ensureSemantics();
    final GlobalKey key = GlobalKey();
    const String label = 'Label';
    const String value = '25%';
    await tester.pumpWidget(
      Directionality(
        textDirection: TextDirection.ltr,
        child: CircularProgressIndicator(
          key: key,
          value: 0.25,
          semanticsLabel: label,
          semanticsValue: value,
        ),
      ),
    );

    expect(tester.getSemantics(find.byKey(key)), matchesSemantics(
      textDirection: TextDirection.ltr,
      label: label,
      value: value,
    ));

    handle.dispose();
  });

  testWidgets('RefreshProgressIndicator can be made accessible', (WidgetTester tester) async {
    final SemanticsHandle handle = tester.ensureSemantics();
    final GlobalKey key = GlobalKey();
    const String label = 'Label';
    const String value = '25%';
    await tester.pumpWidget(
      Directionality(
        textDirection: TextDirection.ltr,
        child: RefreshProgressIndicator(
          key: key,
          semanticsLabel: label,
          semanticsValue: value,
        ),
      ),
    );

    expect(tester.getSemantics(find.byKey(key)), matchesSemantics(
      textDirection: TextDirection.ltr,
      label: label,
      value: value,
    ));


    handle.dispose();
  });
489
}