mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
* Update project.pbxproj files to say Flutter rather than Chromium Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright. * Update the copyright notice checker to require a standard notice on all files * Update copyrights on Dart files. (This was a mechanical commit.) * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine. Some were already marked "The Flutter Authors", not clear why. Their dates have been normalized. Some were missing the blank line after the license. Some were randomly different in trivial ways for no apparent reason (e.g. missing the trailing period). * Clean up the copyrights in non-Dart files. (Manual edits.) Also, make sure templates don't have copyrights. * Fix some more ORGANIZATIONNAMEs
214 lines
7.1 KiB
Dart
214 lines
7.1 KiB
Dart
// Copyright 2014 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:flutter/rendering.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
|
|
final BoxDecoration kBoxDecorationA = BoxDecoration(border: nonconst(null));
|
|
final BoxDecoration kBoxDecorationB = BoxDecoration(border: nonconst(null));
|
|
final BoxDecoration kBoxDecorationC = BoxDecoration(border: nonconst(null));
|
|
|
|
class TestWidget extends StatelessWidget {
|
|
const TestWidget({ this.child });
|
|
|
|
final Widget child;
|
|
|
|
@override
|
|
Widget build(BuildContext context) => child;
|
|
}
|
|
|
|
class TestOrientedBox extends SingleChildRenderObjectWidget {
|
|
const TestOrientedBox({ Key key, Widget child }) : super(key: key, child: child);
|
|
|
|
Decoration _getDecoration(BuildContext context) {
|
|
final Orientation orientation = MediaQuery.of(context).orientation;
|
|
switch (orientation) {
|
|
case Orientation.landscape:
|
|
return const BoxDecoration(color: Color(0xFF00FF00));
|
|
case Orientation.portrait:
|
|
return const BoxDecoration(color: Color(0xFF0000FF));
|
|
}
|
|
assert(orientation != null);
|
|
return null;
|
|
}
|
|
|
|
@override
|
|
RenderDecoratedBox createRenderObject(BuildContext context) => RenderDecoratedBox(decoration: _getDecoration(context));
|
|
|
|
@override
|
|
void updateRenderObject(BuildContext context, RenderDecoratedBox renderObject) {
|
|
renderObject.decoration = _getDecoration(context);
|
|
}
|
|
}
|
|
|
|
void main() {
|
|
testWidgets('RenderObjectWidget smoke test', (WidgetTester tester) async {
|
|
await tester.pumpWidget(DecoratedBox(decoration: kBoxDecorationA));
|
|
SingleChildRenderObjectElement element =
|
|
tester.element(find.byElementType(SingleChildRenderObjectElement));
|
|
expect(element, isNotNull);
|
|
expect(element.renderObject is RenderDecoratedBox, isTrue);
|
|
RenderDecoratedBox renderObject = element.renderObject;
|
|
expect(renderObject.decoration, equals(kBoxDecorationA));
|
|
expect(renderObject.position, equals(DecorationPosition.background));
|
|
|
|
await tester.pumpWidget(DecoratedBox(decoration: kBoxDecorationB));
|
|
element = tester.element(find.byElementType(SingleChildRenderObjectElement));
|
|
expect(element, isNotNull);
|
|
expect(element.renderObject is RenderDecoratedBox, isTrue);
|
|
renderObject = element.renderObject;
|
|
expect(renderObject.decoration, equals(kBoxDecorationB));
|
|
expect(renderObject.position, equals(DecorationPosition.background));
|
|
});
|
|
|
|
testWidgets('RenderObjectWidget can add and remove children', (WidgetTester tester) async {
|
|
|
|
void checkFullTree() {
|
|
final SingleChildRenderObjectElement element =
|
|
tester.firstElement(find.byElementType(SingleChildRenderObjectElement));
|
|
expect(element, isNotNull);
|
|
expect(element.renderObject is RenderDecoratedBox, isTrue);
|
|
final RenderDecoratedBox renderObject = element.renderObject;
|
|
expect(renderObject.decoration, equals(kBoxDecorationA));
|
|
expect(renderObject.position, equals(DecorationPosition.background));
|
|
expect(renderObject.child, isNotNull);
|
|
expect(renderObject.child is RenderDecoratedBox, isTrue);
|
|
final RenderDecoratedBox child = renderObject.child;
|
|
expect(child.decoration, equals(kBoxDecorationB));
|
|
expect(child.position, equals(DecorationPosition.background));
|
|
expect(child.child, isNull);
|
|
}
|
|
|
|
void childBareTree() {
|
|
final SingleChildRenderObjectElement element =
|
|
tester.element(find.byElementType(SingleChildRenderObjectElement));
|
|
expect(element, isNotNull);
|
|
expect(element.renderObject is RenderDecoratedBox, isTrue);
|
|
final RenderDecoratedBox renderObject = element.renderObject;
|
|
expect(renderObject.decoration, equals(kBoxDecorationA));
|
|
expect(renderObject.position, equals(DecorationPosition.background));
|
|
expect(renderObject.child, isNull);
|
|
}
|
|
|
|
await tester.pumpWidget(DecoratedBox(
|
|
decoration: kBoxDecorationA,
|
|
child: DecoratedBox(
|
|
decoration: kBoxDecorationB
|
|
),
|
|
));
|
|
|
|
checkFullTree();
|
|
|
|
await tester.pumpWidget(DecoratedBox(
|
|
decoration: kBoxDecorationA,
|
|
child: TestWidget(
|
|
child: DecoratedBox(
|
|
decoration: kBoxDecorationB
|
|
),
|
|
),
|
|
));
|
|
|
|
checkFullTree();
|
|
|
|
await tester.pumpWidget(DecoratedBox(
|
|
decoration: kBoxDecorationA,
|
|
child: DecoratedBox(
|
|
decoration: kBoxDecorationB
|
|
),
|
|
));
|
|
|
|
checkFullTree();
|
|
|
|
await tester.pumpWidget(DecoratedBox(
|
|
decoration: kBoxDecorationA
|
|
));
|
|
|
|
childBareTree();
|
|
|
|
await tester.pumpWidget(DecoratedBox(
|
|
decoration: kBoxDecorationA,
|
|
child: TestWidget(
|
|
child: TestWidget(
|
|
child: DecoratedBox(
|
|
decoration: kBoxDecorationB
|
|
),
|
|
),
|
|
),
|
|
));
|
|
|
|
checkFullTree();
|
|
|
|
await tester.pumpWidget(DecoratedBox(
|
|
decoration: kBoxDecorationA
|
|
));
|
|
|
|
childBareTree();
|
|
});
|
|
|
|
testWidgets('Detached render tree is intact', (WidgetTester tester) async {
|
|
|
|
await tester.pumpWidget(DecoratedBox(
|
|
decoration: kBoxDecorationA,
|
|
child: DecoratedBox(
|
|
decoration: kBoxDecorationB,
|
|
child: DecoratedBox(
|
|
decoration: kBoxDecorationC
|
|
),
|
|
),
|
|
));
|
|
|
|
SingleChildRenderObjectElement element =
|
|
tester.firstElement(find.byElementType(SingleChildRenderObjectElement));
|
|
expect(element.renderObject is RenderDecoratedBox, isTrue);
|
|
final RenderDecoratedBox parent = element.renderObject;
|
|
expect(parent.child is RenderDecoratedBox, isTrue);
|
|
final RenderDecoratedBox child = parent.child;
|
|
expect(child.decoration, equals(kBoxDecorationB));
|
|
expect(child.child is RenderDecoratedBox, isTrue);
|
|
final RenderDecoratedBox grandChild = child.child;
|
|
expect(grandChild.decoration, equals(kBoxDecorationC));
|
|
expect(grandChild.child, isNull);
|
|
|
|
await tester.pumpWidget(DecoratedBox(
|
|
decoration: kBoxDecorationA
|
|
));
|
|
|
|
element =
|
|
tester.element(find.byElementType(SingleChildRenderObjectElement));
|
|
expect(element.renderObject is RenderDecoratedBox, isTrue);
|
|
expect(element.renderObject, equals(parent));
|
|
expect(parent.child, isNull);
|
|
|
|
expect(child.parent, isNull);
|
|
expect(child.decoration, equals(kBoxDecorationB));
|
|
expect(child.child, equals(grandChild));
|
|
expect(grandChild.parent, equals(child));
|
|
expect(grandChild.decoration, equals(kBoxDecorationC));
|
|
expect(grandChild.child, isNull);
|
|
});
|
|
|
|
testWidgets('Can watch inherited widgets', (WidgetTester tester) async {
|
|
final Key boxKey = UniqueKey();
|
|
final TestOrientedBox box = TestOrientedBox(key: boxKey);
|
|
|
|
await tester.pumpWidget(MediaQuery(
|
|
data: const MediaQueryData(size: Size(400.0, 300.0)),
|
|
child: box,
|
|
));
|
|
|
|
final RenderDecoratedBox renderBox = tester.renderObject(find.byKey(boxKey));
|
|
BoxDecoration decoration = renderBox.decoration;
|
|
expect(decoration.color, equals(const Color(0xFF00FF00)));
|
|
|
|
await tester.pumpWidget(MediaQuery(
|
|
data: const MediaQueryData(size: Size(300.0, 400.0)),
|
|
child: box,
|
|
));
|
|
|
|
decoration = renderBox.decoration;
|
|
expect(decoration.color, equals(const Color(0xFF0000FF)));
|
|
});
|
|
}
|