Skip to content

Commit

Permalink
Check if MultiChildRenderObjectElement has an associated RO (#78854)
Browse files Browse the repository at this point in the history
  • Loading branch information
xu-baolin committed Mar 26, 2021
1 parent e007cad commit 74eb9df
Show file tree
Hide file tree
Showing 2 changed files with 104 additions and 0 deletions.
29 changes: 29 additions & 0 deletions packages/flutter/lib/src/widgets/framework.dart
Expand Up @@ -6176,6 +6176,35 @@ class MultiChildRenderObjectElement extends RenderObjectElement {
super.forgetChild(child);
}

bool _debugCheckHasAssociatedRenderObject(Element newChild) {
assert(() {
if (newChild.renderObject == null) {
FlutterError.reportError(
FlutterErrorDetails(
exception: FlutterError.fromParts(<DiagnosticsNode>[
ErrorSummary('The children of `MultiChildRenderObjectElement` must each has an associated render object.'),
ErrorHint(
'This typically means that the `${newChild.widget}` or its children\n'
'are not a subtype of `RenderObjectWidget`.'
),
newChild.describeElement('The following element does not have an associated render object'),
DiagnosticsDebugCreator(DebugCreator(newChild)),
]),
),
);
}
return true;
}());
return true;
}

@override
Element inflateWidget(Widget newWidget, Object? newSlot) {
final Element newChild = super.inflateWidget(newWidget, newSlot);
assert(_debugCheckHasAssociatedRenderObject(newChild));
return newChild;
}

@override
void mount(Element? parent, Object? newSlot) {
super.mount(parent, newSlot);
Expand Down
75 changes: 75 additions & 0 deletions packages/flutter/test/widgets/framework_test.dart
Expand Up @@ -1172,6 +1172,64 @@ void main() {
);
});

testWidgets('Can not attach a non-RenderObjectElement to the MultiChildRenderObjectElement - mount', (WidgetTester tester) async {
await tester.pumpWidget(
Column(
children: <Widget>[
Container(),
const _EmptyWidget(),
],
),
);

final dynamic exception = tester.takeException();
expect(exception, isFlutterError);
expect(
exception.toString(),
equalsIgnoringHashCodes(
'The children of `MultiChildRenderObjectElement` must each has an associated render object.\n'
'This typically means that the `_EmptyWidget` or its children\n'
'are not a subtype of `RenderObjectWidget`.\n'
'The following element does not have an associated render object:\n'
' _EmptyWidget\n'
'debugCreator: _EmptyWidget ← Column ← [root]'
),
);
});

testWidgets('Can not attach a non-RenderObjectElement to the MultiChildRenderObjectElement - update', (WidgetTester tester) async {
await tester.pumpWidget(
Column(
children: <Widget>[
Container(),
],
),
);

await tester.pumpWidget(
Column(
children: <Widget>[
Container(),
const _EmptyWidget(),
],
),
);

final dynamic exception = tester.takeException();
expect(exception, isFlutterError);
expect(
exception.toString(),
equalsIgnoringHashCodes(
'The children of `MultiChildRenderObjectElement` must each has an associated render object.\n'
'This typically means that the `_EmptyWidget` or its children\n'
'are not a subtype of `RenderObjectWidget`.\n'
'The following element does not have an associated render object:\n'
' _EmptyWidget\n'
'debugCreator: _EmptyWidget ← Column ← [root]'
),
);
});

testWidgets('Element diagnostics', (WidgetTester tester) async {
GlobalKey key0;
await tester.pumpWidget(Column(
Expand Down Expand Up @@ -1849,3 +1907,20 @@ class FakeLeafRenderObject extends RenderBox {
class TestRenderObjectElement extends RenderObjectElement {
TestRenderObjectElement() : super(Table());
}

class _EmptyWidget extends Widget {
const _EmptyWidget({Key? key}) : super(key: key);

@override
Element createElement() => _EmptyElement(this);
}

class _EmptyElement extends Element {
_EmptyElement(_EmptyWidget widget) : super(widget);

@override
bool get debugDoingBuild => false;

@override
void performRebuild() {}
}

0 comments on commit 74eb9df

Please sign in to comment.