Unverified Commit 4676c66b authored by Kate Lovett's avatar Kate Lovett Committed by GitHub

Merge branch 'gold' into master

parents 8af81d6a 80344aca
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io' show Platform;
import 'dart:ui'; import 'dart:ui';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
...@@ -823,43 +822,6 @@ void main() { ...@@ -823,43 +822,6 @@ void main() {
); );
}); });
testWidgets('DatePicker golden tests', (WidgetTester tester) async {
await tester.pumpWidget(
CupertinoApp(
home: Center(
child: SizedBox(
width: 400,
height: 400,
child: RepaintBoundary(
child: CupertinoDatePicker(
mode: CupertinoDatePickerMode.dateAndTime,
initialDateTime: DateTime(2019, 1, 1, 4),
onDateTimeChanged: (_) {},
),
)
),
)
)
);
await expectLater(
find.byType(CupertinoDatePicker),
matchesGoldenFile('date_picker_test.datetime.initial.1.png'),
skip: !Platform.isLinux
);
// Slightly drag the hour component to make the current hour off-center.
await tester.drag(find.text('4'), Offset(0, _kRowOffset.dy / 2));
await tester.pump();
await expectLater(
find.byType(CupertinoDatePicker),
matchesGoldenFile('date_picker_test.datetime.drag.1.png'),
skip: !Platform.isLinux
);
});
});
testWidgets('scrollController can be removed or added', (WidgetTester tester) async { testWidgets('scrollController can be removed or added', (WidgetTester tester) async {
final SemanticsHandle handle = tester.ensureSemantics(); final SemanticsHandle handle = tester.ensureSemantics();
int lastSelectedItem; int lastSelectedItem;
...@@ -933,6 +895,35 @@ void main() { ...@@ -933,6 +895,35 @@ void main() {
expect(lastSelectedItem, 1); expect(lastSelectedItem, 1);
handle.dispose(); handle.dispose();
}); });
testWidgets('DatePicker golden tests', (WidgetTester tester) async {
await tester.pumpWidget(
CupertinoApp(
home: SizedBox(
width: 200,
child: CupertinoDatePicker(
mode: CupertinoDatePickerMode.dateAndTime,
initialDateTime: DateTime(2019, 1, 1, 4),
onDateTimeChanged: (_) {},
)
)
)
);
await expectLater(
find.byType(CupertinoDatePicker),
matchesSkiaGoldFile('date_picker_test.datetime.initial.png'),
);
// Slightly drag the hour component to make the current hour off-center.
await tester.drag(find.text('4'), Offset(0, _kRowOffset.dy / 2));
await tester.pump();
await expectLater(
find.byType(CupertinoDatePicker),
matchesSkiaGoldFile('date_picker_test.datetime.drag.png'),
);
});
} }
Widget _buildPicker({ FixedExtentScrollController controller, ValueChanged<int> onSelectedItemChanged }) { Widget _buildPicker({ FixedExtentScrollController controller, ValueChanged<int> onSelectedItemChanged }) {
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:flutter/rendering.dart'; import 'package:flutter/rendering.dart';
import 'package:flutter/services.dart'; import 'package:flutter/services.dart';
...@@ -801,12 +799,9 @@ void main() { ...@@ -801,12 +799,9 @@ void main() {
await expectLater( await expectLater(
find.byType(RepaintBoundary).last, find.byType(RepaintBoundary).last,
matchesGoldenFile('nav_bar_test.standard_title.1.png'), matchesSkiaGoldFile('nav_bar_test.standard_title.png'),
); );
}, },
// TODO(xster): remove once https://github.com/flutter/flutter/issues/17483
// is fixed.
skip: !Platform.isLinux,
); );
testWidgets( testWidgets(
...@@ -835,13 +830,10 @@ void main() { ...@@ -835,13 +830,10 @@ void main() {
await expectLater( await expectLater(
find.byType(RepaintBoundary).last, find.byType(RepaintBoundary).last,
matchesGoldenFile('nav_bar_test.large_title.1.png'), matchesSkiaGoldFile('nav_bar_test.large_title.png'),
); );
}, },
// TODO(xster): remove once https://github.com/flutter/flutter/issues/17483 );
// is fixed.
skip: !Platform.isLinux,
);
testWidgets('NavBar draws a light system bar for a dark background', (WidgetTester tester) async { testWidgets('NavBar draws a light system bar for a dark background', (WidgetTester tester) async {
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io';
import 'package:flutter/widgets.dart'; import 'package:flutter/widgets.dart';
import 'package:flutter/cupertino.dart'; import 'package:flutter/cupertino.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
...@@ -1327,9 +1325,9 @@ void main() { ...@@ -1327,9 +1325,9 @@ void main() {
await expectLater( await expectLater(
find.byType(RepaintBoundary), find.byType(RepaintBoundary),
matchesGoldenFile('segmented_control_test.0.0.png'), matchesSkiaGoldFile('segmented_control_test.0.png'),
); );
}, skip: !Platform.isLinux); });
testWidgets('Golden Test Pressed State', (WidgetTester tester) async { testWidgets('Golden Test Pressed State', (WidgetTester tester) async {
final Map<int, Widget> children = <int, Widget>{}; final Map<int, Widget> children = <int, Widget>{};
...@@ -1365,7 +1363,7 @@ void main() { ...@@ -1365,7 +1363,7 @@ void main() {
await expectLater( await expectLater(
find.byType(RepaintBoundary), find.byType(RepaintBoundary),
matchesGoldenFile('segmented_control_test.1.0.png'), matchesSkiaGoldFile('segmented_control_test.1.png'),
); );
}, skip: !Platform.isLinux); });
} }
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart'; import 'package:flutter/rendering.dart';
...@@ -73,15 +71,15 @@ void main() { ...@@ -73,15 +71,15 @@ void main() {
await pump(FloatingActionButtonLocation.endDocked); await pump(FloatingActionButtonLocation.endDocked);
await expectLater( await expectLater(
find.byKey(key), find.byKey(key),
matchesGoldenFile('bottom_app_bar.custom_shape.1.png'), matchesSkiaGoldFile('bottom_app_bar.custom_shape.1.png'),
); );
await pump(FloatingActionButtonLocation.centerDocked); await pump(FloatingActionButtonLocation.centerDocked);
await tester.pumpAndSettle(); await tester.pumpAndSettle();
await expectLater( await expectLater(
find.byKey(key), find.byKey(key),
matchesGoldenFile('bottom_app_bar.custom_shape.2.png'), matchesSkiaGoldFile('bottom_app_bar.custom_shape.2.png'),
); );
}, skip: !Platform.isLinux); });
testWidgets('color defaults to Theme.bottomAppBarColor', (WidgetTester tester) async { testWidgets('color defaults to Theme.bottomAppBarColor', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io' show Platform;
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart'; import 'package:flutter/rendering.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
...@@ -82,8 +80,7 @@ void main() { ...@@ -82,8 +80,7 @@ void main() {
await expectLater( await expectLater(
find.byKey(_painterKey), find.byKey(_painterKey),
matchesGoldenFile('bottom_app_bar_theme.custom_shape.png'), matchesSkiaGoldFile('bottom_app_bar_theme.custom_shape.png'),
skip: !Platform.isLinux,
); );
}); });
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io';
import 'dart:ui'; import 'dart:ui';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
...@@ -1148,8 +1147,7 @@ void main() { ...@@ -1148,8 +1147,7 @@ void main() {
await tester.pump(const Duration(milliseconds: 30)); await tester.pump(const Duration(milliseconds: 30));
await expectLater( await expectLater(
find.byType(BottomNavigationBar), find.byType(BottomNavigationBar),
matchesGoldenFile('bottom_navigation_bar.shifting_transition.2.$pump.png'), matchesSkiaGoldFile('bottom_navigation_bar.shifting_transition.$pump.png'),
skip: !Platform.isLinux,
); );
} }
}); });
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io' show Platform;
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart'; import 'package:flutter/rendering.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
...@@ -139,8 +137,7 @@ void main() { ...@@ -139,8 +137,7 @@ void main() {
await expectLater( await expectLater(
find.byKey(painterKey), find.byKey(painterKey),
matchesGoldenFile('card_theme.custom_shape.png'), matchesSkiaGoldFile('card_theme.custom_shape.png'),
skip: !Platform.isLinux,
); );
}); });
} }
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io' show Platform;
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart'; import 'package:flutter/rendering.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
...@@ -132,8 +130,7 @@ void main() { ...@@ -132,8 +130,7 @@ void main() {
await expectLater( await expectLater(
find.byKey(_painterKey), find.byKey(_painterKey),
matchesGoldenFile('dialog_theme.dialog_with_custom_border.png'), matchesSkiaGoldFile('dialog_theme.dialog_with_custom_border.png'),
skip: !Platform.isLinux,
); );
}); });
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io';
import 'dart:math' as math; import 'dart:math' as math;
import 'dart:ui' show window; import 'dart:ui' show window;
...@@ -141,8 +140,7 @@ void main() { ...@@ -141,8 +140,7 @@ void main() {
assert(tester.renderObject(buttonFinder).attached); assert(tester.renderObject(buttonFinder).attached);
await expectLater( await expectLater(
find.ancestor(of: buttonFinder, matching: find.byType(RepaintBoundary)).first, find.ancestor(of: buttonFinder, matching: find.byType(RepaintBoundary)).first,
matchesGoldenFile('dropdown_test.default.0.png'), matchesSkiaGoldFile('dropdown_test.default.png'),
skip: !Platform.isLinux,
); );
}); });
...@@ -154,8 +152,7 @@ void main() { ...@@ -154,8 +152,7 @@ void main() {
assert(tester.renderObject(buttonFinder).attached); assert(tester.renderObject(buttonFinder).attached);
await expectLater( await expectLater(
find.ancestor(of: buttonFinder, matching: find.byType(RepaintBoundary)).first, find.ancestor(of: buttonFinder, matching: find.byType(RepaintBoundary)).first,
matchesGoldenFile('dropdown_test.expanded.0.png'), matchesSkiaGoldFile('dropdown_test.expanded.png'),
skip: !Platform.isLinux,
); );
}); });
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io';
import 'dart:ui'; import 'dart:ui';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
...@@ -681,8 +680,7 @@ void main() { ...@@ -681,8 +680,7 @@ void main() {
await tester.pump(const Duration(milliseconds: 1000)); await tester.pump(const Duration(milliseconds: 1000));
await expectLater( await expectLater(
find.byKey(key), find.byKey(key),
matchesGoldenFile('floating_action_button_test.clip.2.png'), // .clip.1.png is obsolete and can be removed matchesSkiaGoldFile('floating_action_button_test.clip.png'),
skip: !Platform.isLinux,
); );
}); });
......
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:async'; import 'dart:async';
import 'dart:io' show Platform;
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart'; import 'package:flutter/rendering.dart';
...@@ -2020,19 +2019,15 @@ void main() { ...@@ -2020,19 +2019,15 @@ void main() {
await tester.pumpWidget(buildFrame(TextDirection.ltr)); await tester.pumpWidget(buildFrame(TextDirection.ltr));
await expectLater( await expectLater(
find.byType(InputDecorator), find.byType(InputDecorator),
matchesGoldenFile('input_decorator.outline_icon_label.ltr.png'), matchesSkiaGoldFile('input_decorator.outline_icon_label.ltr.png'),
skip: !Platform.isLinux,
); );
await tester.pumpWidget(buildFrame(TextDirection.rtl)); await tester.pumpWidget(buildFrame(TextDirection.rtl));
await expectLater( await expectLater(
find.byType(InputDecorator), find.byType(InputDecorator),
matchesGoldenFile('input_decorator.outline_icon_label.rtl.png'), matchesSkiaGoldFile('input_decorator.outline_icon_label.rtl.png'),
skip: !Platform.isLinux,
); );
}, });
skip: !Platform.isLinux,
);
testWidgets('InputDecorationTheme.toString()', (WidgetTester tester) async { testWidgets('InputDecorationTheme.toString()', (WidgetTester tester) async {
// Regression test for https://github.com/flutter/flutter/issues/19305 // Regression test for https://github.com/flutter/flutter/issues/19305
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io' show Platform;
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/painting.dart'; import 'package:flutter/painting.dart';
import 'package:flutter/rendering.dart'; import 'package:flutter/rendering.dart';
...@@ -618,8 +616,7 @@ void main() { ...@@ -618,8 +616,7 @@ void main() {
await expectLater( await expectLater(
find.byKey(painterKey), find.byKey(painterKey),
matchesGoldenFile('material.border_paint_above.png'), matchesSkiaGoldFile('material.border_paint_above.png'),
skip: !Platform.isLinux,
); );
}); });
...@@ -659,8 +656,7 @@ void main() { ...@@ -659,8 +656,7 @@ void main() {
await expectLater( await expectLater(
find.byKey(painterKey), find.byKey(painterKey),
matchesGoldenFile('material.border_paint_below.png'), matchesSkiaGoldFile('material.border_paint_below.png'),
skip: !Platform.isLinux,
); );
}); });
}); });
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io' show Platform;
import 'dart:ui'; import 'dart:ui';
import 'package:flutter/rendering.dart'; import 'package:flutter/rendering.dart';
...@@ -277,8 +276,7 @@ void main() { ...@@ -277,8 +276,7 @@ void main() {
await tester.pumpAndSettle(); await tester.pumpAndSettle();
await expectLater( await expectLater(
find.byKey(painterKey), find.byKey(painterKey),
matchesGoldenFile('radio.ink_ripple.png'), matchesSkiaGoldFile('radio.ink_ripple.png'),
skip: !Platform.isLinux,
); );
}); });
} }
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io' show Platform;
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart'; import 'package:flutter/rendering.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
...@@ -269,8 +267,7 @@ void main() { ...@@ -269,8 +267,7 @@ void main() {
await expectLater( await expectLater(
find.byKey(_painterKey), find.byKey(_painterKey),
matchesGoldenFile('tab_bar_theme.tab_indicator_size_tab.png'), matchesSkiaGoldFile('tab_bar_theme.tab_indicator_size_tab.png'),
skip: !Platform.isLinux,
); );
}); });
...@@ -281,8 +278,7 @@ void main() { ...@@ -281,8 +278,7 @@ void main() {
await expectLater( await expectLater(
find.byKey(_painterKey), find.byKey(_painterKey),
matchesGoldenFile('tab_bar_theme.tab_indicator_size_label.png'), matchesSkiaGoldFile('tab_bar_theme.tab_indicator_size_label.png'),
skip: !Platform.isLinux,
); );
}); });
...@@ -298,8 +294,7 @@ void main() { ...@@ -298,8 +294,7 @@ void main() {
await expectLater( await expectLater(
find.byKey(_painterKey), find.byKey(_painterKey),
matchesGoldenFile('tab_bar_theme.custom_tab_indicator.png'), matchesSkiaGoldFile('tab_bar_theme.custom_tab_indicator.png'),
skip: !Platform.isLinux,
); );
}); });
...@@ -315,8 +310,7 @@ void main() { ...@@ -315,8 +310,7 @@ void main() {
await expectLater( await expectLater(
find.byKey(_painterKey), find.byKey(_painterKey),
matchesGoldenFile('tab_bar_theme.beveled_rect_indicator.png'), matchesSkiaGoldFile('tab_bar_theme.beveled_rect_indicator.png'),
skip: !Platform.isLinux,
); );
}); });
} }
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io' show Platform;
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/painting.dart'; import 'package:flutter/painting.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
...@@ -72,8 +71,7 @@ void main() { ...@@ -72,8 +71,7 @@ void main() {
await expectLater( await expectLater(
find.byType(RepaintBoundary), find.byType(RepaintBoundary),
matchesGoldenFile('continuous_rectangle_border.golden_test_even_radii.png'), matchesSkiaGoldFile('continuous_rectangle_border.golden_test_even_radii.png'),
skip: !Platform.isLinux,
); );
}); });
...@@ -94,8 +92,7 @@ void main() { ...@@ -94,8 +92,7 @@ void main() {
await expectLater( await expectLater(
find.byType(RepaintBoundary), find.byType(RepaintBoundary),
matchesGoldenFile('continuous_rectangle_border.golden_test_varying_radii.png'), matchesSkiaGoldFile('continuous_rectangle_border.golden_test_varying_radii.png'),
skip: !Platform.isLinux,
); );
}); });
...@@ -113,8 +110,7 @@ void main() { ...@@ -113,8 +110,7 @@ void main() {
await expectLater( await expectLater(
find.byType(RepaintBoundary), find.byType(RepaintBoundary),
matchesGoldenFile('continuous_rectangle_border.golden_test_large_radii.png'), matchesSkiaGoldFile('continuous_rectangle_border.golden_test_large_radii.png'),
skip: !Platform.isLinux,
); );
}); });
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io' show Platform;
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
...@@ -51,11 +49,9 @@ void main() { ...@@ -51,11 +49,9 @@ void main() {
await expectLater( await expectLater(
find.byType(RichText), find.byType(RichText),
matchesGoldenFile('localized_fonts.rich_text.styled_text_span.png'), matchesSkiaGoldFile('localized_fonts.rich_text.styled_text_span.png'),
); );
}, });
skip: !Platform.isLinux,
);
testWidgets( testWidgets(
'Text with locale-specific glyphs, ambient locale', 'Text with locale-specific glyphs, ambient locale',
...@@ -103,11 +99,9 @@ void main() { ...@@ -103,11 +99,9 @@ void main() {
await expectLater( await expectLater(
find.byType(Row), find.byType(Row),
matchesGoldenFile('localized_fonts.text_ambient_locale.chars.png'), matchesSkiaGoldFile('localized_fonts.text_ambient_locale.chars.png'),
); );
}, });
skip: !Platform.isLinux,
);
testWidgets( testWidgets(
'Text with locale-specific glyphs, explicit locale', 'Text with locale-specific glyphs, explicit locale',
...@@ -147,10 +141,8 @@ void main() { ...@@ -147,10 +141,8 @@ void main() {
await expectLater( await expectLater(
find.byType(Row), find.byType(Row),
matchesGoldenFile('localized_fonts.text_explicit_locale.chars.png'), matchesSkiaGoldFile('localized_fonts.text_explicit_locale.chars.png'),
); );
}, });
skip: !Platform.isLinux,
);
} }
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io';
import 'dart:ui'; import 'dart:ui';
import 'package:flutter/widgets.dart'; import 'package:flutter/widgets.dart';
...@@ -43,8 +42,7 @@ void main() { ...@@ -43,8 +42,7 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(RepaintBoundary).first, find.byType(RepaintBoundary).first,
matchesGoldenFile('backdrop_filter_test.cull_rect.1.png'), matchesSkiaGoldFile('backdrop_filter_test.cull_rect.png'),
skip: !Platform.isLinux,
); );
}); });
} }
...@@ -356,7 +356,7 @@ void main() { ...@@ -356,7 +356,7 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(RepaintBoundary).first, find.byType(RepaintBoundary).first,
matchesGoldenFile('clip.ClipRect.1.png'), matchesSkiaGoldFile('clip.ClipRect.png'),
); );
}); });
...@@ -396,7 +396,7 @@ void main() { ...@@ -396,7 +396,7 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(RepaintBoundary).first, find.byType(RepaintBoundary).first,
matchesGoldenFile('clip.ClipRectOverlay.1.png'), matchesSkiaGoldFile('clip.ClipRectOverlay.png'),
); );
}); });
...@@ -445,7 +445,7 @@ void main() { ...@@ -445,7 +445,7 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(RepaintBoundary).first, find.byType(RepaintBoundary).first,
matchesGoldenFile('clip.ClipRRect.1.png'), matchesSkiaGoldFile('clip.ClipRRect.png'),
); );
}); });
...@@ -488,7 +488,7 @@ void main() { ...@@ -488,7 +488,7 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(RepaintBoundary).first, find.byType(RepaintBoundary).first,
matchesGoldenFile('clip.ClipOval.1.png'), matchesSkiaGoldFile('clip.ClipOval.png'),
); );
}); });
...@@ -536,7 +536,7 @@ void main() { ...@@ -536,7 +536,7 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(RepaintBoundary).first, find.byType(RepaintBoundary).first,
matchesGoldenFile('clip.ClipPath.1.png'), matchesSkiaGoldFile('clip.ClipPath.png'),
); );
}); });
...@@ -581,7 +581,7 @@ void main() { ...@@ -581,7 +581,7 @@ void main() {
await tester.pumpWidget(genPhysicalModel(Clip.antiAlias)); await tester.pumpWidget(genPhysicalModel(Clip.antiAlias));
await expectLater( await expectLater(
find.byType(RepaintBoundary).first, find.byType(RepaintBoundary).first,
matchesGoldenFile('clip.PhysicalModel.antiAlias.1.png'), matchesSkiaGoldFile('clip.PhysicalModel.antiAlias.png'),
); );
}); });
...@@ -589,7 +589,7 @@ void main() { ...@@ -589,7 +589,7 @@ void main() {
await tester.pumpWidget(genPhysicalModel(Clip.hardEdge)); await tester.pumpWidget(genPhysicalModel(Clip.hardEdge));
await expectLater( await expectLater(
find.byType(RepaintBoundary).first, find.byType(RepaintBoundary).first,
matchesGoldenFile('clip.PhysicalModel.hardEdge.1.png'), matchesSkiaGoldFile('clip.PhysicalModel.hardEdge.png'),
); );
}); });
...@@ -599,7 +599,7 @@ void main() { ...@@ -599,7 +599,7 @@ void main() {
await tester.pumpWidget(genPhysicalModel(Clip.antiAliasWithSaveLayer)); await tester.pumpWidget(genPhysicalModel(Clip.antiAliasWithSaveLayer));
await expectLater( await expectLater(
find.byType(RepaintBoundary).first, find.byType(RepaintBoundary).first,
matchesGoldenFile('clip.PhysicalModel.antiAliasWithSaveLayer.png'), matchesSkiaGoldFile('clip.PhysicalModel.antiAliasWithSaveLayer.png'),
); );
}); });
...@@ -641,7 +641,7 @@ void main() { ...@@ -641,7 +641,7 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(RepaintBoundary).first, find.byType(RepaintBoundary).first,
matchesGoldenFile('clip.PhysicalModel.default.1.png'), matchesSkiaGoldFile('clip.PhysicalModel.default.png'),
); );
}); });
...@@ -690,7 +690,7 @@ void main() { ...@@ -690,7 +690,7 @@ void main() {
await tester.pumpWidget(genPhysicalShape(Clip.antiAlias)); await tester.pumpWidget(genPhysicalShape(Clip.antiAlias));
await expectLater( await expectLater(
find.byType(RepaintBoundary).first, find.byType(RepaintBoundary).first,
matchesGoldenFile('clip.PhysicalShape.antiAlias.1.png'), matchesSkiaGoldFile('clip.PhysicalShape.antiAlias.png'),
); );
}); });
...@@ -698,7 +698,7 @@ void main() { ...@@ -698,7 +698,7 @@ void main() {
await tester.pumpWidget(genPhysicalShape(Clip.hardEdge)); await tester.pumpWidget(genPhysicalShape(Clip.hardEdge));
await expectLater( await expectLater(
find.byType(RepaintBoundary).first, find.byType(RepaintBoundary).first,
matchesGoldenFile('clip.PhysicalShape.hardEdge.1.png'), matchesSkiaGoldFile('clip.PhysicalShape.hardEdge.png'),
); );
}); });
...@@ -706,7 +706,7 @@ void main() { ...@@ -706,7 +706,7 @@ void main() {
await tester.pumpWidget(genPhysicalShape(Clip.antiAliasWithSaveLayer)); await tester.pumpWidget(genPhysicalShape(Clip.antiAliasWithSaveLayer));
await expectLater( await expectLater(
find.byType(RepaintBoundary).first, find.byType(RepaintBoundary).first,
matchesGoldenFile('clip.PhysicalShape.antiAliasWithSaveLayer.png'), matchesSkiaGoldFile('clip.PhysicalShape.antiAliasWithSaveLayer.png'),
); );
}); });
...@@ -752,7 +752,7 @@ void main() { ...@@ -752,7 +752,7 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(RepaintBoundary).first, find.byType(RepaintBoundary).first,
matchesGoldenFile('clip.PhysicalShape.default.1.png'), matchesSkiaGoldFile('clip.PhysicalShape.default.png'),
); );
}); });
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io';
import 'package:flutter/foundation.dart'; import 'package:flutter/foundation.dart';
import 'package:flutter/rendering.dart'; import 'package:flutter/rendering.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
...@@ -92,9 +90,9 @@ void main() { ...@@ -92,9 +90,9 @@ void main() {
await expectLater( await expectLater(
find.byKey(const ValueKey<int>(1)), find.byKey(const ValueKey<int>(1)),
matchesGoldenFile('editable_text_test.0.3.png'), matchesSkiaGoldFile('editable_text_test.0.png'),
); );
}, skip: !Platform.isLinux); });
testWidgets('cursor layout has correct radius', (WidgetTester tester) async { testWidgets('cursor layout has correct radius', (WidgetTester tester) async {
final GlobalKey<EditableTextState> editableTextKey = GlobalKey<EditableTextState>(); final GlobalKey<EditableTextState> editableTextKey = GlobalKey<EditableTextState>();
...@@ -143,9 +141,9 @@ void main() { ...@@ -143,9 +141,9 @@ void main() {
await expectLater( await expectLater(
find.byKey(const ValueKey<int>(1)), find.byKey(const ValueKey<int>(1)),
matchesGoldenFile('editable_text_test.1.3.png'), matchesSkiaGoldFile('editable_text_test.1.png'),
); );
}, skip: !Platform.isLinux); });
testWidgets('Cursor animates on iOS', (WidgetTester tester) async { testWidgets('Cursor animates on iOS', (WidgetTester tester) async {
final Widget widget = MaterialApp( final Widget widget = MaterialApp(
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io';
import 'package:flutter/rendering.dart'; import 'package:flutter/rendering.dart';
import 'package:flutter/widgets.dart'; import 'package:flutter/widgets.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
...@@ -22,8 +20,7 @@ void main() { ...@@ -22,8 +20,7 @@ void main() {
await expectLater( await expectLater(
find.byType(RepaintBoundary), find.byType(RepaintBoundary),
matchesGoldenFile('invert_colors_test.0.png'), matchesSkiaGoldFile('invert_colors_test.0.png'),
skip: !Platform.isLinux,
); );
}); });
...@@ -41,8 +38,7 @@ void main() { ...@@ -41,8 +38,7 @@ void main() {
await expectLater( await expectLater(
find.byType(RepaintBoundary), find.byType(RepaintBoundary),
matchesGoldenFile('invert_colors_test.1.png'), matchesSkiaGoldFile('invert_colors_test.1.png'),
skip: !Platform.isLinux,
); );
}); });
} }
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
import 'package:flutter/foundation.dart'; import 'package:flutter/foundation.dart';
import 'package:flutter/rendering.dart'; import 'package:flutter/rendering.dart';
...@@ -537,8 +535,7 @@ void main() { ...@@ -537,8 +535,7 @@ void main() {
await expectLater( await expectLater(
find.byKey(const Key('list_wheel_scroll_view')), find.byKey(const Key('list_wheel_scroll_view')),
matchesGoldenFile('list_wheel_scroll_view.center_child.magnified.png'), matchesSkiaGoldFile('list_wheel_scroll_view.center_child.magnified.png'),
skip: !Platform.isLinux,
); );
}); });
...@@ -592,8 +589,7 @@ void main() { ...@@ -592,8 +589,7 @@ void main() {
await expectLater( await expectLater(
find.byKey(const Key('list_wheel_scroll_view')), find.byKey(const Key('list_wheel_scroll_view')),
matchesGoldenFile('list_wheel_scroll_view.curved_wheel.left.png'), matchesSkiaGoldFile('list_wheel_scroll_view.curved_wheel.left.png'),
skip: !Platform.isLinux,
); );
}); });
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io';
import 'package:flutter/widgets.dart'; import 'package:flutter/widgets.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
...@@ -179,8 +177,7 @@ void main() { ...@@ -179,8 +177,7 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(RepaintBoundary).first, find.byType(RepaintBoundary).first,
matchesGoldenFile('opacity_test.offset.1.png'), matchesSkiaGoldFile('opacity_test.offset.png'),
skip: !Platform.isLinux,
); );
}); });
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io' show Platform;
import 'dart:math' as math show pi; import 'dart:math' as math show pi;
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
...@@ -111,8 +110,7 @@ void main() { ...@@ -111,8 +110,7 @@ void main() {
expect(exception.diagnostics.first.toString(), startsWith('A RenderFlex overflowed by ')); expect(exception.diagnostics.first.toString(), startsWith('A RenderFlex overflowed by '));
await expectLater( await expectLater(
find.byKey(key), find.byKey(key),
matchesGoldenFile('physical_model_overflow.png'), matchesSkiaGoldFile('physical_model_overflow.png'),
skip: !Platform.isLinux,
); );
}); });
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io' show Platform;
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
...@@ -25,18 +23,15 @@ void main() { ...@@ -25,18 +23,15 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(Container), find.byType(Container),
matchesGoldenFile('shadow.BoxDecoration.disabled.png'), matchesSkiaGoldFile('shadow.BoxDecoration.disabled.png'),
); );
debugDisableShadows = false; debugDisableShadows = false;
tester.binding.reassembleApplication(); tester.binding.reassembleApplication();
await tester.pump(); await tester.pump();
if (Platform.isLinux) { await expectLater(
// TODO(ianh): use the skip argument instead once that doesn't hang, https://github.com/dart-lang/test/issues/830 find.byType(Container),
await expectLater( matchesSkiaGoldFile('shadow.BoxDecoration.enabled.png'),
find.byType(Container), );
matchesGoldenFile('shadow.BoxDecoration.enabled.png'),
); // shadows render differently on different platforms
}
debugDisableShadows = true; debugDisableShadows = true;
}); });
...@@ -61,11 +56,11 @@ void main() { ...@@ -61,11 +56,11 @@ void main() {
await tester.pumpWidget(build(elevation)); await tester.pumpWidget(build(elevation));
await expectLater( await expectLater(
find.byType(Container), find.byType(Container),
matchesGoldenFile('shadow.ShapeDecoration.$elevation.png'), matchesSkiaGoldFile('shadow.ShapeDecoration.$elevation.png'),
); );
} }
debugDisableShadows = true; debugDisableShadows = true;
}, skip: !Platform.isLinux); // shadows render differently on different platforms });
testWidgets('Shadows with PhysicalLayer', (WidgetTester tester) async { testWidgets('Shadows with PhysicalLayer', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
...@@ -88,18 +83,15 @@ void main() { ...@@ -88,18 +83,15 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(Container), find.byType(Container),
matchesGoldenFile('shadow.PhysicalModel.disabled.png'), matchesSkiaGoldFile('shadow.PhysicalModel.disabled.0.png'),
); );
debugDisableShadows = false; debugDisableShadows = false;
tester.binding.reassembleApplication(); tester.binding.reassembleApplication();
await tester.pump(); await tester.pump();
if (Platform.isLinux) { await expectLater(
// TODO(ianh): use the skip argument instead once that doesn't hang, https://github.com/dart-lang/test/issues/830 find.byType(Container),
await expectLater( matchesSkiaGoldFile('shadow.PhysicalModel.enabled.png'),
find.byType(Container), );
matchesGoldenFile('shadow.PhysicalModel.enabled.png'),
); // shadows render differently on different platforms
}
debugDisableShadows = true; debugDisableShadows = true;
}); });
...@@ -128,9 +120,9 @@ void main() { ...@@ -128,9 +120,9 @@ void main() {
await tester.pumpWidget(build(elevation.toDouble())); await tester.pumpWidget(build(elevation.toDouble()));
await expectLater( await expectLater(
find.byType(Container), find.byType(Container),
matchesGoldenFile('shadow.PhysicalShape.$elevation.1.png'), matchesSkiaGoldFile('shadow.PhysicalModel.disabled.1.$elevation.png'),
); );
} }
debugDisableShadows = true; debugDisableShadows = true;
}, skip: !Platform.isLinux); // shadows render differently on different platforms });
} }
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io' show Platform;
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart'; import 'package:flutter/widgets.dart';
...@@ -31,7 +29,7 @@ void main() { ...@@ -31,7 +29,7 @@ void main() {
await expectLater( await expectLater(
find.byType(Container), find.byType(Container),
matchesGoldenFile('text_golden.Centered.png'), matchesSkiaGoldFile('text_golden.Centered.png'),
); );
await tester.pumpWidget( await tester.pumpWidget(
...@@ -55,9 +53,9 @@ void main() { ...@@ -55,9 +53,9 @@ void main() {
await expectLater( await expectLater(
find.byType(Container), find.byType(Container),
matchesGoldenFile('text_golden.Centered.wrap.png'), matchesSkiaGoldFile('text_golden.Centered.wrap.png'),
); );
}, skip: !Platform.isLinux); });
testWidgets('Text Foreground', (WidgetTester tester) async { testWidgets('Text Foreground', (WidgetTester tester) async {
...@@ -86,7 +84,7 @@ void main() { ...@@ -86,7 +84,7 @@ void main() {
await expectLater( await expectLater(
find.byType(RepaintBoundary), find.byType(RepaintBoundary),
matchesGoldenFile('text_golden.Foreground.gradient.png'), matchesSkiaGoldFile('text_golden.Foreground.gradient.png'),
); );
await tester.pumpWidget( await tester.pumpWidget(
...@@ -108,7 +106,7 @@ void main() { ...@@ -108,7 +106,7 @@ void main() {
await expectLater( await expectLater(
find.byType(RepaintBoundary), find.byType(RepaintBoundary),
matchesGoldenFile('text_golden.Foreground.stroke.png'), matchesSkiaGoldFile('text_golden.Foreground.stroke.png'),
); );
await tester.pumpWidget( await tester.pumpWidget(
...@@ -131,9 +129,9 @@ void main() { ...@@ -131,9 +129,9 @@ void main() {
await expectLater( await expectLater(
find.byType(RepaintBoundary), find.byType(RepaintBoundary),
matchesGoldenFile('text_golden.Foreground.stroke_and_gradient.png'), matchesSkiaGoldFile('text_golden.Foreground.stroke_and_gradient.png'),
); );
}, skip: !Platform.isLinux); });
// TODO(garyq): This test requires an update when the background // TODO(garyq): This test requires an update when the background
// drawing from the beginning of the line bug is fixed. The current // drawing from the beginning of the line bug is fixed. The current
...@@ -181,9 +179,9 @@ void main() { ...@@ -181,9 +179,9 @@ void main() {
await expectLater( await expectLater(
find.byType(RepaintBoundary), find.byType(RepaintBoundary),
matchesGoldenFile('text_golden.Background.png'), matchesSkiaGoldFile('text_golden.Background.png'),
); );
}, skip: !Platform.isLinux); });
testWidgets('Text Fade', (WidgetTester tester) async { testWidgets('Text Fade', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
...@@ -217,9 +215,9 @@ void main() { ...@@ -217,9 +215,9 @@ void main() {
await expectLater( await expectLater(
find.byType(RepaintBoundary).first, find.byType(RepaintBoundary).first,
matchesGoldenFile('text_golden.Fade.1.png'), matchesSkiaGoldFile('text_golden.Fade.1.png'),
); );
}, skip: !Platform.isLinux); });
testWidgets('Default Strut text', (WidgetTester tester) async { testWidgets('Default Strut text', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
...@@ -242,10 +240,9 @@ void main() { ...@@ -242,10 +240,9 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(Container), find.byType(Container),
matchesGoldenFile('text_golden.StrutDefault.png'), matchesSkiaGoldFile('text_golden.StrutDefault.png'),
); );
}, skip: true); // Should only be on linux (skip: !Platform.isLinux). });
// Disabled for now until font inconsistency is resolved.
testWidgets('Strut text 1', (WidgetTester tester) async { testWidgets('Strut text 1', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
...@@ -270,10 +267,9 @@ void main() { ...@@ -270,10 +267,9 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(Container), find.byType(Container),
matchesGoldenFile('text_golden.Strut.1.1.png'), matchesSkiaGoldFile('text_golden.Strut.1.png'),
); );
}, skip: true); // Should only be on linux (skip: !Platform.isLinux). });
// Disabled for now until font inconsistency is resolved.
testWidgets('Strut text 2', (WidgetTester tester) async { testWidgets('Strut text 2', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
...@@ -299,10 +295,9 @@ void main() { ...@@ -299,10 +295,9 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(Container), find.byType(Container),
matchesGoldenFile('text_golden.Strut.2.1.png'), matchesSkiaGoldFile('text_golden.Strut.2.png'),
); );
}, skip: true); // Should only be on linux (skip: !Platform.isLinux). });
// Disabled for now until font inconsistency is resolved.
testWidgets('Strut text rich', (WidgetTester tester) async { testWidgets('Strut text rich', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
...@@ -351,10 +346,9 @@ void main() { ...@@ -351,10 +346,9 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(Container), find.byType(Container),
matchesGoldenFile('text_golden.Strut.3.1.png'), matchesSkiaGoldFile('text_golden.Strut.3.png'),
); );
}, skip: true); // Should only be on linux (skip: !Platform.isLinux). });
// Disabled for now until font inconsistency is resolved.
testWidgets('Strut text font fallback', (WidgetTester tester) async { testWidgets('Strut text font fallback', (WidgetTester tester) async {
// Font Fallback // Font Fallback
...@@ -387,10 +381,9 @@ void main() { ...@@ -387,10 +381,9 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(Container), find.byType(Container),
matchesGoldenFile('text_golden.Strut.4.1.png'), matchesSkiaGoldFile('text_golden.Strut.4.png'),
); );
}, skip: true); // Should only be on linux (skip: !Platform.isLinux). });
// Disabled for now until font inconsistency is resolved.
testWidgets('Strut text rich forceStrutHeight', (WidgetTester tester) async { testWidgets('Strut text rich forceStrutHeight', (WidgetTester tester) async {
await tester.pumpWidget( await tester.pumpWidget(
...@@ -439,10 +432,9 @@ void main() { ...@@ -439,10 +432,9 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(Container), find.byType(Container),
matchesGoldenFile('text_golden.StrutForce.1.1.png'), matchesSkiaGoldFile('text_golden.StrutForce.1.png'),
); );
}, skip: true); // Should only be on linux (skip: !Platform.isLinux). });
// Disabled for now until font inconsistency is resolved.
testWidgets('Decoration thickness', (WidgetTester tester) async { testWidgets('Decoration thickness', (WidgetTester tester) async {
final TextDecoration allDecorations = TextDecoration.combine( final TextDecoration allDecorations = TextDecoration.combine(
...@@ -478,9 +470,9 @@ void main() { ...@@ -478,9 +470,9 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(Container), find.byType(Container),
matchesGoldenFile('text_golden.Decoration.1.0.png'), matchesSkiaGoldFile('text_golden.Decoration.1.png'),
); );
}, skip: !Platform.isLinux); // Coretext uses different thicknesses for decoration });
testWidgets('Decoration thickness', (WidgetTester tester) async { testWidgets('Decoration thickness', (WidgetTester tester) async {
final TextDecoration allDecorations = TextDecoration.combine( final TextDecoration allDecorations = TextDecoration.combine(
...@@ -517,7 +509,7 @@ void main() { ...@@ -517,7 +509,7 @@ void main() {
); );
await expectLater( await expectLater(
find.byType(Container), find.byType(Container),
matchesGoldenFile('text_golden.DecorationThickness.1.0.png'), matchesSkiaGoldFile('text_golden.DecorationThickness.1.png'),
); );
}, skip: !Platform.isLinux); // Coretext uses different thicknesses for decoration });
} }
...@@ -1896,8 +1896,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -1896,8 +1896,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
expect(expectedChildLayerCount, equals(2)); expect(expectedChildLayerCount, equals(2));
await expectLater( await expectLater(
layer.toImage(renderObject.semanticBounds.inflate(50.0)), layer.toImage(renderObject.semanticBounds.inflate(50.0)),
matchesGoldenFile('inspector.repaint_boundary_margin.png'), matchesSkiaGoldFile('inspector.repaint_boundary_margin.png'),
skip: !Platform.isLinux,
); );
// Regression test for how rendering with a pixel scale other than 1.0 // Regression test for how rendering with a pixel scale other than 1.0
...@@ -1907,8 +1906,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -1907,8 +1906,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
renderObject.semanticBounds.inflate(50.0), renderObject.semanticBounds.inflate(50.0),
pixelRatio: 0.5, pixelRatio: 0.5,
), ),
matchesGoldenFile('inspector.repaint_boundary_margin_small.png'), matchesSkiaGoldFile('inspector.repaint_boundary_margin_small.png'),
skip: !Platform.isLinux,
); );
await expectLater( await expectLater(
...@@ -1916,8 +1914,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -1916,8 +1914,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
renderObject.semanticBounds.inflate(50.0), renderObject.semanticBounds.inflate(50.0),
pixelRatio: 2.0, pixelRatio: 2.0,
), ),
matchesGoldenFile('inspector.repaint_boundary_margin_large.png'), matchesSkiaGoldFile('inspector.repaint_boundary_margin_large.png'),
skip: !Platform.isLinux,
); );
final Layer layerParent = layer.parent; final Layer layerParent = layer.parent;
...@@ -1932,8 +1929,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -1932,8 +1929,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
width: 300.0, width: 300.0,
height: 300.0, height: 300.0,
), ),
matchesGoldenFile('inspector.repaint_boundary.png'), matchesSkiaGoldFile('inspector.repaint_boundary.png'),
skip: !Platform.isLinux,
); );
// Verify that taking a screenshot didn't change the layers associated with // Verify that taking a screenshot didn't change the layers associated with
...@@ -1950,8 +1946,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -1950,8 +1946,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
height: 500.0, height: 500.0,
margin: 50.0, margin: 50.0,
), ),
matchesGoldenFile('inspector.repaint_boundary_margin.png'), matchesSkiaGoldFile('inspector.repaint_boundary_margin.png'),
skip: !Platform.isLinux,
); );
// Verify that taking a screenshot didn't change the layers associated with // Verify that taking a screenshot didn't change the layers associated with
...@@ -1971,8 +1966,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -1971,8 +1966,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
height: 300.0, height: 300.0,
debugPaint: true, debugPaint: true,
), ),
matchesGoldenFile('inspector.repaint_boundary_debugPaint.png'), matchesSkiaGoldFile('inspector.repaint_boundary_debugPaint.png'),
skip: !Platform.isLinux,
); );
// Verify that taking a screenshot with debug paint on did not change // Verify that taking a screenshot with debug paint on did not change
// the number of children the layer has. // the number of children the layer has.
...@@ -1982,8 +1976,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -1982,8 +1976,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
// hasn't changed the regular render of the widget. // hasn't changed the regular render of the widget.
await expectLater( await expectLater(
find.byType(RepaintBoundaryWithDebugPaint), find.byType(RepaintBoundaryWithDebugPaint),
matchesGoldenFile('inspector.repaint_boundary.png'), matchesSkiaGoldFile('inspector.repaint_boundary.png'),
skip: !Platform.isLinux,
); );
expect(renderObject.debugLayer, equals(layer)); expect(renderObject.debugLayer, equals(layer));
...@@ -1996,8 +1989,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -1996,8 +1989,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
width: 100.0, width: 100.0,
height: 100.0, height: 100.0,
), ),
matchesGoldenFile('inspector.container.png'), matchesSkiaGoldFile('inspector.container.png'),
skip: !Platform.isLinux,
); );
await expectLater( await expectLater(
...@@ -2007,8 +1999,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -2007,8 +1999,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
height: 100.0, height: 100.0,
debugPaint: true, debugPaint: true,
), ),
matchesGoldenFile('inspector.container_debugPaint.png'), matchesSkiaGoldFile('inspector.container_debugPaint.png'),
skip: !Platform.isLinux,
); );
{ {
...@@ -2028,8 +2019,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -2028,8 +2019,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
height: 100.0, height: 100.0,
debugPaint: true, debugPaint: true,
), ),
matchesGoldenFile('inspector.container_debugPaint.png'), matchesSkiaGoldFile('inspector.container_debugPaint.png'),
skip: !Platform.isLinux,
); );
expect(container.debugNeedsLayout, isFalse); expect(container.debugNeedsLayout, isFalse);
} }
...@@ -2041,8 +2031,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -2041,8 +2031,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
width: 50.0, width: 50.0,
height: 100.0, height: 100.0,
), ),
matchesGoldenFile('inspector.container_small.png'), matchesSkiaGoldFile('inspector.container_small.png'),
skip: !Platform.isLinux,
); );
await expectLater( await expectLater(
...@@ -2052,8 +2041,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -2052,8 +2041,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
height: 400.0, height: 400.0,
maxPixelRatio: 3.0, maxPixelRatio: 3.0,
), ),
matchesGoldenFile('inspector.container_large.png'), matchesSkiaGoldFile('inspector.container_large.png'),
skip: !Platform.isLinux,
); );
// This screenshot will show the clip rect debug paint but no other // This screenshot will show the clip rect debug paint but no other
...@@ -2065,8 +2053,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -2065,8 +2053,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
height: 100.0, height: 100.0,
debugPaint: true, debugPaint: true,
), ),
matchesGoldenFile('inspector.clipRect_debugPaint.png'), matchesSkiaGoldFile('inspector.clipRect_debugPaint.png'),
skip: !Platform.isLinux,
); );
final Element clipRect = find.byType(ClipRRect).evaluate().single; final Element clipRect = find.byType(ClipRRect).evaluate().single;
...@@ -2080,10 +2067,10 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -2080,10 +2067,10 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
); );
// Add a margin so that the clip icon shows up in the screenshot. // Add a margin so that the clip icon shows up in the screenshot.
// This golden image is platform dependent due to the clip icon. // This golden image is platform dependent due to the clip icon.
final String platform = Platform.operatingSystem;
await expectLater( await expectLater(
clipRectScreenshot, clipRectScreenshot,
matchesGoldenFile('inspector.clipRect_debugPaint_margin.png'), matchesSkiaGoldFile('inspector.clipRect_debugPaint_margin.$platform.png'),
skip: !Platform.isLinux,
); );
// Verify we get the same image if we go through the service extension // Verify we get the same image if we go through the service extension
...@@ -2122,8 +2109,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -2122,8 +2109,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
height: 300.0, height: 300.0,
debugPaint: true, debugPaint: true,
), ),
matchesGoldenFile('inspector.padding_debugPaint.png'), matchesSkiaGoldFile('inspector.padding_debugPaint.png'),
skip: !Platform.isLinux,
); );
// The bounds for this box crop its rendered content. // The bounds for this box crop its rendered content.
...@@ -2134,8 +2120,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -2134,8 +2120,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
height: 300.0, height: 300.0,
debugPaint: true, debugPaint: true,
), ),
matchesGoldenFile('inspector.sizedBox_debugPaint.1.png'), matchesSkiaGoldFile('inspector.sizedBox_debugPaint.png'),
skip: !Platform.isLinux,
); );
// Verify that setting a margin includes the previously cropped content. // Verify that setting a margin includes the previously cropped content.
...@@ -2147,8 +2132,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -2147,8 +2132,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
margin: 50.0, margin: 50.0,
debugPaint: true, debugPaint: true,
), ),
matchesGoldenFile('inspector.sizedBox_debugPaint_margin.png'), matchesSkiaGoldFile('inspector.sizedBox_debugPaint_margin.png'),
skip: !Platform.isLinux,
); );
}); });
...@@ -2219,8 +2203,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -2219,8 +2203,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
await expectLater( await expectLater(
find.byKey(mainStackKey), find.byKey(mainStackKey),
matchesGoldenFile('inspector.composited_transform.only_offsets.png'), matchesSkiaGoldFile('inspector.composited_transform.only_offsets.png'),
skip: !Platform.isLinux,
); );
await expectLater( await expectLater(
...@@ -2229,14 +2212,12 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -2229,14 +2212,12 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
width: 5000.0, width: 5000.0,
height: 500.0, height: 500.0,
), ),
matchesGoldenFile('inspector.composited_transform.only_offsets_follower.png'), matchesSkiaGoldFile('inspector.composited_transform.only_offsets_follower.png'),
skip: !Platform.isLinux,
); );
await expectLater( await expectLater(
WidgetInspectorService.instance.screenshot(find.byType(Stack).evaluate().first, width: 300.0, height: 300.0), WidgetInspectorService.instance.screenshot(find.byType(Stack).evaluate().first, width: 300.0, height: 300.0),
matchesGoldenFile('inspector.composited_transform.only_offsets_small.1.png'), matchesSkiaGoldFile('inspector.composited_transform.only_offsets_small.png'),
skip: !Platform.isLinux,
); );
await expectLater( await expectLater(
...@@ -2245,8 +2226,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -2245,8 +2226,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
width: 500.0, width: 500.0,
height: 500.0, height: 500.0,
), ),
matchesGoldenFile('inspector.composited_transform.only_offsets_target.png'), matchesSkiaGoldFile('inspector.composited_transform.only_offsets_target.png'),
skip: !Platform.isLinux,
); );
}); });
...@@ -2318,8 +2298,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -2318,8 +2298,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
// screenshots of specific subtrees are reasonable. // screenshots of specific subtrees are reasonable.
await expectLater( await expectLater(
find.byKey(mainStackKey), find.byKey(mainStackKey),
matchesGoldenFile('inspector.composited_transform.with_rotations.png'), matchesSkiaGoldFile('inspector.composited_transform.with_rotations.png'),
skip: !Platform.isLinux,
); );
await expectLater( await expectLater(
...@@ -2328,8 +2307,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -2328,8 +2307,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
width: 500.0, width: 500.0,
height: 500.0, height: 500.0,
), ),
matchesGoldenFile('inspector.composited_transform.with_rotations_small.png'), matchesSkiaGoldFile('inspector.composited_transform.with_rotations_small.png'),
skip: !Platform.isLinux,
); );
await expectLater( await expectLater(
...@@ -2338,8 +2316,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -2338,8 +2316,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
width: 500.0, width: 500.0,
height: 500.0, height: 500.0,
), ),
matchesGoldenFile('inspector.composited_transform.with_rotations_target.png'), matchesSkiaGoldFile('inspector.composited_transform.with_rotations_target.png'),
skip: !Platform.isLinux,
); );
await expectLater( await expectLater(
...@@ -2348,8 +2325,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService { ...@@ -2348,8 +2325,7 @@ class TestWidgetInspectorService extends Object with WidgetInspectorService {
width: 500.0, width: 500.0,
height: 500.0, height: 500.0,
), ),
matchesGoldenFile('inspector.composited_transform.with_rotations_follower.png'), matchesSkiaGoldFile('inspector.composited_transform.with_rotations_follower.png'),
skip: !Platform.isLinux,
); );
// Make sure taking screenshots hasn't modified the positions of the // Make sure taking screenshots hasn't modified the positions of the
......
...@@ -3,16 +3,20 @@ ...@@ -3,16 +3,20 @@
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:async'; import 'dart:async';
import 'dart:io';
import 'dart:typed_data'; import 'dart:typed_data';
import 'package:file/file.dart'; import 'package:file/file.dart';
import 'package:file/local.dart'; import 'package:file/local.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
import 'package:meta/meta.dart'; import 'package:meta/meta.dart';
import 'package:test_api/test_api.dart' as test_package show TestFailure;
import 'package:flutter_goldens_client/client.dart'; import 'package:flutter_goldens_client/client.dart';
export 'package:flutter_goldens_client/client.dart'; export 'package:flutter_goldens_client/client.dart';
const String _kFlutterRootKey = 'FLUTTER_ROOT';
/// Main method that can be used in a `flutter_test_config.dart` file to set /// Main method that can be used in a `flutter_test_config.dart` file to set
/// [goldenFileComparator] to an instance of [FlutterGoldenFileComparator] that /// [goldenFileComparator] to an instance of [FlutterGoldenFileComparator] that
/// works for the current test. /// works for the current test.
...@@ -25,12 +29,12 @@ Future<void> main(FutureOr<void> testMain()) async { ...@@ -25,12 +29,12 @@ Future<void> main(FutureOr<void> testMain()) async {
/// ///
/// Within the https://github.com/flutter/flutter repository, it's important /// Within the https://github.com/flutter/flutter repository, it's important
/// not to check-in binaries in order to keep the size of the repository to a /// not to check-in binaries in order to keep the size of the repository to a
/// minimum. To satisfy this requirement, this comparator retrieves the golden /// minimum. To satisfy this requirement, this comparator uses the
/// files from a sibling repository, `flutter/goldens`. /// [SkiaGoldClient] to upload widgets for framework-related golden tests and
/// process results.
/// ///
/// This comparator will locally clone the `flutter/goldens` repository into /// This comparator will instantiate the [SkiaGoldClient] and process the
/// the `$FLUTTER_ROOT/bin/cache/pkg/goldens` folder, then perform the comparison against /// results of the test.
/// the files therein.
class FlutterGoldenFileComparator implements GoldenFileComparator { class FlutterGoldenFileComparator implements GoldenFileComparator {
/// Creates a [FlutterGoldenFileComparator] that will resolve golden file /// Creates a [FlutterGoldenFileComparator] that will resolve golden file
/// URIs relative to the specified [basedir]. /// URIs relative to the specified [basedir].
...@@ -49,48 +53,51 @@ class FlutterGoldenFileComparator implements GoldenFileComparator { ...@@ -49,48 +53,51 @@ class FlutterGoldenFileComparator implements GoldenFileComparator {
@visibleForTesting @visibleForTesting
final FileSystem fs; final FileSystem fs;
/// Instance of the [SkiaGoldClient] for executing tests.
final SkiaGoldClient _skiaClient = SkiaGoldClient();
/// Creates a new [FlutterGoldenFileComparator] that mirrors the relative /// Creates a new [FlutterGoldenFileComparator] that mirrors the relative
/// path resolution of the default [goldenFileComparator]. /// path resolution of the default [goldenFileComparator].
/// ///
/// By the time the future completes, the clone of the `flutter/goldens` /// The [defaultComparator] parameter is visible for testing
/// repository is guaranteed to be ready use.
///
/// The [goldens] and [defaultComparator] parameters are visible for testing
/// purposes only. /// purposes only.
static Future<FlutterGoldenFileComparator> fromDefaultComparator({ static Future<FlutterGoldenFileComparator> fromDefaultComparator({
GoldensClient goldens,
LocalFileComparator defaultComparator, LocalFileComparator defaultComparator,
}) async { }) async {
defaultComparator ??= goldenFileComparator; defaultComparator ??= goldenFileComparator;
// Prepare the goldens repo.
goldens ??= GoldensClient();
await goldens.prepare();
// Calculate the appropriate basedir for the current test context. // Calculate the appropriate basedir for the current test context.
final FileSystem fs = goldens.fs; const FileSystem fs = LocalFileSystem();
final Directory testDirectory = fs.directory(defaultComparator.basedir); final Directory testDirectory = fs.directory(defaultComparator.basedir);
final String testDirectoryRelativePath = fs.path.relative(testDirectory.path, from: goldens.flutterRoot.path); final Directory flutterRoot = fs.directory(Platform.environment[_kFlutterRootKey]);
return FlutterGoldenFileComparator(goldens.repositoryRoot.childDirectory(testDirectoryRelativePath).uri); final Directory goldenRoot = flutterRoot.childDirectory(fs.path.join(
'bin',
'cache',
'pkg',
'goldens',
));
final String testDirectoryRelativePath = fs.path.relative(
testDirectory.path,
from: flutterRoot.path,
);
return FlutterGoldenFileComparator(goldenRoot.childDirectory(testDirectoryRelativePath).uri);
} }
@override @override
Future<bool> compare(Uint8List imageBytes, Uri golden) async { Future<bool> compare(Uint8List imageBytes, Uri golden) async {
final File goldenFile = _getGoldenFile(golden); final File goldenFile = _getGoldenFile(golden);
if (!goldenFile.existsSync()) { if(!goldenFile.existsSync()) {
throw TestFailure('Could not be compared against non-existent file: "$golden"'); throw test_package.TestFailure('Could not be compared against non-existent file: "$golden"');
}
final List<int> goldenBytes = await goldenFile.readAsBytes();
// TODO(tvolkert): Improve the intelligence of this comparison.
if (goldenBytes.length != imageBytes.length) {
return false;
} }
for (int i = 0; i < goldenBytes.length; i++) { final bool authorized = await _skiaClient.auth(fs.directory(basedir));
if (goldenBytes[i] != imageBytes[i]) { if (!authorized) {
return false; // TODO(Piinks): Clean up for final implementation on CI, https://github.com/flutter/flutter/pull/31630
} return true;
//throw test_package.TestFailure('Could not authorize golctl.');
} }
return true; await _skiaClient.imgtestInit();
return await _skiaClient.imgtestAdd(golden.path, goldenFile);
} }
@override @override
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:io' as io;
import 'dart:typed_data'; import 'dart:typed_data';
import 'package:file/file.dart'; import 'package:file/file.dart';
...@@ -14,49 +13,57 @@ import 'package:platform/platform.dart'; ...@@ -14,49 +13,57 @@ import 'package:platform/platform.dart';
import 'package:process/process.dart'; import 'package:process/process.dart';
const String _kFlutterRoot = '/flutter'; const String _kFlutterRoot = '/flutter';
const String _kRepositoryRoot = '$_kFlutterRoot/bin/cache/pkg/goldens'; //const String _kGoldenRoot = '$_kFlutterRoot/bin/cache/pkg/goldens';
const String _kVersionFile = '$_kFlutterRoot/bin/internal/goldens.version'; //const String _kVersionFile = '$_kFlutterRoot/bin/internal/goldens.version';
const String _kGoldensVersion = '123456abcdef'; //const String _kGoldensVersion = '123456abcdef';
// TODO(Piinks): Finish testing, https://github.com/flutter/flutter/pull/31630
void main() { void main() {
MemoryFileSystem fs; MemoryFileSystem fs;
FakePlatform platform; FakePlatform platform;
MockProcessManager process; MockProcessManager process;
//Directory flutter;
//Directory golden;
setUp(() { setUp(() async {
fs = MemoryFileSystem(); fs = MemoryFileSystem();
platform = FakePlatform(environment: <String, String>{'FLUTTER_ROOT': _kFlutterRoot}); platform = FakePlatform(environment: <String, String>{
'FLUTTER_ROOT': _kFlutterRoot,
// TODO(Piinks): Add other env vars for testing, https://github.com/flutter/flutter/pull/31630
});
process = MockProcessManager(); process = MockProcessManager();
fs.directory(_kFlutterRoot).createSync(recursive: true); //flutter = await fs.directory(_kFlutterRoot).create(recursive: true);
fs.directory(_kRepositoryRoot).createSync(recursive: true); //golden = await fs.directory(_kGoldenRoot).create(recursive: true);
fs.file(_kVersionFile).createSync(recursive: true); //fs.file(_kVersionFile).createSync(recursive: true);
fs.file(_kVersionFile).writeAsStringSync(_kGoldensVersion); //fs.file(_kVersionFile).writeAsStringSync(_kGoldensVersion);
}); });
group('GoldensClient', () { group('SkiaGoldClient', () {
GoldensClient goldens; //SkiaGoldClient skiaGold;
setUp(() { setUp(() {
goldens = GoldensClient( //skiaGold =
SkiaGoldClient(
fs: fs, fs: fs,
platform: platform, platform: platform,
process: process, process: process,
); );
}); });
group('prepare', () { group('auth', () {
test('performs minimal work if versions match', () async { // check for successful auth - return true
when(process.run(any, workingDirectory: anyNamed('workingDirectory'))) // check for unsuccessful auth - throw NonZeroExitCode
.thenAnswer((_) => Future<io.ProcessResult>.value(io.ProcessResult(123, 0, _kGoldensVersion, ''))); // check for unavailable auth (not on CI) - return false
await goldens.prepare(); // check for redundant work
});
// Verify that we only spawned `git rev-parse HEAD`
final VerificationResult verifyProcessRun = group('init', () {
verify(process.run(captureAny, workingDirectory: captureAnyNamed('workingDirectory'))); // check for successful init - return true
verifyProcessRun.called(1); // check for unsuccessful init - throw NonZeroExitCode
expect(verifyProcessRun.captured.first, <String>['git', 'rev-parse', 'HEAD']); // Check for redundant work
expect(verifyProcessRun.captured.last, _kRepositoryRoot); });
});
group('imgtest', () {
}); });
}); });
...@@ -74,21 +81,22 @@ void main() { ...@@ -74,21 +81,22 @@ void main() {
group('fromDefaultComparator', () { group('fromDefaultComparator', () {
test('calculates the basedir correctly', () async { test('calculates the basedir correctly', () async {
final MockGoldensClient goldens = MockGoldensClient(); // final MockSkiaGoldClient skiaGold = MockSkiaGoldClient();
final MockLocalFileComparator defaultComparator = MockLocalFileComparator(); // final MockLocalFileComparator defaultComparator = MockLocalFileComparator();
final Directory flutterRoot = fs.directory('/foo')..createSync(recursive: true); // final Directory flutterRoot = fs.directory('/foo')..createSync(recursive: true);
final Directory goldensRoot = flutterRoot.childDirectory('bar')..createSync(recursive: true); // final Directory skiaGoldRoot = flutterRoot.childDirectory('bar')..createSync(recursive: true);
when(goldens.fs).thenReturn(fs); // when(skiaGold.fs).thenReturn(fs);
when(goldens.flutterRoot).thenReturn(flutterRoot); // when(skiaGold.flutterRoot).thenReturn(flutterRoot);
when(goldens.repositoryRoot).thenReturn(goldensRoot); // when(skiaGold.repositoryRoot).thenReturn(skiaGoldRoot);
when(defaultComparator.basedir).thenReturn(flutterRoot.childDirectory('baz').uri); // when(defaultComparator.basedir).thenReturn(flutterRoot.childDirectory('baz').uri);
comparator = await FlutterGoldenFileComparator.fromDefaultComparator( // comparator = await FlutterGoldenFileComparator.fromDefaultComparator(
goldens: goldens, defaultComparator: defaultComparator); // goldens: goldens, defaultComparator: defaultComparator);
expect(comparator.basedir, fs.directory('/foo/bar/baz').uri); // expect(comparator.basedir, fs.directory('/foo/bar/baz').uri);
}); });
}); });
group('compare', () { group('compare', () {
test('throws if golden file is not found', () async { test('throws if golden file is not found', () async {
try { try {
await comparator.compare(Uint8List.fromList(<int>[1, 2, 3]), Uri.parse('test.png')); await comparator.compare(Uint8List.fromList(<int>[1, 2, 3]), Uri.parse('test.png'));
...@@ -98,21 +106,32 @@ void main() { ...@@ -98,21 +106,32 @@ void main() {
} }
}); });
test('returns false if golden bytes do not match', () async { // TODO(Piinks): This is currently disabled in flutter_goldens.dart, https://github.com/flutter/flutter/pull/31630
final File goldenFile = fs.file('/path/to/flutter/bin/cache/goldens/test/foo/bar/test.png') // test('throws if goldctl has not been authorized', () async {
..createSync(recursive: true); // // See that preceding test does not leave auth behind [52]
goldenFile.writeAsBytesSync(<int>[4, 5, 6], flush: true); // try {
final bool result = await comparator.compare(Uint8List.fromList(<int>[1, 2, 3]), Uri.parse('test.png')); // await comparator.compare(Uint8List.fromList(<int>[1, 2, 3]), Uri.parse('test.png'));
expect(result, isFalse); // fail('TestFailure expected but not thrown');
}); // } on TestFailure catch (error) {
// expect(error.message, contains('Could not authorize goldctl.'));
test('returns true if golden bytes match', () async { // }
final File goldenFile = fs.file('/path/to/flutter/bin/cache/goldens/test/foo/bar/test.png') // });
..createSync(recursive: true); // TODO(Piinks): Add methods to Mock SkiaGoldClient to inform the comparator and test for proper behavior. See matcher_test.dart for model, https://github.com/flutter/flutter/pull/31630
goldenFile.writeAsBytesSync(<int>[1, 2, 3], flush: true); // test('returns false if skia gold test fails', () async {
final bool result = await comparator.compare(Uint8List.fromList(<int>[1, 2, 3]), Uri.parse('test.png')); // final File goldenFile = fs.file('/path/to/flutter/bin/cache/goldens/test/foo/bar/test.png')
expect(result, isTrue); // ..createSync(recursive: true);
}); // goldenFile.writeAsBytesSync(<int>[4, 5, 6], flush: true);
// final bool result = await comparator.compare(Uint8List.fromList(<int>[1, 2, 3]), Uri.parse('test.png'));
// expect(result, isFalse);
// });
//
// test('returns true if skia gold test passes', () async {
// final File goldenFile = fs.file('/path/to/flutter/bin/cache/goldens/test/foo/bar/test.png')
// ..createSync(recursive: true);
// goldenFile.writeAsBytesSync(<int>[1, 2, 3], flush: true);
// final bool result = await comparator.compare(Uint8List.fromList(<int>[1, 2, 3]), Uri.parse('test.png'));
// expect(result, isTrue);
// });
}); });
group('update', () { group('update', () {
...@@ -136,5 +155,5 @@ void main() { ...@@ -136,5 +155,5 @@ void main() {
} }
class MockProcessManager extends Mock implements ProcessManager {} class MockProcessManager extends Mock implements ProcessManager {}
class MockGoldensClient extends Mock implements GoldensClient {} class MockSkiaGoldClient extends Mock implements SkiaGoldClient {}
class MockLocalFileComparator extends Mock implements LocalFileComparator {} class MockLocalFileComparator extends Mock implements LocalFileComparator {}
...@@ -3,10 +3,12 @@ ...@@ -3,10 +3,12 @@
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:async'; import 'dart:async';
import 'dart:convert' as convert;
import 'dart:io' as io; import 'dart:io' as io;
import 'package:file/file.dart'; import 'package:file/file.dart';
import 'package:file/local.dart'; import 'package:file/local.dart';
import 'package:path/path.dart' as path;
import 'package:platform/platform.dart'; import 'package:platform/platform.dart';
import 'package:process/process.dart'; import 'package:process/process.dart';
...@@ -15,163 +17,210 @@ import 'package:process/process.dart'; ...@@ -15,163 +17,210 @@ import 'package:process/process.dart';
// https://github.com/flutter/flutter/wiki/Writing-a-golden-file-test-for-package%3Aflutter // https://github.com/flutter/flutter/wiki/Writing-a-golden-file-test-for-package%3Aflutter
const String _kFlutterRootKey = 'FLUTTER_ROOT'; const String _kFlutterRootKey = 'FLUTTER_ROOT';
const String _kGoldctlKey = 'GOLDCTL';
/// A class that represents a clone of the https://github.com/flutter/goldens const String _kServiceAccountKey = 'GOLD_SERVICE_ACCOUNT';
/// repository, nested within the `bin/cache` directory of the caller's Flutter const String _kSkiaGoldInstance = 'SKIA_GOLD_INSTANCE';
/// repository.
class GoldensClient { /// A class that represents the Skia Gold client for golden file testing.
/// Create a handle to a local clone of the goldens repository. class SkiaGoldClient {
GoldensClient({ /// Create a handle to a local workspace for the Skia Gold Client.
SkiaGoldClient({
this.fs = const LocalFileSystem(), this.fs = const LocalFileSystem(),
this.platform = const LocalPlatform(), this.platform = const LocalPlatform(),
this.process = const LocalProcessManager(), this.process = const LocalProcessManager(),
}); });
/// The file system to use for storing the local clone of the repository. /// The file system to use for storing local files for running imgtests.
/// ///
/// This is useful in tests, where a local file system (the default) can /// This is useful in tests, where a local file system (the default) can be
/// be replaced by a memory file system. /// replaced by a memory file system.
final FileSystem fs; final FileSystem fs;
/// A wrapper for the [dart:io.Platform] API. /// A wrapper for the [dart:io.Platform] API.
/// ///
/// This is useful in tests, where the system platform (the default) can /// This is useful in tests, where the system platform (the default) can be
/// be replaced by a mock platform instance. /// replaced by a mock platform instance.
final Platform platform; final Platform platform;
/// A controller for launching subprocesses. /// A controller for launching sub-processes.
/// ///
/// This is useful in tests, where the real process manager (the default) /// This is useful in tests, where the real process manager (the default) can
/// can be replaced by a mock process manager that doesn't really create /// be replaced by a mock process manager that doesn't really create
/// subprocesses. /// sub-processes.
final ProcessManager process; final ProcessManager process;
RandomAccessFile _lock; Directory _workDirectory;
// TODO(Piinks): Environment variables are temporary for local testing, https://github.com/flutter/flutter/pull/31630
/// The local [Directory] where the Flutter repository is hosted. /// The local [Directory] where the Flutter repository is hosted.
/// ///
/// Uses the [fs] file system. /// Uses the [fs] file system.
Directory get flutterRoot => fs.directory(platform.environment[_kFlutterRootKey]); Directory get flutterRoot => fs.directory(platform.environment[_kFlutterRootKey]);
/// The local [Directory] where the goldens repository is hosted. /// The [path] to the local [Directory] where the goldctl tool is hosted.
/// ///
/// Uses the [fs] file system. /// Uses the [platform] [environment] in this iteration.
Directory get repositoryRoot => flutterRoot.childDirectory(fs.path.join('bin', 'cache', 'pkg', 'goldens')); String get _goldctl => platform.environment[_kGoldctlKey];
/// The [path] to the local [Directory] where the service account key is
/// hosted.
///
/// Uses the [platform] [environment] in this iteration.
String get _serviceAccount => platform.environment[_kServiceAccountKey];
/// Prepares the local clone of the `flutter/goldens` repository for golden /// The name of the Skia Gold Flutter instance.
/// file testing.
/// ///
/// This ensures that the goldens repository has been cloned into its /// Uses the [platform] [environment] in this iteration.
/// expected location within `bin/cache` and that it is synced to the Git String get _skiaGoldInstance => platform.environment[_kSkiaGoldInstance];
/// revision specified in `bin/internal/goldens.version`.
/// Prepares the local work space for golden file testing and initializes the
/// goldctl authorization for executing tests.
/// ///
/// While this is preparing the repository, it obtains a file lock such that /// This ensures that the goldctl tool is authorized and ready for testing.
/// [GoldensClient] instances in other processes or isolates will not Future<bool> auth(Directory workDirectory) async {
/// duplicate the work that this is doing. _workDirectory = workDirectory;
Future<void> prepare() async {
final String goldensCommit = await _getGoldensCommit(); // TODO(Piinks): Cleanup for final CI implementation, https://github.com/flutter/flutter/pull/31630
String currentCommit = await _getCurrentCommit(); if (_serviceAccount == null)
if (currentCommit != goldensCommit) { return false; // Not in the proper environment for golden file testing.
await _obtainLock();
try { final File authFile = _workDirectory.childFile(fs.path.join(
// Check the current commit again now that we have the lock. 'temp',
currentCommit = await _getCurrentCommit(); 'auth_opt.json'
if (currentCommit != goldensCommit) { ));
if (currentCommit == null) { if (!authFile.existsSync()) {
await _initRepository(); final List<String> authArguments = <String>[
} 'auth',
await _checkCanSync(); '--service-account', _serviceAccount,
await _syncTo(goldensCommit); '--work-dir', _workDirectory.childDirectory('temp').path,
} ];
} finally {
await _releaseLock(); final io.ProcessResult authResults = io.Process.runSync(
_goldctl,
authArguments
);
if (authResults.exitCode != 0) {
final StringBuffer buf = StringBuffer();
buf
..writeln('Flutter + Skia Gold auth failed.')
..writeln('stdout: ${authResults.stdout}')
..writeln('stderr: ${authResults.stderr}');
throw NonZeroExitCode(authResults.exitCode, buf.toString());
} }
} }
return true;
} }
Future<String> _getGoldensCommit() async { Future<void> imgtestInit() async {
final File versionFile = flutterRoot.childFile(fs.path.join('bin', 'internal', 'goldens.version')); final File keysFile = _workDirectory.childFile('keys.json');
return (await versionFile.readAsString()).trim();
} if(!keysFile.existsSync() || await _isNewCommit()) {
final String commitHash = await _getCommitHash();
final String keys = '${_workDirectory.path}keys.json';
final String failures = '${_workDirectory.path}failures.json';
await io.File(keys).writeAsString(_getKeysJSON());
await io.File(failures).create();
final List<String> imgtestInitArguments = <String>[
'imgtest', 'init',
'--instance', _skiaGoldInstance,
'--work-dir', _workDirectory.childDirectory('temp').path,
'--commit', commitHash,
'--keys-file', keys,
'--failure-file', failures,
'--passfail',
];
if(imgtestInitArguments.contains(null)) {
final StringBuffer buf = StringBuffer();
buf.writeln('Null argument for Skia Gold imgtest init:');
imgtestInitArguments.forEach(buf.writeln);
throw NonZeroExitCode(1, buf.toString());
}
Future<String> _getCurrentCommit() async { final io.ProcessResult imgtestInitResult = io.Process.runSync(
if (!repositoryRoot.existsSync()) { _goldctl,
return null; imgtestInitArguments,
} else {
final io.ProcessResult revParse = await process.run(
<String>['git', 'rev-parse', 'HEAD'],
workingDirectory: repositoryRoot.path,
); );
return revParse.exitCode == 0 ? revParse.stdout.trim() : null;
if (imgtestInitResult.exitCode != 0) {
final StringBuffer buf = StringBuffer();
buf
..writeln('Flutter + Skia Gold imgtest init failed.')
..writeln('stdout: ${imgtestInitResult.stdout}')
..writeln('stderr: ${imgtestInitResult.stderr}');
throw NonZeroExitCode(imgtestInitResult.exitCode, buf.toString());
}
} }
} }
Future<void> _initRepository() async { Future<bool> imgtestAdd(String testName, File goldenFile) async {
await repositoryRoot.create(recursive: true); final List<String> imgtestArguments = <String>[
await _runCommands( 'imgtest', 'add',
<String>[ '--work-dir', _workDirectory.childDirectory('temp').path,
'git init', '--test-name', testName,
'git remote add upstream https://github.com/flutter/goldens.git', '--png-file', goldenFile.path,
'git remote set-url --push upstream git@github.com:flutter/goldens.git', ];
],
workingDirectory: repositoryRoot,
);
}
Future<void> _checkCanSync() async { if(imgtestArguments.contains(null)) {
final io.ProcessResult result = await process.run(
<String>['git', 'status', '--porcelain'],
workingDirectory: repositoryRoot.path,
);
if (result.stdout.trim().isNotEmpty) {
final StringBuffer buf = StringBuffer(); final StringBuffer buf = StringBuffer();
buf buf.writeln('Null argument for Skia Gold imgtest add:');
..writeln('flutter_goldens git checkout at ${repositoryRoot.path} has local changes and cannot be synced.') imgtestArguments.forEach(buf.writeln);
..writeln('To reset your client to a clean state, and lose any local golden test changes:')
..writeln('cd ${repositoryRoot.path}')
..writeln('git reset --hard HEAD')
..writeln('git clean -x -d -f -f');
throw NonZeroExitCode(1, buf.toString()); throw NonZeroExitCode(1, buf.toString());
} }
}
Future<void> _syncTo(String commit) async { final io.ProcessResult imgtestResult = io.Process.runSync(
await _runCommands( _goldctl,
<String>[ imgtestArguments,
'git pull upstream master',
'git fetch upstream $commit',
'git reset --hard FETCH_HEAD',
],
workingDirectory: repositoryRoot,
); );
if (imgtestResult.exitCode != 0) {
final StringBuffer buf = StringBuffer();
buf
..writeln('Flutter + Skia Gold imgtest add failed.')
..writeln('If this is the first execution of this test, it may need to be triaged.')
..writeln('In this case, re-run the test after triage is completed.\n')
..writeln('stdout: ${imgtestResult.stdout}')
..writeln('stderr: ${imgtestResult.stderr}');
throw NonZeroExitCode(imgtestResult.exitCode, buf.toString());
}
return true;
} }
Future<void> _runCommands( Future<String> _getCommitHash() async {
List<String> commands, { // TODO(Piinks): Remove after pre-commit tests can be ingested by Skia Gold, https://github.com/flutter/flutter/pull/31630
Directory workingDirectory, return 'e51947241b37790a9e4e33bfdef59aaa9b930851';
}) async { // if (!flutterRoot.existsSync()) {
for (String command in commands) { // return null;
final List<String> parts = command.split(' '); // } else {
final io.ProcessResult result = await process.run( // final io.ProcessResult revParse = await process.run(
parts, // <String>['git', 'rev-parse', 'HEAD'],
workingDirectory: workingDirectory?.path, // workingDirectory: flutterRoot.path,
); // );
if (result.exitCode != 0) { // return revParse.exitCode == 0 ? revParse.stdout.trim() : null;
throw NonZeroExitCode(result.exitCode, result.stderr);
}
}
} }
Future<void> _obtainLock() async { Future<bool> _isNewCommit() async {
final File lockFile = flutterRoot.childFile(fs.path.join('bin', 'cache', 'goldens.lockfile')); // auth file is there, need to check if we are on a new commit
await lockFile.create(recursive: true); final File resultFile = _workDirectory.childFile(fs.path.join(
_lock = await lockFile.open(mode: io.FileMode.write); 'temp',
await _lock.lock(io.FileLock.blockingExclusive); 'result-state.json'
));
final String contents = await resultFile.readAsString();
final Map<String, dynamic> resultJSON = convert.json.decode(contents);
final String lastTestedCommit = resultJSON['SharedConfig']['gitHash'];
final String currentCommit = await _getCommitHash();
return lastTestedCommit == currentCommit ? false : true;
} }
Future<void> _releaseLock() async { String _getKeysJSON() {
await _lock.close(); // TODO(Piinks): Parse out cleaner key information, https://github.com/flutter/flutter/pull/31630
_lock = null; return convert.json.encode(
<String, dynamic>{
'Operating System' : io.Platform.operatingSystem,
'Operating System Version' : io.Platform.operatingSystemVersion,
'Dart Version' : io.Platform.version,
});
} }
} }
/// Exception that signals a process' exit with a non-zero exit code. /// Exception that signals a process' exit with a non-zero exit code.
...@@ -193,4 +242,4 @@ class NonZeroExitCode implements Exception { ...@@ -193,4 +242,4 @@ class NonZeroExitCode implements Exception {
String toString() { String toString() {
return 'Exit code $exitCode: $stderr'; return 'Exit code $exitCode: $stderr';
} }
} }
\ No newline at end of file
...@@ -318,6 +318,43 @@ AsyncMatcher matchesGoldenFile(dynamic key) { ...@@ -318,6 +318,43 @@ AsyncMatcher matchesGoldenFile(dynamic key) {
throw ArgumentError('Unexpected type for golden file: ${key.runtimeType}'); throw ArgumentError('Unexpected type for golden file: ${key.runtimeType}');
} }
/// Asserts that a [Finder], [Future<ui.Image>], or [ui.Image] matches the
/// golden image file identified by [key] through Skia Gold.
///
/// For the case of a [Finder], the [Finder] must match exactly one widget and
/// the rendered image of the first [RepaintBoundary] ancestor of the widget is
/// treated as the image for the widget.
///
/// [key] may be either a [Uri] or a [String] representation of a URI.
///
/// This is an asynchronous matcher, meaning that callers should use
/// [expectLater] when using this matcher and await the future returned by
/// [expectLater].
///
/// ## Sample code
///
/// ```dart
/// await expectLater(find.text('Save'), matchesSkiaGoldFile('save.png'));
/// await expectLater(image, matchesSkiaGoldFile('save.png'));
/// await expectLater(imageFuture, matchesSkiaGoldFile('save.png'));
/// ```
///
/// See also:
///
/// * [FlutterGoldenFileComparator], which acts as the backend for this matcher.
/// * [SkiaGoldClient], which the [FlutterGoldenFileComparator] uses to execute
/// and process results of testing with Skia Gold.
/// * [flutter_test] for a discussion of test configurations, whereby callers
/// may swap out the backend for this matcher.
AsyncMatcher matchesSkiaGoldFile(dynamic key) {
if (key is Uri) {
return _MatchesSkiaGoldFile(key);
} else if (key is String) {
return _MatchesSkiaGoldFile.forStringPath(key);
}
throw ArgumentError('Unexpected type for Skia Gold file: ${key.runtimeType}');
}
/// Asserts that a [Finder], [Future<ui.Image>], or [ui.Image] matches a /// Asserts that a [Finder], [Future<ui.Image>], or [ui.Image] matches a
/// reference image identified by [image]. /// reference image identified by [image].
/// ///
...@@ -1712,6 +1749,53 @@ class _MatchesGoldenFile extends AsyncMatcher { ...@@ -1712,6 +1749,53 @@ class _MatchesGoldenFile extends AsyncMatcher {
description.add('one widget whose rasterized image matches golden image "$key"'); description.add('one widget whose rasterized image matches golden image "$key"');
} }
class _MatchesSkiaGoldFile extends AsyncMatcher {
const _MatchesSkiaGoldFile(this.key);
_MatchesSkiaGoldFile.forStringPath(String path) : key = Uri.parse(path);
final Uri key;
@override
Future<String> matchAsync(dynamic item) async {
Future<ui.Image> imageFuture;
if (item is Future<ui.Image>) {
imageFuture = item;
}else if (item is ui.Image) {
imageFuture = Future<ui.Image>.value(item);
} else {
final Finder finder = item;
final Iterable<Element> elements = finder.evaluate();
if (elements.isEmpty) {
return 'could not be rendered because no widget was found.';
} else if (elements.length > 1) {
return 'matched too many widgets.';
}
imageFuture = _captureImage(elements.single);
}
final TestWidgetsFlutterBinding binding = TestWidgetsFlutterBinding.ensureInitialized();
return binding.runAsync<String>(() async {
final ui.Image image = await imageFuture;
final ByteData bytes = await image.toByteData(format: ui.ImageByteFormat.png)
.timeout(const Duration(seconds: 10), onTimeout: () => null);
if (bytes == null)
return 'Failed to generate screenshot from engine within the 10,000ms timeout';
await goldenFileComparator.update(key, bytes.buffer.asUint8List());
try {
final bool success = await goldenFileComparator.compare(null, key);
return success ? null : 'Skia Gold test fail.';
} on TestFailure catch (ex) {
return ex.message;
}
}, additionalTime: const Duration(seconds: 11));
}
@override
Description describe(Description description) =>
description.add('one widget whose rasterized images matches Skia Gold image $key');
}
class _MatchesSemanticsData extends Matcher { class _MatchesSemanticsData extends Matcher {
_MatchesSemanticsData({ _MatchesSemanticsData({
this.label, this.label,
......
...@@ -402,6 +402,88 @@ void main() { ...@@ -402,6 +402,88 @@ void main() {
}); });
}); });
group('matchesSkiaGoldFile', () {
_FakeComparator comparator;
Widget boilerplate(Widget child) {
return Directionality(
textDirection: TextDirection.ltr,
child: child,
);
}
setUp(() {
comparator = _FakeComparator();
goldenFileComparator = comparator;
});
group('matches', () {
testWidgets('if comparator succeeds', (WidgetTester tester) async {
await tester.pumpWidget(boilerplate(const Text('hello')));
final Finder finder = find.byType(Text);
await expectLater(finder, matchesSkiaGoldFile('foo.png'));
expect(comparator.invocation, _ComparatorInvocation.compare);
expect(comparator.imageBytes, null);
expect(comparator.golden, Uri.parse('foo.png'));
});
});
group('does not match', () {
testWidgets('if comparator returns false', (WidgetTester tester) async {
comparator.behavior = _ComparatorBehavior.returnFalse;
await tester.pumpWidget(boilerplate(const Text('hello')));
final Finder finder = find.byType(Text);
try {
await expectLater(finder, matchesSkiaGoldFile('foo.png'));
fail('TestFailure expected but not thrown');
} on TestFailure catch (error) {
expect(comparator.invocation, _ComparatorInvocation.compare);
expect(error.message, contains('does not match'));
}
});
testWidgets('if comparator throws', (WidgetTester tester) async {
comparator.behavior = _ComparatorBehavior.throwTestFailure;
await tester.pumpWidget(boilerplate(const Text('hello')));
final Finder finder = find.byType(Text);
try {
await expectLater(finder, matchesSkiaGoldFile('foo.png'));
fail('TestFailure expected but not thrown');
} on TestFailure catch (error) {
expect(comparator.invocation, _ComparatorInvocation.compare);
expect(error.message, contains('fake message'));
}
});
testWidgets('if finder finds no widgets', (WidgetTester tester) async {
await tester.pumpWidget(boilerplate(Container()));
final Finder finder = find.byType(Text);
try {
await expectLater(finder, matchesSkiaGoldFile('foo.png'));
fail('TestFailure expected but not thrown');
} on TestFailure catch (error) {
expect(comparator.invocation, isNull);
expect(error.message, contains('no widget was found'));
}
});
testWidgets(
'if finder finds multiple widgets', (WidgetTester tester) async {
await tester.pumpWidget(boilerplate(Column(
children: const <Widget>[Text('hello'), Text('world')],
)));
final Finder finder = find.byType(Text);
try {
await expectLater(finder, matchesSkiaGoldFile('foo.png'));
fail('TestFailure expected but not thrown');
} on TestFailure catch (error) {
expect(comparator.invocation, isNull);
expect(error.message, contains('too many widgets'));
}
});
});
});
group('matchesSemanticsData', () { group('matchesSemanticsData', () {
testWidgets('matches SemanticsData', (WidgetTester tester) async { testWidgets('matches SemanticsData', (WidgetTester tester) async {
final SemanticsHandle handle = tester.ensureSemantics(); final SemanticsHandle handle = tester.ensureSemantics();
......
...@@ -6,7 +6,6 @@ import 'dart:async'; ...@@ -6,7 +6,6 @@ import 'dart:async';
import 'dart:collection'; import 'dart:collection';
import 'package:meta/meta.dart'; import 'package:meta/meta.dart';
import 'package:flutter_goldens_client/client.dart';
import '../base/common.dart'; import '../base/common.dart';
import '../base/file_system.dart'; import '../base/file_system.dart';
...@@ -137,13 +136,14 @@ class UpdatePackagesCommand extends FlutterCommand { ...@@ -137,13 +136,14 @@ class UpdatePackagesCommand extends FlutterCommand {
// The dev/integration_tests/android_views integration test depends on an assets // The dev/integration_tests/android_views integration test depends on an assets
// package that is in the goldens repository. We need to make sure that the goldens // package that is in the goldens repository. We need to make sure that the goldens
// repository is cloned locally before we verify or update pubspecs. // repository is cloned locally before we verify or update pubspecs.
printStatus('Cloning goldens repository...'); // TODO(katelovett): Resolve dependency for android_views living in goldens repository
try { // printStatus('Cloning goldens repository...');
final GoldensClient goldensClient = GoldensClient(); // try {
await goldensClient.prepare(); // final GoldensClient goldensClient = GoldensClient();
} on NonZeroExitCode catch (e) { // await goldensClient.prepare();
throwToolExit(e.stderr, exitCode: e.exitCode); // } on NonZeroExitCode catch (e) {
} // throwToolExit(e.stderr, exitCode: e.exitCode);
// }
if (isVerifyOnly) { if (isVerifyOnly) {
bool needsUpdate = false; bool needsUpdate = false;
......
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