Commit 986b0174 authored by Hans Muller's avatar Hans Muller

Gallery Smoke Test (#3446)

* Gallery Smoke Test
parent 161f945e
...@@ -40,14 +40,14 @@ class PageSelectorDemo extends StatelessWidget { ...@@ -40,14 +40,14 @@ class PageSelectorDemo extends StatelessWidget {
icon: Icons.arrow_back, icon: Icons.arrow_back,
color: color, color: color,
onPressed: () { _handleArrowButtonPress(context, -1); }, onPressed: () { _handleArrowButtonPress(context, -1); },
tooltip: 'Back' tooltip: 'Page back'
), ),
new TabPageSelector<IconData>(), new TabPageSelector<IconData>(),
new IconButton( new IconButton(
icon: Icons.arrow_forward, icon: Icons.arrow_forward,
color: color, color: color,
onPressed: () { _handleArrowButtonPress(context, 1); }, onPressed: () { _handleArrowButtonPress(context, 1); },
tooltip: 'Forward' tooltip: 'Page forward'
) )
], ],
mainAxisAlignment: MainAxisAlignment.spaceBetween mainAxisAlignment: MainAxisAlignment.spaceBetween
......
...@@ -93,7 +93,7 @@ class GalleryHomeState extends State<GalleryHome> { ...@@ -93,7 +93,7 @@ class GalleryHomeState extends State<GalleryHome> {
appBar: new AppBar( appBar: new AppBar(
expandedHeight: _kFlexibleSpaceMaxHeight, expandedHeight: _kFlexibleSpaceMaxHeight,
flexibleSpace: new FlexibleSpaceBar( flexibleSpace: new FlexibleSpaceBar(
title: new Text("Flutter gallery"), title: new Text('Flutter gallery'),
background: new GalleryHeader() background: new GalleryHeader()
) )
), ),
...@@ -104,18 +104,18 @@ class GalleryHomeState extends State<GalleryHome> { ...@@ -104,18 +104,18 @@ class GalleryHomeState extends State<GalleryHome> {
children: <Widget>[ children: <Widget>[
new TwoLevelSublist( new TwoLevelSublist(
leading: new Icon(icon: Icons.star), leading: new Icon(icon: Icons.star),
title: new Text("Demos"), title: new Text('Demos'),
children: <Widget>[ children: <Widget>[
new GalleryItem(title: "Weather", builder: () => new WeatherDemo()), new GalleryItem(title: 'Weather', builder: () => new WeatherDemo()),
new GalleryItem(title: "Fitness", builder: () => new FitnessDemo()), new GalleryItem(title: 'Fitness', builder: () => new FitnessDemo()),
new GalleryItem(title: "Fancy lines", builder: () => new DrawingDemo()), new GalleryItem(title: 'Fancy lines', builder: () => new DrawingDemo()),
new GalleryItem(title: 'Flexible space toolbar', builder: () => new FlexibleSpaceDemo()), new GalleryItem(title: 'Flexible space toolbar', builder: () => new FlexibleSpaceDemo()),
new GalleryItem(title: 'Floating action button', builder: () => new TabsFabDemo()), new GalleryItem(title: 'Floating action button', builder: () => new TabsFabDemo()),
] ]
), ),
new TwoLevelSublist( new TwoLevelSublist(
leading: new Icon(icon: Icons.extension), leading: new Icon(icon: Icons.extension),
title: new Text("Components"), title: new Text('Components'),
children: <Widget>[ children: <Widget>[
new GalleryItem(title: 'Buttons', builder: () => new ButtonsDemo()), new GalleryItem(title: 'Buttons', builder: () => new ButtonsDemo()),
new GalleryItem(title: 'Cards', builder: () => new CardsDemo()), new GalleryItem(title: 'Cards', builder: () => new CardsDemo()),
...@@ -147,7 +147,7 @@ class GalleryHomeState extends State<GalleryHome> { ...@@ -147,7 +147,7 @@ class GalleryHomeState extends State<GalleryHome> {
), ),
new TwoLevelSublist( new TwoLevelSublist(
leading: new Icon(icon: Icons.color_lens), leading: new Icon(icon: Icons.color_lens),
title: new Text("Style"), title: new Text('Style'),
children: <Widget>[ children: <Widget>[
new GalleryItem(title: 'Colors', builder: () => new ColorsDemo()), new GalleryItem(title: 'Colors', builder: () => new ColorsDemo()),
new GalleryItem(title: 'Typography', builder: () => new TypographyDemo()), new GalleryItem(title: 'Typography', builder: () => new TypographyDemo()),
......
...@@ -8,6 +8,77 @@ import 'package:test/test.dart'; ...@@ -8,6 +8,77 @@ import 'package:test/test.dart';
import '../lib/main.dart' as material_gallery; import '../lib/main.dart' as material_gallery;
// Warning: the following strings must be kept in sync with GalleryHome.
const List<String> demoCategories = const <String>['Demos', 'Components', 'Style'];
const List<String> demoNames = const <String>[
'Weather',
'Fitness',
'Fancy lines',
'Flexible space toolbar',
'Floating action button',
'Buttons',
'Cards',
'Chips',
'Date picker',
'Data tables',
'Dialog',
'Drop-down button',
'Expand/collapse list control',
'Grid',
'Icons',
'Leave-behind list items',
'List',
'Menus',
'Modal bottom sheet',
'Over-scroll',
'Page selector',
'Persistent bottom sheet',
'Progress indicators',
'Scrollable tabs',
'Selection controls',
'Sliders',
'Snackbar',
'Tabs',
'Text fields',
'Time picker',
'Tooltips',
'Colors',
'Typography'
];
Finder byTooltip(WidgetTester tester, String message) {
return find.byElement((Element element) {
Widget widget = element.widget;
if (widget is Tooltip)
return widget.message == message;
return false;
});
}
Finder findNavigationMenuButton(WidgetTester tester) => byTooltip(tester, 'Open navigation menu');
Finder findBackButton(WidgetTester tester) => byTooltip(tester, 'Back');
// Start a gallery demo and then go back. This function assumes that the
// we're starting on home route and that the submenu that contains the demo
// called 'name' is already open.
void smokeDemo(WidgetTester tester, String menuItemText) {
// Ensure that we're (likely to be) on the home page
final Finder navigationMenuButton = findNavigationMenuButton(tester);
expect(tester, hasWidget(navigationMenuButton));
tester.tap(find.text(menuItemText));
tester.pump(); // Launch the demo.
tester.pump(const Duration(seconds: 1)); // Wait until the demo has opened.
// Go back
Finder backButton = findBackButton(tester);
expect(tester, hasWidget(backButton));
tester.tap(backButton);
tester.pump(); // Start the navigator pop "back" operation.
tester.pump(const Duration(seconds: 1)); // Wait until it has finished.
}
void main() { void main() {
test('Material Gallery app smoke test', () { test('Material Gallery app smoke test', () {
testWidgets((WidgetTester tester) { testWidgets((WidgetTester tester) {
...@@ -15,48 +86,45 @@ void main() { ...@@ -15,48 +86,45 @@ void main() {
tester.pump(); // see https://github.com/flutter/flutter/issues/1865 tester.pump(); // see https://github.com/flutter/flutter/issues/1865
tester.pump(); // triggers a frame tester.pump(); // triggers a frame
// Try loading Weather demo // Expand the demo category submenus.
tester.tap(find.text('Demos')); for (String category in demoCategories.reversed) {
tester.tap(find.text(category));
tester.pump(); tester.pump();
tester.pump(const Duration(seconds: 1)); // wait til it's really opened tester.pump(const Duration(seconds: 1)); // Wait until the menu has expanded.
}
tester.tap(find.text('Weather')); final List<double> scrollDeltas = new List<double>();
tester.pump(); double previousY = tester.getTopRight(find.text(demoCategories[0])).y;
tester.pump(const Duration(seconds: 1)); // wait til it's really opened for (String name in demoNames) {
final double y = tester.getTopRight(find.text(name)).y;
scrollDeltas.add(previousY - y);
previousY = y;
}
// Go back // Launch each demo and then scroll that item out of the way.
Finder backButton = find.byElement((Element element) { for (int i = 0; i < demoNames.length; i += 1) {
Widget widget = element.widget; final String name = demoNames[i];
if (widget is Tooltip) print("$name");
return widget.message == 'Back'; smokeDemo(tester, name);
return false; tester.scroll(find.text(name), new Offset(0.0, scrollDeltas[i]));
}); tester.pump();
expect(tester, hasWidget(backButton)); }
tester.tap(backButton);
tester.pump(); // start going back
tester.pump(const Duration(seconds: 1)); // wait til it's finished
// Open menu Finder navigationMenuButton = findNavigationMenuButton(tester);
Finder navigationMenu = find.byElement((Element element) { expect(tester, hasWidget(navigationMenuButton));
Widget widget = element.widget; tester.tap(navigationMenuButton);
if (widget is Tooltip) tester.pump(); // Start opening drawer.
return widget.message == 'Open navigation menu'; tester.pump(const Duration(seconds: 1)); // Wait until it's really opened.
return false;
});
expect(tester, hasWidget(navigationMenu));
tester.tap(navigationMenu);
tester.pump(); // start opening menu
tester.pump(const Duration(seconds: 1)); // wait til it's really opened
// switch theme // switch theme
tester.tap(find.text('Dark')); tester.tap(find.text('Dark'));
tester.pump(); tester.pump();
tester.pump(const Duration(seconds: 1)); // wait til it's changed tester.pump(const Duration(seconds: 1)); // Wait until it's changed.
// switch theme // switch theme
tester.tap(find.text('Light')); tester.tap(find.text('Light'));
tester.pump(); tester.pump();
tester.pump(const Duration(seconds: 1)); // wait til it's changed tester.pump(const Duration(seconds: 1)); // Wait until it's changed.
}); });
}); });
} }
...@@ -215,7 +215,7 @@ class Scaffold extends StatefulWidget { ...@@ -215,7 +215,7 @@ class Scaffold extends StatefulWidget {
this.scrollableKey, this.scrollableKey,
this.appBarBehavior: AppBarBehavior.anchor this.appBarBehavior: AppBarBehavior.anchor
}) : super(key: key) { }) : super(key: key) {
assert((appBarBehavior == AppBarBehavior.scroll) ? scrollableKey != null : true); assert(scrollableKey != null ? (appBarBehavior != AppBarBehavior.anchor) : true);
} }
final AppBar appBar; final AppBar appBar;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment