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
0e76cb4c
Unverified
Commit
0e76cb4c
authored
Oct 11, 2018
by
Alexandre Ardhuin
Committed by
GitHub
Oct 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
prefer_void_to_null in flutter_test (#22847)
* prefer_void_to_null in flutter_test * fix CI
parent
dba54316
Changes
19
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
116 additions
and
127 deletions
+116
-127
slider_test.dart
packages/flutter/test/cupertino/slider_test.dart
+1
-1
chip_test.dart
packages/flutter/test/material/chip_test.dart
+5
-5
viewport_test.dart
packages/flutter/test/rendering/viewport_test.dart
+1
-1
animated_switcher_test.dart
packages/flutter/test/widgets/animated_switcher_test.dart
+1
-1
editable_text_test.dart
packages/flutter/test/widgets/editable_text_test.dart
+1
-1
gesture_detector_test.dart
packages/flutter/test/widgets/gesture_detector_test.dart
+1
-1
image_resolution_test.dart
packages/flutter/test/widgets/image_resolution_test.dart
+1
-1
single_child_scroll_view_test.dart
...s/flutter/test/widgets/single_child_scroll_view_test.dart
+1
-1
slivers_block_global_key_test.dart
...s/flutter/test/widgets/slivers_block_global_key_test.dart
+1
-1
slivers_block_test.dart
packages/flutter/test/widgets/slivers_block_test.dart
+1
-1
slivers_padding_test.dart
packages/flutter/test/widgets/slivers_padding_test.dart
+1
-1
slivers_test.dart
packages/flutter/test/widgets/slivers_test.dart
+1
-1
binding.dart
packages/flutter_test/lib/src/binding.dart
+38
-40
controller.dart
packages/flutter_test/lib/src/controller.dart
+16
-21
matchers.dart
packages/flutter_test/lib/src/matchers.dart
+2
-2
test_pointer.dart
packages/flutter_test/lib/src/test_pointer.dart
+10
-13
test_text_input.dart
packages/flutter_test/lib/src/test_text_input.dart
+2
-2
widget_tester.dart
packages/flutter_test/lib/src/widget_tester.dart
+17
-18
test_async_utils_test.dart
packages/flutter_test/test/test_async_utils_test.dart
+15
-15
No files found.
packages/flutter/test/cupertino/slider_test.dart
View file @
0e76cb4c
...
...
@@ -12,7 +12,7 @@ import '../widgets/semantics_tester.dart';
void
main
(
)
{
Future
<
Null
>
_dragSlider
(
WidgetTester
tester
,
Key
sliderKey
)
{
Future
<
void
>
_dragSlider
(
WidgetTester
tester
,
Key
sliderKey
)
{
final
Offset
topLeft
=
tester
.
getTopLeft
(
find
.
byKey
(
sliderKey
));
const
double
unit
=
CupertinoThumbPainter
.
radius
;
const
double
delta
=
3.0
*
unit
;
...
...
packages/flutter/test/material/chip_test.dart
View file @
0e76cb4c
...
...
@@ -545,7 +545,7 @@ void main() {
testWidgets
(
'Avatar drawer works as expected on RawChip'
,
(
WidgetTester
tester
)
async
{
final
GlobalKey
labelKey
=
GlobalKey
();
Future
<
Null
>
pushChip
({
Widget
avatar
})
async
{
Future
<
void
>
pushChip
({
Widget
avatar
})
async
{
return
tester
.
pumpWidget
(
_wrapForChip
(
child:
Wrap
(
...
...
@@ -659,7 +659,7 @@ void main() {
final
UniqueKey
labelKey
=
UniqueKey
();
final
UniqueKey
deleteButtonKey
=
UniqueKey
();
bool
wasDeleted
=
false
;
Future
<
Null
>
pushChip
({
bool
deletable
=
false
})
async
{
Future
<
void
>
pushChip
({
bool
deletable
=
false
})
async
{
return
tester
.
pumpWidget
(
_wrapForChip
(
child:
Wrap
(
...
...
@@ -774,7 +774,7 @@ void main() {
testWidgets
(
'Selection with avatar works as expected on RawChip'
,
(
WidgetTester
tester
)
async
{
bool
selected
=
false
;
final
UniqueKey
labelKey
=
UniqueKey
();
Future
<
Null
>
pushChip
({
Widget
avatar
,
bool
selectable
=
false
})
async
{
Future
<
void
>
pushChip
({
Widget
avatar
,
bool
selectable
=
false
})
async
{
return
tester
.
pumpWidget
(
_wrapForChip
(
child:
Wrap
(
...
...
@@ -857,7 +857,7 @@ void main() {
testWidgets
(
'Selection without avatar works as expected on RawChip'
,
(
WidgetTester
tester
)
async
{
bool
selected
=
false
;
final
UniqueKey
labelKey
=
UniqueKey
();
Future
<
Null
>
pushChip
({
bool
selectable
=
false
})
async
{
Future
<
void
>
pushChip
({
bool
selectable
=
false
})
async
{
return
tester
.
pumpWidget
(
_wrapForChip
(
child:
Wrap
(
...
...
@@ -933,7 +933,7 @@ void main() {
testWidgets
(
'Activation works as expected on RawChip'
,
(
WidgetTester
tester
)
async
{
bool
selected
=
false
;
final
UniqueKey
labelKey
=
UniqueKey
();
Future
<
Null
>
pushChip
({
Widget
avatar
,
bool
selectable
=
false
})
async
{
Future
<
void
>
pushChip
({
Widget
avatar
,
bool
selectable
=
false
})
async
{
return
tester
.
pumpWidget
(
_wrapForChip
(
child:
Wrap
(
...
...
packages/flutter/test/rendering/viewport_test.dart
View file @
0e76cb4c
...
...
@@ -353,7 +353,7 @@ void main() {
group
(
'Nested viewports (same orientation) showOnScreen'
,
()
{
List
<
Widget
>
children
;
Future
<
Null
>
buildNestedScroller
({
WidgetTester
tester
,
ScrollController
inner
,
ScrollController
outer
})
{
Future
<
void
>
buildNestedScroller
({
WidgetTester
tester
,
ScrollController
inner
,
ScrollController
outer
})
{
return
tester
.
pumpWidget
(
Directionality
(
textDirection:
TextDirection
.
ltr
,
...
...
packages/flutter/test/widgets/animated_switcher_test.dart
View file @
0e76cb4c
...
...
@@ -346,7 +346,7 @@ void main() {
});
testWidgets
(
'AnimatedSwitcher updates widgets without animating if they are isomorphic.'
,
(
WidgetTester
tester
)
async
{
Future
<
Null
>
pumpChild
(
Widget
child
)
async
{
Future
<
void
>
pumpChild
(
Widget
child
)
async
{
return
tester
.
pumpWidget
(
Directionality
(
textDirection:
TextDirection
.
rtl
,
...
...
packages/flutter/test/widgets/editable_text_test.dart
View file @
0e76cb4c
...
...
@@ -1444,7 +1444,7 @@ void main() {
});
group
(
'a11y copy/cut/paste'
,
()
{
Future
<
Null
>
_buildApp
(
Future
<
void
>
_buildApp
(
MockTextSelectionControls
controls
,
WidgetTester
tester
)
{
return
tester
.
pumpWidget
(
MaterialApp
(
home:
EditableText
(
...
...
packages/flutter/test/widgets/gesture_detector_test.dart
View file @
0e76cb4c
...
...
@@ -126,7 +126,7 @@ void main() {
bool
didReceivePointerDown
;
bool
didTap
;
Future
<
Null
>
pumpWidgetTree
(
HitTestBehavior
behavior
)
{
Future
<
void
>
pumpWidgetTree
(
HitTestBehavior
behavior
)
{
return
tester
.
pumpWidget
(
Directionality
(
textDirection:
TextDirection
.
ltr
,
...
...
packages/flutter/test/widgets/image_resolution_test.dart
View file @
0e76cb4c
...
...
@@ -156,7 +156,7 @@ TestImage getTestImage(WidgetTester tester, Key key) {
return
tester
.
renderObject
<
RenderImage
>(
find
.
byKey
(
key
)).
image
;
}
Future
<
Null
>
pumpTreeToLayout
(
WidgetTester
tester
,
Widget
widget
)
{
Future
<
void
>
pumpTreeToLayout
(
WidgetTester
tester
,
Widget
widget
)
{
const
Duration
pumpDuration
=
Duration
(
milliseconds:
0
);
const
EnginePhase
pumpPhase
=
EnginePhase
.
layout
;
return
tester
.
pumpWidget
(
widget
,
pumpDuration
,
pumpPhase
);
...
...
packages/flutter/test/widgets/single_child_scroll_view_test.dart
View file @
0e76cb4c
...
...
@@ -697,7 +697,7 @@ void main() {
group
(
'Nested SingleChildScrollView (same orientation) showOnScreen'
,
()
{
List
<
Widget
>
children
;
Future
<
Null
>
buildNestedScroller
({
WidgetTester
tester
,
ScrollController
inner
,
ScrollController
outer
})
{
Future
<
void
>
buildNestedScroller
({
WidgetTester
tester
,
ScrollController
inner
,
ScrollController
outer
})
{
return
tester
.
pumpWidget
(
Directionality
(
textDirection:
TextDirection
.
ltr
,
...
...
packages/flutter/test/widgets/slivers_block_global_key_test.dart
View file @
0e76cb4c
...
...
@@ -24,7 +24,7 @@ class _GenerationTextState extends State<GenerationText> {
// Creates a SliverList with `keys.length` children and each child having a key from `keys` and a text of `key:generation`.
// The generation is increased with every call to this method.
Future
<
Null
>
test
(
WidgetTester
tester
,
double
offset
,
List
<
int
>
keys
)
{
Future
<
void
>
test
(
WidgetTester
tester
,
double
offset
,
List
<
int
>
keys
)
{
globalGeneration
+=
1
;
return
tester
.
pumpWidget
(
Directionality
(
...
...
packages/flutter/test/widgets/slivers_block_test.dart
View file @
0e76cb4c
...
...
@@ -8,7 +8,7 @@ import 'package:flutter/widgets.dart';
import
'../rendering/mock_canvas.dart'
;
Future
<
Null
>
test
(
WidgetTester
tester
,
double
offset
)
{
Future
<
void
>
test
(
WidgetTester
tester
,
double
offset
)
{
return
tester
.
pumpWidget
(
Directionality
(
textDirection:
TextDirection
.
ltr
,
...
...
packages/flutter/test/widgets/slivers_padding_test.dart
View file @
0e76cb4c
...
...
@@ -6,7 +6,7 @@ import 'package:flutter_test/flutter_test.dart';
import
'package:flutter/rendering.dart'
;
import
'package:flutter/widgets.dart'
;
Future
<
Null
>
test
(
WidgetTester
tester
,
double
offset
,
EdgeInsetsGeometry
padding
,
AxisDirection
axisDirection
,
TextDirection
textDirection
)
{
Future
<
void
>
test
(
WidgetTester
tester
,
double
offset
,
EdgeInsetsGeometry
padding
,
AxisDirection
axisDirection
,
TextDirection
textDirection
)
{
return
tester
.
pumpWidget
(
Directionality
(
textDirection:
textDirection
,
...
...
packages/flutter/test/widgets/slivers_test.dart
View file @
0e76cb4c
...
...
@@ -6,7 +6,7 @@ import 'package:flutter_test/flutter_test.dart';
import
'package:flutter/widgets.dart'
;
import
'package:flutter/rendering.dart'
;
Future
<
Null
>
test
(
WidgetTester
tester
,
double
offset
,
{
double
anchor
=
0.0
})
{
Future
<
void
>
test
(
WidgetTester
tester
,
double
offset
,
{
double
anchor
=
0.0
})
{
return
tester
.
pumpWidget
(
Directionality
(
textDirection:
TextDirection
.
ltr
,
...
...
packages/flutter_test/lib/src/binding.dart
View file @
0e76cb4c
This diff is collapsed.
Click to expand it.
packages/flutter_test/lib/src/controller.dart
View file @
0e76cb4c
...
...
@@ -256,16 +256,15 @@ abstract class WidgetController {
///
/// If the center of the widget is not exposed, this might send events to
/// another object.
Future
<
Null
>
tap
(
Finder
finder
,
{
int
pointer
})
{
Future
<
void
>
tap
(
Finder
finder
,
{
int
pointer
})
{
return
tapAt
(
getCenter
(
finder
),
pointer:
pointer
);
}
/// Dispatch a pointer down / pointer up sequence at the given location.
Future
<
Null
>
tapAt
(
Offset
location
,
{
int
pointer
})
{
return
TestAsyncUtils
.
guard
<
Null
>(()
async
{
Future
<
void
>
tapAt
(
Offset
location
,
{
int
pointer
})
{
return
TestAsyncUtils
.
guard
<
void
>(()
async
{
final
TestGesture
gesture
=
await
startGesture
(
location
,
pointer:
pointer
);
await
gesture
.
up
();
return
null
;
});
}
...
...
@@ -286,18 +285,17 @@ abstract class WidgetController {
///
/// If the center of the widget is not exposed, this might send events to
/// another object.
Future
<
Null
>
longPress
(
Finder
finder
,
{
int
pointer
})
{
Future
<
void
>
longPress
(
Finder
finder
,
{
int
pointer
})
{
return
longPressAt
(
getCenter
(
finder
),
pointer:
pointer
);
}
/// Dispatch a pointer down / pointer up sequence at the given location with
/// a delay of [kLongPressTimeout] + [kPressTimeout] between the two events.
Future
<
Null
>
longPressAt
(
Offset
location
,
{
int
pointer
})
{
return
TestAsyncUtils
.
guard
<
Null
>(()
async
{
Future
<
void
>
longPressAt
(
Offset
location
,
{
int
pointer
})
{
return
TestAsyncUtils
.
guard
<
void
>(()
async
{
final
TestGesture
gesture
=
await
startGesture
(
location
,
pointer:
pointer
);
await
pump
(
kLongPressTimeout
+
kPressTimeout
);
await
gesture
.
up
();
return
null
;
});
}
...
...
@@ -321,7 +319,7 @@ abstract class WidgetController {
/// opposite direction of the fling (e.g. dragging 200 pixels to the right,
/// then fling to the left over 200 pixels, ending at the exact point that the
/// drag started).
Future
<
Null
>
fling
(
Finder
finder
,
Offset
offset
,
double
speed
,
{
Future
<
void
>
fling
(
Finder
finder
,
Offset
offset
,
double
speed
,
{
int
pointer
,
Duration
frameInterval
=
const
Duration
(
milliseconds:
16
),
Offset
initialOffset
=
Offset
.
zero
,
...
...
@@ -363,7 +361,7 @@ abstract class WidgetController {
/// opposite direction of the fling (e.g. dragging 200 pixels to the right,
/// then fling to the left over 200 pixels, ending at the exact point that the
/// drag started).
Future
<
Null
>
flingFrom
(
Offset
startLocation
,
Offset
offset
,
double
speed
,
{
Future
<
void
>
flingFrom
(
Offset
startLocation
,
Offset
offset
,
double
speed
,
{
int
pointer
,
Duration
frameInterval
=
const
Duration
(
milliseconds:
16
),
Offset
initialOffset
=
Offset
.
zero
,
...
...
@@ -371,7 +369,7 @@ abstract class WidgetController {
})
{
assert
(
offset
.
distance
>
0.0
);
assert
(
speed
>
0.0
);
// speed is pixels/second
return
TestAsyncUtils
.
guard
<
Null
>(()
async
{
return
TestAsyncUtils
.
guard
<
void
>(()
async
{
final
TestPointer
testPointer
=
TestPointer
(
pointer
??
_getNextPointer
());
final
HitTestResult
result
=
hitTestOnBinding
(
startLocation
);
const
int
kMoveCount
=
50
;
// Needs to be >= kHistorySize, see _LeastSquaresVelocityTrackerStrategy
...
...
@@ -394,7 +392,6 @@ abstract class WidgetController {
}
}
await
sendEventToBinding
(
testPointer
.
up
(
timeStamp:
Duration
(
milliseconds:
timeStamp
.
round
())),
result
);
return
null
;
});
}
...
...
@@ -407,7 +404,7 @@ abstract class WidgetController {
///
/// See also [SchedulerBinding.endOfFrame], which returns a future that could
/// be appropriate to return in the implementation of this method.
Future
<
Null
>
pump
(
Duration
duration
);
Future
<
void
>
pump
(
Duration
duration
);
/// Attempts to drag the given widget by the given offset, by
/// starting a drag in the middle of the widget.
...
...
@@ -417,7 +414,7 @@ abstract class WidgetController {
///
/// If you want the drag to end with a speed so that the gesture recognition
/// system identifies the gesture as a fling, consider using [fling] instead.
Future
<
Null
>
drag
(
Finder
finder
,
Offset
offset
,
{
int
pointer
})
{
Future
<
void
>
drag
(
Finder
finder
,
Offset
offset
,
{
int
pointer
})
{
return
dragFrom
(
getCenter
(
finder
),
offset
,
pointer:
pointer
);
}
...
...
@@ -427,13 +424,12 @@ abstract class WidgetController {
/// If you want the drag to end with a speed so that the gesture recognition
/// system identifies the gesture as a fling, consider using [flingFrom]
/// instead.
Future
<
Null
>
dragFrom
(
Offset
startLocation
,
Offset
offset
,
{
int
pointer
})
{
return
TestAsyncUtils
.
guard
<
Null
>(()
async
{
Future
<
void
>
dragFrom
(
Offset
startLocation
,
Offset
offset
,
{
int
pointer
})
{
return
TestAsyncUtils
.
guard
<
void
>(()
async
{
final
TestGesture
gesture
=
await
startGesture
(
startLocation
,
pointer:
pointer
);
assert
(
gesture
!=
null
);
await
gesture
.
moveBy
(
offset
);
await
gesture
.
up
();
return
null
;
});
}
...
...
@@ -468,10 +464,9 @@ abstract class WidgetController {
}
/// Forwards the given pointer event to the binding.
Future
<
Null
>
sendEventToBinding
(
PointerEvent
event
,
HitTestResult
result
)
{
return
TestAsyncUtils
.
guard
<
Null
>(()
async
{
Future
<
void
>
sendEventToBinding
(
PointerEvent
event
,
HitTestResult
result
)
{
return
TestAsyncUtils
.
guard
<
void
>(()
async
{
binding
.
dispatchEvent
(
event
,
result
);
return
null
;
});
}
...
...
@@ -538,7 +533,7 @@ class LiveWidgetController extends WidgetController {
LiveWidgetController
(
WidgetsBinding
binding
)
:
super
(
binding
);
@override
Future
<
Null
>
pump
(
Duration
duration
)
async
{
Future
<
void
>
pump
(
Duration
duration
)
async
{
if
(
duration
!=
null
)
await
Future
<
void
>.
delayed
(
duration
);
binding
.
scheduleFrame
();
...
...
packages/flutter_test/lib/src/matchers.dart
View file @
0e76cb4c
...
...
@@ -1506,7 +1506,7 @@ class _RendersOnPhysicalModel extends _MatchRenderObject<RenderPhysicalShape, Re
}
}
class
_RendersOnPhysicalShape
extends
_MatchRenderObject
<
RenderPhysicalShape
,
Nul
l
>
{
class
_RendersOnPhysicalShape
extends
_MatchRenderObject
<
RenderPhysicalShape
,
RenderPhysicalMode
l
>
{
const
_RendersOnPhysicalShape
({
this
.
shape
,
this
.
elevation
,
...
...
@@ -1607,7 +1607,7 @@ class _ClipsWithBoundingRRect extends _MatchRenderObject<RenderClipPath, RenderC
description
.
add
(
'clips with bounding rounded rectangle with borderRadius:
$borderRadius
'
);
}
class
_ClipsWithShapeBorder
extends
_MatchRenderObject
<
RenderClipPath
,
Null
>
{
class
_ClipsWithShapeBorder
extends
_MatchRenderObject
<
RenderClipPath
,
RenderClipRRect
>
{
const
_ClipsWithShapeBorder
({
@required
this
.
shape
});
final
ShapeBorder
shape
;
...
...
packages/flutter_test/lib/src/test_pointer.dart
View file @
0e76cb4c
...
...
@@ -113,7 +113,7 @@ class TestPointer {
/// Signature for a callback that can dispatch events and returns a future that
/// completes when the event dispatch is complete.
typedef
EventDispatcher
=
Future
<
Null
>
Function
(
PointerEvent
event
,
HitTestResult
result
);
typedef
EventDispatcher
=
Future
<
void
>
Function
(
PointerEvent
event
,
HitTestResult
result
);
/// Signature for callbacks that perform hit-testing at a given location.
typedef
HitTester
=
HitTestResult
Function
(
Offset
location
);
...
...
@@ -142,7 +142,7 @@ class TestGesture {
assert
(
hitTester
!=
null
);
assert
(
dispatcher
!=
null
);
TestGesture
result
;
return
TestAsyncUtils
.
guard
<
Null
>(()
async
{
return
TestAsyncUtils
.
guard
<
void
>(()
async
{
// dispatch down event
final
HitTestResult
hitTestResult
=
hitTester
(
downLocation
);
final
TestPointer
testPointer
=
TestPointer
(
pointer
);
...
...
@@ -150,8 +150,7 @@ class TestGesture {
// create a TestGesture
result
=
TestGesture
.
_
(
dispatcher
,
hitTestResult
,
testPointer
);
return
null
;
}).
then
<
TestGesture
>((
Null
value
)
{
}).
then
<
TestGesture
>((
void
value
)
{
return
result
;
},
onError:
(
dynamic
error
,
StackTrace
stack
)
{
return
Future
<
TestGesture
>.
error
(
error
,
stack
);
...
...
@@ -163,14 +162,14 @@ class TestGesture {
final
TestPointer
_pointer
;
/// Send a move event moving the pointer by the given offset.
Future
<
Null
>
moveBy
(
Offset
offset
,
{
Duration
timeStamp
=
Duration
.
zero
})
{
Future
<
void
>
moveBy
(
Offset
offset
,
{
Duration
timeStamp
=
Duration
.
zero
})
{
assert
(
_pointer
.
_isDown
);
return
moveTo
(
_pointer
.
location
+
offset
,
timeStamp:
timeStamp
);
}
/// Send a move event moving the pointer to the given location.
Future
<
Null
>
moveTo
(
Offset
location
,
{
Duration
timeStamp
=
Duration
.
zero
})
{
return
TestAsyncUtils
.
guard
<
Null
>(()
{
Future
<
void
>
moveTo
(
Offset
location
,
{
Duration
timeStamp
=
Duration
.
zero
})
{
return
TestAsyncUtils
.
guard
<
void
>(()
{
assert
(
_pointer
.
_isDown
);
return
_dispatcher
(
_pointer
.
move
(
location
,
timeStamp:
timeStamp
),
_result
);
});
...
...
@@ -179,12 +178,11 @@ class TestGesture {
/// End the gesture by releasing the pointer.
///
/// The object is no longer usable after this method has been called.
Future
<
Null
>
up
()
{
return
TestAsyncUtils
.
guard
<
Null
>(()
async
{
Future
<
void
>
up
()
{
return
TestAsyncUtils
.
guard
<
void
>(()
async
{
assert
(
_pointer
.
_isDown
);
await
_dispatcher
(
_pointer
.
up
(),
_result
);
assert
(!
_pointer
.
_isDown
);
return
null
;
});
}
...
...
@@ -193,12 +191,11 @@ class TestGesture {
/// for instance).
///
/// The object is no longer usable after this method has been called.
Future
<
Null
>
cancel
()
{
return
TestAsyncUtils
.
guard
<
Null
>(()
async
{
Future
<
void
>
cancel
()
{
return
TestAsyncUtils
.
guard
<
void
>(()
async
{
assert
(
_pointer
.
_isDown
);
await
_dispatcher
(
_pointer
.
cancel
(),
_result
);
assert
(!
_pointer
.
_isDown
);
return
null
;
});
}
}
packages/flutter_test/lib/src/test_text_input.dart
View file @
0e76cb4c
...
...
@@ -127,7 +127,7 @@ class TestTextInput {
/// Simulates the user pressing one of the [TextInputAction] buttons.
/// Does not check that the [TextInputAction] performed is an acceptable one
/// based on the `inputAction` [setClientArgs].
Future
<
Null
>
receiveAction
(
TextInputAction
action
)
async
{
Future
<
void
>
receiveAction
(
TextInputAction
action
)
async
{
return
TestAsyncUtils
.
guard
(()
{
// Not using the `expect` function because in the case of a FlutterDriver
// test this code does not run in a package:test test zone.
...
...
@@ -135,7 +135,7 @@ class TestTextInput {
throw
TestFailure
(
'Tried to use TestTextInput with no keyboard attached. You must use WidgetTester.showKeyboard() first.'
);
}
final
Completer
<
Null
>
completer
=
Completer
<
Null
>();
final
Completer
<
void
>
completer
=
Completer
<
void
>();
BinaryMessages
.
handlePlatformMessage
(
SystemChannels
.
textInput
.
name
,
...
...
packages/flutter_test/lib/src/widget_tester.dart
View file @
0e76cb4c
...
...
@@ -30,7 +30,7 @@ export 'package:test/test.dart' hide
isInstanceOf
;
// we have our own wrapper in matchers.dart
/// Signature for callback to [testWidgets] and [benchmarkWidgets].
typedef
WidgetTesterCallback
=
Future
<
Null
>
Function
(
WidgetTester
widgetTester
);
typedef
WidgetTesterCallback
=
Future
<
void
>
Function
(
WidgetTester
widgetTester
);
/// Runs the [callback] inside the Flutter test environment.
///
...
...
@@ -114,7 +114,7 @@ void testWidgets(String description, WidgetTesterCallback callback, {
/// });
/// exit(0);
/// }
Future
<
Null
>
benchmarkWidgets
(
WidgetTesterCallback
callback
)
{
Future
<
void
>
benchmarkWidgets
(
WidgetTesterCallback
callback
)
{
assert
(()
{
print
(
'┏╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍╍┓'
);
print
(
'┇ ⚠ THIS BENCHMARK IS BEING RUN WITH ASSERTS ENABLED ⚠ ┇'
);
...
...
@@ -136,7 +136,7 @@ Future<Null> benchmarkWidgets(WidgetTesterCallback callback) {
return
binding
.
runTest
(
()
=>
callback
(
tester
),
tester
.
_endOfTestVerifications
,
)
??
Future
<
Null
>.
value
();
)
??
Future
<
void
>.
value
();
}
/// Assert that `actual` matches `matcher`.
...
...
@@ -217,11 +217,11 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
///
/// See also [LiveTestWidgetsFlutterBindingFramePolicy], which affects how
/// this method works when the test is run with `flutter run`.
Future
<
Null
>
pumpWidget
(
Widget
widget
,
[
Future
<
void
>
pumpWidget
(
Widget
widget
,
[
Duration
duration
,
EnginePhase
phase
=
EnginePhase
.
sendSemanticsUpdate
,
])
{
return
TestAsyncUtils
.
guard
<
Null
>(()
{
return
TestAsyncUtils
.
guard
<
void
>(()
{
binding
.
attachRootWidget
(
widget
);
binding
.
scheduleFrame
();
return
binding
.
pump
(
duration
,
phase
);
...
...
@@ -240,11 +240,11 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
/// See also [LiveTestWidgetsFlutterBindingFramePolicy], which affects how
/// this method works when the test is run with `flutter run`.
@override
Future
<
Null
>
pump
([
Future
<
void
>
pump
([
Duration
duration
,
EnginePhase
phase
=
EnginePhase
.
sendSemanticsUpdate
,
])
{
return
TestAsyncUtils
.
guard
<
Null
>(()
=>
binding
.
pump
(
duration
,
phase
));
return
TestAsyncUtils
.
guard
<
void
>(()
=>
binding
.
pump
(
duration
,
phase
));
}
/// Repeatedly calls [pump] with the given `duration` until there are no
...
...
@@ -292,7 +292,7 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
return
true
;
}());
int
count
=
0
;
return
TestAsyncUtils
.
guard
<
Null
>(()
async
{
return
TestAsyncUtils
.
guard
<
void
>(()
async
{
final
DateTime
endTime
=
binding
.
clock
.
fromNowBy
(
timeout
);
do
{
if
(
binding
.
clock
.
now
().
isAfter
(
endTime
))
...
...
@@ -300,7 +300,7 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
await
binding
.
pump
(
duration
,
phase
);
count
+=
1
;
}
while
(
binding
.
hasScheduledFrame
);
}).
then
<
int
>((
Null
_
)
=>
count
);
}).
then
<
int
>((
void
_
)
=>
count
);
}
/// Runs a [callback] that performs real asynchronous work.
...
...
@@ -350,10 +350,9 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
}
@override
Future
<
Null
>
sendEventToBinding
(
PointerEvent
event
,
HitTestResult
result
)
{
return
TestAsyncUtils
.
guard
<
Null
>(()
async
{
Future
<
void
>
sendEventToBinding
(
PointerEvent
event
,
HitTestResult
result
)
{
return
TestAsyncUtils
.
guard
<
void
>(()
async
{
binding
.
dispatchEvent
(
event
,
result
,
source
:
TestBindingEventSource
.
test
);
return
null
;
});
}
...
...
@@ -484,8 +483,8 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
///
/// Does not run timers. May result in an infinite loop or run out of memory
/// if microtasks continue to recursively schedule new microtasks.
Future
<
Null
>
idle
()
{
return
TestAsyncUtils
.
guard
<
Null
>(()
=>
binding
.
idle
());
Future
<
void
>
idle
()
{
return
TestAsyncUtils
.
guard
<
void
>(()
=>
binding
.
idle
());
}
Set
<
Ticker
>
_tickers
;
...
...
@@ -569,8 +568,8 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
///
/// Tests that just need to add text to widgets like [TextField]
/// or [TextFormField] only need to call [enterText].
Future
<
Null
>
showKeyboard
(
Finder
finder
)
async
{
return
TestAsyncUtils
.
guard
<
Null
>(()
async
{
Future
<
void
>
showKeyboard
(
Finder
finder
)
async
{
return
TestAsyncUtils
.
guard
<
void
>(()
async
{
final
EditableTextState
editable
=
state
<
EditableTextState
>(
find
.
descendant
(
of:
finder
,
...
...
@@ -592,8 +591,8 @@ class WidgetTester extends WidgetController implements HitTestDispatcher, Ticker
///
/// To just give [finder] the focus without entering any text,
/// see [showKeyboard].
Future
<
Null
>
enterText
(
Finder
finder
,
String
text
)
async
{
return
TestAsyncUtils
.
guard
<
Null
>(()
async
{
Future
<
void
>
enterText
(
Finder
finder
,
String
text
)
async
{
return
TestAsyncUtils
.
guard
<
void
>(()
async
{
await
showKeyboard
(
finder
);
testTextInput
.
enterText
(
text
);
await
idle
();
...
...
packages/flutter_test/test/test_async_utils_test.dart
View file @
0e76cb4c
...
...
@@ -13,22 +13,22 @@ import 'package:test/test.dart' as real_test show expect;
// of this test is to see how we handle leaking APIs.
class
TestAPI
{
Future
<
Null
>
testGuard1
()
{
return
TestAsyncUtils
.
guard
(()
async
{
return
null
;
});
Future
<
Object
>
testGuard1
()
{
return
TestAsyncUtils
.
guard
<
Object
>
(()
async
{
return
null
;
});
}
Future
<
Null
>
testGuard2
()
{
return
TestAsyncUtils
.
guard
(()
async
{
return
null
;
});
Future
<
Object
>
testGuard2
()
{
return
TestAsyncUtils
.
guard
<
Object
>
(()
async
{
return
null
;
});
}
}
class
TestAPISubclass
extends
TestAPI
{
Future
<
Null
>
testGuard3
()
{
return
TestAsyncUtils
.
guard
(()
async
{
return
null
;
});
Future
<
Object
>
testGuard3
()
{
return
TestAsyncUtils
.
guard
<
Object
>
(()
async
{
return
null
;
});
}
}
Future
<
Null
>
_guardedThrower
()
{
return
TestAsyncUtils
.
guard
(()
async
{
Future
<
Object
>
_guardedThrower
()
{
return
TestAsyncUtils
.
guard
<
Object
>
(()
async
{
throw
'Hello'
;
});
}
...
...
@@ -36,7 +36,7 @@ Future<Null> _guardedThrower() {
void
main
(
)
{
test
(
'TestAsyncUtils - one class'
,
()
async
{
final
TestAPI
testAPI
=
TestAPI
();
Future
<
Null
>
f1
,
f2
;
Future
<
Object
>
f1
,
f2
;
f1
=
testAPI
.
testGuard1
();
try
{
f2
=
testAPI
.
testGuard2
();
...
...
@@ -57,7 +57,7 @@ void main() {
test
(
'TestAsyncUtils - two classes, all callers in superclass'
,
()
async
{
final
TestAPI
testAPI
=
TestAPISubclass
();
Future
<
Null
>
f1
,
f2
;
Future
<
Object
>
f1
,
f2
;
f1
=
testAPI
.
testGuard1
();
try
{
f2
=
testAPI
.
testGuard2
();
...
...
@@ -78,7 +78,7 @@ void main() {
test
(
'TestAsyncUtils - two classes, mixed callers'
,
()
async
{
final
TestAPISubclass
testAPI
=
TestAPISubclass
();
Future
<
Null
>
f1
,
f2
;
Future
<
Object
>
f1
,
f2
;
f1
=
testAPI
.
testGuard1
();
try
{
f2
=
testAPI
.
testGuard3
();
...
...
@@ -99,7 +99,7 @@ void main() {
test
(
'TestAsyncUtils - expect() catches pending async work'
,
()
async
{
final
TestAPI
testAPI
=
TestAPISubclass
();
Future
<
Null
>
f1
;
Future
<
Object
>
f1
;
f1
=
testAPI
.
testGuard1
();
try
{
flutter_test
.
expect
(
0
,
0
);
...
...
@@ -119,7 +119,7 @@ void main() {
});
testWidgets
(
'TestAsyncUtils - expect() catches pending async work'
,
(
WidgetTester
tester
)
async
{
Future
<
Null
>
f1
,
f2
;
Future
<
Object
>
f1
,
f2
;
try
{
f1
=
tester
.
pump
();
f2
=
tester
.
pump
();
...
...
@@ -139,7 +139,7 @@ void main() {
});
testWidgets
(
'TestAsyncUtils - expect() catches pending async work'
,
(
WidgetTester
tester
)
async
{
Future
<
Null
>
f1
;
Future
<
Object
>
f1
;
try
{
f1
=
tester
.
pump
();
TestAsyncUtils
.
verifyAllScopesClosed
();
...
...
@@ -155,7 +155,7 @@ void main() {
});
testWidgets
(
'TestAsyncUtils - expect() catches pending async work'
,
(
WidgetTester
tester
)
async
{
Future
<
Null
>
f1
;
Future
<
Object
>
f1
;
try
{
f1
=
tester
.
pump
();
TestAsyncUtils
.
verifyAllScopesClosed
();
...
...
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