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

5
import 'package:flutter/cupertino.dart';
6
import 'package:flutter/material.dart';
7
import 'package:flutter/rendering.dart';
8
import 'package:flutter/services.dart';
9 10
import 'package:flutter_test/flutter_test.dart';

11 12
import '../rendering/mock_canvas.dart';

13
void main() {
14 15 16 17 18 19 20 21 22 23 24 25
  testWidgets('Picker respects theme styling', (WidgetTester tester) async {
    await tester.pumpWidget(
      CupertinoApp(
        home: Align(
          alignment: Alignment.topLeft,
          child: SizedBox(
            height: 300.0,
            width: 300.0,
            child: CupertinoPicker(
              itemExtent: 50.0,
              onSelectedItemChanged: (_) { },
              children: List<Widget>.generate(3, (int index) {
26
                return SizedBox(
27 28 29 30 31 32 33 34 35 36 37 38 39
                  height: 50.0,
                  width: 300.0,
                  child: Text(index.toString()),
                );
              }),
            ),
          ),
        ),
      ),
    );

    final RenderParagraph paragraph = tester.renderObject(find.text('1'));

40 41
    expect(paragraph.text.style!.color, isSameColorAs(CupertinoColors.black));
    expect(paragraph.text.style!.copyWith(color: CupertinoColors.black), const TextStyle(
42 43
      inherit: false,
      fontFamily: '.SF Pro Display',
44
      fontSize: 21.0,
45
      fontWeight: FontWeight.w400,
46
      letterSpacing: -0.6,
47 48 49 50
      color: CupertinoColors.black,
    ));
  });

51
  group('layout', () {
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
    // Regression test for https://github.com/flutter/flutter/issues/22999
    testWidgets('CupertinoPicker.builder test', (WidgetTester tester) async {
      Widget buildFrame(int childCount) {
        return Directionality(
          textDirection: TextDirection.ltr,
          child: CupertinoPicker.builder(
            itemExtent: 50.0,
            onSelectedItemChanged: (_) { },
            itemBuilder: (BuildContext context, int index) {
              return Text('$index');
            },
            childCount: childCount,
          ),
        );
      }

      await tester.pumpWidget(buildFrame(1));
      expect(tester.renderObject(find.text('0')).attached, true);

      await tester.pumpWidget(buildFrame(2));
      expect(tester.renderObject(find.text('0')).attached, true);
      expect(tester.renderObject(find.text('1')).attached, true);
    });

76
    testWidgets('selected item is in the middle', (WidgetTester tester) async {
77
      final FixedExtentScrollController controller = FixedExtentScrollController(initialItem: 1);
78 79

      await tester.pumpWidget(
80
        Directionality(
81
          textDirection: TextDirection.ltr,
82
          child: Align(
83
            alignment: Alignment.topLeft,
84
            child: SizedBox(
85 86
              height: 300.0,
              width: 300.0,
87
              child: CupertinoPicker(
88 89
                scrollController: controller,
                itemExtent: 50.0,
90
                onSelectedItemChanged: (_) { },
91
                children: List<Widget>.generate(3, (int index) {
92
                  return SizedBox(
93 94
                    height: 50.0,
                    width: 300.0,
95
                    child: Text(index.toString()),
96 97 98 99 100 101 102 103 104
                  );
                }),
              ),
            ),
          ),
        ),
      );

      expect(
105
        tester.getTopLeft(find.widgetWithText(SizedBox, '1').first),
106 107 108 109 110 111 112
        const Offset(0.0, 125.0),
      );

      controller.jumpToItem(0);
      await tester.pump();

      expect(
113
        tester.getTopLeft(find.widgetWithText(SizedBox, '1').first),
114 115 116
        const Offset(0.0, 175.0),
      );
      expect(
117
        tester.getTopLeft(find.widgetWithText(SizedBox, '0').first),
118 119 120 121 122
        const Offset(0.0, 125.0),
      );
    });
  });

123 124 125 126 127 128 129 130 131 132 133 134 135
  testWidgets('picker dark mode', (WidgetTester tester) async {
    await tester.pumpWidget(
      CupertinoApp(
        theme: const CupertinoThemeData(brightness: Brightness.light),
        home: Align(
          alignment: Alignment.topLeft,
          child: SizedBox(
            height: 300.0,
            width: 300.0,
            child: CupertinoPicker(
              backgroundColor: const CupertinoDynamicColor.withBrightness(
                color: Color(0xFF123456), // Set alpha channel to FF to disable under magnifier painting.
                darkColor: Color(0xFF654321),
136
              ),
137 138 139
              itemExtent: 15.0,
              children: const <Widget>[Text('1'), Text('1')],
              onSelectedItemChanged: (int i) { },
140 141 142
            ),
          ),
        ),
143 144
      ),
    );
145

146
    expect(find.byType(CupertinoPicker), paints..rrect(color: const Color.fromARGB(30, 118, 118, 128)));
147
    expect(find.byType(CupertinoPicker), paints..rect(color: const Color(0xFF123456)));
148

149 150 151 152 153 154 155 156 157 158 159 160
    await tester.pumpWidget(
      CupertinoApp(
        theme: const CupertinoThemeData(brightness: Brightness.dark),
        home: Align(
          alignment: Alignment.topLeft,
          child: SizedBox(
            height: 300.0,
            width: 300.0,
            child: CupertinoPicker(
              backgroundColor: const CupertinoDynamicColor.withBrightness(
                color: Color(0xFF123456),
                darkColor: Color(0xFF654321),
161
              ),
162 163 164
              itemExtent: 15.0,
              children: const <Widget>[Text('1'), Text('1')],
              onSelectedItemChanged: (int i) { },
165 166 167
            ),
          ),
        ),
168 169 170
      ),
    );

171
    expect(find.byType(CupertinoPicker), paints..rrect(color: const Color.fromARGB(61,118, 118, 128)));
172
    expect(find.byType(CupertinoPicker), paints..rect(color: const Color(0xFF654321)));
173 174
  });

175 176 177 178 179 180 181 182 183 184 185 186
  testWidgets('picker selectionOverlay', (WidgetTester tester) async {
    await tester.pumpWidget(
      CupertinoApp(
        theme: const CupertinoThemeData(brightness: Brightness.light),
        home: Align(
          alignment: Alignment.topLeft,
          child: SizedBox(
            height: 300.0,
            width: 300.0,
            child: CupertinoPicker(
              itemExtent: 15.0,
              onSelectedItemChanged: (int i) {},
187
              selectionOverlay: const CupertinoPickerDefaultSelectionOverlay(background: Color(0x12345678)),
188
              children: const <Widget>[Text('1'), Text('1')],
189 190 191 192 193 194 195 196 197
            ),
          ),
        ),
      ),
    );

    expect(find.byType(CupertinoPicker), paints..rrect(color: const Color(0x12345678)));
  });

198 199 200 201 202 203 204 205 206 207 208 209 210
  testWidgets('CupertinoPicker.selectionOverlay is nullable', (WidgetTester tester) async {
    await tester.pumpWidget(
      CupertinoApp(
        theme: const CupertinoThemeData(brightness: Brightness.light),
        home: Align(
          alignment: Alignment.topLeft,
          child: SizedBox(
            height: 300.0,
            width: 300.0,
            child: CupertinoPicker(
              itemExtent: 15.0,
              onSelectedItemChanged: (int i) {},
              selectionOverlay: null,
211
              children: const <Widget>[Text('1'), Text('1')],
212 213 214 215 216 217 218 219 220
            ),
          ),
        ),
      ),
    );

    expect(find.byType(CupertinoPicker), isNot(paints..rrect()));
  });

221
  group('scroll', () {
222 223 224 225 226 227
    testWidgets(
      'scrolling calls onSelectedItemChanged and triggers haptic feedback',
      (WidgetTester tester) async {
        final List<int> selectedItems = <int>[];
        final List<MethodCall> systemCalls = <MethodCall>[];

228
        tester.binding.defaultBinaryMessenger.setMockMethodCallHandler(SystemChannels.platform, (MethodCall methodCall) async {
229
          systemCalls.add(methodCall);
230
          return null;
231 232 233
        });

        await tester.pumpWidget(
234
          Directionality(
235
            textDirection: TextDirection.ltr,
236
            child: CupertinoPicker(
237 238
              itemExtent: 100.0,
              onSelectedItemChanged: (int index) { selectedItems.add(index); },
239 240
              children: List<Widget>.generate(100, (int index) {
                return Center(
241
                  child: SizedBox(
242 243
                    width: 400.0,
                    height: 100.0,
244
                    child: Text(index.toString()),
245 246 247 248 249 250 251
                  ),
                );
              }),
            ),
          ),
        );

252
        await tester.drag(find.text('0'), const Offset(0.0, -100.0), warnIfMissed: false); // has an IgnorePointer
253 254 255 256 257 258 259 260 261
        expect(selectedItems, <int>[1]);
        expect(
          systemCalls.single,
          isMethodCall(
            'HapticFeedback.vibrate',
            arguments: 'HapticFeedbackType.selectionClick',
          ),
        );

262
        await tester.drag(find.text('0'), const Offset(0.0, 100.0), warnIfMissed: false); // has an IgnorePointer
263 264 265 266 267 268 269 270 271
        expect(selectedItems, <int>[1, 0]);
        expect(systemCalls, hasLength(2));
        expect(
          systemCalls.last,
          isMethodCall(
            'HapticFeedback.vibrate',
            arguments: 'HapticFeedbackType.selectionClick',
          ),
        );
272 273 274
      },
      variant: TargetPlatformVariant.only(TargetPlatform.iOS),
    );
275 276 277 278 279 280 281

    testWidgets(
      'do not trigger haptic effects on non-iOS devices',
      (WidgetTester tester) async {
        final List<int> selectedItems = <int>[];
        final List<MethodCall> systemCalls = <MethodCall>[];

282
        tester.binding.defaultBinaryMessenger.setMockMethodCallHandler(SystemChannels.platform, (MethodCall methodCall) async {
283
          systemCalls.add(methodCall);
284
          return null;
285 286 287
        });

        await tester.pumpWidget(
288
          Directionality(
289
            textDirection: TextDirection.ltr,
290
            child: CupertinoPicker(
291 292
              itemExtent: 100.0,
              onSelectedItemChanged: (int index) { selectedItems.add(index); },
293 294
              children: List<Widget>.generate(100, (int index) {
                return Center(
295
                  child: SizedBox(
296 297
                    width: 400.0,
                    height: 100.0,
298
                    child: Text(index.toString()),
299 300 301 302 303 304 305
                  ),
                );
              }),
            ),
          ),
        );

306
        await tester.drag(find.text('0'), const Offset(0.0, -100.0), warnIfMissed: false); // has an IgnorePointer
307 308
        expect(selectedItems, <int>[1]);
        expect(systemCalls, isEmpty);
309 310 311
      },
      variant: TargetPlatformVariant(TargetPlatform.values.where((TargetPlatform platform) => platform != TargetPlatform.iOS).toSet()),
    );
312

313
    testWidgets('a drag in between items settles back', (WidgetTester tester) async {
314
      final FixedExtentScrollController controller = FixedExtentScrollController(initialItem: 10);
315 316 317
      final List<int> selectedItems = <int>[];

      await tester.pumpWidget(
318
        Directionality(
319
          textDirection: TextDirection.ltr,
320
          child: CupertinoPicker(
321 322 323
            scrollController: controller,
            itemExtent: 100.0,
            onSelectedItemChanged: (int index) { selectedItems.add(index); },
324 325
            children: List<Widget>.generate(100, (int index) {
              return Center(
326
                child: SizedBox(
327 328
                  width: 400.0,
                  height: 100.0,
329
                  child: Text(index.toString()),
330 331 332 333 334 335 336 337
                ),
              );
            }),
          ),
        ),
      );

      // Drag it by a bit but not enough to move to the next item.
338
      await tester.drag(find.text('10'), const Offset(0.0, 30.0), touchSlopY: 0.0, warnIfMissed: false); // has an IgnorePointer
339 340 341

      // The item that was in the center now moved a bit.
      expect(
342
        tester.getTopLeft(find.widgetWithText(SizedBox, '10')),
343 344 345 346 347 348
        const Offset(200.0, 280.0),
      );

      await tester.pumpAndSettle();

      expect(
349
        tester.getTopLeft(find.widgetWithText(SizedBox, '10')).dy,
350 351 352 353 354
        moreOrLessEquals(250.0, epsilon: 0.5),
      );
      expect(selectedItems.isEmpty, true);

      // Drag it by enough to move to the next item.
355
      await tester.drag(find.text('10'), const Offset(0.0, 70.0), touchSlopY: 0.0, warnIfMissed: false); // has an IgnorePointer
356 357 358 359

      await tester.pumpAndSettle();

      expect(
360
        tester.getTopLeft(find.widgetWithText(SizedBox, '10')).dy,
361 362 363 364
        // It's down by 100.0 now.
        moreOrLessEquals(350.0, epsilon: 0.5),
      );
      expect(selectedItems, <int>[9]);
Dan Field's avatar
Dan Field committed
365
    }, variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS,  TargetPlatform.macOS }));
366 367 368

    testWidgets('a big fling that overscrolls springs back', (WidgetTester tester) async {
      final FixedExtentScrollController controller =
369
          FixedExtentScrollController(initialItem: 10);
370 371 372
      final List<int> selectedItems = <int>[];

      await tester.pumpWidget(
373
        Directionality(
374
          textDirection: TextDirection.ltr,
375
          child: CupertinoPicker(
376 377 378
            scrollController: controller,
            itemExtent: 100.0,
            onSelectedItemChanged: (int index) { selectedItems.add(index); },
379 380
            children: List<Widget>.generate(100, (int index) {
              return Center(
381
                child: SizedBox(
382 383
                  width: 400.0,
                  height: 100.0,
384
                  child: Text(index.toString()),
385 386 387 388 389 390 391 392 393 394 395 396
                ),
              );
            }),
          ),
        ),
      );

      // A wild throw appears.
      await tester.fling(
        find.text('10'),
        const Offset(0.0, 10000.0),
        1000.0,
397
        warnIfMissed: false, // has an IgnorePointer
398 399
      );

400 401
      // Should have been flung far enough that even the first item goes off
      // screen and gets removed.
402
      expect(find.widgetWithText(SizedBox, '0').evaluate().isEmpty, true);
403

404 405 406 407 408 409 410 411 412 413 414
      expect(
        selectedItems,
        // This specific throw was fast enough that each scroll update landed
        // on every second item.
        <int>[8, 6, 4, 2, 0],
      );

      // Let it spring back.
      await tester.pumpAndSettle();

      expect(
415
        tester.getTopLeft(find.widgetWithText(SizedBox, '0')).dy,
416 417 418 419 420 421 422 423
        // Should have sprung back to the middle now.
        moreOrLessEquals(250.0),
      );
      expect(
        selectedItems,
        // Falling back to 0 shouldn't produce more callbacks.
        <int>[8, 6, 4, 2, 0],
      );
Dan Field's avatar
Dan Field committed
424
    }, variant: const TargetPlatformVariant(<TargetPlatform>{ TargetPlatform.iOS,  TargetPlatform.macOS }));
425
  });
426 427

  testWidgets('Picker adapts to MaterialApp dark mode', (WidgetTester tester) async {
428
    Widget buildCupertinoPicker(Brightness brightness) {
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
      return MaterialApp(
        theme: ThemeData(brightness: brightness),
        home: Align(
          alignment: Alignment.topLeft,
          child: SizedBox(
            height: 300.0,
            width: 300.0,
            child: CupertinoPicker(
              itemExtent: 50.0,
              onSelectedItemChanged: (_) { },
              children: List<Widget>.generate(3, (int index) {
                return SizedBox(
                  height: 50.0,
                  width: 300.0,
                  child: Text(index.toString()),
                );
              }),
            ),
          ),
        ),
      );
    }

    // CupertinoPicker with light theme.
453
    await tester.pumpWidget(buildCupertinoPicker(Brightness.light));
454 455 456 457 458 459
    RenderParagraph paragraph = tester.renderObject(find.text('1'));
    expect(paragraph.text.style!.color, CupertinoColors.label);
    // Text style should not return unresolved color.
    expect(paragraph.text.style!.color.toString().contains('UNRESOLVED'), isFalse);

    // CupertinoPicker with dark theme.
460
    await tester.pumpWidget(buildCupertinoPicker(Brightness.dark));
461 462 463 464 465
    paragraph = tester.renderObject(find.text('1'));
    expect(paragraph.text.style!.color, CupertinoColors.label);
    // Text style should not return unresolved color.
    expect(paragraph.text.style!.color.toString().contains('UNRESOLVED'), isFalse);
  });
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489

  group('CupertinoPickerDefaultSelectionOverlay', () {
    testWidgets('should be using directional decoration', (WidgetTester tester) async {
      await tester.pumpWidget(
        CupertinoApp(
          theme: const CupertinoThemeData(brightness: Brightness.light),
          home: CupertinoPicker(
            itemExtent: 15.0,
            onSelectedItemChanged: (int i) {},
            selectionOverlay: const CupertinoPickerDefaultSelectionOverlay(background: Color(0x12345678)),
            children: const <Widget>[Text('1'), Text('1')],
          ),
        ),
      );

      final Finder selectionContainer = find.byType(Container);
      final Container container = tester.firstWidget<Container>(selectionContainer);
      final EdgeInsetsGeometry? margin = container.margin;
      final BorderRadiusGeometry? borderRadius = (container.decoration as BoxDecoration?)?.borderRadius;

      expect(margin, isA<EdgeInsetsDirectional>());
      expect(borderRadius, isA<BorderRadiusDirectional>());
    });
  });
490
}