overscroll_indicator_test.dart 9.35 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'dart:math' as math;

import 'package:flutter_test/flutter_test.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter/rendering.dart';

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

final Matcher doesNotOverscroll = isNot(paints..circle());

Future<Null> slowDrag(WidgetTester tester, Point start, Offset offset) async {
  TestGesture gesture = await tester.startGesture(start);
  for (int index = 0; index < 10; index += 1) {
    await gesture.moveBy(offset);
    await tester.pump(const Duration(milliseconds: 20));
  }
  await gesture.up();
}

void main() {
  testWidgets('Overscroll indicator color', (WidgetTester tester) async {
    await tester.pumpWidget(
      new Scrollable2(
        children: <Widget>[
          new SliverToBoxAdapter(child: new SizedBox(height: 2000.0)),
        ],
      ),
    );
    RenderObject painter = tester.renderObject(find.byType(CustomPaint));

    expect(painter, doesNotOverscroll);

    // the scroll gesture from tester.scroll happens in zero time, so nothing should appear:
    await tester.scroll(find.byType(Scrollable2), const Offset(0.0, 100.0));
    expect(painter, doesNotOverscroll);
    await tester.pump(); // allow the ticker to register itself
    expect(painter, doesNotOverscroll);
    await tester.pump(const Duration(milliseconds: 100)); // animate
    expect(painter, doesNotOverscroll);

    TestGesture gesture = await tester.startGesture(const Point(200.0, 200.0));
    await tester.pump(const Duration(milliseconds: 100)); // animate
    expect(painter, doesNotOverscroll);
    await gesture.up();
    expect(painter, doesNotOverscroll);

    await slowDrag(tester, const Point(200.0, 200.0), const Offset(0.0, 5.0));
    expect(painter, paints..circle(color: const Color(0x0DFFFFFF)));

    await tester.pumpUntilNoTransientCallbacks(const Duration(seconds: 1));
    expect(painter, doesNotOverscroll);
  });

  testWidgets('Overscroll indicator changes side when you drag on the other side', (WidgetTester tester) async {
    await tester.pumpWidget(
      new Scrollable2(
        children: <Widget>[
          new SliverToBoxAdapter(child: new SizedBox(height: 2000.0)),
        ],
      ),
    );
    RenderObject painter = tester.renderObject(find.byType(CustomPaint));

    await slowDrag(tester, const Point(400.0, 200.0), const Offset(0.0, 10.0));
    expect(painter, paints..circle(x: 400.0));
    await slowDrag(tester, const Point(100.0, 200.0), const Offset(0.0, 10.0));
    expect(painter, paints..something((Symbol method, List<dynamic> arguments) {
      if (method != #drawCircle)
        return false;
      final Point center = arguments[0];
      if (center.x < 400.0)
        return true;
      throw 'Dragging on left hand side did not overscroll on left hand side.';
    }));
    await slowDrag(tester, const Point(700.0, 200.0), const Offset(0.0, 10.0));
    expect(painter, paints..something((Symbol method, List<dynamic> arguments) {
      if (method != #drawCircle)
        return false;
      final Point center = arguments[0];
      if (center.x > 400.0)
        return true;
      throw 'Dragging on right hand side did not overscroll on right hand side.';
    }));

    await tester.pumpUntilNoTransientCallbacks(const Duration(seconds: 1));
    expect(painter, doesNotOverscroll);
  });

  testWidgets('Overscroll indicator changes side when you shift sides', (WidgetTester tester) async {
    await tester.pumpWidget(
      new Scrollable2(
        children: <Widget>[
          new SliverToBoxAdapter(child: new SizedBox(height: 2000.0)),
        ],
      ),
    );
    RenderObject painter = tester.renderObject(find.byType(CustomPaint));
    TestGesture gesture = await tester.startGesture(const Point(300.0, 200.0));
    await gesture.moveBy(const Offset(0.0, 10.0));
    await tester.pump(const Duration(milliseconds: 20));
    double oldX = 0.0;
    for (int index = 0; index < 10; index += 1) {
      await gesture.moveBy(const Offset(50.0, 50.0));
      await tester.pump(const Duration(milliseconds: 20));
      expect(painter, paints..something((Symbol method, List<dynamic> arguments) {
        if (method != #drawCircle)
          return false;
        final Point center = arguments[0];
        if (center.x <= oldX)
          throw 'Sliding to the right did not make the center of the radius slide to the right.';
        oldX = center.x;
        return true;
      }));
    }
    await gesture.up();

    await tester.pumpUntilNoTransientCallbacks(const Duration(seconds: 1));
    expect(painter, doesNotOverscroll);
  });

  group('Flipping direction of scrollable doesn\'t change overscroll behavior', () {
    testWidgets('down', (WidgetTester tester) async {
      await tester.pumpWidget(
        new Scrollable2(
          axisDirection: AxisDirection.down,
          children: <Widget>[
            new SliverToBoxAdapter(child: new SizedBox(height: 20.0)),
          ],
        ),
      );
      RenderObject painter = tester.renderObject(find.byType(CustomPaint));
      await slowDrag(tester, const Point(200.0, 200.0), const Offset(0.0, 5.0));
      expect(painter, paints..save()..circle()..restore()..save()..scale(y: -1.0)..restore()..restore());

      await tester.pumpUntilNoTransientCallbacks(const Duration(seconds: 1));
      expect(painter, doesNotOverscroll);
    });

    testWidgets('up', (WidgetTester tester) async {
      await tester.pumpWidget(
        new Scrollable2(
          axisDirection: AxisDirection.up,
          children: <Widget>[
            new SliverToBoxAdapter(child: new SizedBox(height: 20.0)),
          ],
        ),
      );
      RenderObject painter = tester.renderObject(find.byType(CustomPaint));
      await slowDrag(tester, const Point(200.0, 200.0), const Offset(0.0, 5.0));
      expect(painter, paints..save()..scale(y: -1.0)..restore()..save()..circle()..restore()..restore());

      await tester.pumpUntilNoTransientCallbacks(const Duration(seconds: 1));
      expect(painter, doesNotOverscroll);
    });
  });

  testWidgets('Overscroll in both directions', (WidgetTester tester) async {
    await tester.pumpWidget(
      new Scrollable2(
        axisDirection: AxisDirection.down,
        children: <Widget>[
          new SliverToBoxAdapter(child: new SizedBox(height: 20.0)),
        ],
      ),
    );
    RenderObject painter = tester.renderObject(find.byType(CustomPaint));
    await slowDrag(tester, const Point(200.0, 200.0), const Offset(0.0, 5.0));
    expect(painter, paints..circle());
    expect(painter, isNot(paints..circle()..circle()));
    await slowDrag(tester, const Point(200.0, 200.0), const Offset(0.0, -5.0));
    expect(painter, paints..circle()..circle());

    await tester.pumpUntilNoTransientCallbacks(const Duration(seconds: 1));
    expect(painter, doesNotOverscroll);
  });

  testWidgets('Overscroll horizontally', (WidgetTester tester) async {
    await tester.pumpWidget(
      new Scrollable2(
        axisDirection: AxisDirection.right,
        children: <Widget>[
          new SliverToBoxAdapter(child: new SizedBox(height: 20.0)),
        ],
      ),
    );
    RenderObject painter = tester.renderObject(find.byType(CustomPaint));
    await slowDrag(tester, const Point(200.0, 200.0), const Offset(5.0, 0.0));
    expect(painter, paints..rotate(angle: -math.PI / 2.0)..circle()..scale(y: -1.0));
    expect(painter, isNot(paints..circle()..circle()));
    await slowDrag(tester, const Point(200.0, 200.0), const Offset(-5.0, 0.0));
    expect(painter, paints..rotate(angle: -math.PI / 2.0)..circle()
                          ..rotate(angle: -math.PI / 2.0)..scale(y: -1.0)..circle());

    await tester.pumpUntilNoTransientCallbacks(const Duration(seconds: 1));
    expect(painter, doesNotOverscroll);
  });

  testWidgets('Changing settings', (WidgetTester tester) async {
    RenderObject painter;

    await tester.pumpWidget(
      new Scrollable2(
        axisDirection: AxisDirection.left,
        scrollBehavior: new TestScrollBehavior1(),
        children: <Widget>[
          new SliverToBoxAdapter(child: new SizedBox(height: 20.0)),
        ],
      ),
    );
    painter = tester.renderObject(find.byType(CustomPaint));
    await slowDrag(tester, const Point(200.0, 200.0), const Offset(5.0, 0.0));
    expect(painter, paints..scale(y: -1.0)..rotate(angle: -math.PI / 2.0)..circle(color: const Color(0x0A00FF00)));
    expect(painter, isNot(paints..circle()..circle()));

    await tester.pumpUntilNoTransientCallbacks(const Duration(seconds: 1));
    await tester.pumpWidget(
      new Scrollable2(
        axisDirection: AxisDirection.right,
        scrollBehavior: new TestScrollBehavior2(),
        children: <Widget>[
          new SliverToBoxAdapter(child: new SizedBox(height: 20.0)),
        ],
      ),
    );
    painter = tester.renderObject(find.byType(CustomPaint));
    await slowDrag(tester, const Point(200.0, 200.0), const Offset(5.0, 0.0));
    expect(painter, paints..rotate(angle: -math.PI / 2.0)..circle(color: const Color(0x0A0000FF))..scale(y: -1.0));
    expect(painter, isNot(paints..circle()..circle()));
  });
}

class TestScrollBehavior1 extends ViewportScrollBehavior {
  @override
  Color getGlowColor(BuildContext context) {
    return const Color(0xFF00FF00);
  }
}

class TestScrollBehavior2 extends ViewportScrollBehavior {
  @override
  Color getGlowColor(BuildContext context) {
    return const Color(0xFF0000FF);
  }
}