segmented_control_test.dart 51.3 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

5 6 7 8
// This file is run as part of a reduced test set in CI on Mac and Windows
// machines.
@Tags(<String>['reduced-test-set'])

9 10
import 'dart:ui' as ui;

11
import 'package:flutter/cupertino.dart';
12
import 'package:flutter/rendering.dart';
13 14 15 16
import 'package:flutter_test/flutter_test.dart';

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

17
RenderBox getRenderSegmentedControl(WidgetTester tester) {
18 19 20 21
  return tester.allRenderObjects.firstWhere(
    (RenderObject currentObject) {
      return currentObject.toStringShort().contains('_RenderSegmentedControl');
    },
22
  ) as RenderBox;
23 24 25 26 27 28 29 30
}

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

31
  return StatefulBuilder(
32 33
    builder: (BuildContext context, StateSetter setState) {
      return boilerplate(
34
        child: CupertinoSegmentedControl<int>(
35 36 37 38 39 40 41 42 43 44 45 46 47
          children: children,
          onValueChanged: (int newValue) {
            setState(() {
              sharedValue = newValue;
            });
          },
          groupValue: sharedValue,
        ),
      );
    },
  );
}

48
Widget boilerplate({ required Widget child }) {
49
  return Directionality(
50
    textDirection: TextDirection.ltr,
51
    child: Center(child: child),
52 53 54
  );
}

55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
int getChildCount(WidgetTester tester) {
  return (getRenderSegmentedControl(tester) as RenderBoxContainerDefaultsMixin<RenderBox, ContainerBoxParentData<RenderBox>>)
      .getChildrenAsList().length;
}

ui.RRect getSurroundingRect(WidgetTester tester, {int child = 0}) {
  // Using dynamic so the test can access private classes.
  // ignore: avoid_dynamic_calls
  return ((getRenderSegmentedControl(tester) as RenderBoxContainerDefaultsMixin<RenderBox, ContainerBoxParentData<RenderBox>>)
      .getChildrenAsList()[child].parentData! as dynamic).surroundingRect as ui.RRect;
}

Size getChildSize(WidgetTester tester, {int child = 0}) {
  // Using dynamic so the test can access private classes.
  // ignore: avoid_dynamic_calls
  return ((getRenderSegmentedControl(tester) as RenderBoxContainerDefaultsMixin<RenderBox, ContainerBoxParentData<RenderBox>>)
      .getChildrenAsList()[child]).size;
}

Color getBorderColor(WidgetTester tester) {
  // Using dynamic so the test can access a private class.
  // ignore: avoid_dynamic_calls
  return (getRenderSegmentedControl(tester) as dynamic).borderColor as Color;
}

int? getSelectedIndex(WidgetTester tester) {
  // Using dynamic so the test can access a private class.
  // ignore: avoid_dynamic_calls
  return (getRenderSegmentedControl(tester) as dynamic).selectedIndex as int?;
}

86
Color getBackgroundColor(WidgetTester tester, int childIndex) {
87 88 89
  // Using dynamic so the test can access a private class.
  // ignore: avoid_dynamic_calls
  return (getRenderSegmentedControl(tester) as dynamic).backgroundColors[childIndex] as Color;
90 91
}

92 93 94 95 96 97 98 99 100 101
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(
102
      StatefulBuilder(
103 104
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
105
            child: CupertinoSegmentedControl<int>(
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
              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 {
128 129
    await expectLater(
      () => tester.pumpWidget(
130
        boilerplate(
131
          child: CupertinoSegmentedControl<int>(
132
            children: const <int, Widget>{},
133
            onValueChanged: (int newValue) { },
134 135
          ),
        ),
136
      ),
137
      throwsA(isAssertionError.having(
138 139 140 141 142
        (AssertionError error) => error.toString(),
        '.toString()',
        contains('children.length'),
      )),
    );
143

144 145
    await expectLater(
      () => tester.pumpWidget(
146
        boilerplate(
147
          child: CupertinoSegmentedControl<int>(
148
            children: const <int, Widget>{0: Text('Child 1')},
149
            onValueChanged: (int newValue) { },
150 151
          ),
        ),
152
      ),
153
      throwsA(isAssertionError.having(
154 155 156 157 158
        (AssertionError error) => error.toString(),
        '.toString()',
        contains('children.length'),
      )),
    );
159 160
  });

161 162 163 164 165 166 167 168 169 170 171 172 173
  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'),
    ) ;

174
    Future<void> verifyPadding({ EdgeInsets? padding }) async {
175 176 177
      final EdgeInsets effectivePadding = padding ?? const EdgeInsets.symmetric(horizontal: 16);
      final Rect segmentedControlRect = tester.getRect(find.byKey(key));
      expect(
178
          tester.getTopLeft(find.byWidget(children[0]!)),
179 180 181
          segmentedControlRect.topLeft.translate(
            effectivePadding.topLeft.dx,
            effectivePadding.topLeft.dy,
182
          ),
183 184
      );
      expect(
185
        tester.getBottomLeft(find.byWidget(children[0]!)),
186 187 188 189 190 191 192
        segmentedControlRect.bottomLeft.translate(
          effectivePadding.bottomLeft.dx,
          effectivePadding.bottomLeft.dy,
        ),
      );

      expect(
193
        tester.getTopRight(find.byWidget(children[1]!)),
194 195 196 197 198 199
        segmentedControlRect.topRight.translate(
          effectivePadding.topRight.dx,
          effectivePadding.topRight.dy,
        ),
      );
      expect(
200
        tester.getBottomRight(find.byWidget(children[1]!)),
201 202 203 204 205 206 207 208 209 210 211 212 213 214
        segmentedControlRect.bottomRight.translate(
          effectivePadding.bottomRight.dx,
          effectivePadding.bottomRight.dy,
        ),
      );
    }

    await tester.pumpWidget(
        boilerplate(
          child: CupertinoSegmentedControl<int>(
            key: key,
            children: children,
            onValueChanged: (int newValue) { },
          ),
215
        ),
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
    );

    // 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) { },
          ),
235
        ),
236 237 238 239 240 241 242 243 244 245 246 247
    );

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

248
  testWidgets('Value attribute must be the key of one of the children widgets', (WidgetTester tester) async {
249 250 251 252
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');

253 254
    await expectLater(
      () => tester.pumpWidget(
255
        boilerplate(
256
          child: CupertinoSegmentedControl<int>(
257
            children: children,
258
            onValueChanged: (int newValue) { },
259 260 261
            groupValue: 2,
          ),
        ),
262
      ),
263
      throwsA(isAssertionError.having(
264 265 266 267 268
        (AssertionError error) => error.toString(),
        '.toString()',
        contains('children'),
      )),
    );
269 270
  });

271
  testWidgets('Widgets have correct default text/icon styles, change correctly on selection', (WidgetTester tester) async {
272 273 274 275 276 277 278
    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(
279
      StatefulBuilder(
280 281
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
282
            child: CupertinoSegmentedControl<int>(
283 284 285 286 287 288 289 290 291 292 293 294 295
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

296 297
    await tester.pumpAndSettle();

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

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

    await tester.tap(find.widgetWithIcon(IconTheme, const IconData(1)));
305
    await tester.pumpAndSettle();
306 307

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

310
    expect(textStyle.style.color, CupertinoColors.activeBlue);
311
    expect(iconTheme.data.color, isSameColorAs(CupertinoColors.white));
312 313
  });

xster's avatar
xster committed
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
  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);
343
      IconThemeData iconTheme = IconTheme.of(tester.element(find.byIcon(const IconData(1))));
xster's avatar
xster committed
344

345
      expect(textStyle.style.color, isSameColorAs(CupertinoColors.black));
346
      expect(iconTheme.color, isSameColorAs(CupertinoColors.systemBlue.darkColor));
xster's avatar
xster committed
347

348
      await tester.tap(find.byIcon(const IconData(1)));
xster's avatar
xster committed
349 350 351 352
      await tester.pump();
      await tester.pump(const Duration(milliseconds: 500));

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

355
      expect(textStyle.style.color, isSameColorAs(CupertinoColors.systemBlue.darkColor));
356
      expect(iconTheme.color, isSameColorAs(CupertinoColors.black));
xster's avatar
xster committed
357 358 359
    },
  );

360
  testWidgets('SegmentedControl is correct when user provides custom colors', (WidgetTester tester) async {
361 362 363
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Icon(IconData(1));
364

365
    int sharedValue = 0;
366

367
    await tester.pumpWidget(
368
      StatefulBuilder(
369 370
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
371
            child: CupertinoSegmentedControl<int>(
372 373 374 375 376 377 378 379
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
              unselectedColor: CupertinoColors.lightBackgroundGray,
380
              selectedColor: CupertinoColors.activeGreen.color,
381 382 383 384
              borderColor: CupertinoColors.black,
              pressedColor: const Color(0x638CFC7B),
            ),
          );
385
        },
386 387
      ),
    );
388

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

392
    expect(getBorderColor(tester), CupertinoColors.black);
393
    expect(textStyle.style.color, CupertinoColors.lightBackgroundGray);
394 395
    expect(iconTheme.data.color, CupertinoColors.activeGreen.color);
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeGreen.color);
396
    expect(getBackgroundColor(tester, 1), CupertinoColors.lightBackgroundGray);
397

398 399
    await tester.tap(find.widgetWithIcon(IconTheme, const IconData(1)));
    await tester.pumpAndSettle();
400

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

404
    expect(textStyle.style.color, CupertinoColors.activeGreen.color);
405 406
    expect(iconTheme.data.color, CupertinoColors.lightBackgroundGray);
    expect(getBackgroundColor(tester, 0), CupertinoColors.lightBackgroundGray);
407
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeGreen.color);
408

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

413
    expect(getBackgroundColor(tester, 0), const Color(0x638CFC7B));
414
    expect(getBackgroundColor(tester, 1), CupertinoColors.activeGreen.color);
415
  });
416

417 418 419 420 421 422
  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(
423
      Directionality(
424
        textDirection: TextDirection.ltr,
425
        child: Align(
426
          alignment: Alignment.topLeft,
427
          child: SizedBox(
428 429
            width: 200.0,
            height: 200.0,
430
            child: CupertinoSegmentedControl<int>(
431
              children: children,
432
              onValueChanged: (int newValue) { },
433 434 435 436 437 438 439 440 441 442
            ),
          ),
        ),
      ),
    );

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

444 445 446 447 448 449 450 451
  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(
452
      StatefulBuilder(
453 454
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
455
            child: CupertinoSegmentedControl<int>(
456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
              children: children,
              onValueChanged: (int newValue) {
                value = true;
              },
            ),
          );
        },
      ),
    );

    expect(value, isFalse);

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

    expect(value, isTrue);
  });

473
  testWidgets('State does not change if onValueChanged does not call setState()', (WidgetTester tester) async {
474 475 476 477 478 479 480
    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(
481
      StatefulBuilder(
482 483
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
484
            child: CupertinoSegmentedControl<int>(
485
              children: children,
486
              onValueChanged: (int newValue) { },
487 488 489 490 491 492 493
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

494
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
495
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
496 497 498 499

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

500
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
501
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
502 503 504
  });

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

510
      expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
511

512 513
      await tester.tap(find.text('Child 2'));
      await tester.pumpAndSettle(const Duration(milliseconds: 200));
514

515
      expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
516

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

520 521 522
      expect(getBackgroundColor(tester, 1), CupertinoColors.activeBlue);
    },
  );
523 524 525 526 527 528 529

  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');
530
      children[1] = Container(
531 532 533 534 535 536 537
        constraints: const BoxConstraints.tightFor(width: 50.0, height: 50.0),
      );
      children[2] = const Placeholder();

      int sharedValue = 0;

      await tester.pumpWidget(
538
        StatefulBuilder(
539 540
          builder: (BuildContext context, StateSetter setState) {
            return boilerplate(
541
              child: CupertinoSegmentedControl<int>(
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
                children: children,
                onValueChanged: (int newValue) {
                  setState(() {
                    sharedValue = newValue;
                  });
                },
                groupValue: sharedValue,
              ),
            );
          },
        ),
      );
    },
  );

557
  testWidgets('Passed in value is child initially selected', (WidgetTester tester) async {
558 559
    await tester.pumpWidget(setupSimpleSegmentedControl());

560
    expect(getSelectedIndex(tester), 0);
561

562
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
563
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
564 565
  });

566
  testWidgets('Null input for value results in no child initially selected', (WidgetTester tester) async {
567 568 569 570
    final Map<int, Widget> children = <int, Widget>{};
    children[0] = const Text('Child 1');
    children[1] = const Text('Child 2');

571
    int? sharedValue;
572 573

    await tester.pumpWidget(
574
      StatefulBuilder(
575 576
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
577
            child: CupertinoSegmentedControl<int>(
578 579 580 581 582 583 584 585 586 587 588 589 590
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

591
    expect(getSelectedIndex(tester), null);
592

593 594
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
595 596
  });

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

600
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
601
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
602 603 604 605 606

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

607 608
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
    expect(getBackgroundColor(tester, 1), const Color(0x33007aff));
609 610
  });

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

614
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
615
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
616 617 618 619 620

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

621
    expect(getBackgroundColor(tester, 0), CupertinoColors.activeBlue);
622
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
623 624
  });

625
  testWidgets('Height of segmented control is determined by tallest widget', (WidgetTester tester) async {
626
    final Map<int, Widget> children = <int, Widget>{};
627
    children[0] = Container(
628 629
      constraints: const BoxConstraints.tightFor(height: 100.0),
    );
630
    children[1] = Container(
631 632
      constraints: const BoxConstraints.tightFor(height: 400.0),
    );
633
    children[2] = Container(
634 635 636 637
      constraints: const BoxConstraints.tightFor(height: 200.0),
    );

    await tester.pumpWidget(
638
      StatefulBuilder(
639 640
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
641
            child: CupertinoSegmentedControl<int>(
642 643
              key: const ValueKey<String>('Segmented Control'),
              children: children,
644
              onValueChanged: (int newValue) { },
645 646 647 648 649 650
            ),
          );
        },
      ),
    );

651
    final RenderBox buttonBox = tester.renderObject(find.byKey(const ValueKey<String>('Segmented Control')));
652 653 654 655

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

656
  testWidgets('Width of each segmented control segment is determined by widest widget', (WidgetTester tester) async {
657
    final Map<int, Widget> children = <int, Widget>{};
658
    children[0] = Container(
659 660
      constraints: const BoxConstraints.tightFor(width: 50.0),
    );
661
    children[1] = Container(
662 663
      constraints: const BoxConstraints.tightFor(width: 100.0),
    );
664
    children[2] = Container(
665 666
      constraints: const BoxConstraints.tightFor(width: 200.0),
    );
667 668

    await tester.pumpWidget(
669
      StatefulBuilder(
670 671
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
672
            child: CupertinoSegmentedControl<int>(
673 674
              key: const ValueKey<String>('Segmented Control'),
              children: children,
675
              onValueChanged: (int newValue) { },
676 677 678 679 680 681
            ),
          );
        },
      ),
    );

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

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

688 689
    expect(childWidth, 200.0);

690
    expect(childWidth, getSurroundingRect(tester).width);
691 692
    expect(childWidth, getSurroundingRect(tester, child: 1).width);
    expect(childWidth, getSurroundingRect(tester, child: 2).width);
693 694
  });

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    expect(
816
      semantics,
817
        hasSemantics(
818
          TestSemantics.root(
819
            children: <TestSemantics>[
820
              TestSemantics.rootChild(
821 822
                label: 'Child 1',
                flags: <SemanticsFlag>[
823
                  SemanticsFlag.isButton,
824 825 826 827 828 829 830
                  SemanticsFlag.isInMutuallyExclusiveGroup,
                  SemanticsFlag.isSelected,
                ],
                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
                  SemanticsFlag.isInMutuallyExclusiveGroup,
                ],
                actions: <SemanticsAction>[
                  SemanticsAction.tap,
                ],
              ),
            ],
          ),
          ignoreId: true,
          ignoreRect: true,
          ignoreTransform: true,
846 847
        ),
    );
848 849 850 851 852

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

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

    semantics.dispose();
  });

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

    int sharedValue = 1;

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

    expect(sharedValue, 1);

917
    final double childWidth = getChildSize(tester).width;
918
    final Offset centerOfSegmentedControl = tester.getCenter(find.text('Child 1'));
919 920

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

    expect(sharedValue, 0);
  });

931 932
  testWidgets('Hit-tests report accurate local position in segments', (WidgetTester tester) async {
    final Map<int, Widget> children = <int, Widget>{};
933
    late TapDownDetails tapDownDetails;
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
    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);

964
    final Offset segment0GlobalOffset = tester.getTopLeft(find.byWidget(children[0]!));
965 966 967 968 969 970
    await tester.tapAt(segment0GlobalOffset + const Offset(7, 11));

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

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

1001
      final Offset centerOfTwo = tester.getCenter(find.byWidget(children[1]!));
1002 1003 1004 1005 1006
      // 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 1008
    },
  );
1009

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

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

    await tester.pumpWidget(
1067
      StatefulBuilder(
1068 1069
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1070
            child: CupertinoSegmentedControl<int>(
1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
              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(
1087
      StatefulBuilder(
1088 1089
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1090
            child: CupertinoSegmentedControl<int>(
1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107
              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(
1108
      StatefulBuilder(
1109 1110
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1111
            child: CupertinoSegmentedControl<int>(
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128
              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(
1129
      StatefulBuilder(
1130 1131
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1132
            child: CupertinoSegmentedControl<int>(
1133 1134 1135 1136 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),
    );
    expect(getBackgroundColor(tester, 0), const Color(0xffb9daff));
    expect(getBackgroundColor(tester, 1), const Color(0xc7007aff));

    await tester.pumpWidget(
1150
      StatefulBuilder(
1151 1152
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1153
            child: CupertinoSegmentedControl<int>(
1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170
              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(
1171
      StatefulBuilder(
1172 1173
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1174
            child: CupertinoSegmentedControl<int>(
1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
      const Duration(milliseconds: 40),
    );
1188
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199
    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(
1200
      StatefulBuilder(
1201 1202
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1203
            child: CupertinoSegmentedControl<int>(
1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

1218
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
1219 1220 1221 1222 1223

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

    expect(getBackgroundColor(tester, 1), const Color(0x33007aff));
1224
    expect(getBackgroundColor(tester, 2), isSameColorAs(CupertinoColors.white));
1225 1226 1227 1228 1229 1230

    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));
1231
    expect(getBackgroundColor(tester, 2), isSameColorAs(CupertinoColors.white));
1232 1233
  });

1234
  testWidgets('Transition is triggered while a transition is already occurring', (WidgetTester tester) async {
1235 1236 1237 1238 1239 1240 1241
    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(
1242
      StatefulBuilder(
1243 1244
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1245
            child: CupertinoSegmentedControl<int>(
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 1280 1281 1282
              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));
1283
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
1284 1285 1286 1287
    expect(getBackgroundColor(tester, 2), const Color(0x64007aff));

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

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

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

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

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

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

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

  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(
1380
      StatefulBuilder(
1381 1382
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1383
            child: CupertinoSegmentedControl<int>(
1384 1385 1386 1387 1388 1389 1390 1391
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
                if (sharedValue == 1) {
                  children.remove(2);
1392
                  children = Map<int, Widget>.from(children);
1393 1394 1395 1396 1397 1398 1399 1400 1401
                }
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

1402
    expect(getChildCount(tester), 3);
1403 1404 1405 1406 1407

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

    await tester.pump();
    expect(getBackgroundColor(tester, 1), const Color(0x33007aff));
1408
    expect(getChildCount(tester), 2);
1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421

    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');
1422
    int? sharedValue = 0;
1423 1424

    await tester.pumpWidget(
1425
      StatefulBuilder(
1426 1427
        builder: (BuildContext context, StateSetter setState) {
          return boilerplate(
1428
            child: CupertinoSegmentedControl<int>(
1429 1430 1431 1432 1433 1434 1435 1436
              key: const ValueKey<String>('Segmented Control'),
              children: children,
              onValueChanged: (int newValue) {
                setState(() {
                  sharedValue = newValue;
                });
                if (sharedValue == 1) {
                  children.remove(1);
1437
                  children = Map<int, Widget>.from(children);
1438 1439 1440 1441 1442 1443 1444 1445 1446 1447
                  sharedValue = null;
                }
              },
              groupValue: sharedValue,
            ),
          );
        },
      ),
    );

1448
    expect(getChildCount(tester), 3);
1449 1450 1451 1452

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

    await tester.pump();
1453
    expect(getChildCount(tester), 2);
1454 1455 1456

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

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

    await tester.pump(const Duration(milliseconds: 100));
1464 1465
    expect(getBackgroundColor(tester, 0), isSameColorAs(CupertinoColors.white));
    expect(getBackgroundColor(tester, 1), isSameColorAs(CupertinoColors.white));
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 1506 1507 1508
  // 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);
  });

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

    const int currentValue = 0;

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

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

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

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

1575 1576
    await expectLater(
      find.byType(RepaintBoundary),
1577
      matchesGoldenFile('segmented_control_test.1.png'),
1578
    );
1579
  });
1580
}