mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
219 lines
7.9 KiB
Dart
219 lines
7.9 KiB
Dart
// Copyright 2014 The Flutter 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 'package:flutter/gestures.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
void main() {
|
|
testWidgets('Scroll notification basics', (WidgetTester tester) async {
|
|
late ScrollNotification notification;
|
|
|
|
await tester.pumpWidget(NotificationListener<ScrollNotification>(
|
|
onNotification: (ScrollNotification value) {
|
|
if (value is ScrollStartNotification || value is ScrollUpdateNotification || value is ScrollEndNotification)
|
|
notification = value;
|
|
return false;
|
|
},
|
|
child: const SingleChildScrollView(
|
|
child: SizedBox(height: 1200.0),
|
|
),
|
|
));
|
|
|
|
final TestGesture gesture = await tester.startGesture(const Offset(100.0, 100.0));
|
|
await tester.pump(const Duration(seconds: 1));
|
|
expect(notification, isA<ScrollStartNotification>());
|
|
expect(notification.depth, equals(0));
|
|
final ScrollStartNotification start = notification as ScrollStartNotification;
|
|
expect(start.dragDetails, isNotNull);
|
|
expect(start.dragDetails!.globalPosition, equals(const Offset(100.0, 100.0)));
|
|
|
|
await gesture.moveBy(const Offset(-10.0, -10.0));
|
|
await tester.pump(const Duration(seconds: 1));
|
|
expect(notification, isA<ScrollUpdateNotification>());
|
|
expect(notification.depth, equals(0));
|
|
final ScrollUpdateNotification update = notification as ScrollUpdateNotification;
|
|
expect(update.dragDetails, isNotNull);
|
|
expect(update.dragDetails!.globalPosition, equals(const Offset(90.0, 90.0)));
|
|
expect(update.dragDetails!.delta, equals(const Offset(0.0, -10.0)));
|
|
|
|
await gesture.up();
|
|
await tester.pump(const Duration(seconds: 1));
|
|
expect(notification, isA<ScrollEndNotification>());
|
|
expect(notification.depth, equals(0));
|
|
final ScrollEndNotification end = notification as ScrollEndNotification;
|
|
expect(end.dragDetails, isNotNull);
|
|
expect(end.dragDetails!.velocity, equals(Velocity.zero));
|
|
});
|
|
|
|
testWidgets('Scroll notification depth', (WidgetTester tester) async {
|
|
final List<Type> depth0Types = <Type>[];
|
|
final List<Type> depth1Types = <Type>[];
|
|
final List<int> depth0Values = <int>[];
|
|
final List<int> depth1Values = <int>[];
|
|
|
|
await tester.pumpWidget(NotificationListener<ScrollNotification>(
|
|
onNotification: (ScrollNotification value) {
|
|
depth1Types.add(value.runtimeType);
|
|
depth1Values.add(value.depth);
|
|
return false;
|
|
},
|
|
child: SingleChildScrollView(
|
|
dragStartBehavior: DragStartBehavior.down,
|
|
child: SizedBox(
|
|
height: 1200.0,
|
|
child: NotificationListener<ScrollNotification>(
|
|
onNotification: (ScrollNotification value) {
|
|
depth0Types.add(value.runtimeType);
|
|
depth0Values.add(value.depth);
|
|
return false;
|
|
},
|
|
child: Container(
|
|
padding: const EdgeInsets.all(50.0),
|
|
child: const SingleChildScrollView(
|
|
dragStartBehavior: DragStartBehavior.down,
|
|
child: SizedBox(height: 1200.0),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
));
|
|
|
|
final TestGesture gesture = await tester.startGesture(const Offset(100.0, 100.0));
|
|
await tester.pump(const Duration(seconds: 1));
|
|
await gesture.moveBy(const Offset(-10.0, -40.0));
|
|
await tester.pump(const Duration(seconds: 1));
|
|
await gesture.up();
|
|
await tester.pump(const Duration(seconds: 1));
|
|
|
|
final List<Type> types = <Type>[
|
|
ScrollStartNotification,
|
|
UserScrollNotification,
|
|
ScrollUpdateNotification,
|
|
ScrollEndNotification,
|
|
UserScrollNotification,
|
|
];
|
|
expect(depth0Types, equals(types));
|
|
expect(depth1Types, equals(types));
|
|
|
|
expect(depth0Values, equals(<int>[0, 0, 0, 0, 0]));
|
|
expect(depth1Values, equals(<int>[1, 1, 1, 1, 1]));
|
|
});
|
|
|
|
testWidgets('ScrollNotifications bubble past Scaffold Material', (WidgetTester tester) async {
|
|
final List<Type> notificationTypes = <Type>[];
|
|
|
|
await tester.pumpWidget(
|
|
MaterialApp(
|
|
home: NotificationListener<ScrollNotification>(
|
|
onNotification: (ScrollNotification value) {
|
|
notificationTypes.add(value.runtimeType);
|
|
return false;
|
|
},
|
|
child: Scaffold(
|
|
body: SizedBox.expand(
|
|
child: SingleChildScrollView(
|
|
dragStartBehavior: DragStartBehavior.down,
|
|
child: SizedBox(
|
|
height: 1200.0,
|
|
child: Container(
|
|
padding: const EdgeInsets.all(50.0),
|
|
child: const SingleChildScrollView(
|
|
dragStartBehavior: DragStartBehavior.down,
|
|
child: SizedBox(height: 1200.0),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
|
|
final TestGesture gesture = await tester.startGesture(const Offset(100.0, 100.0));
|
|
await tester.pump(const Duration(seconds: 1));
|
|
await gesture.moveBy(const Offset(-10.0, -40.0));
|
|
await tester.pump(const Duration(seconds: 1));
|
|
await gesture.up();
|
|
await tester.pump(const Duration(seconds: 1));
|
|
|
|
final List<Type> types = <Type>[
|
|
ScrollStartNotification,
|
|
UserScrollNotification,
|
|
ScrollUpdateNotification,
|
|
ScrollEndNotification,
|
|
UserScrollNotification,
|
|
];
|
|
expect(notificationTypes, equals(types));
|
|
});
|
|
|
|
testWidgets('ScrollNotificationObserver', (WidgetTester tester) async {
|
|
late ScrollNotificationObserverState observer;
|
|
ScrollNotification? notification;
|
|
|
|
void handleNotification(ScrollNotification value) {
|
|
if (value is ScrollStartNotification || value is ScrollUpdateNotification || value is ScrollEndNotification)
|
|
notification = value;
|
|
}
|
|
|
|
await tester.pumpWidget(
|
|
ScrollNotificationObserver(
|
|
child: Builder(
|
|
builder: (BuildContext context) {
|
|
observer = ScrollNotificationObserver.of(context)!;
|
|
return const SingleChildScrollView(
|
|
child: SizedBox(height: 1200.0),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
);
|
|
|
|
observer.addListener(handleNotification);
|
|
|
|
TestGesture gesture = await tester.startGesture(const Offset(100.0, 100.0));
|
|
await tester.pumpAndSettle();
|
|
expect(notification, isA<ScrollStartNotification>());
|
|
expect(notification!.depth, equals(0));
|
|
|
|
final ScrollStartNotification start = notification! as ScrollStartNotification;
|
|
expect(start.dragDetails, isNotNull);
|
|
expect(start.dragDetails!.globalPosition, equals(const Offset(100.0, 100.0)));
|
|
|
|
await gesture.moveBy(const Offset(-10.0, -10.0));
|
|
await tester.pumpAndSettle();
|
|
expect(notification, isA<ScrollUpdateNotification>());
|
|
expect(notification!.depth, equals(0));
|
|
final ScrollUpdateNotification update = notification! as ScrollUpdateNotification;
|
|
expect(update.dragDetails, isNotNull);
|
|
expect(update.dragDetails!.globalPosition, equals(const Offset(90.0, 90.0)));
|
|
expect(update.dragDetails!.delta, equals(const Offset(0.0, -10.0)));
|
|
|
|
await gesture.up();
|
|
await tester.pumpAndSettle();
|
|
expect(notification, isA<ScrollEndNotification>());
|
|
expect(notification!.depth, equals(0));
|
|
final ScrollEndNotification end = notification! as ScrollEndNotification;
|
|
expect(end.dragDetails, isNotNull);
|
|
expect(end.dragDetails!.velocity, equals(Velocity.zero));
|
|
|
|
observer.removeListener(handleNotification);
|
|
notification = null;
|
|
|
|
gesture = await tester.startGesture(const Offset(100.0, 100.0));
|
|
await tester.pumpAndSettle();
|
|
expect(notification, isNull);
|
|
|
|
await gesture.moveBy(const Offset(-10.0, -10.0));
|
|
await tester.pumpAndSettle();
|
|
expect(notification, isNull);
|
|
|
|
await gesture.up();
|
|
await tester.pumpAndSettle();
|
|
expect(notification, isNull);
|
|
});
|
|
}
|