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
5a4fa220
Unverified
Commit
5a4fa220
authored
Aug 28, 2020
by
Jonah Williams
Committed by
GitHub
Aug 28, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[flutter_tools] handle OsError thrown during azure detector (#64749)
parent
36dc3e18
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
bot_detector.dart
packages/flutter_tools/lib/src/base/bot_detector.dart
+3
-0
bot_detector_test.dart
...tter_tools/test/general.shard/base/bot_detector_test.dart
+8
-0
No files found.
packages/flutter_tools/lib/src/base/bot_detector.dart
View file @
5a4fa220
...
...
@@ -119,6 +119,9 @@ class AzureDetector {
// The HttpClient connected to a host, but it did not respond in a timely
// fashion. Assume we are not on a bot.
return
_isRunningOnAzure
=
false
;
}
on
OSError
{
// The HttpClient might be running in a WSL1 environment.
return
_isRunningOnAzure
=
false
;
}
// We got a response. We're running on Azure.
return
_isRunningOnAzure
=
true
;
...
...
packages/flutter_tools/test/general.shard/base/bot_detector_test.dart
View file @
5a4fa220
...
...
@@ -148,6 +148,14 @@ void main() {
});
});
testWithoutContext
(
'isRunningOnAzure returns false when OsError is thrown'
,
()
async
{
when
(
mockHttpClient
.
getUrl
(
any
)).
thenAnswer
((
_
)
{
throw
const
OSError
(
'Connection Refused'
,
111
);
});
expect
(
await
azureDetector
.
isRunningOnAzure
,
isFalse
);
});
testWithoutContext
(
'isRunningOnAzure returns true when azure metadata is reachable'
,
()
async
{
when
(
mockHttpClient
.
getUrl
(
any
)).
thenAnswer
((
_
)
{
return
Future
<
HttpClientRequest
>.
value
(
mockHttpClientRequest
);
...
...
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