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
cb615b3b
Unverified
Commit
cb615b3b
authored
Jul 25, 2020
by
Jonah Williams
Committed by
GitHub
Jul 25, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Make sure all isolates start during flutter driver tests. (#61841)" (#62239)
This reverts commit
5fa5701d
.
parent
ab3a4b0e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
45 deletions
+24
-45
vmservice_driver.dart
packages/flutter_driver/lib/src/driver/vmservice_driver.dart
+23
-30
flutter_driver_test.dart
packages/flutter_driver/test/flutter_driver_test.dart
+1
-15
No files found.
packages/flutter_driver/lib/src/driver/vmservice_driver.dart
View file @
cb615b3b
...
...
@@ -127,6 +127,27 @@ class VMServiceFlutterDriver extends FlutterDriver {
driver
.
_dartVmReconnectUrl
=
dartVmServiceUrl
;
// Attempts to resume the isolate, but does not crash if it fails because
// the isolate is already resumed. There could be a race with other tools,
// such as a debugger, any of which could have resumed the isolate.
Future
<
dynamic
>
resumeLeniently
()
{
_log
(
'Attempting to resume isolate'
);
return
isolate
.
resume
().
catchError
((
dynamic
e
)
{
const
int
vmMustBePausedCode
=
101
;
if
(
e
is
rpc
.
RpcException
&&
e
.
code
==
vmMustBePausedCode
)
{
// No biggie; something else must have resumed the isolate
_log
(
'Attempted to resume an already resumed isolate. This may happen '
'when we lose a race with another tool (usually a debugger) that '
'is connected to the same isolate.'
);
}
else
{
// Failed to resume due to another reason. Fail hard.
throw
e
;
}
});
}
/// Waits for a signal from the VM service that the extension is registered.
///
/// Looks at the list of loaded extensions for the current [isolateRef], as
...
...
@@ -174,18 +195,11 @@ class VMServiceFlutterDriver extends FlutterDriver {
});
}
// The Dart VM may be running with --pause-isolates-on-start.
// Set a listener to unpause new isolates as they are ready to run,
// otherwise they'll hang indefinitely.
client
.
onIsolateRunnable
.
listen
((
VMIsolateRef
isolateRef
)
async
{
_resumeLeniently
(
await
isolateRef
.
load
());
});
// Attempt to resume isolate if it was paused
if
(
isolate
.
pauseEvent
is
VMPauseStartEvent
)
{
_log
(
'Isolate is paused at start.'
);
await
_resumeLeniently
(
isolate
);
await
resumeLeniently
(
);
}
else
if
(
isolate
.
pauseEvent
is
VMPauseExitEvent
||
isolate
.
pauseEvent
is
VMPauseBreakpointEvent
||
isolate
.
pauseEvent
is
VMPauseExceptionEvent
||
...
...
@@ -193,7 +207,7 @@ class VMServiceFlutterDriver extends FlutterDriver {
// If the isolate is paused for any other reason, assume the extension is
// already there.
_log
(
'Isolate is paused mid-flight.'
);
await
_resumeLeniently
(
isolate
);
await
resumeLeniently
(
);
}
else
if
(
isolate
.
pauseEvent
is
VMResumeEvent
)
{
_log
(
'Isolate is not paused. Assuming application is ready.'
);
}
else
{
...
...
@@ -226,27 +240,6 @@ class VMServiceFlutterDriver extends FlutterDriver {
return
driver
;
}
/// Attempts to resume the isolate, but does not crash if it fails because
/// the isolate is already resumed. There could be a race with other tools,
/// such as a debugger, any of which could have resumed the isolate.
static
Future
<
dynamic
>
_resumeLeniently
(
VMIsolate
isolate
)
{
_log
(
'Attempting to resume isolate'
);
return
isolate
.
resume
().
catchError
((
dynamic
e
)
{
const
int
vmMustBePausedCode
=
101
;
if
(
e
is
rpc
.
RpcException
&&
e
.
code
==
vmMustBePausedCode
)
{
// No biggie; something else must have resumed the isolate
_log
(
'Attempted to resume an already resumed isolate. This may happen '
'when we lose a race with another tool (usually a debugger) that '
'is connected to the same isolate.'
);
}
else
{
// Failed to resume due to another reason. Fail hard.
throw
e
;
}
});
}
static
int
_nextDriverId
=
0
;
static
const
String
_flutterExtensionMethodName
=
'ext.flutter.driver'
;
...
...
packages/flutter_driver/test/flutter_driver_test.dart
View file @
cb615b3b
...
...
@@ -35,7 +35,6 @@ void main() {
MockVM
mockVM
;
MockIsolate
mockIsolate
;
MockPeer
mockPeer
;
MockIsolate
otherIsolate
;
void
expectLogContains
(
String
message
)
{
expect
(
log
,
anyElement
(
contains
(
message
)));
...
...
@@ -46,12 +45,8 @@ void main() {
mockClient
=
MockVMServiceClient
();
mockVM
=
MockVM
();
mockIsolate
=
MockIsolate
();
otherIsolate
=
MockIsolate
();
mockPeer
=
MockPeer
();
when
(
mockClient
.
getVM
()).
thenAnswer
((
_
)
=>
Future
<
MockVM
>.
value
(
mockVM
));
when
(
mockClient
.
onIsolateRunnable
).
thenAnswer
((
Invocation
invocation
)
{
return
Stream
<
VMIsolateRef
>.
fromIterable
(<
VMIsolateRef
>[
otherIsolate
]);
});
when
(
mockVM
.
isolates
).
thenReturn
(<
VMRunnableIsolate
>[
mockIsolate
]);
when
(
mockIsolate
.
loadRunnable
()).
thenAnswer
((
_
)
=>
Future
<
MockIsolate
>.
value
(
mockIsolate
));
when
(
mockIsolate
.
extensionRpcs
).
thenReturn
(<
String
>[]);
...
...
@@ -65,10 +60,6 @@ void main() {
VMServiceClientConnection
(
mockClient
,
mockPeer
)
);
};
when
(
otherIsolate
.
load
()).
thenAnswer
((
_
)
=>
Future
<
MockIsolate
>.
value
(
otherIsolate
));
when
(
otherIsolate
.
resume
()).
thenAnswer
((
Invocation
invocation
)
{
return
Future
<
dynamic
>.
value
(
null
);
});
});
tearDown
(()
async
{
...
...
@@ -86,20 +77,15 @@ void main() {
connectionLog
.
add
(
'resume'
);
return
Future
<
dynamic
>.
value
(
null
);
});
when
(
otherIsolate
.
pauseEvent
).
thenReturn
(
MockVMPauseStartEvent
());
when
(
mockIsolate
.
onExtensionAdded
).
thenAnswer
((
Invocation
invocation
)
{
connectionLog
.
add
(
'onExtensionAdded'
);
return
Stream
<
String
>.
fromIterable
(<
String
>[
'ext.flutter.driver'
]);
});
when
(
otherIsolate
.
resume
()).
thenAnswer
((
Invocation
invocation
)
{
connectionLog
.
add
(
'other-resume'
);
return
Future
<
dynamic
>.
value
(
null
);
});
final
FlutterDriver
driver
=
await
FlutterDriver
.
connect
(
dartVmServiceUrl:
''
);
expect
(
driver
,
isNotNull
);
expectLogContains
(
'Isolate is paused at start'
);
expect
(
connectionLog
,
<
String
>[
'resume'
,
'streamListen'
,
'o
ther-resume'
,
'o
nExtensionAdded'
]);
expect
(
connectionLog
,
<
String
>[
'resume'
,
'streamListen'
,
'onExtensionAdded'
]);
});
test
(
'connects to isolate paused mid-flight'
,
()
async
{
...
...
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