scrollable_grid_test.dart 3.49 KB
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1
// Copyright 2014 The Flutter Authors. All rights reserved.
2 3 4 5
// 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';
6
import 'package:flutter_test/flutter_test.dart';
7 8

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

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

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

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

54
    await tester.drag(find.text('1'), const Offset(0.0, -500.0));
55 56 57 58 59 60 61 62 63 64 65
    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);

66
    await tester.drag(find.text('1'), const Offset(0.0, 150.0));
67 68 69 70 71 72 73 74 75 76 77
    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);
  });
78 79 80 81

  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) {
82
      return Directionality(
83
        textDirection: TextDirection.ltr,
84
        child: GridView.count(
85
          crossAxisCount: itemCount,
86 87
          children: List<Widget>.generate(itemCount, (int index) {
            return SizedBox(
88
              height: 200.0,
89
              child: Text('item $index'),
90 91 92
            );
          }),
        ),
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
      );
    }

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

108
}