mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
137 lines
4.4 KiB
Dart
137 lines
4.4 KiB
Dart
// Copyright 2018 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'dart:io' show Platform;
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
void main() {
|
|
testWidgets('Shadows on BoxDecoration', (WidgetTester tester) async {
|
|
await tester.pumpWidget(
|
|
new Center(
|
|
child: new RepaintBoundary(
|
|
child: new Container(
|
|
margin: const EdgeInsets.all(50.0),
|
|
decoration: new BoxDecoration(
|
|
boxShadow: kElevationToShadow[9],
|
|
),
|
|
height: 100.0,
|
|
width: 100.0,
|
|
),
|
|
),
|
|
),
|
|
);
|
|
await expectLater(
|
|
find.byType(Container),
|
|
matchesGoldenFile('shadow.BoxDecoration.disabled.png'),
|
|
);
|
|
debugDisableShadows = false;
|
|
tester.binding.reassembleApplication();
|
|
await tester.pump();
|
|
if (Platform.isLinux) {
|
|
// TODO(ianh): use the skip argument instead once that doesn't hang, https://github.com/dart-lang/test/issues/830
|
|
await expectLater(
|
|
find.byType(Container),
|
|
matchesGoldenFile('shadow.BoxDecoration.enabled.png'),
|
|
); // shadows render differently on different platforms
|
|
}
|
|
debugDisableShadows = true;
|
|
});
|
|
|
|
testWidgets('Shadows on ShapeDecoration', (WidgetTester tester) async {
|
|
debugDisableShadows = false;
|
|
Widget build(int elevation) {
|
|
return new Center(
|
|
child: new RepaintBoundary(
|
|
child: new Container(
|
|
margin: const EdgeInsets.all(150.0),
|
|
decoration: new ShapeDecoration(
|
|
shape: new BeveledRectangleBorder(borderRadius: new BorderRadius.circular(20.0)),
|
|
shadows: kElevationToShadow[elevation],
|
|
),
|
|
height: 100.0,
|
|
width: 100.0,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
for (int elevation in kElevationToShadow.keys) {
|
|
await tester.pumpWidget(build(elevation));
|
|
await expectLater(
|
|
find.byType(Container),
|
|
matchesGoldenFile('shadow.ShapeDecoration.$elevation.png'),
|
|
);
|
|
}
|
|
debugDisableShadows = true;
|
|
}, skip: !Platform.isLinux); // shadows render differently on different platforms
|
|
|
|
testWidgets('Shadows with PhysicalLayer', (WidgetTester tester) async {
|
|
await tester.pumpWidget(
|
|
new Center(
|
|
child: new RepaintBoundary(
|
|
child: new Container(
|
|
margin: const EdgeInsets.all(150.0),
|
|
color: Colors.yellow[200],
|
|
child: new PhysicalModel(
|
|
elevation: 9.0,
|
|
color: Colors.blue[900],
|
|
child: const SizedBox(
|
|
height: 100.0,
|
|
width: 100.0,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
await expectLater(
|
|
find.byType(Container),
|
|
matchesGoldenFile('shadow.PhysicalModel.disabled.png'),
|
|
);
|
|
debugDisableShadows = false;
|
|
tester.binding.reassembleApplication();
|
|
await tester.pump();
|
|
if (Platform.isLinux) {
|
|
// TODO(ianh): use the skip argument instead once that doesn't hang, https://github.com/dart-lang/test/issues/830
|
|
await expectLater(
|
|
find.byType(Container),
|
|
matchesGoldenFile('shadow.PhysicalModel.enabled.png'),
|
|
); // shadows render differently on different platforms
|
|
}
|
|
debugDisableShadows = true;
|
|
});
|
|
|
|
testWidgets('Shadows with PhysicalShape', (WidgetTester tester) async {
|
|
debugDisableShadows = false;
|
|
Widget build(double elevation) {
|
|
return new Center(
|
|
child: new RepaintBoundary(
|
|
child: new Container(
|
|
padding: const EdgeInsets.all(150.0),
|
|
color: Colors.yellow[200],
|
|
child: new PhysicalShape(
|
|
color: Colors.green[900],
|
|
clipper: new ShapeBorderClipper(shape: new BeveledRectangleBorder(borderRadius: new BorderRadius.circular(20.0))),
|
|
elevation: elevation,
|
|
child: const SizedBox(
|
|
height: 100.0,
|
|
width: 100.0,
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
for (int elevation in kElevationToShadow.keys) {
|
|
await tester.pumpWidget(build(elevation.toDouble()));
|
|
await expectLater(
|
|
find.byType(Container),
|
|
matchesGoldenFile('shadow.PhysicalShape.$elevation.png'),
|
|
);
|
|
}
|
|
debugDisableShadows = true;
|
|
}, skip: !Platform.isLinux); // shadows render differently on different platforms
|
|
}
|