segmented_control_test.dart 47 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
// Copyright 2018 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/widgets.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter_test/flutter_test.dart';

import '../widgets/semantics_tester.dart';

dynamic getRenderSegmentedControl(WidgetTester tester) {
  return tester.allRenderObjects.firstWhere(
    (RenderObject currentObject) {
      return currentObject.toStringShort().contains('_RenderSegmentedControl');
    },
  );
}

StatefulBuilder setupSimpleSegmentedControl() {
  final Map<int, Widget> children = <int, Widget>{};
  children[0] = const Text('Child 1');
  children[1] = const Text('Child 2');
  int sharedValue = 0;

25
  return StatefulBuilder(
26 27
    builder: (BuildContext context, StateSetter setState) {
      return boilerplate(
28
        child: CupertinoSegmentedControl<int>(
29 30 31 32 33 34 35 36 37 38 39 40 41
          children: children,
          onValueChanged: (int newValue) {
            setState(() {
              sharedValue = newValue;
            });
          },
          groupValue: sharedValue,
        ),
      );
    },
  );
}

42
Widget boilerplate({ Widget child }) {
43
  return Directionality(
44
    textDirection: TextDirection.ltr,
45
    child: Center(child: child),
46 47 48
  );
}

49 50 51 52
Color getBackgroundColor(WidgetTester tester, int childIndex) {
  return getRenderSegmentedControl(tester).backgroundColors[childIndex];
}

53 54 55 56 57 58 59 60 61 62
void main() {
  testWidgets('Tap changes toggle state', (WidgetTester tester) async {
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');
    children[2] = const Text('Child 3');

    int sharedValue = 0;

    await tester.pumpWidget(
63
      StatefulBuilder(
64 65
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
66
            child: CupertinoSegmentedControl<int>(
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
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

    expect(sharedValue, 0);

    await tester.tap(find.byKey(const ValueKey<String>('Segmented Control')));

    expect(sharedValue, 1);
  });

  testWidgets('Need at least 2 children', (WidgetTester tester) async {
    final Map<int, Widget> children = <int, Widget>{};
    try {
      await tester.pumpWidget(
        boilerplate(
93
          child: CupertinoSegmentedControl<int>(
94
            children: children,
95
            onValueChanged: (int newValue) { },
96 97 98
          ),
        ),
      );
99
      fail('Should not be possible to create a segmented control with no children');
100 101 102 103 104 105 106 107
    } on AssertionError catch (e) {
      expect(e.toString(), contains('children.length'));
    }
    try {
      children[0] = const Text('Child 1');

      await tester.pumpWidget(
        boilerplate(
108
          child: CupertinoSegmentedControl<int>(
109
            children: children,
110
            onValueChanged: (int newValue) { },
111 112 113
          ),
        ),
      );
114
      fail('Should not be possible to create a segmented control with just one child');
115 116 117 118 119
    } on AssertionError catch (e) {
      expect(e.toString(), contains('children.length'));
    }
  });

120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 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 196 197 198 199 200 201 202 203 204 205 206
  testWidgets('Padding works', (WidgetTester tester) async {
    const Key key = Key('Container');

    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const SizedBox(
      height: double.infinity,
      child: Text('Child 1'),
    ) ;
    children[1] = const SizedBox(
      height: double.infinity,
      child: Text('Child 2'),
    ) ;

    Future<void> verifyPadding({ EdgeInsets padding }) async {
      final EdgeInsets effectivePadding = padding ?? const EdgeInsets.symmetric(horizontal: 16);
      final Rect segmentedControlRect = tester.getRect(find.byKey(key));
      expect(
          tester.getTopLeft(find.byWidget(children[0])),
          segmentedControlRect.topLeft.translate(
            effectivePadding.topLeft.dx,
            effectivePadding.topLeft.dy,
          )
      );
      expect(
        tester.getBottomLeft(find.byWidget(children[0])),
        segmentedControlRect.bottomLeft.translate(
          effectivePadding.bottomLeft.dx,
          effectivePadding.bottomLeft.dy,
        ),
      );

      expect(
        tester.getTopRight(find.byWidget(children[1])),
        segmentedControlRect.topRight.translate(
          effectivePadding.topRight.dx,
          effectivePadding.topRight.dy,
        ),
      );
      expect(
        tester.getBottomRight(find.byWidget(children[1])),
        segmentedControlRect.bottomRight.translate(
          effectivePadding.bottomRight.dx,
          effectivePadding.bottomRight.dy,
        ),
      );
    }

    await tester.pumpWidget(
        boilerplate(
          child: CupertinoSegmentedControl<int>(
            key: key,
            children: children,
            onValueChanged: (int newValue) { },
          ),
        )
    );

    // Default padding works.
    await verifyPadding();

    // Switch to Child 2 padding should remain the same.
    await tester.tap(find.text('Child 2'));
    await tester.pumpAndSettle();

    await verifyPadding();

    await tester.pumpWidget(
        boilerplate(
          child: CupertinoSegmentedControl<int>(
            key: key,
            padding: const EdgeInsets.fromLTRB(1, 3, 5, 7),
            children: children,
            onValueChanged: (int newValue) { },
          ),
        )
    );

    // Custom padding works.
    await verifyPadding(padding: const EdgeInsets.fromLTRB(1, 3, 5, 7));

    // Switch back to Child 1 padding should remain the same.
    await tester.tap(find.text('Child 1'));
    await tester.pumpAndSettle();

    await verifyPadding(padding: const EdgeInsets.fromLTRB(1, 3, 5, 7));
  });

207
  testWidgets('Value attribute must be the key of one of the children widgets', (WidgetTester tester) async {
208 209 210 211 212 213 214
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');

    try {
      await tester.pumpWidget(
        boilerplate(
215
          child: CupertinoSegmentedControl<int>(
216
            children: children,
217
            onValueChanged: (int newValue) { },
218 219 220 221 222 223 224 225 226 227 228
            groupValue: 2,
          ),
        ),
      );
      fail('Should not be possible to create segmented control in which '
          'value is not the key of one of the children widgets');
    } on AssertionError catch (e) {
      expect(e.toString(), contains('children'));
    }
  });

229
  testWidgets('Children and onValueChanged arguments can not be null', (WidgetTester tester) async {
230 231 232
    try {
      await tester.pumpWidget(
        boilerplate(
233
          child: CupertinoSegmentedControl<int>(
234
            children: null,
235
            onValueChanged: (int newValue) { },
236 237 238
          ),
        ),
      );
239
      fail('Should not be possible to create segmented control with null children');
240 241 242 243 244 245 246 247 248 249 250
    } on AssertionError catch (e) {
      expect(e.toString(), contains('children'));
    }

    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');

    try {
      await tester.pumpWidget(
        boilerplate(
251
          child: CupertinoSegmentedControl<int>(
252 253 254 255 256
            children: children,
            onValueChanged: null,
          ),
        ),
      );
257
      fail('Should not be possible to create segmented control with null onValueChanged');
258 259 260 261 262
    } on AssertionError catch (e) {
      expect(e.toString(), contains('onValueChanged'));
    }
  });

263
  testWidgets('Widgets have correct default text/icon styles, change correctly on selection', (WidgetTester tester) async {
264 265 266 267 268 269 270
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Icon(IconData(1));

    int sharedValue = 0;

    await tester.pumpWidget(
271
      StatefulBuilder(
272 273
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
274
            child: CupertinoSegmentedControl<int>(
275 276 277 278 279 280 281 282 283 284 285 286 287
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

288 289
    await tester.pumpAndSettle();

290 291
    DefaultTextStyle textStyle = tester.widget(find.widgetWithText(DefaultTextStyle, 'Child 1'));
    IconTheme iconTheme = tester.widget(find.widgetWithIcon(IconTheme, const IconData(1)));
292 293 294 295 296

    expect(textStyle.style.color, CupertinoColors.white);
    expect(iconTheme.data.color, CupertinoColors.activeBlue);

    await tester.tap(find.widgetWithIcon(IconTheme, const IconData(1)));
297
    await tester.pumpAndSettle();
298 299

    textStyle = tester.widget(find.widgetWithText(DefaultTextStyle, 'Child 1'));
300
    iconTheme = tester.widget(find.widgetWithIcon(IconTheme, const IconData(1)));
301 302 303 304 305

    expect(textStyle.style.color, CupertinoColors.activeBlue);
    expect(iconTheme.data.color, CupertinoColors.white);
  });

xster's avatar
xster committed
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
  testWidgets(
    'Segmented controls respects themes',
    (WidgetTester tester) async {
      final Map<int, Widget> children = <int, Widget>{};
      children[0] = const Text('Child 1');
      children[1] = const Icon(IconData(1));

      int sharedValue = 0;

      await tester.pumpWidget(
        CupertinoApp(
          theme: const CupertinoThemeData(brightness: Brightness.dark),
          home: StatefulBuilder(
            builder: (BuildContext context, StateSetter setState) {
              return CupertinoSegmentedControl<int>(
                children: children,
                onValueChanged: (int newValue) {
                  setState(() {
                    sharedValue = newValue;
                  });
                },
                groupValue: sharedValue,
              );
            },
          ),
        ),
      );

      DefaultTextStyle textStyle = tester.widget(find.widgetWithText(DefaultTextStyle, 'Child 1').first);
335
      IconThemeData iconTheme = IconTheme.of(tester.element(find.byIcon(const IconData(1))));
xster's avatar
xster committed
336 337

      expect(textStyle.style.color, CupertinoColors.black);
338
      expect(iconTheme.color, CupertinoColors.activeOrange);
xster's avatar
xster committed
339

340
      await tester.tap(find.byIcon(const IconData(1)));
xster's avatar
xster committed
341 342 343 344
      await tester.pump();
      await tester.pump(const Duration(milliseconds: 500));

      textStyle = tester.widget(find.widgetWithText(DefaultTextStyle, 'Child 1').first);
345
      iconTheme = IconTheme.of(tester.element(find.byIcon(const IconData(1))));
xster's avatar
xster committed
346 347

      expect(textStyle.style.color, CupertinoColors.activeOrange);
348
      expect(iconTheme.color, CupertinoColors.black);
xster's avatar
xster committed
349 350 351
    },
  );

352
  testWidgets('SegmentedControl is correct when user provides custom colors', (WidgetTester tester) async {
353 354 355
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Icon(IconData(1));
356

357
    int sharedValue = 0;
358

359
    await tester.pumpWidget(
360
      StatefulBuilder(
361 362
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
363
            child: CupertinoSegmentedControl<int>(
364 365 366 367 368 369 370 371 372 373 374 375 376
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
              unselectedColor: CupertinoColors.lightBackgroundGray,
              selectedColor: CupertinoColors.activeGreen,
              borderColor: CupertinoColors.black,
              pressedColor: const Color(0x638CFC7B),
            ),
          );
377
        },
378 379
      ),
    );
380

381 382
    DefaultTextStyle textStyle = tester.widget(find.widgetWithText(DefaultTextStyle, 'Child 1'));
    IconTheme iconTheme = tester.widget(find.widgetWithIcon(IconTheme, const IconData(1)));
383

384 385 386 387 388
    expect(getRenderSegmentedControl(tester).borderColor, CupertinoColors.black);
    expect(textStyle.style.color, CupertinoColors.lightBackgroundGray);
    expect(iconTheme.data.color, CupertinoColors.activeGreen);
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeGreen);
    expect(getBackgroundColor(tester, 1), CupertinoColors.lightBackgroundGray);
389

390 391
    await tester.tap(find.widgetWithIcon(IconTheme, const IconData(1)));
    await tester.pumpAndSettle();
392

393 394
    textStyle = tester.widget(find.widgetWithText(DefaultTextStyle, 'Child 1'));
    iconTheme = tester.widget(find.widgetWithIcon(IconTheme, const IconData(1)));
395

396 397 398 399
    expect(textStyle.style.color, CupertinoColors.activeGreen);
    expect(iconTheme.data.color, CupertinoColors.lightBackgroundGray);
    expect(getBackgroundColor(tester, 0), CupertinoColors.lightBackgroundGray);
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeGreen);
400

401 402 403
    final Offset center = tester.getCenter(find.text('Child 1'));
    await tester.startGesture(center);
    await tester.pumpAndSettle();
404

405 406 407
    expect(getBackgroundColor(tester, 0), const Color(0x638CFC7B));
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeGreen);
  });
408

409 410 411 412 413 414
  testWidgets('Widgets are centered within segments', (WidgetTester tester) async {
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');

    await tester.pumpWidget(
415
      Directionality(
416
        textDirection: TextDirection.ltr,
417
        child: Align(
418
          alignment: Alignment.topLeft,
419
          child: SizedBox(
420 421
            width: 200.0,
            height: 200.0,
422
            child: CupertinoSegmentedControl<int>(
423
              children: children,
424
              onValueChanged: (int newValue) { },
425 426 427 428 429 430 431 432 433 434
            ),
          ),
        ),
      ),
    );

    // Widgets are centered taking into account 16px of horizontal padding
    expect(tester.getCenter(find.text('Child 1')), const Offset(58.0, 100.0));
    expect(tester.getCenter(find.text('Child 2')), const Offset(142.0, 100.0));
  });
435

436 437 438 439 440 441 442 443
  testWidgets('Tap calls onValueChanged', (WidgetTester tester) async {
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');

    bool value = false;

    await tester.pumpWidget(
444
      StatefulBuilder(
445 446
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
447
            child: CupertinoSegmentedControl<int>(
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
              children: children,
              onValueChanged: (int newValue) {
                value = true;
              },
            ),
          );
        },
      ),
    );

    expect(value, isFalse);

    await tester.tap(find.text('Child 2'));

    expect(value, isTrue);
  });

465
  testWidgets('State does not change if onValueChanged does not call setState()', (WidgetTester tester) async {
466 467 468 469 470 471 472
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');

    const int sharedValue = 0;

    await tester.pumpWidget(
473
      StatefulBuilder(
474 475
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
476
            child: CupertinoSegmentedControl<int>(
477
              children: children,
478
              onValueChanged: (int newValue) { },
479 480 481 482 483 484 485
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

486 487
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
    expect(getBackgroundColor(tester, 1), CupertinoColors.white);
488 489 490 491

    await tester.tap(find.text('Child 2'));
    await tester.pump();

492 493
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
    expect(getBackgroundColor(tester, 1), CupertinoColors.white);
494 495 496 497 498 499 500
  });

  testWidgets(
      'Background color of child should change on selection, '
      'and should not change when tapped again', (WidgetTester tester) async {
    await tester.pumpWidget(setupSimpleSegmentedControl());

501
    expect(getBackgroundColor(tester, 1), CupertinoColors.white);
502 503

    await tester.tap(find.text('Child 2'));
504
    await tester.pumpAndSettle(const Duration(milliseconds: 200));
505

506
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
507 508 509 510

    await tester.tap(find.text('Child 2'));
    await tester.pump();

511
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
512 513 514 515 516 517 518 519
  });

  testWidgets(
    'Children can be non-Text or Icon widgets (in this case, '
        'a Container or Placeholder widget)',
    (WidgetTester tester) async {
      final Map<int, Widget> children = <int, Widget>{};
      children[0] = const Text('Child 1');
520
      children[1] = Container(
521 522 523 524 525 526 527
        constraints: const BoxConstraints.tightFor(width: 50.0, height: 50.0),
      );
      children[2] = const Placeholder();

      int sharedValue = 0;

      await tester.pumpWidget(
528
        StatefulBuilder(
529 530
          builder: (BuildContext context, StateSetter setState) {
            return boilerplate(
531
              child: CupertinoSegmentedControl<int>(
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
                children: children,
                onValueChanged: (int newValue) {
                  setState(() {
                    sharedValue = newValue;
                  });
                },
                groupValue: sharedValue,
              ),
            );
          },
        ),
      );
    },
  );

547
  testWidgets('Passed in value is child initially selected', (WidgetTester tester) async {
548 549 550 551
    await tester.pumpWidget(setupSimpleSegmentedControl());

    expect(getRenderSegmentedControl(tester).selectedIndex, 0);

552 553
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
    expect(getBackgroundColor(tester, 1), CupertinoColors.white);
554 555
  });

556
  testWidgets('Null input for value results in no child initially selected', (WidgetTester tester) async {
557 558 559 560 561 562 563
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');

    int sharedValue;

    await tester.pumpWidget(
564
      StatefulBuilder(
565 566
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
567
            child: CupertinoSegmentedControl<int>(
568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

    expect(getRenderSegmentedControl(tester).selectedIndex, null);

583 584
    expect(getBackgroundColor(tester, 0), CupertinoColors.white);
    expect(getBackgroundColor(tester, 1), CupertinoColors.white);
585 586
  });

587
  testWidgets('Long press changes background color of not-selected child', (WidgetTester tester) async {
588 589
    await tester.pumpWidget(setupSimpleSegmentedControl());

590 591
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
    expect(getBackgroundColor(tester, 1), CupertinoColors.white);
592 593 594 595 596

    final Offset center = tester.getCenter(find.text('Child 2'));
    await tester.startGesture(center);
    await tester.pumpAndSettle();

597 598
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
    expect(getBackgroundColor(tester, 1), const Color(0x33007aff));
599 600
  });

601
  testWidgets('Long press does not change background color of currently-selected child', (WidgetTester tester) async {
602 603
    await tester.pumpWidget(setupSimpleSegmentedControl());

604 605
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
    expect(getBackgroundColor(tester, 1), CupertinoColors.white);
606 607 608 609 610

    final Offset center = tester.getCenter(find.text('Child 1'));
    await tester.startGesture(center);
    await tester.pumpAndSettle();

611 612
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
    expect(getBackgroundColor(tester, 1), CupertinoColors.white);
613 614
  });

615
  testWidgets('Height of segmented control is determined by tallest widget', (WidgetTester tester) async {
616
    final Map<int, Widget> children = <int, Widget>{};
617
    children[0] = Container(
618 619
      constraints: const BoxConstraints.tightFor(height: 100.0),
    );
620
    children[1] = Container(
621 622
      constraints: const BoxConstraints.tightFor(height: 400.0),
    );
623
    children[2] = Container(
624 625 626 627
      constraints: const BoxConstraints.tightFor(height: 200.0),
    );

    await tester.pumpWidget(
628
      StatefulBuilder(
629 630
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
631
            child: CupertinoSegmentedControl<int>(
632 633
              key: const ValueKey<String>('Segmented Control'),
              children: children,
634
              onValueChanged: (int newValue) { },
635 636 637 638 639 640
            ),
          );
        },
      ),
    );

641 642
    final RenderBox buttonBox = tester.renderObject(
        find.byKey(const ValueKey<String>('Segmented Control')));
643 644 645 646

    expect(buttonBox.size.height, 400.0);
  });

647
  testWidgets('Width of each segmented control segment is determined by widest widget', (WidgetTester tester) async {
648
    final Map<int, Widget> children = <int, Widget>{};
649
    children[0] = Container(
650 651
      constraints: const BoxConstraints.tightFor(width: 50.0),
    );
652
    children[1] = Container(
653 654
      constraints: const BoxConstraints.tightFor(width: 100.0),
    );
655
    children[2] = Container(
656 657
      constraints: const BoxConstraints.tightFor(width: 200.0),
    );
658 659

    await tester.pumpWidget(
660
      StatefulBuilder(
661 662
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
663
            child: CupertinoSegmentedControl<int>(
664 665
              key: const ValueKey<String>('Segmented Control'),
              children: children,
666
              onValueChanged: (int newValue) { },
667 668 669 670 671 672
            ),
          );
        },
      ),
    );

673 674
    final RenderBox segmentedControl = tester.renderObject(
        find.byKey(const ValueKey<String>('Segmented Control')));
675 676 677 678 679

    // Subtract the 16.0px from each side. Remaining width should be allocated
    // to each child equally.
    final double childWidth = (segmentedControl.size.width - 32.0) / 3;

680 681
    expect(childWidth, 200.0);

682 683 684 685 686 687
    expect(childWidth,
        getRenderSegmentedControl(tester).getChildrenAsList()[0].parentData.surroundingRect.width);
    expect(childWidth,
        getRenderSegmentedControl(tester).getChildrenAsList()[1].parentData.surroundingRect.width);
    expect(childWidth,
        getRenderSegmentedControl(tester).getChildrenAsList()[2].parentData.surroundingRect.width);
688 689
  });

690
  testWidgets('Width is finite in unbounded space', (WidgetTester tester) async {
691 692 693 694 695
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');

    await tester.pumpWidget(
696
      StatefulBuilder(
697 698 699 700
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
            child: Row(
              children: <Widget>[
701
                CupertinoSegmentedControl<int>(
702 703
                  key: const ValueKey<String>('Segmented Control'),
                  children: children,
704
                  onValueChanged: (int newValue) { },
705 706 707 708 709 710 711 712
                ),
              ],
            ),
          );
        },
      ),
    );

713 714
    final RenderBox segmentedControl = tester.renderObject(
        find.byKey(const ValueKey<String>('Segmented Control')));
715 716 717 718

    expect(segmentedControl.size.width.isFinite, isTrue);
  });

719
  testWidgets('Directionality test - RTL should reverse order of widgets', (WidgetTester tester) async {
720 721 722 723 724 725 726
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');

    await tester.pumpWidget(
      Directionality(
        textDirection: TextDirection.rtl,
727 728
        child: Center(
          child: CupertinoSegmentedControl<int>(
729
            children: children,
730
            onValueChanged: (int newValue) { },
731 732 733 734 735
          ),
        ),
      ),
    );

736 737
    expect(tester.getTopRight(find.text('Child 1')).dx >
        tester.getTopRight(find.text('Child 2')).dx, isTrue);
738 739
  });

740
  testWidgets('Correct initial selection and toggling behavior - RTL', (WidgetTester tester) async {
741 742 743 744 745 746 747
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');

    int sharedValue = 0;

    await tester.pumpWidget(
748
      StatefulBuilder(
749 750 751
        builder: (BuildContext context, StateSetter setState) {
          return Directionality(
            textDirection: TextDirection.rtl,
752 753
            child: Center(
              child: CupertinoSegmentedControl<int>(
754 755 756 757 758 759 760 761 762 763 764 765 766 767
                children: children,
                onValueChanged: (int newValue) {
                  setState(() {
                    sharedValue = newValue;
                  });
                },
                groupValue: sharedValue,
              ),
            ),
          );
        },
      ),
    );

768 769
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
    expect(getBackgroundColor(tester, 1), CupertinoColors.white);
770 771

    await tester.tap(find.text('Child 2'));
772
    await tester.pumpAndSettle();
773

774 775
    expect(getBackgroundColor(tester, 0), CupertinoColors.white);
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
776 777 778 779

    await tester.tap(find.text('Child 2'));
    await tester.pump();

780
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
781 782 783
  });

  testWidgets('Segmented control semantics', (WidgetTester tester) async {
784
    final SemanticsTester semantics = SemanticsTester(tester);
785 786 787 788 789 790 791

    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');
    int sharedValue = 0;

    await tester.pumpWidget(
792
      StatefulBuilder(
793 794 795
        builder: (BuildContext context, StateSetter setState) {
          return Directionality(
            textDirection: TextDirection.ltr,
796 797
            child: Center(
              child: CupertinoSegmentedControl<int>(
798 799 800 801 802 803 804 805 806 807 808 809 810 811 812
                children: children,
                onValueChanged: (int newValue) {
                  setState(() {
                    sharedValue = newValue;
                  });
                },
                groupValue: sharedValue,
              ),
            ),
          );
        },
      ),
    );

    expect(
813
      semantics,
814
        hasSemantics(
815
          TestSemantics.root(
816
            children: <TestSemantics>[
817
              TestSemantics.rootChild(
818 819
                label: 'Child 1',
                flags: <SemanticsFlag>[
820
                  SemanticsFlag.isButton,
821 822 823 824 825 826 827
                  SemanticsFlag.isInMutuallyExclusiveGroup,
                  SemanticsFlag.isSelected,
                ],
                actions: <SemanticsAction>[
                  SemanticsAction.tap,
                ],
              ),
828
              TestSemantics.rootChild(
829 830
                label: 'Child 2',
                flags: <SemanticsFlag>[
831
                  SemanticsFlag.isButton,
832 833 834 835 836 837 838 839 840 841 842
                  SemanticsFlag.isInMutuallyExclusiveGroup,
                ],
                actions: <SemanticsAction>[
                  SemanticsAction.tap,
                ],
              ),
            ],
          ),
          ignoreId: true,
          ignoreRect: true,
          ignoreTransform: true,
843 844
        ),
    );
845 846 847 848 849 850 851

    await tester.tap(find.text('Child 2'));
    await tester.pump();

    expect(
        semantics,
        hasSemantics(
852
          TestSemantics.root(
853
            children: <TestSemantics>[
854
              TestSemantics.rootChild(
855 856
                label: 'Child 1',
                flags: <SemanticsFlag>[
857
                  SemanticsFlag.isButton,
858 859 860 861 862 863
                  SemanticsFlag.isInMutuallyExclusiveGroup,
                ],
                actions: <SemanticsAction>[
                  SemanticsAction.tap,
                ],
              ),
864
              TestSemantics.rootChild(
865 866
                label: 'Child 2',
                flags: <SemanticsFlag>[
867
                  SemanticsFlag.isButton,
868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884
                  SemanticsFlag.isInMutuallyExclusiveGroup,
                  SemanticsFlag.isSelected,
                ],
                actions: <SemanticsAction>[
                  SemanticsAction.tap,
                ],
              ),
            ],
          ),
          ignoreId: true,
          ignoreRect: true,
          ignoreTransform: true,
        ));

    semantics.dispose();
  });

885 886
  testWidgets('Non-centered taps work on smaller widgets', (WidgetTester tester) async {
    final Map<int, Widget> children = <int, Widget>{};
887 888
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');
889 890 891 892

    int sharedValue = 1;

    await tester.pumpWidget(
893
      StatefulBuilder(
894 895
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
896
            child: CupertinoSegmentedControl<int>(
897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

    expect(sharedValue, 1);

    final double childWidth = getRenderSegmentedControl(tester).firstChild.size.width;
914
    final Offset centerOfSegmentedControl = tester.getCenter(find.text('Child 1'));
915 916

    // Tap just inside segment bounds
917
    await tester.tapAt(
918
      Offset(
919 920 921 922
        centerOfSegmentedControl.dx + (childWidth / 2) - 10.0,
        centerOfSegmentedControl.dy,
      ),
    );
923 924 925 926

    expect(sharedValue, 0);
  });

927
  testWidgets('Animation is correct when the selected segment changes', (WidgetTester tester) async {
928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
    await tester.pumpWidget(setupSimpleSegmentedControl());

    await tester.tap(find.text('Child 2'));

    await tester.pump();
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
    expect(getBackgroundColor(tester, 1), const Color(0x33007aff));

    await tester.pump(const Duration(milliseconds: 40));
    expect(getBackgroundColor(tester, 0), const Color(0xff3d9aff));
    expect(getBackgroundColor(tester, 1), const Color(0x64007aff));

    await tester.pump(const Duration(milliseconds: 40));
    expect(getBackgroundColor(tester, 0), const Color(0xff7bbaff));
    expect(getBackgroundColor(tester, 1), const Color(0x95007aff));

    await tester.pump(const Duration(milliseconds: 40));
    expect(getBackgroundColor(tester, 0), const Color(0xffb9daff));
    expect(getBackgroundColor(tester, 1), const Color(0xc7007aff));

    await tester.pump(const Duration(milliseconds: 40));
    expect(getBackgroundColor(tester, 0), const Color(0xfff7faff));
    expect(getBackgroundColor(tester, 1), const Color(0xf8007aff));

    await tester.pump(const Duration(milliseconds: 40));
    expect(getBackgroundColor(tester, 0), CupertinoColors.white);
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
  });

  testWidgets('Animation is correct when widget is rebuilt', (WidgetTester tester) async {
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');
    int sharedValue = 0;

    await tester.pumpWidget(
964
      StatefulBuilder(
965 966
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
967
            child: CupertinoSegmentedControl<int>(
968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

    await tester.tap(find.text('Child 2'));

    await tester.pumpWidget(
984
      StatefulBuilder(
985 986
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
987
            child: CupertinoSegmentedControl<int>(
988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
    expect(getBackgroundColor(tester, 1), const Color(0x33007aff));

    await tester.pumpWidget(
1004
      StatefulBuilder(
1005 1006
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1007
            child: CupertinoSegmentedControl<int>(
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
      const Duration(milliseconds: 40),
    );
    expect(getBackgroundColor(tester, 0), const Color(0xff3d9aff));
    expect(getBackgroundColor(tester, 1), const Color(0x64007aff));

    await tester.pumpWidget(
1025
      StatefulBuilder(
1026 1027
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1028
            child: CupertinoSegmentedControl<int>(
1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
      const Duration(milliseconds: 40),
    );
    expect(getBackgroundColor(tester, 0), const Color(0xff7bbaff));
    expect(getBackgroundColor(tester, 1), const Color(0x95007aff));

    await tester.pumpWidget(
1046
      StatefulBuilder(
1047 1048
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1049
            child: CupertinoSegmentedControl<int>(
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
      const Duration(milliseconds: 40),
    );
    expect(getBackgroundColor(tester, 0), const Color(0xffb9daff));
    expect(getBackgroundColor(tester, 1), const Color(0xc7007aff));

    await tester.pumpWidget(
1067
      StatefulBuilder(
1068 1069
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1070
            child: CupertinoSegmentedControl<int>(
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
      const Duration(milliseconds: 40),
    );
    expect(getBackgroundColor(tester, 0), const Color(0xfff7faff));
    expect(getBackgroundColor(tester, 1), const Color(0xf8007aff));

    await tester.pumpWidget(
1088
      StatefulBuilder(
1089 1090
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1091
            child: CupertinoSegmentedControl<int>(
1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
      const Duration(milliseconds: 40),
    );
    expect(getBackgroundColor(tester, 0), CupertinoColors.white);
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
  });

  testWidgets('Multiple segments are pressed', (WidgetTester tester) async {
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('A');
    children[1] = const Text('B');
    children[2] = const Text('C');
    int sharedValue = 0;

    await tester.pumpWidget(
1117
      StatefulBuilder(
1118 1119
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1120
            child: CupertinoSegmentedControl<int>(
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

    expect(getBackgroundColor(tester, 1), CupertinoColors.white);

    await tester.startGesture(tester.getCenter(find.text('B')));
    await tester.pumpAndSettle(const Duration(milliseconds: 200));

    expect(getBackgroundColor(tester, 1), const Color(0x33007aff));
    expect(getBackgroundColor(tester, 2), CupertinoColors.white);

    await tester.startGesture(tester.getCenter(find.text('C')));
    await tester.pumpAndSettle(const Duration(milliseconds: 200));

    // Press on C has no effect while B is held down.
    expect(getBackgroundColor(tester, 1), const Color(0x33007aff));
    expect(getBackgroundColor(tester, 2), CupertinoColors.white);
  });

1151
  testWidgets('Transition is triggered while a transition is already occurring', (WidgetTester tester) async {
1152 1153 1154 1155 1156 1157 1158
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('A');
    children[1] = const Text('B');
    children[2] = const Text('C');
    int sharedValue = 0;

    await tester.pumpWidget(
1159
      StatefulBuilder(
1160 1161
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1162
            child: CupertinoSegmentedControl<int>(
1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

    await tester.tap(find.text('B'));

    await tester.pump();
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
    expect(getBackgroundColor(tester, 1), const Color(0x33007aff));

    await tester.pump(const Duration(milliseconds: 40));
    expect(getBackgroundColor(tester, 0), const Color(0xff3d9aff));
    expect(getBackgroundColor(tester, 1), const Color(0x64007aff));

    // While A to B transition is occurring, press on C.
    await tester.tap(find.text('C'));

    await tester.pump();

    // A and B are now both transitioning to white.
    expect(getBackgroundColor(tester, 0), const Color(0xff3d9aff));
    expect(getBackgroundColor(tester, 1), const Color(0xffc1deff));
    expect(getBackgroundColor(tester, 2), const Color(0x33007aff));

    await tester.pump(const Duration(milliseconds: 40));
    // B background color has reached unselected state.
    expect(getBackgroundColor(tester, 0), const Color(0xff7bbaff));
    expect(getBackgroundColor(tester, 1), CupertinoColors.white);
    expect(getBackgroundColor(tester, 2), const Color(0x64007aff));

    await tester.pump(const Duration(milliseconds: 100));
    // A background color has reached unselected state.
    expect(getBackgroundColor(tester, 0), CupertinoColors.white);
    expect(getBackgroundColor(tester, 2), const Color(0xe0007aff));

    await tester.pump(const Duration(milliseconds: 40));
    // C background color has reached selected state.
    expect(getBackgroundColor(tester, 2), CupertinoColors.activeBlue);
  });

1213
  testWidgets('Segment is selected while it is transitioning to unselected state', (WidgetTester tester) async {
1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248
    await tester.pumpWidget(setupSimpleSegmentedControl());

    await tester.tap(find.text('Child 2'));

    await tester.pump();
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
    expect(getBackgroundColor(tester, 1), const Color(0x33007aff));

    await tester.pump(const Duration(milliseconds: 40));
    expect(getBackgroundColor(tester, 0), const Color(0xff3d9aff));
    expect(getBackgroundColor(tester, 1), const Color(0x64007aff));

    // While A to B transition is occurring, press on A again.
    await tester.tap(find.text('Child 1'));

    await tester.pump();

    // Both transitions start to reverse.
    expect(getBackgroundColor(tester, 0), const Color(0xcd007aff));
    expect(getBackgroundColor(tester, 1), const Color(0xffc1deff));

    await tester.pump(const Duration(milliseconds: 40));
    // A and B finish transitioning.
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
    expect(getBackgroundColor(tester, 1), CupertinoColors.white);
  });

  testWidgets('Add segment while animation is running', (WidgetTester tester) async {
    Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('A');
    children[1] = const Text('B');
    children[2] = const Text('C');
    int sharedValue = 0;

    await tester.pumpWidget(
1249
      StatefulBuilder(
1250 1251
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1252
            child: CupertinoSegmentedControl<int>(
1253 1254 1255 1256 1257 1258 1259
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
                if (sharedValue == 1) {
1260
                  children = Map<int, Widget>.from(children);
1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273
                  children[3] = const Text('D');
                }
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

    await tester.tap(find.text('B'));

    await tester.pump();
xster's avatar
xster committed
1274 1275
    expect(getBackgroundColor(tester, 0), CupertinoColors.white);
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
1276 1277 1278
    expect(getBackgroundColor(tester, 3), CupertinoColors.white);

    await tester.pump(const Duration(milliseconds: 40));
xster's avatar
xster committed
1279 1280
    expect(getBackgroundColor(tester, 0), CupertinoColors.white);
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296
    expect(getBackgroundColor(tester, 3), CupertinoColors.white);

    await tester.pump(const Duration(milliseconds: 150));
    expect(getBackgroundColor(tester, 0), CupertinoColors.white);
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
    expect(getBackgroundColor(tester, 3), CupertinoColors.white);
  });

  testWidgets('Remove segment while animation is running', (WidgetTester tester) async {
    Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('A');
    children[1] = const Text('B');
    children[2] = const Text('C');
    int sharedValue = 0;

    await tester.pumpWidget(
1297
      StatefulBuilder(
1298 1299
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1300
            child: CupertinoSegmentedControl<int>(
1301 1302 1303 1304 1305 1306 1307 1308
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
                if (sharedValue == 1) {
                  children.remove(2);
1309
                  children = Map<int, Widget>.from(children);
1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
                }
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

    expect(getRenderSegmentedControl(tester).getChildrenAsList().length, 3);

    await tester.tap(find.text('B'));

    await tester.pump();
    expect(getBackgroundColor(tester, 1), const Color(0x33007aff));
    expect(getRenderSegmentedControl(tester).getChildrenAsList().length, 2);

    await tester.pump(const Duration(milliseconds: 40));
    expect(getBackgroundColor(tester, 1), const Color(0x64007aff));

    await tester.pump(const Duration(milliseconds: 150));
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
  });

  testWidgets('Remove currently animating segment', (WidgetTester tester) async {
    Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('A');
    children[1] = const Text('B');
    children[2] = const Text('C');
    int sharedValue = 0;

    await tester.pumpWidget(
1342
      StatefulBuilder(
1343 1344
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1345
            child: CupertinoSegmentedControl<int>(
1346 1347 1348 1349 1350 1351 1352 1353
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
                if (sharedValue == 1) {
                  children.remove(1);
1354
                  children = Map<int, Widget>.from(children);
1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384
                  sharedValue = null;
                }
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

    expect(getRenderSegmentedControl(tester).getChildrenAsList().length, 3);

    await tester.tap(find.text('B'));

    await tester.pump();
    expect(getRenderSegmentedControl(tester).getChildrenAsList().length, 2);

    await tester.pump(const Duration(milliseconds: 40));
    expect(getBackgroundColor(tester, 0), const Color(0xff3d9aff));
    expect(getBackgroundColor(tester, 1), CupertinoColors.white);

    await tester.pump(const Duration(milliseconds: 40));
    expect(getBackgroundColor(tester, 0), const Color(0xff7bbaff));
    expect(getBackgroundColor(tester, 1), CupertinoColors.white);

    await tester.pump(const Duration(milliseconds: 100));
    expect(getBackgroundColor(tester, 0), CupertinoColors.white);
    expect(getBackgroundColor(tester, 1), CupertinoColors.white);
  });

1385 1386
  testWidgets('Golden Test Placeholder Widget', (WidgetTester tester) async {
    final Map<int, Widget> children = <int, Widget>{};
1387
    children[0] = Container();
1388
    children[1] = const Placeholder();
1389
    children[2] = Container();
1390 1391 1392 1393

    const int currentValue = 0;

    await tester.pumpWidget(
1394 1395
      RepaintBoundary(
        child: StatefulBuilder(
1396 1397
          builder: (BuildContext context, StateSetter setState) {
            return boilerplate(
1398
              child: SizedBox(
1399
                width: 800.0,
1400
                child: CupertinoSegmentedControl<int>(
1401 1402
                  key: const ValueKey<String>('Segmented Control'),
                  children: children,
1403
                  onValueChanged: (int newValue) { },
1404 1405
                  groupValue: currentValue,
                ),
1406 1407 1408 1409 1410 1411 1412
              ),
            );
          },
        ),
      ),
    );

1413 1414
    await expectLater(
      find.byType(RepaintBoundary),
1415 1416 1417 1418
      matchesGoldenFile(
        'segmented_control_test.0.png',
        version: 0,
      ),
1419
    );
1420
  });
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430

  testWidgets('Golden Test Pressed State', (WidgetTester tester) async {
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('A');
    children[1] = const Text('B');
    children[2] = const Text('C');

    const int currentValue = 0;

    await tester.pumpWidget(
1431 1432
      RepaintBoundary(
        child: StatefulBuilder(
1433 1434
          builder: (BuildContext context, StateSetter setState) {
            return boilerplate(
1435
              child: SizedBox(
1436
                width: 800.0,
1437
                child: CupertinoSegmentedControl<int>(
1438 1439
                  key: const ValueKey<String>('Segmented Control'),
                  children: children,
1440
                  onValueChanged: (int newValue) { },
1441 1442
                  groupValue: currentValue,
                ),
1443 1444 1445 1446 1447 1448 1449 1450 1451 1452
              ),
            );
          },
        ),
      ),
    );

    final Offset center = tester.getCenter(find.text('B'));
    await tester.startGesture(center);
    await tester.pumpAndSettle();
1453

1454 1455
    await expectLater(
      find.byType(RepaintBoundary),
1456 1457 1458 1459
      matchesGoldenFile(
        'segmented_control_test.1.png',
        version: 0,
      ),
1460
    );
1461
  });
1462
}