Unverified Commit 5a4fa220 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

[flutter_tools] handle OsError thrown during azure detector (#64749)

parent 36dc3e18
...@@ -119,6 +119,9 @@ class AzureDetector { ...@@ -119,6 +119,9 @@ class AzureDetector {
// The HttpClient connected to a host, but it did not respond in a timely // The HttpClient connected to a host, but it did not respond in a timely
// fashion. Assume we are not on a bot. // fashion. Assume we are not on a bot.
return _isRunningOnAzure = false; 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. // We got a response. We're running on Azure.
return _isRunningOnAzure = true; return _isRunningOnAzure = true;
......
...@@ -148,6 +148,14 @@ void main() { ...@@ -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 { testWithoutContext('isRunningOnAzure returns true when azure metadata is reachable', () async {
when(mockHttpClient.getUrl(any)).thenAnswer((_) { when(mockHttpClient.getUrl(any)).thenAnswer((_) {
return Future<HttpClientRequest>.value(mockHttpClientRequest); return Future<HttpClientRequest>.value(mockHttpClientRequest);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment