mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
59 lines
1.8 KiB
Dart
59 lines
1.8 KiB
Dart
// 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:convert';
|
|
import 'dart:typed_data';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
class TestAssetBundle extends CachingAssetBundle {
|
|
Map<String, int> loadCallCount = <String, int>{};
|
|
|
|
@override
|
|
Future<ByteData> load(String key) async {
|
|
if (key == 'AssetManifest.json')
|
|
return new ByteData.view(new Uint8List.fromList(const Utf8Encoder().convert('{"one": ["one"]}')).buffer);
|
|
|
|
loadCallCount[key] = loadCallCount[key] ?? 0 + 1;
|
|
if (key == 'one')
|
|
return new ByteData(1)..setInt8(0, 49);
|
|
throw new FlutterError('key not found');
|
|
}
|
|
}
|
|
|
|
void main() {
|
|
test('Caching asset bundle test', () async {
|
|
final TestAssetBundle bundle = new TestAssetBundle();
|
|
|
|
final ByteData assetData = await bundle.load('one');
|
|
expect(assetData.getInt8(0), equals(49));
|
|
|
|
expect(bundle.loadCallCount['one'], 1);
|
|
|
|
final String assetString = await bundle.loadString('one');
|
|
expect(assetString, equals('1'));
|
|
|
|
expect(bundle.loadCallCount['one'], 1);
|
|
|
|
FlutterError loadException;
|
|
try {
|
|
await bundle.loadString('foo');
|
|
} catch (e) {
|
|
loadException = e;
|
|
}
|
|
expect(loadException, isFlutterError);
|
|
});
|
|
|
|
test('AssetImage.obtainKey succeeds with ImageConfiguration.empty', () async {
|
|
// This is a regression test for https://github.com/flutter/flutter/issues/12392
|
|
final AssetImage assetImage = new AssetImage('one', bundle: new TestAssetBundle());
|
|
final AssetBundleImageKey key = await assetImage.obtainKey(ImageConfiguration.empty);
|
|
expect(key.name, 'one');
|
|
expect(key.scale, 1.0);
|
|
});
|
|
}
|