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

5
import 'package:flutter/widgets.dart';
6
import 'package:flutter_test/flutter_test.dart';
7

8
const List<int> items = <int>[0, 1, 2, 3, 4, 5];
9 10

Widget buildFrame() {
11
  return Directionality(
12
    textDirection: TextDirection.ltr,
13
    child: ListView(
14
      itemExtent: 290.0,
15
      children: items.map<Widget>((int item) {
16
        return Text('$item');
17 18
      }).toList(),
    ),
19 20 21 22
  );
}

void main() {
23 24
  testWidgets('Drag vertically', (WidgetTester tester) async {
    await tester.pumpWidget(buildFrame());
25

26
    await tester.pump();
27
    await tester.drag(find.text('1'), const Offset(0.0, -300.0));
28
    await tester.pump();
29 30 31 32 33 34 35 36 37 38
    // screen is 600px high, and has the following items:
    //   -10..280 = 1
    //   280..570 = 2
    //   570..860 = 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);
39

40
    await tester.pump();
41
    await tester.drag(find.text('2'), const Offset(0.0, -290.0));
42
    await tester.pump();
43 44 45 46 47 48 49 50 51 52
    // screen is 600px high, and has the following items:
    //   -10..280 = 2
    //   280..570 = 3
    //   570..860 = 4
    expect(find.text('0'), findsNothing);
    expect(find.text('1'), findsNothing);
    expect(find.text('2'), findsOneWidget);
    expect(find.text('3'), findsOneWidget);
    expect(find.text('4'), findsOneWidget);
    expect(find.text('5'), findsNothing);
53

54
    await tester.pump();
55
    await tester.drag(find.text('3'), const Offset(-300.0, 0.0));
56
    await tester.pump();
57 58 59 60 61 62 63
    // nothing should have changed
    expect(find.text('0'), findsNothing);
    expect(find.text('1'), findsNothing);
    expect(find.text('2'), findsOneWidget);
    expect(find.text('3'), findsOneWidget);
    expect(find.text('4'), findsOneWidget);
    expect(find.text('5'), findsNothing);
64
  });
65

66 67
  testWidgets('Drag vertically', (WidgetTester tester) async {
    await tester.pumpWidget(
68
      Directionality(
69
        textDirection: TextDirection.ltr,
70
        child: ListView(
71 72
          itemExtent: 290.0,
          padding: const EdgeInsets.only(top: 250.0),
73
          children: items.map<Widget>((int item) {
74
            return Text('$item');
75 76
          }).toList(),
        ),
77
      ),
78
    );
79

80
    await tester.pump();
81 82 83 84 85 86 87 88 89
    // screen is 600px high, and has the following items:
    //   250..540 = 0
    //   540..830 = 1
    expect(find.text('0'), findsOneWidget);
    expect(find.text('1'), findsOneWidget);
    expect(find.text('2'), findsNothing);
    expect(find.text('3'), findsNothing);
    expect(find.text('4'), findsNothing);
    expect(find.text('5'), findsNothing);
90

91
    await tester.drag(find.text('0'), const Offset(0.0, -300.0));
92
    await tester.pump();
93 94 95 96 97 98 99 100 101 102
    // screen is 600px high, and has the following items:
    //   -50..240 = 0
    //   240..530 = 1
    //   530..820 = 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);
    expect(find.text('5'), findsNothing);
103
  });
104
}