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
85be28d3
Unverified
Commit
85be28d3
authored
Apr 16, 2018
by
jcollins-g
Committed by
GitHub
Apr 16, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add catch for SocketException and tests for exception handling on fetchUrl. (#16569)
parent
c103fd0c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
69 additions
and
4 deletions
+69
-4
net.dart
packages/flutter_tools/lib/src/base/net.dart
+3
-0
net_test.dart
packages/flutter_tools/test/base/net_test.dart
+66
-4
No files found.
packages/flutter_tools/lib/src/base/net.dart
View file @
85be28d3
...
@@ -48,6 +48,9 @@ Future<List<int>> _attempt(Uri url) async {
...
@@ -48,6 +48,9 @@ Future<List<int>> _attempt(Uri url) async {
'URL:
$url
'
,
'URL:
$url
'
,
exitCode:
kNetworkProblemExitCode
,
exitCode:
kNetworkProblemExitCode
,
);
);
}
on
SocketException
catch
(
error
)
{
printTrace
(
'Download error:
$error
'
);
return
null
;
}
}
final
HttpClientResponse
response
=
await
request
.
close
();
final
HttpClientResponse
response
=
await
request
.
close
();
if
(
response
.
statusCode
!=
200
)
{
if
(
response
.
statusCode
!=
200
)
{
...
...
packages/flutter_tools/test/base/net_test.dart
View file @
85be28d3
...
@@ -17,8 +17,8 @@ void main() {
...
@@ -17,8 +17,8 @@ void main() {
new
FakeAsync
().
run
((
FakeAsync
time
)
{
new
FakeAsync
().
run
((
FakeAsync
time
)
{
fetchUrl
(
Uri
.
parse
(
'http://example.invalid/'
)).
then
((
List
<
int
>
value
)
{
fetchUrl
(
Uri
.
parse
(
'http://example.invalid/'
)).
then
((
List
<
int
>
value
)
{
error
=
'test completed unexpectedly'
;
error
=
'test completed unexpectedly'
;
},
onError:
(
dynamic
e
rror
)
{
},
onError:
(
dynamic
e
xception
)
{
error
=
'test failed unexpectedly'
;
error
=
'test failed unexpectedly
:
$exception
'
;
});
});
expect
(
testLogger
.
statusText
,
''
);
expect
(
testLogger
.
statusText
,
''
);
time
.
elapse
(
const
Duration
(
milliseconds:
10000
));
time
.
elapse
(
const
Duration
(
milliseconds:
10000
));
...
@@ -40,8 +40,8 @@ void main() {
...
@@ -40,8 +40,8 @@ void main() {
new
FakeAsync
().
run
((
FakeAsync
time
)
{
new
FakeAsync
().
run
((
FakeAsync
time
)
{
fetchUrl
(
Uri
.
parse
(
'http://example.invalid/'
)).
then
((
List
<
int
>
value
)
{
fetchUrl
(
Uri
.
parse
(
'http://example.invalid/'
)).
then
((
List
<
int
>
value
)
{
error
=
'test completed unexpectedly'
;
error
=
'test completed unexpectedly'
;
},
onError:
(
dynamic
e
rror
)
{
},
onError:
(
dynamic
e
xception
)
{
error
=
'test failed unexpectedly'
;
error
=
'test failed unexpectedly
:
$exception
'
;
});
});
expect
(
testLogger
.
statusText
,
''
);
expect
(
testLogger
.
statusText
,
''
);
time
.
elapse
(
const
Duration
(
milliseconds:
10000
));
time
.
elapse
(
const
Duration
(
milliseconds:
10000
));
...
@@ -57,6 +57,68 @@ void main() {
...
@@ -57,6 +57,68 @@ void main() {
},
overrides:
<
Type
,
Generator
>{
},
overrides:
<
Type
,
Generator
>{
HttpClientFactory:
()
=>
()
=>
new
MockHttpClient
(
200
),
HttpClientFactory:
()
=>
()
=>
new
MockHttpClient
(
200
),
});
});
testUsingContext
(
'retry from SocketException'
,
()
async
{
String
error
;
new
FakeAsync
().
run
((
FakeAsync
time
)
{
fetchUrl
(
Uri
.
parse
(
'http://example.invalid/'
)).
then
((
List
<
int
>
value
)
{
error
=
'test completed unexpectedly'
;
},
onError:
(
dynamic
exception
)
{
error
=
'test failed unexpectedly:
$exception
'
;
});
expect
(
testLogger
.
statusText
,
''
);
time
.
elapse
(
const
Duration
(
milliseconds:
10000
));
expect
(
testLogger
.
statusText
,
'Download failed -- attempting retry 1 in 1 second...
\n
'
'Download failed -- attempting retry 2 in 2 seconds...
\n
'
'Download failed -- attempting retry 3 in 4 seconds...
\n
'
'Download failed -- attempting retry 4 in 8 seconds...
\n
'
);
});
expect
(
testLogger
.
errorText
,
isEmpty
);
expect
(
error
,
isNull
);
expect
(
testLogger
.
traceText
,
contains
(
'Download error: SocketException'
));
},
overrides:
<
Type
,
Generator
>{
HttpClientFactory:
()
=>
()
=>
new
MockHttpClientThrowing
(
const
io
.
SocketException
(
'test exception handling'
),
),
});
testUsingContext
(
'no retry from HandshakeException'
,
()
async
{
String
error
;
new
FakeAsync
().
run
((
FakeAsync
time
)
{
fetchUrl
(
Uri
.
parse
(
'http://example.invalid/'
)).
then
((
List
<
int
>
value
)
{
error
=
'test completed unexpectedly'
;
},
onError:
(
dynamic
exception
)
{
error
=
'test failed:
$exception
'
;
});
expect
(
testLogger
.
statusText
,
''
);
time
.
elapse
(
const
Duration
(
milliseconds:
10000
));
expect
(
testLogger
.
statusText
,
''
);
});
expect
(
error
,
startsWith
(
'test failed'
));
expect
(
testLogger
.
traceText
,
contains
(
'HandshakeException'
));
},
overrides:
<
Type
,
Generator
>{
HttpClientFactory:
()
=>
()
=>
new
MockHttpClientThrowing
(
const
io
.
HandshakeException
(
'test exception handling'
),
),
});
}
class
MockHttpClientThrowing
implements
io
.
HttpClient
{
MockHttpClientThrowing
(
this
.
exception
);
final
Exception
exception
;
@override
Future
<
io
.
HttpClientRequest
>
getUrl
(
Uri
url
)
async
{
throw
exception
;
}
@override
dynamic
noSuchMethod
(
Invocation
invocation
)
{
throw
'io.HttpClient -
$invocation
'
;
}
}
}
class
MockHttpClient
implements
io
.
HttpClient
{
class
MockHttpClient
implements
io
.
HttpClient
{
...
...
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