Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
8a5ace25
Unverified
Commit
8a5ace25
authored
Jan 13, 2021
by
Jia Hao
Committed by
GitHub
Jan 13, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve performance of Widget Tests (#70730)
parent
492ec23b
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
93 additions
and
40 deletions
+93
-40
box.dart
packages/flutter/lib/src/rendering/box.dart
+20
-0
debug.dart
packages/flutter/lib/src/rendering/debug.dart
+3
-2
flutter_test_config.dart
packages/flutter/test/flutter_test_config.dart
+14
-2
dynamic_intrinsics_test.dart
packages/flutter/test/rendering/dynamic_intrinsics_test.dart
+51
-23
binding.dart
packages/flutter_test/lib/src/binding.dart
+5
-13
No files found.
packages/flutter/lib/src/rendering/box.dart
View file @
8a5ace25
...
...
@@ -1341,6 +1341,10 @@ class _IntrinsicDimensionsCacheEntry {
/// [computeMinIntrinsicWidth], [computeMaxIntrinsicWidth],
/// [computeMinIntrinsicHeight], [computeMaxIntrinsicHeight].
///
/// Be sure to set [debugCheckIntrinsicSizes] to true in your unit tests if you
/// do override any of these methods, which will add additional checks to
/// help validate your implementation.
///
/// In addition, if the box has any children, it must implement
/// [computeDistanceToActualBaseline]. [RenderProxyBox] provides a simple
/// implementation that forwards to the child; [RenderShiftedBox] provides an
...
...
@@ -1445,6 +1449,10 @@ abstract class RenderBox extends RenderObject {
///
/// This function should never return a negative or infinite value.
///
/// Be sure to set [debugCheckIntrinsicSizes] to true in your unit tests if
/// you do override this method, which will add additional checks to help
/// validate your implementation.
///
/// ## Examples
///
/// ### Text
...
...
@@ -1597,6 +1605,10 @@ abstract class RenderBox extends RenderObject {
///
/// This function should never return a negative or infinite value.
///
/// Be sure to set [debugCheckIntrinsicSizes] to true in your unit tests if
/// you do override this method, which will add additional checks to help
/// validate your implementation.
///
/// See also:
///
/// * [computeMinIntrinsicWidth], which has usage examples.
...
...
@@ -1675,6 +1687,10 @@ abstract class RenderBox extends RenderObject {
///
/// This function should never return a negative or infinite value.
///
/// Be sure to set [debugCheckIntrinsicSizes] to true in your unit tests if
/// you do override this method, which will add additional checks to help
/// validate your implementation.
///
/// See also:
///
/// * [computeMinIntrinsicWidth], which has usage examples.
...
...
@@ -1760,6 +1776,10 @@ abstract class RenderBox extends RenderObject {
///
/// This function should never return a negative or infinite value.
///
/// Be sure to set [debugCheckIntrinsicSizes] to true in your unit tests if
/// you do override this method, which will add additional checks to help
/// validate your implementation.
///
/// See also:
///
/// * [computeMinIntrinsicWidth], which has usage examples.
...
...
packages/flutter/lib/src/rendering/debug.dart
View file @
8a5ace25
...
...
@@ -132,8 +132,9 @@ bool debugPrintLayouts = false;
/// Check the intrinsic sizes of each [RenderBox] during layout.
///
/// By default this is turned off since these checks are expensive, but it is
/// enabled by the test framework.
/// By default this is turned off since these checks are expensive. If you are
/// implementing your own children of [RenderBox] with custom intrinsics, turn
/// this on in your unit tests for additional validations.
bool
debugCheckIntrinsicSizes
=
false
;
/// Adds [dart:developer.Timeline] events for every [RenderObject] layout.
...
...
packages/flutter/test/flutter_test_config.dart
View file @
8a5ace25
...
...
@@ -2,5 +2,17 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
export
'_goldens_io.dart'
if
(
dart
.
library
.
html
)
'_goldens_web.dart'
show
testExecutable
;
import
'dart:async'
;
import
'package:flutter/rendering.dart'
;
import
'_goldens_io.dart'
if
(
dart
.
library
.
html
)
'_goldens_web.dart'
as
flutter_goldens
;
Future
<
void
>
testExecutable
(
FutureOr
<
void
>
testMain
())
{
// Enable checks because there are many implementations of [RenderBox] in this
// package can benefit from the additional validations.
debugCheckIntrinsicSizes
=
true
;
return
flutter_goldens
.
testExecutable
(
testMain
);
}
packages/flutter/test/rendering/dynamic_intrinsics_test.dart
View file @
8a5ace25
...
...
@@ -60,6 +60,21 @@ class RenderIntrinsicSize extends RenderProxyBox {
}
}
class
RenderInvalidIntrinsics
extends
RenderBox
{
@override
bool
get
sizedByParent
=>
true
;
@override
double
computeMinIntrinsicWidth
(
double
height
)
=>
-
1
;
@override
double
computeMaxIntrinsicWidth
(
double
height
)
=>
-
1
;
@override
double
computeMinIntrinsicHeight
(
double
width
)
=>
-
1
;
@override
double
computeMaxIntrinsicHeight
(
double
width
)
=>
-
1
;
@override
Size
computeDryLayout
(
BoxConstraints
constraints
)
=>
const
Size
(
0
,
0
);
}
void
main
(
)
{
test
(
'Whether using intrinsics means you get hooked into layout'
,
()
{
RenderBox
root
;
...
...
@@ -84,10 +99,7 @@ void main() {
expect
(
root
.
size
,
equals
(
inner
.
size
));
});
test
(
'When RenderObject.debugCheckingIntrinsics is true, parent returns correct intrinsics'
,
()
{
RenderObject
.
debugCheckingIntrinsics
=
true
;
try
{
test
(
'Parent returns correct intrinsics'
,
()
{
RenderParentSize
parent
;
RenderFixedSize
inner
;
...
...
@@ -111,9 +123,25 @@ void main() {
pumpFrame
();
_expectIntrinsicDimensions
(
parent
,
200
);
}
finally
{
RenderObject
.
debugCheckingIntrinsics
=
false
;
}
});
test
(
'Intrinsic checks are turned on'
,
()
async
{
final
List
<
FlutterErrorDetails
>
errorDetails
=
<
FlutterErrorDetails
>[];
layout
(
RenderInvalidIntrinsics
(),
constraints:
const
BoxConstraints
(
minWidth:
0.0
,
minHeight:
0.0
,
maxWidth:
1000.0
,
maxHeight:
1000.0
,
),
onErrors:
()
{
errorDetails
.
addAll
(
renderer
.
takeAllFlutterErrorDetails
());
});
expect
(
errorDetails
,
isNotEmpty
);
expect
(
errorDetails
.
map
((
FlutterErrorDetails
details
)
=>
details
.
toString
()),
everyElement
(
contains
(
'violate the intrinsic protocol'
)),
);
});
}
...
...
packages/flutter_test/lib/src/binding.dart
View file @
8a5ace25
...
...
@@ -181,7 +181,6 @@ abstract class TestWidgetsFlutterBinding extends BindingBase
TestWidgetsFlutterBinding
()
:
_window
=
TestWindow
(
window:
ui
.
window
)
{
debugPrint
=
debugPrintOverride
;
debugDisableShadows
=
disableShadows
;
debugCheckIntrinsicSizes
=
checkIntrinsicSizes
;
}
@override
...
...
@@ -287,14 +286,6 @@ abstract class TestWidgetsFlutterBinding extends BindingBase
/// equivalent as [Future.delayed].
Future
<
void
>
delayed
(
Duration
duration
);
/// The value to set [debugCheckIntrinsicSizes] to while tests are running.
///
/// This can be used to enable additional checks. For example,
/// [AutomatedTestWidgetsFlutterBinding] sets this to true, so that all tests
/// always run with aggressive intrinsic sizing tests enabled.
@protected
bool
get
checkIntrinsicSizes
=>
false
;
/// Creates and initializes the binding. This function is
/// idempotent; calling it a second time will just return the
/// previously-created instance.
...
...
@@ -782,6 +773,8 @@ abstract class TestWidgetsFlutterBinding extends BindingBase
Future
<
void
>
_runTestBody
(
Future
<
void
>
testBody
(),
VoidCallback
invariantTester
)
async
{
assert
(
inTest
);
// So that we can assert that it remains the same after the test finishes.
_beforeTestCheckIntrinsicSizes
=
debugCheckIntrinsicSizes
;
runApp
(
Container
(
key:
UniqueKey
(),
child:
_preTestMessage
));
// Reset the tree to a known state.
await
pump
();
...
...
@@ -814,6 +807,8 @@ abstract class TestWidgetsFlutterBinding extends BindingBase
asyncBarrier
();
// When using AutomatedTestWidgetsFlutterBinding, this flushes the microtasks.
}
late
bool
_beforeTestCheckIntrinsicSizes
;
void
_verifyInvariants
()
{
assert
(
debugAssertNoTransientCallbacks
(
'An animation is still running even after the widget tree was disposed.'
...
...
@@ -831,7 +826,7 @@ abstract class TestWidgetsFlutterBinding extends BindingBase
));
assert
(
debugAssertAllRenderVarsUnset
(
'The value of a rendering debug variable was changed by the test.'
,
debugCheckIntrinsicSizesOverride:
c
heckIntrinsicSizes
,
debugCheckIntrinsicSizesOverride:
_beforeTestC
heckIntrinsicSizes
,
));
assert
(
debugAssertAllWidgetVarsUnset
(
'The value of a widget debug variable was changed by the test.'
,
...
...
@@ -944,9 +939,6 @@ class AutomatedTestWidgetsFlutterBinding extends TestWidgetsFlutterBinding {
@override
bool
get
disableShadows
=>
true
;
@override
bool
get
checkIntrinsicSizes
=>
true
;
/// The value of [defaultTestTimeout] can be set to `None` to enable debugging flutter tests where
/// we would not want to timeout the test. This is expected to be used by test tooling which
/// can detect debug mode.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment