scrollable_grid_test.dart 3.54 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
// @dart = 2.8

7 8 9 10 11
import 'package:flutter_test/flutter_test.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter/rendering.dart';

void main() {
12
  testWidgets('GridView default control', (WidgetTester tester) async {
13
    await tester.pumpWidget(
14
      Directionality(
15
        textDirection: TextDirection.ltr,
16 17
        child: Center(
          child: GridView.count(
18 19 20
            crossAxisCount: 1,
          ),
        ),
21
      ),
22
    );
23 24
  });

25
  // Tests https://github.com/flutter/flutter/issues/5522
26
  testWidgets('GridView displays correct children with nonzero padding', (WidgetTester tester) async {
27
    const EdgeInsets padding = EdgeInsets.fromLTRB(0.0, 100.0, 0.0, 0.0);
28

29
    final Widget testWidget = Directionality(
30
      textDirection: TextDirection.ltr,
31 32
      child: Align(
        child: SizedBox(
33
          height: 800.0,
34
          width: 300.0, // forces the grid children to be 300..300
35
          child: GridView.count(
36 37
            crossAxisCount: 1,
            padding: padding,
38 39
            children: List<Widget>.generate(10, (int index) {
              return Text('$index', key: ValueKey<int>(index));
40 41
            }).toList(),
          ),
42 43
        ),
      ),
44 45 46 47 48 49 50 51 52 53 54 55 56
    );

    await tester.pumpWidget(testWidget);

    // screen is 600px high, and has the following items:
    //   100..400 = 0
    //   400..700 = 1
    await tester.pump();
    expect(find.text('0'), findsOneWidget);
    expect(find.text('1'), findsOneWidget);
    expect(find.text('2'), findsNothing);
    expect(find.text('3'), findsNothing);

57
    await tester.drag(find.text('1'), const Offset(0.0, -500.0));
58 59 60 61 62 63 64 65 66 67 68
    await tester.pump();
    //  -100..300 = 1
    //   300..600 = 2
    //   600..600 = 3
    expect(find.text('0'), findsNothing);
    expect(find.text('1'), findsOneWidget);
    expect(find.text('2'), findsOneWidget);
    expect(find.text('3'), findsOneWidget);
    expect(find.text('4'), findsNothing);
    expect(find.text('5'), findsNothing);

69
    await tester.drag(find.text('1'), const Offset(0.0, 150.0));
70 71 72 73 74 75 76 77 78 79 80
    await tester.pump();
    // Child '0' is now back onscreen, but by less than `padding.top`.
    //  -250..050 = 0
    //   050..450 = 1
    //   450..750 = 2
    expect(find.text('0'), findsOneWidget);
    expect(find.text('1'), findsOneWidget);
    expect(find.text('2'), findsOneWidget);
    expect(find.text('3'), findsNothing);
    expect(find.text('4'), findsNothing);
  });
81 82 83 84

  testWidgets('GridView.count() fixed itemExtent, scroll to end, append, scroll', (WidgetTester tester) async {
    // Regression test for https://github.com/flutter/flutter/issues/9506
    Widget buildFrame(int itemCount) {
85
      return Directionality(
86
        textDirection: TextDirection.ltr,
87
        child: GridView.count(
88
          crossAxisCount: itemCount,
89 90
          children: List<Widget>.generate(itemCount, (int index) {
            return SizedBox(
91
              height: 200.0,
92
              child: Text('item $index'),
93 94 95
            );
          }),
        ),
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
      );
    }

    await tester.pumpWidget(buildFrame(3));
    expect(find.text('item 0'), findsOneWidget);
    expect(find.text('item 1'), findsOneWidget);
    expect(find.text('item 2'), findsOneWidget);

    await tester.pumpWidget(buildFrame(4));
    final TestGesture gesture = await tester.startGesture(const Offset(0.0, 300.0));
    await gesture.moveBy(const Offset(0.0, -200.0));
    await tester.pumpAndSettle();
    expect(find.text('item 3'), findsOneWidget);
  });

111
}