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
c1d3ca07
Unverified
Commit
c1d3ca07
authored
Oct 24, 2019
by
Jonah Williams
Committed by
GitHub
Oct 24, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
catch ChromeDebugException from dwds (#43390)
parent
dee4232d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
0 deletions
+24
-0
resident_web_runner.dart
...utter_tools/lib/src/build_runner/resident_web_runner.dart
+5
-0
resident_web_runner_test.dart
...er_tools/test/general.shard/resident_web_runner_test.dart
+19
-0
No files found.
packages/flutter_tools/lib/src/build_runner/resident_web_runner.dart
View file @
c1d3ca07
...
...
@@ -5,6 +5,7 @@
import
'dart:async'
;
import
'package:build_daemon/client.dart'
;
import
'package:dwds/dwds.dart'
;
import
'package:meta/meta.dart'
;
import
'package:vm_service/vm_service.dart'
as
vmservice
;
import
'package:webkit_inspection_protocol/webkit_inspection_protocol.dart'
hide
StackTrace
;
...
...
@@ -229,6 +230,10 @@ class ResidentWebRunner extends ResidentRunner {
throwToolExit
(
'Failed to connect to WebSocket.'
);
}
on
BuildException
{
throwToolExit
(
'Failed to build application for the Web.'
);
}
on
ChromeDebugException
catch
(
err
,
stackTrace
)
{
throwToolExit
(
'Failed to establish connection with Chrome. Try running the application again.
\n
'
'If this problem persists, please file an issue with the details below:
\n
$err
\n
$stackTrace
'
);
}
on
SocketException
catch
(
err
)
{
throwToolExit
(
err
.
toString
());
}
on
StateError
catch
(
err
)
{
...
...
packages/flutter_tools/test/general.shard/resident_web_runner_test.dart
View file @
c1d3ca07
...
...
@@ -584,6 +584,25 @@ void main() {
await
expectation
;
}));
test
(
'Successfully turns ChromeDebugError into ToolExit'
,
()
=>
testbed
.
run
(()
async
{
_setupMocks
();
final
Completer
<
DebugConnectionInfo
>
connectionInfoCompleter
=
Completer
<
DebugConnectionInfo
>();
final
Completer
<
void
>
unhandledErrorCompleter
=
Completer
<
void
>();
when
(
mockWebFs
.
connect
(
any
)).
thenAnswer
((
Invocation
_
)
async
{
unawaited
(
unhandledErrorCompleter
.
future
.
then
((
void
value
)
{
throw
ChromeDebugException
(<
String
,
dynamic
>{});
}));
return
ConnectionResult
(
mockAppConnection
,
mockDebugConnection
);
});
final
Future
<
void
>
expectation
=
expectLater
(()
=>
residentWebRunner
.
run
(
connectionInfoCompleter:
connectionInfoCompleter
,
),
throwsA
(
isInstanceOf
<
ToolExit
>()));
unhandledErrorCompleter
.
complete
();
await
expectation
;
}));
test
(
'Successfully turns OptionsSkew error into ToolExit'
,
()
=>
testbed
.
run
(()
async
{
_setupMocks
();
final
Completer
<
DebugConnectionInfo
>
connectionInfoCompleter
=
Completer
<
DebugConnectionInfo
>();
...
...
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