segmented_control_test.dart 50.3 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

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;

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

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

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

52 53 54 55 56 57 58 59 60 61
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(
62
      StatefulBuilder(
63 64
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
65
            child: CupertinoSegmentedControl<int>(
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
              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(
92
          child: CupertinoSegmentedControl<int>(
93
            children: children,
94
            onValueChanged: (int newValue) { },
95 96 97
          ),
        ),
      );
98
      fail('Should not be possible to create a segmented control with no children');
99 100 101 102 103 104 105 106
    } on AssertionError catch (e) {
      expect(e.toString(), contains('children.length'));
    }
    try {
      children[0] = const Text('Child 1');

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

119 120 121 122 123 124 125 126 127 128 129 130 131
  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'),
    ) ;

132
    Future<void> verifyPadding({ EdgeInsets? padding }) async {
133 134 135
      final EdgeInsets effectivePadding = padding ?? const EdgeInsets.symmetric(horizontal: 16);
      final Rect segmentedControlRect = tester.getRect(find.byKey(key));
      expect(
136
          tester.getTopLeft(find.byWidget(children[0]!)),
137 138 139
          segmentedControlRect.topLeft.translate(
            effectivePadding.topLeft.dx,
            effectivePadding.topLeft.dy,
140
          ),
141 142
      );
      expect(
143
        tester.getBottomLeft(find.byWidget(children[0]!)),
144 145 146 147 148 149 150
        segmentedControlRect.bottomLeft.translate(
          effectivePadding.bottomLeft.dx,
          effectivePadding.bottomLeft.dy,
        ),
      );

      expect(
151
        tester.getTopRight(find.byWidget(children[1]!)),
152 153 154 155 156 157
        segmentedControlRect.topRight.translate(
          effectivePadding.topRight.dx,
          effectivePadding.topRight.dy,
        ),
      );
      expect(
158
        tester.getBottomRight(find.byWidget(children[1]!)),
159 160 161 162 163 164 165 166 167 168 169 170 171 172
        segmentedControlRect.bottomRight.translate(
          effectivePadding.bottomRight.dx,
          effectivePadding.bottomRight.dy,
        ),
      );
    }

    await tester.pumpWidget(
        boilerplate(
          child: CupertinoSegmentedControl<int>(
            key: key,
            children: children,
            onValueChanged: (int newValue) { },
          ),
173
        ),
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
    );

    // 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) { },
          ),
193
        ),
194 195 196 197 198 199 200 201 202 203 204 205
    );

    // 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));
  });

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

    try {
      await tester.pumpWidget(
        boilerplate(
214
          child: CupertinoSegmentedControl<int>(
215
            children: children,
216
            onValueChanged: (int newValue) { },
217 218 219 220 221 222 223 224 225 226 227
            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'));
    }
  });

228
  testWidgets('Widgets have correct default text/icon styles, change correctly on selection', (WidgetTester tester) async {
229 230 231 232 233 234 235
    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(
236
      StatefulBuilder(
237 238
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
239
            child: CupertinoSegmentedControl<int>(
240 241 242 243 244 245 246 247 248 249 250 251 252
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

253 254
    await tester.pumpAndSettle();

255 256
    DefaultTextStyle textStyle = tester.widget(find.widgetWithText(DefaultTextStyle, 'Child 1'));
    IconTheme iconTheme = tester.widget(find.widgetWithIcon(IconTheme, const IconData(1)));
257

258
    expect(textStyle.style.color, isSameColorAs(CupertinoColors.white));
259 260 261
    expect(iconTheme.data.color, CupertinoColors.activeBlue);

    await tester.tap(find.widgetWithIcon(IconTheme, const IconData(1)));
262
    await tester.pumpAndSettle();
263 264

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

267
    expect(textStyle.style.color, CupertinoColors.activeBlue);
268
    expect(iconTheme.data.color, isSameColorAs(CupertinoColors.white));
269 270
  });

xster's avatar
xster committed
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
  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);
300
      IconThemeData iconTheme = IconTheme.of(tester.element(find.byIcon(const IconData(1))));
xster's avatar
xster committed
301

302
      expect(textStyle.style.color, isSameColorAs(CupertinoColors.black));
303
      expect(iconTheme.color, isSameColorAs(CupertinoColors.systemBlue.darkColor));
xster's avatar
xster committed
304

305
      await tester.tap(find.byIcon(const IconData(1)));
xster's avatar
xster committed
306 307 308 309
      await tester.pump();
      await tester.pump(const Duration(milliseconds: 500));

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

312
      expect(textStyle.style.color, isSameColorAs(CupertinoColors.systemBlue.darkColor));
313
      expect(iconTheme.color, isSameColorAs(CupertinoColors.black));
xster's avatar
xster committed
314 315 316
    },
  );

317
  testWidgets('SegmentedControl is correct when user provides custom colors', (WidgetTester tester) async {
318 319 320
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Icon(IconData(1));
321

322
    int sharedValue = 0;
323

324
    await tester.pumpWidget(
325
      StatefulBuilder(
326 327
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
328
            child: CupertinoSegmentedControl<int>(
329 330 331 332 333 334 335 336
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
              unselectedColor: CupertinoColors.lightBackgroundGray,
337
              selectedColor: CupertinoColors.activeGreen.color,
338 339 340 341
              borderColor: CupertinoColors.black,
              pressedColor: const Color(0x638CFC7B),
            ),
          );
342
        },
343 344
      ),
    );
345

346 347
    DefaultTextStyle textStyle = tester.widget(find.widgetWithText(DefaultTextStyle, 'Child 1'));
    IconTheme iconTheme = tester.widget(find.widgetWithIcon(IconTheme, const IconData(1)));
348

349
    expect(getRenderSegmentedControl(tester).borderColor, CupertinoColors.black);
350
    expect(textStyle.style.color, CupertinoColors.lightBackgroundGray);
351 352
    expect(iconTheme.data.color, CupertinoColors.activeGreen.color);
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeGreen.color);
353
    expect(getBackgroundColor(tester, 1), CupertinoColors.lightBackgroundGray);
354

355 356
    await tester.tap(find.widgetWithIcon(IconTheme, const IconData(1)));
    await tester.pumpAndSettle();
357

358 359
    textStyle = tester.widget(find.widgetWithText(DefaultTextStyle, 'Child 1'));
    iconTheme = tester.widget(find.widgetWithIcon(IconTheme, const IconData(1)));
360

361
    expect(textStyle.style.color, CupertinoColors.activeGreen.color);
362 363
    expect(iconTheme.data.color, CupertinoColors.lightBackgroundGray);
    expect(getBackgroundColor(tester, 0), CupertinoColors.lightBackgroundGray);
364
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeGreen.color);
365

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

370
    expect(getBackgroundColor(tester, 0), const Color(0x638CFC7B));
371
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeGreen.color);
372
  });
373

374 375 376 377 378 379
  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(
380
      Directionality(
381
        textDirection: TextDirection.ltr,
382
        child: Align(
383
          alignment: Alignment.topLeft,
384
          child: SizedBox(
385 386
            width: 200.0,
            height: 200.0,
387
            child: CupertinoSegmentedControl<int>(
388
              children: children,
389
              onValueChanged: (int newValue) { },
390 391 392 393 394 395 396 397 398 399
            ),
          ),
        ),
      ),
    );

    // 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));
  });
400

401 402 403 404 405 406 407 408
  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(
409
      StatefulBuilder(
410 411
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
412
            child: CupertinoSegmentedControl<int>(
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
              children: children,
              onValueChanged: (int newValue) {
                value = true;
              },
            ),
          );
        },
      ),
    );

    expect(value, isFalse);

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

    expect(value, isTrue);
  });

430
  testWidgets('State does not change if onValueChanged does not call setState()', (WidgetTester tester) async {
431 432 433 434 435 436 437
    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(
438
      StatefulBuilder(
439 440
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
441
            child: CupertinoSegmentedControl<int>(
442
              children: children,
443
              onValueChanged: (int newValue) { },
444 445 446 447 448 449 450
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

451
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
452
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
453 454 455 456

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

457
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
458
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
459 460 461
  });

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

467
      expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
468

469 470
      await tester.tap(find.text('Child 2'));
      await tester.pumpAndSettle(const Duration(milliseconds: 200));
471

472
      expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
473

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

477 478 479
      expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
    },
  );
480 481 482 483 484 485 486

  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');
487
      children[1] = Container(
488 489 490 491 492 493 494
        constraints: const BoxConstraints.tightFor(width: 50.0, height: 50.0),
      );
      children[2] = const Placeholder();

      int sharedValue = 0;

      await tester.pumpWidget(
495
        StatefulBuilder(
496 497
          builder: (BuildContext context, StateSetter setState) {
            return boilerplate(
498
              child: CupertinoSegmentedControl<int>(
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
                children: children,
                onValueChanged: (int newValue) {
                  setState(() {
                    sharedValue = newValue;
                  });
                },
                groupValue: sharedValue,
              ),
            );
          },
        ),
      );
    },
  );

514
  testWidgets('Passed in value is child initially selected', (WidgetTester tester) async {
515 516 517 518
    await tester.pumpWidget(setupSimpleSegmentedControl());

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

519
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
520
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
521 522
  });

523
  testWidgets('Null input for value results in no child initially selected', (WidgetTester tester) async {
524 525 526 527
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');

528
    int? sharedValue;
529 530

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

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

550 551
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
552 553
  });

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

557
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
558
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
559 560 561 562 563

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

564 565
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
    expect(getBackgroundColor(tester, 1), const Color(0x33007aff));
566 567
  });

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

571
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
572
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
573 574 575 576 577

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

578
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
579
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
580 581
  });

582
  testWidgets('Height of segmented control is determined by tallest widget', (WidgetTester tester) async {
583
    final Map<int, Widget> children = <int, Widget>{};
584
    children[0] = Container(
585 586
      constraints: const BoxConstraints.tightFor(height: 100.0),
    );
587
    children[1] = Container(
588 589
      constraints: const BoxConstraints.tightFor(height: 400.0),
    );
590
    children[2] = Container(
591 592 593 594
      constraints: const BoxConstraints.tightFor(height: 200.0),
    );

    await tester.pumpWidget(
595
      StatefulBuilder(
596 597
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
598
            child: CupertinoSegmentedControl<int>(
599 600
              key: const ValueKey<String>('Segmented Control'),
              children: children,
601
              onValueChanged: (int newValue) { },
602 603 604 605 606 607
            ),
          );
        },
      ),
    );

608 609
    final RenderBox buttonBox = tester.renderObject(
        find.byKey(const ValueKey<String>('Segmented Control')));
610 611 612 613

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

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

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

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

    // 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;

647 648
    expect(childWidth, 200.0);

649 650 651 652 653 654
    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);
655 656
  });

657
  testWidgets('Width is finite in unbounded space', (WidgetTester tester) async {
658 659 660 661 662
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');

    await tester.pumpWidget(
663
      StatefulBuilder(
664 665 666 667
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
            child: Row(
              children: <Widget>[
668
                CupertinoSegmentedControl<int>(
669 670
                  key: const ValueKey<String>('Segmented Control'),
                  children: children,
671
                  onValueChanged: (int newValue) { },
672 673 674 675 676 677 678 679
                ),
              ],
            ),
          );
        },
      ),
    );

680 681
    final RenderBox segmentedControl = tester.renderObject(
        find.byKey(const ValueKey<String>('Segmented Control')));
682 683 684 685

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

686
  testWidgets('Directionality test - RTL should reverse order of widgets', (WidgetTester tester) async {
687 688 689 690 691 692 693
    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,
694 695
        child: Center(
          child: CupertinoSegmentedControl<int>(
696
            children: children,
697
            onValueChanged: (int newValue) { },
698 699 700 701 702
          ),
        ),
      ),
    );

703 704
    expect(tester.getTopRight(find.text('Child 1')).dx >
        tester.getTopRight(find.text('Child 2')).dx, isTrue);
705 706
  });

707
  testWidgets('Correct initial selection and toggling behavior - RTL', (WidgetTester tester) async {
708 709 710 711 712 713 714
    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(
715
      StatefulBuilder(
716 717 718
        builder: (BuildContext context, StateSetter setState) {
          return Directionality(
            textDirection: TextDirection.rtl,
719 720
            child: Center(
              child: CupertinoSegmentedControl<int>(
721 722 723 724 725 726 727 728 729 730 731 732 733 734
                children: children,
                onValueChanged: (int newValue) {
                  setState(() {
                    sharedValue = newValue;
                  });
                },
                groupValue: sharedValue,
              ),
            ),
          );
        },
      ),
    );

735
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
736
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
737 738

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

741
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
742
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
743 744 745 746

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

747
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
748 749 750
  });

  testWidgets('Segmented control semantics', (WidgetTester tester) async {
751
    final SemanticsTester semantics = SemanticsTester(tester);
752 753 754 755 756 757 758

    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(
759
      StatefulBuilder(
760 761 762
        builder: (BuildContext context, StateSetter setState) {
          return Directionality(
            textDirection: TextDirection.ltr,
763 764
            child: Center(
              child: CupertinoSegmentedControl<int>(
765 766 767 768 769 770 771 772 773 774 775 776 777 778 779
                children: children,
                onValueChanged: (int newValue) {
                  setState(() {
                    sharedValue = newValue;
                  });
                },
                groupValue: sharedValue,
              ),
            ),
          );
        },
      ),
    );

    expect(
780
      semantics,
781
        hasSemantics(
782
          TestSemantics.root(
783
            children: <TestSemantics>[
784
              TestSemantics.rootChild(
785 786
                label: 'Child 1',
                flags: <SemanticsFlag>[
787
                  SemanticsFlag.isButton,
788 789 790 791 792 793 794
                  SemanticsFlag.isInMutuallyExclusiveGroup,
                  SemanticsFlag.isSelected,
                ],
                actions: <SemanticsAction>[
                  SemanticsAction.tap,
                ],
              ),
795
              TestSemantics.rootChild(
796 797
                label: 'Child 2',
                flags: <SemanticsFlag>[
798
                  SemanticsFlag.isButton,
799 800 801 802 803 804 805 806 807 808 809
                  SemanticsFlag.isInMutuallyExclusiveGroup,
                ],
                actions: <SemanticsAction>[
                  SemanticsAction.tap,
                ],
              ),
            ],
          ),
          ignoreId: true,
          ignoreRect: true,
          ignoreTransform: true,
810 811
        ),
    );
812 813 814 815 816 817 818

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

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

    semantics.dispose();
  });

852 853
  testWidgets('Non-centered taps work on smaller widgets', (WidgetTester tester) async {
    final Map<int, Widget> children = <int, Widget>{};
854 855
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');
856 857 858 859

    int sharedValue = 1;

    await tester.pumpWidget(
860
      StatefulBuilder(
861 862
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
863
            child: CupertinoSegmentedControl<int>(
864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

    expect(sharedValue, 1);

880
    final double childWidth = getRenderSegmentedControl(tester).firstChild.size.width as double;
881
    final Offset centerOfSegmentedControl = tester.getCenter(find.text('Child 1'));
882 883

    // Tap just inside segment bounds
884
    await tester.tapAt(
885
      Offset(
886 887 888 889
        centerOfSegmentedControl.dx + (childWidth / 2) - 10.0,
        centerOfSegmentedControl.dy,
      ),
    );
890 891 892 893

    expect(sharedValue, 0);
  });

894 895
  testWidgets('Hit-tests report accurate local position in segments', (WidgetTester tester) async {
    final Map<int, Widget> children = <int, Widget>{};
896
    late TapDownDetails tapDownDetails;
897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926
    children[0] = GestureDetector(
      behavior: HitTestBehavior.opaque,
      onTapDown: (TapDownDetails details) { tapDownDetails = details; },
      child: const SizedBox(width: 200, height: 200),
    );
    children[1] = const Text('Child 2');

    int sharedValue = 1;

    await tester.pumpWidget(
      StatefulBuilder(
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
            child: CupertinoSegmentedControl<int>(
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

    expect(sharedValue, 1);

927
    final Offset segment0GlobalOffset = tester.getTopLeft(find.byWidget(children[0]!));
928 929 930 931 932 933
    await tester.tapAt(segment0GlobalOffset + const Offset(7, 11));

    expect(tapDownDetails.localPosition, const Offset(7, 11));
    expect(tapDownDetails.globalPosition, segment0GlobalOffset + const Offset(7, 11));
  });

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
  testWidgets(
    'Segment still hittable with a child that has no hitbox',
    (WidgetTester tester) async {
      // Regression test for https://github.com/flutter/flutter/issues/57326.
      final Map<int, Widget> children = <int, Widget>{};
      children[0] = const Text('Child 1');
      children[1] = const SizedBox();
      int sharedValue = 0;

      await tester.pumpWidget(
        StatefulBuilder(
          builder: (BuildContext context, StateSetter setState) {
            return boilerplate(
              child: CupertinoSegmentedControl<int>(
                key: const ValueKey<String>('Segmented Control'),
                children: children,
                onValueChanged: (int newValue) {
                  setState(() {
                    sharedValue = newValue;
                  });
                },
                groupValue: sharedValue,
              ),
            );
          },
        ),
      );

      expect(sharedValue, 0);

964
      final Offset centerOfTwo = tester.getCenter(find.byWidget(children[1]!));
965 966 967 968 969 970 971
      // Tap within the bounds of children[1], but not at the center.
      // children[1] is a SizedBox thus not hittable by itself.
      await tester.tapAt(centerOfTwo + const Offset(10, 0));

      expect(sharedValue, 1);
  });

972
  testWidgets('Animation is correct when the selected segment changes', (WidgetTester tester) async {
973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997
    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));
998
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
999 1000 1001 1002 1003 1004 1005 1006 1007 1008
    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(
1009
      StatefulBuilder(
1010 1011
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1012
            child: CupertinoSegmentedControl<int>(
1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

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

    await tester.pumpWidget(
1029
      StatefulBuilder(
1030 1031
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1032
            child: CupertinoSegmentedControl<int>(
1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048
              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(
1049
      StatefulBuilder(
1050 1051
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1052
            child: CupertinoSegmentedControl<int>(
1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069
              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(
1070
      StatefulBuilder(
1071 1072
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1073
            child: CupertinoSegmentedControl<int>(
1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
              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(
1091
      StatefulBuilder(
1092 1093
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1094
            child: CupertinoSegmentedControl<int>(
1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111
              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(
1112
      StatefulBuilder(
1113 1114
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1115
            child: CupertinoSegmentedControl<int>(
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132
              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(
1133
      StatefulBuilder(
1134 1135
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1136
            child: CupertinoSegmentedControl<int>(
1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
      const Duration(milliseconds: 40),
    );
1150
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
    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(
1162
      StatefulBuilder(
1163 1164
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1165
            child: CupertinoSegmentedControl<int>(
1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

1180
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
1181 1182 1183 1184 1185

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

    expect(getBackgroundColor(tester, 1), const Color(0x33007aff));
1186
    expect(getBackgroundColor(tester, 2), isSameColorAs(CupertinoColors.white));
1187 1188 1189 1190 1191 1192

    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));
1193
    expect(getBackgroundColor(tester, 2), isSameColorAs(CupertinoColors.white));
1194 1195
  });

1196
  testWidgets('Transition is triggered while a transition is already occurring', (WidgetTester tester) async {
1197 1198 1199 1200 1201 1202 1203
    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(
1204
      StatefulBuilder(
1205 1206
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1207
            child: CupertinoSegmentedControl<int>(
1208 1209 1210 1211 1212 1213 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
              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));
1245
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
1246 1247 1248 1249
    expect(getBackgroundColor(tester, 2), const Color(0x64007aff));

    await tester.pump(const Duration(milliseconds: 100));
    // A background color has reached unselected state.
1250
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
1251 1252 1253 1254 1255 1256 1257
    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);
  });

1258
  testWidgets('Segment is selected while it is transitioning to unselected state', (WidgetTester tester) async {
1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
    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);
1283
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
  });

  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(
1294
      StatefulBuilder(
1295 1296
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1297
            child: CupertinoSegmentedControl<int>(
1298 1299 1300 1301 1302 1303 1304
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
                if (sharedValue == 1) {
1305
                  children = Map<int, Widget>.from(children);
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318
                  children[3] = const Text('D');
                }
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

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

    await tester.pump();
1319
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
xster's avatar
xster committed
1320
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
1321
    expect(getBackgroundColor(tester, 3), isSameColorAs(CupertinoColors.white));
1322 1323

    await tester.pump(const Duration(milliseconds: 40));
1324
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
xster's avatar
xster committed
1325
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
1326
    expect(getBackgroundColor(tester, 3), isSameColorAs(CupertinoColors.white));
1327 1328

    await tester.pump(const Duration(milliseconds: 150));
1329
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
1330
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
1331
    expect(getBackgroundColor(tester, 3), isSameColorAs(CupertinoColors.white));
1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
  });

  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(
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(2);
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
                }
              },
              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');
1384
    int? sharedValue = 0;
1385 1386

    await tester.pumpWidget(
1387
      StatefulBuilder(
1388 1389
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1390
            child: CupertinoSegmentedControl<int>(
1391 1392 1393 1394 1395 1396 1397 1398
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
                if (sharedValue == 1) {
                  children.remove(1);
1399
                  children = Map<int, Widget>.from(children);
1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418
                  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));
1419
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
1420 1421 1422

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

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

1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470
  // Regression test: https://github.com/flutter/flutter/issues/43414.
  testWidgets("Quick double tap doesn't break the internal state", (WidgetTester tester) async {
    const Map<int, Widget> children = <int, Widget>{
      0: Text('A'),
      1: Text('B'),
      2: Text('C'),
    };
    int sharedValue = 0;

    await tester.pumpWidget(
      StatefulBuilder(
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
            child: CupertinoSegmentedControl<int>(
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() { sharedValue = newValue; });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

    await tester.tap(find.text('B'));
    // sharedValue has been updated but widget.groupValue is not.
    expect(sharedValue, 1);

    // Land the second tap before the widget gets a chance to rebuild.
    final TestGesture secondTap = await tester.startGesture(tester.getCenter(find.text('B')));
    await tester.pump();

    await secondTap.up();
    expect(sharedValue, 1);

    await tester.tap(find.text('C'));
    expect(sharedValue, 2);
  });

1471 1472
  testWidgets('Golden Test Placeholder Widget', (WidgetTester tester) async {
    final Map<int, Widget> children = <int, Widget>{};
1473
    children[0] = Container();
1474
    children[1] = const Placeholder();
1475
    children[2] = Container();
1476 1477 1478 1479

    const int currentValue = 0;

    await tester.pumpWidget(
1480 1481
      RepaintBoundary(
        child: StatefulBuilder(
1482 1483
          builder: (BuildContext context, StateSetter setState) {
            return boilerplate(
1484
              child: SizedBox(
1485
                width: 800.0,
1486
                child: CupertinoSegmentedControl<int>(
1487 1488
                  key: const ValueKey<String>('Segmented Control'),
                  children: children,
1489
                  onValueChanged: (int newValue) { },
1490 1491
                  groupValue: currentValue,
                ),
1492 1493 1494 1495 1496 1497 1498
              ),
            );
          },
        ),
      ),
    );

1499 1500
    await expectLater(
      find.byType(RepaintBoundary),
1501
      matchesGoldenFile('segmented_control_test.0.png'),
1502
    );
1503
  });
1504 1505 1506 1507 1508 1509 1510 1511 1512 1513

  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(
1514 1515
      RepaintBoundary(
        child: StatefulBuilder(
1516 1517
          builder: (BuildContext context, StateSetter setState) {
            return boilerplate(
1518
              child: SizedBox(
1519
                width: 800.0,
1520
                child: CupertinoSegmentedControl<int>(
1521 1522
                  key: const ValueKey<String>('Segmented Control'),
                  children: children,
1523
                  onValueChanged: (int newValue) { },
1524 1525
                  groupValue: currentValue,
                ),
1526 1527 1528 1529 1530 1531 1532 1533 1534 1535
              ),
            );
          },
        ),
      ),
    );

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

1537 1538
    await expectLater(
      find.byType(RepaintBoundary),
1539
      matchesGoldenFile('segmented_control_test.1.png'),
1540
    );
1541
  });
1542
}