// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'dart:typed_data'; import 'package:flutter_tools/src/base/io.dart' as io; import 'package:flutter_tools/src/base/net.dart'; import 'package:flutter_tools/src/base/platform.dart'; import 'package:quiver/testing/async.dart'; import '../../src/common.dart'; import '../../src/context.dart'; void main() { testUsingContext('retry from 500', () async { String error; FakeAsync().run((FakeAsync time) { fetchUrl(Uri.parse('http://example.invalid/')).then((List 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); }, overrides: { HttpClientFactory: () => () => FakeHttpClient(500), }); testUsingContext('retry from network error', () async { String error; FakeAsync().run((FakeAsync time) { fetchUrl(Uri.parse('http://example.invalid/')).then((List 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); }, overrides: { HttpClientFactory: () => () => FakeHttpClient(200), }); testUsingContext('retry from SocketException', () async { String error; FakeAsync().run((FakeAsync time) { fetchUrl(Uri.parse('http://example.invalid/')).then((List 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: { HttpClientFactory: () => () => FakeHttpClientThrowing( const io.SocketException('test exception handling'), ), }); testUsingContext('no retry from HandshakeException', () async { String error; FakeAsync().run((FakeAsync time) { fetchUrl(Uri.parse('http://example.invalid/')).then((List 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: { HttpClientFactory: () => () => FakeHttpClientThrowing( const io.HandshakeException('test exception handling'), ), }); testUsingContext('check for bad override on ArgumentError', () async { String error; FakeAsync().run((FakeAsync time) { fetchUrl(Uri.parse('example.invalid/')).then((List 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.errorText, contains('Invalid argument')); expect(error, contains('FLUTTER_STORAGE_BASE_URL')); }, overrides: { HttpClientFactory: () => () => FakeHttpClientThrowing( ArgumentError('test exception handling'), ), Platform: () => FakePlatform.fromPlatform(const LocalPlatform()) ..environment = { 'FLUTTER_STORAGE_BASE_URL': 'example.invalid' }, }); testUsingContext('retry from HttpException', () async { String error; FakeAsync().run((FakeAsync time) { fetchUrl(Uri.parse('http://example.invalid/')).then((List 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: HttpException')); }, overrides: { HttpClientFactory: () => () => FakeHttpClientThrowing( const io.HttpException('test exception handling'), ), }); testUsingContext('retry from HttpException when request throws', () async { String error; FakeAsync().run((FakeAsync time) { fetchUrl(Uri.parse('http://example.invalid/')).then((List 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: HttpException')); }, overrides: { HttpClientFactory: () => () => FakeHttpClientThrowingRequest( const io.HttpException('test exception handling'), ), }); testUsingContext('max attempts', () async { String error; List actualResult; FakeAsync().run((FakeAsync time) { fetchUrl(Uri.parse('http://example.invalid/'), maxAttempts: 3).then((List value) { actualResult = value; }, 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 -- retry 3\n', ); }); expect(testLogger.errorText, isEmpty); expect(error, isNull); expect(actualResult, isNull); }, overrides: { HttpClientFactory: () => () => FakeHttpClient(500), }); testUsingContext('remote file non-existant', () async { final Uri invalid = Uri.parse('http://example.invalid/'); final bool result = await doesRemoteFileExist(invalid); expect(result, false); }, overrides: { HttpClientFactory: () => () => FakeHttpClient(404), }); testUsingContext('remote file server error', () async { final Uri valid = Uri.parse('http://example.valid/'); final bool result = await doesRemoteFileExist(valid); expect(result, false); }, overrides: { HttpClientFactory: () => () => FakeHttpClient(500), }); testUsingContext('remote file exists', () async { final Uri valid = Uri.parse('http://example.valid/'); final bool result = await doesRemoteFileExist(valid); expect(result, true); }, overrides: { HttpClientFactory: () => () => FakeHttpClient(200), }); } class FakeHttpClientThrowing implements io.HttpClient { FakeHttpClientThrowing(this.exception); final Object exception; @override Future getUrl(Uri url) async { throw exception; } @override dynamic noSuchMethod(Invocation invocation) { throw 'io.HttpClient - $invocation'; } } class FakeHttpClient implements io.HttpClient { FakeHttpClient(this.statusCode); final int statusCode; @override Future getUrl(Uri url) async { return FakeHttpClientRequest(statusCode); } @override Future headUrl(Uri url) async { return FakeHttpClientRequest(statusCode); } @override dynamic noSuchMethod(Invocation invocation) { throw 'io.HttpClient - $invocation'; } } class FakeHttpClientThrowingRequest implements io.HttpClient { FakeHttpClientThrowingRequest(this.exception); final Object exception; @override Future getUrl(Uri url) async { return FakeHttpClientRequestThrowing(exception); } @override dynamic noSuchMethod(Invocation invocation) { throw 'io.HttpClient - $invocation'; } } class FakeHttpClientRequest implements io.HttpClientRequest { FakeHttpClientRequest(this.statusCode); final int statusCode; @override Future close() async { return FakeHttpClientResponse(statusCode); } @override dynamic noSuchMethod(Invocation invocation) { throw 'io.HttpClientRequest - $invocation'; } } class FakeHttpClientRequestThrowing implements io.HttpClientRequest { FakeHttpClientRequestThrowing(this.exception); final Object exception; @override Future close() async { throw exception; } @override dynamic noSuchMethod(Invocation invocation) { throw 'io.HttpClientRequest - $invocation'; } } class FakeHttpClientResponse implements io.HttpClientResponse { FakeHttpClientResponse(this.statusCode); @override final int statusCode; @override String get reasonPhrase => ''; @override StreamSubscription listen( void onData(Uint8List event), { Function onError, void onDone(), bool cancelOnError, }) { return Stream.fromFuture(Future.error(const io.SocketException('test'))) .listen(onData, onError: onError, onDone: onDone, cancelOnError: cancelOnError); } @override Future forEach(void Function(Uint8List element) action) { return Future.error(const io.SocketException('test')); } @override dynamic noSuchMethod(Invocation invocation) { throw 'io.HttpClientResponse - $invocation'; } }