// Copyright 2014 The Flutter 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 'dart:ui' as ui; import 'package:flutter/foundation.dart'; import 'package:flutter/painting.dart'; import 'image_data.dart'; class TestImageProvider extends ImageProvider { TestImageProvider(this.testImage); final ui.Image testImage; final Completer _completer = Completer.sync(); ImageConfiguration configuration; @override Future obtainKey(ImageConfiguration configuration) { return SynchronousFuture(this); } @override ImageStream resolve(ImageConfiguration config) { configuration = config; return super.resolve(configuration); } @override ImageStreamCompleter load(TestImageProvider key, DecoderCallback decode) => OneFrameImageStreamCompleter(_completer.future); ImageInfo complete() { final ImageInfo imageInfo = ImageInfo(image: testImage); _completer.complete(imageInfo); return imageInfo; } @override String toString() => '${describeIdentity(this)}()'; } Future createTestImage() { final Completer uiImage = Completer(); ui.decodeImageFromList(Uint8List.fromList(kTransparentImage), uiImage.complete); return uiImage.future; } class FakeImageConfiguration implements ImageConfiguration { @override dynamic noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation); }