mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
57 lines
1.8 KiB
Dart
57 lines
1.8 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
import 'widget_tester.dart';
|
|
|
|
void main() {
|
|
test('SnackBar control test', () {
|
|
testWidgets((WidgetTester tester) {
|
|
String helloSnackBar = 'Hello SnackBar';
|
|
GlobalKey<PlaceholderState> placeholderKey = new GlobalKey<PlaceholderState>();
|
|
Key tapTarget = new Key('tap-target');
|
|
BuildContext context;
|
|
bool showSnackBarThenCalled = false;
|
|
|
|
tester.pumpWidget(new MaterialApp(
|
|
routes: <String, RouteBuilder>{
|
|
'/': (RouteArguments args) {
|
|
context = args.context;
|
|
return new GestureDetector(
|
|
onTap: () {
|
|
showSnackBar(
|
|
context: args.context,
|
|
placeholderKey: placeholderKey,
|
|
content: new Text(helloSnackBar)
|
|
).then((_) {
|
|
showSnackBarThenCalled = true;
|
|
});
|
|
},
|
|
child: new Container(
|
|
decoration: const BoxDecoration(
|
|
backgroundColor: const Color(0xFF00FF00)
|
|
),
|
|
child: new Center(
|
|
key: tapTarget,
|
|
child: new Placeholder(key: placeholderKey)
|
|
)
|
|
)
|
|
);
|
|
}
|
|
}
|
|
));
|
|
|
|
tester.tap(tester.findElementByKey(tapTarget));
|
|
expect(tester.findText(helloSnackBar), isNull);
|
|
tester.pump();
|
|
expect(tester.findText(helloSnackBar), isNotNull);
|
|
|
|
Navigator.of(context).pop();
|
|
expect(tester.findText(helloSnackBar), isNotNull);
|
|
tester.pump(new Duration(seconds: 1));
|
|
expect(showSnackBarThenCalled, isTrue);
|
|
expect(tester.findText(helloSnackBar), isNull);
|
|
expect(placeholderKey.currentState.child, isNull);
|
|
});
|
|
});
|
|
}
|