segmented_control_test.dart 51.4 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 24
// 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
Color getBackgroundColor(WidgetTester tester, int childIndex) {
50
  return getRenderSegmentedControl(tester).backgroundColors[childIndex] as Color;
51 52
}

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
  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,
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
      );
      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) { },
          ),
174
        ),
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
    );

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

    // 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
    expect(textStyle.style.color, isSameColorAs(CupertinoColors.white));
294 295 296
    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

    expect(textStyle.style.color, CupertinoColors.activeBlue);
303
    expect(iconTheme.data.color, isSameColorAs(CupertinoColors.white));
304 305
  });

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 338
      expect(textStyle.style.color, isSameColorAs(CupertinoColors.black));
      expect(iconTheme.color, isSameColorAs(CupertinoColors.systemBlue.darkColor));
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 348
      expect(textStyle.style.color, isSameColorAs(CupertinoColors.systemBlue.darkColor));
      expect(iconTheme.color, isSameColorAs(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
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
              unselectedColor: CupertinoColors.lightBackgroundGray,
372
              selectedColor: CupertinoColors.activeGreen.color,
373 374 375 376
              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
    expect(getRenderSegmentedControl(tester).borderColor, CupertinoColors.black);
    expect(textStyle.style.color, CupertinoColors.lightBackgroundGray);
386 387
    expect(iconTheme.data.color, CupertinoColors.activeGreen.color);
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeGreen.color);
388
    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
    expect(textStyle.style.color, CupertinoColors.activeGreen.color);
397 398
    expect(iconTheme.data.color, CupertinoColors.lightBackgroundGray);
    expect(getBackgroundColor(tester, 0), CupertinoColors.lightBackgroundGray);
399
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeGreen.color);
400

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

405
    expect(getBackgroundColor(tester, 0), const Color(0x638CFC7B));
406
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeGreen.color);
407
  });
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
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
487
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
488 489 490 491

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

492
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
493
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
494 495 496
  });

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

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

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

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

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

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

  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');
522
      children[1] = Container(
523 524 525 526 527 528 529
        constraints: const BoxConstraints.tightFor(width: 50.0, height: 50.0),
      );
      children[2] = const Placeholder();

      int sharedValue = 0;

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

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

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

554
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
555
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
556 557
  });

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

    int sharedValue;

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

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

585 586
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
587 588
  });

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

592
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
593
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
594 595 596 597 598

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

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

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

606
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
607
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
608 609 610 611 612

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

613
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
614
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
615 616
  });

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

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

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

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

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

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

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

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

682 683
    expect(childWidth, 200.0);

684 685 686 687 688 689
    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);
690 691
  });

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

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

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

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

721
  testWidgets('Directionality test - RTL should reverse order of widgets', (WidgetTester tester) async {
722 723 724 725 726 727 728
    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,
729 730
        child: Center(
          child: CupertinoSegmentedControl<int>(
731
            children: children,
732
            onValueChanged: (int newValue) { },
733 734 735 736 737
          ),
        ),
      ),
    );

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

742
  testWidgets('Correct initial selection and toggling behavior - RTL', (WidgetTester tester) async {
743 744 745 746 747 748 749
    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(
750
      StatefulBuilder(
751 752 753
        builder: (BuildContext context, StateSetter setState) {
          return Directionality(
            textDirection: TextDirection.rtl,
754 755
            child: Center(
              child: CupertinoSegmentedControl<int>(
756 757 758 759 760 761 762 763 764 765 766 767 768 769
                children: children,
                onValueChanged: (int newValue) {
                  setState(() {
                    sharedValue = newValue;
                  });
                },
                groupValue: sharedValue,
              ),
            ),
          );
        },
      ),
    );

770
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
771
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
772 773

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

776
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
777
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
778 779 780 781

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

782
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
783 784 785
  });

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

    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(
794
      StatefulBuilder(
795 796 797
        builder: (BuildContext context, StateSetter setState) {
          return Directionality(
            textDirection: TextDirection.ltr,
798 799
            child: Center(
              child: CupertinoSegmentedControl<int>(
800 801 802 803 804 805 806 807 808 809 810 811 812 813 814
                children: children,
                onValueChanged: (int newValue) {
                  setState(() {
                    sharedValue = newValue;
                  });
                },
                groupValue: sharedValue,
              ),
            ),
          );
        },
      ),
    );

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

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

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

    semantics.dispose();
  });

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

    int sharedValue = 1;

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

    expect(sharedValue, 1);

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

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

    expect(sharedValue, 0);
  });

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 964 965 966 967 968
  testWidgets('Hit-tests report accurate local position in segments', (WidgetTester tester) async {
    final Map<int, Widget> children = <int, Widget>{};
    TapDownDetails tapDownDetails;
    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);

    final Offset segment0GlobalOffset = tester.getTopLeft(find.byWidget(children[0]));
    await tester.tapAt(segment0GlobalOffset + const Offset(7, 11));

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

969 970 971 972 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 998 999 1000 1001 1002 1003 1004 1005 1006
  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);

      final Offset centerOfTwo = tester.getCenter(find.byWidget(children[1]));
      // 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);
  });

1007
  testWidgets('Animation is correct when the selected segment changes', (WidgetTester tester) async {
1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
    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));
1033
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
    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(
1044
      StatefulBuilder(
1045 1046
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1047
            child: CupertinoSegmentedControl<int>(
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

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

    await tester.pumpWidget(
1064
      StatefulBuilder(
1065 1066
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1067
            child: CupertinoSegmentedControl<int>(
1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083
              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(
1084
      StatefulBuilder(
1085 1086
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1087
            child: CupertinoSegmentedControl<int>(
1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104
              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(
1105
      StatefulBuilder(
1106 1107
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1108
            child: CupertinoSegmentedControl<int>(
1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
              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(
1126
      StatefulBuilder(
1127 1128
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1129
            child: CupertinoSegmentedControl<int>(
1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
              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(
1147
      StatefulBuilder(
1148 1149
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1150
            child: CupertinoSegmentedControl<int>(
1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
              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(
1168
      StatefulBuilder(
1169 1170
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1171
            child: CupertinoSegmentedControl<int>(
1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
      const Duration(milliseconds: 40),
    );
1185
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196
    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(
1197
      StatefulBuilder(
1198 1199
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1200
            child: CupertinoSegmentedControl<int>(
1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

1215
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
1216 1217 1218 1219 1220

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

    expect(getBackgroundColor(tester, 1), const Color(0x33007aff));
1221
    expect(getBackgroundColor(tester, 2), isSameColorAs(CupertinoColors.white));
1222 1223 1224 1225 1226 1227

    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));
1228
    expect(getBackgroundColor(tester, 2), isSameColorAs(CupertinoColors.white));
1229 1230
  });

1231
  testWidgets('Transition is triggered while a transition is already occurring', (WidgetTester tester) async {
1232 1233 1234 1235 1236 1237 1238
    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(
1239
      StatefulBuilder(
1240 1241
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1242
            child: CupertinoSegmentedControl<int>(
1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279
              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));
1280
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
1281 1282 1283 1284
    expect(getBackgroundColor(tester, 2), const Color(0x64007aff));

    await tester.pump(const Duration(milliseconds: 100));
    // A background color has reached unselected state.
1285
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
1286 1287 1288 1289 1290 1291 1292
    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);
  });

1293
  testWidgets('Segment is selected while it is transitioning to unselected state', (WidgetTester tester) async {
1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317
    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);
1318
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
1319 1320 1321 1322 1323 1324 1325 1326 1327 1328
  });

  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(
1329
      StatefulBuilder(
1330 1331
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1332
            child: CupertinoSegmentedControl<int>(
1333 1334 1335 1336 1337 1338 1339
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
                if (sharedValue == 1) {
1340
                  children = Map<int, Widget>.from(children);
1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353
                  children[3] = const Text('D');
                }
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

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

    await tester.pump();
1354
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
xster's avatar
xster committed
1355
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
1356
    expect(getBackgroundColor(tester, 3), isSameColorAs(CupertinoColors.white));
1357 1358

    await tester.pump(const Duration(milliseconds: 40));
1359
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
xster's avatar
xster committed
1360
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
1361
    expect(getBackgroundColor(tester, 3), isSameColorAs(CupertinoColors.white));
1362 1363

    await tester.pump(const Duration(milliseconds: 150));
1364
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
1365
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
1366
    expect(getBackgroundColor(tester, 3), isSameColorAs(CupertinoColors.white));
1367 1368 1369 1370 1371 1372 1373 1374 1375 1376
  });

  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(
1377
      StatefulBuilder(
1378 1379
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1380
            child: CupertinoSegmentedControl<int>(
1381 1382 1383 1384 1385 1386 1387 1388
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
                if (sharedValue == 1) {
                  children.remove(2);
1389
                  children = Map<int, Widget>.from(children);
1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421
                }
              },
              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(
1422
      StatefulBuilder(
1423 1424
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1425
            child: CupertinoSegmentedControl<int>(
1426 1427 1428 1429 1430 1431 1432 1433
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
                if (sharedValue == 1) {
                  children.remove(1);
1434
                  children = Map<int, Widget>.from(children);
1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453
                  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));
1454
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
1455 1456 1457

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

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

1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505
  // 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);
  });

1506 1507
  testWidgets('Golden Test Placeholder Widget', (WidgetTester tester) async {
    final Map<int, Widget> children = <int, Widget>{};
1508
    children[0] = Container();
1509
    children[1] = const Placeholder();
1510
    children[2] = Container();
1511 1512 1513 1514

    const int currentValue = 0;

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

1534 1535
    await expectLater(
      find.byType(RepaintBoundary),
1536
      matchesGoldenFile('segmented_control_test.0.png'),
1537
    );
1538
  });
1539 1540 1541 1542 1543 1544 1545 1546 1547 1548

  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(
1549 1550
      RepaintBoundary(
        child: StatefulBuilder(
1551 1552
          builder: (BuildContext context, StateSetter setState) {
            return boilerplate(
1553
              child: SizedBox(
1554
                width: 800.0,
1555
                child: CupertinoSegmentedControl<int>(
1556 1557
                  key: const ValueKey<String>('Segmented Control'),
                  children: children,
1558
                  onValueChanged: (int newValue) { },
1559 1560
                  groupValue: currentValue,
                ),
1561 1562 1563 1564 1565 1566 1567 1568 1569 1570
              ),
            );
          },
        ),
      ),
    );

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

1572 1573
    await expectLater(
      find.byType(RepaintBoundary),
1574
      matchesGoldenFile('segmented_control_test.1.png'),
1575
    );
1576
  });
1577
}