rename AssetManifest.bin (#126077)
Fixes #124883. Will require a g3fix. Renames `AssetManifest.bin` to `AssetManifest.smcbin` (madeup extension for "Standard Message Codec binary").
This commit is contained in:
parent
fae99c5a7c
commit
d3e0e03e2e
@ -7,7 +7,7 @@ import 'package:flutter/foundation.dart';
|
||||
import 'asset_bundle.dart';
|
||||
import 'message_codecs.dart';
|
||||
|
||||
const String _kAssetManifestFilename = 'AssetManifest.bin';
|
||||
const String _kAssetManifestFilename = 'AssetManifest.smcbin';
|
||||
|
||||
/// Contains details about available assets and their variants.
|
||||
/// See [Asset variants](https://docs.flutter.dev/development/ui/assets-and-images#asset-variants)
|
||||
|
@ -18,7 +18,7 @@ class TestAssetBundle extends CachingAssetBundle {
|
||||
|
||||
@override
|
||||
Future<ByteData> load(String key) async {
|
||||
if (key == 'AssetManifest.bin') {
|
||||
if (key == 'AssetManifest.smcbin') {
|
||||
return const StandardMessageCodec().encodeMessage(_assetBundleMap)!;
|
||||
}
|
||||
|
||||
|
@ -19,7 +19,7 @@ class TestAssetBundle extends CachingAssetBundle {
|
||||
return ByteData.view(Uint8List.fromList(const Utf8Encoder().convert('{"one": ["one"]}')).buffer);
|
||||
}
|
||||
|
||||
if (key == 'AssetManifest.bin') {
|
||||
if (key == 'AssetManifest.smcbin') {
|
||||
return const StandardMessageCodec().encodeMessage(<String, Object>{
|
||||
'one': <Object>[]
|
||||
})!;
|
||||
@ -76,8 +76,8 @@ void main() {
|
||||
expect(firstLoadStructuredDataResult, 'one');
|
||||
expect(secondLoadStructuredDataResult, 'one');
|
||||
|
||||
final String firstLoadStructuredBinaryDataResult = await bundle.loadStructuredBinaryData('AssetManifest.bin', (ByteData value) => Future<String>.value('one'));
|
||||
final String secondLoadStructuredBinaryDataResult = await bundle.loadStructuredBinaryData('AssetManifest.bin', (ByteData value) => Future<String>.value('two'));
|
||||
final String firstLoadStructuredBinaryDataResult = await bundle.loadStructuredBinaryData('AssetManifest.smcbin', (ByteData value) => Future<String>.value('one'));
|
||||
final String secondLoadStructuredBinaryDataResult = await bundle.loadStructuredBinaryData('AssetManifest.smcbin', (ByteData value) => Future<String>.value('two'));
|
||||
expect(firstLoadStructuredBinaryDataResult, 'one');
|
||||
expect(secondLoadStructuredBinaryDataResult, 'one');
|
||||
});
|
||||
@ -95,9 +95,9 @@ void main() {
|
||||
final String secondLoadStructuredDataResult = await bundle.loadStructuredData('AssetManifest.json', (String value) => Future<String>.value('two'));
|
||||
expect(secondLoadStructuredDataResult, 'two');
|
||||
|
||||
await bundle.loadStructuredBinaryData('AssetManifest.bin', (ByteData value) => Future<String>.value('one'));
|
||||
await bundle.loadStructuredBinaryData('AssetManifest.smcbin', (ByteData value) => Future<String>.value('one'));
|
||||
bundle.clear();
|
||||
final String secondLoadStructuredBinaryDataResult = await bundle.loadStructuredBinaryData('AssetManifest.bin', (ByteData value) => Future<String>.value('two'));
|
||||
final String secondLoadStructuredBinaryDataResult = await bundle.loadStructuredBinaryData('AssetManifest.smcbin', (ByteData value) => Future<String>.value('two'));
|
||||
expect(secondLoadStructuredBinaryDataResult, 'two');
|
||||
});
|
||||
|
||||
@ -114,9 +114,9 @@ void main() {
|
||||
final String secondLoadStructuredDataResult = await bundle.loadStructuredData('AssetManifest.json', (String value) => Future<String>.value('two'));
|
||||
expect(secondLoadStructuredDataResult, 'two');
|
||||
|
||||
await bundle.loadStructuredBinaryData('AssetManifest.bin', (ByteData value) => Future<String>.value('one'));
|
||||
bundle.evict('AssetManifest.bin');
|
||||
final String secondLoadStructuredBinaryDataResult = await bundle.loadStructuredBinaryData('AssetManifest.bin', (ByteData value) => Future<String>.value('two'));
|
||||
await bundle.loadStructuredBinaryData('AssetManifest.smcbin', (ByteData value) => Future<String>.value('one'));
|
||||
bundle.evict('AssetManifest.smcbin');
|
||||
final String secondLoadStructuredBinaryDataResult = await bundle.loadStructuredBinaryData('AssetManifest.smcbin', (ByteData value) => Future<String>.value('two'));
|
||||
expect(secondLoadStructuredBinaryDataResult, 'two');
|
||||
});
|
||||
|
||||
@ -191,7 +191,7 @@ void main() {
|
||||
test('loadStructuredBinaryData correctly loads ByteData', () async {
|
||||
final TestAssetBundle bundle = TestAssetBundle();
|
||||
final Map<Object?, Object?> assetManifest =
|
||||
await bundle.loadStructuredBinaryData('AssetManifest.bin', (ByteData data) => const StandardMessageCodec().decodeMessage(data) as Map<Object?, Object?>);
|
||||
await bundle.loadStructuredBinaryData('AssetManifest.smcbin', (ByteData data) => const StandardMessageCodec().decodeMessage(data) as Map<Object?, Object?>);
|
||||
expect(assetManifest.keys.toList(), equals(<String>['one']));
|
||||
expect(assetManifest['one'], <Object>[]);
|
||||
});
|
||||
|
@ -8,7 +8,7 @@ import 'package:flutter_test/flutter_test.dart';
|
||||
class TestAssetBundle extends AssetBundle {
|
||||
@override
|
||||
Future<ByteData> load(String key) async {
|
||||
if (key == 'AssetManifest.bin') {
|
||||
if (key == 'AssetManifest.smcbin') {
|
||||
final Map<String, List<Object>> binManifestData = <String, List<Object>>{
|
||||
'assets/foo.png': <Object>[
|
||||
<String, Object>{
|
||||
|
@ -41,7 +41,7 @@ class TestAssetBundle extends CachingAssetBundle {
|
||||
Future<ByteData> load(String key) {
|
||||
late ByteData data;
|
||||
switch (key) {
|
||||
case 'AssetManifest.bin':
|
||||
case 'AssetManifest.smcbin':
|
||||
data = manifest;
|
||||
case 'assets/image.png':
|
||||
data = testByteData(1.0);
|
||||
|
@ -168,7 +168,7 @@ class ManifestAssetBundle implements AssetBundle {
|
||||
// We assume the main asset is designed for a device pixel ratio of 1.0.
|
||||
static const double _defaultResolution = 1.0;
|
||||
static const String _kAssetManifestJsonFilename = 'AssetManifest.json';
|
||||
static const String _kAssetManifestBinFilename = 'AssetManifest.bin';
|
||||
static const String _kAssetManifestBinFilename = 'AssetManifest.smcbin';
|
||||
|
||||
static const String _kNoticeFile = 'NOTICES';
|
||||
// Comically, this can't be name with the more common .gz file extension
|
||||
|
@ -111,7 +111,7 @@ $fontsSection
|
||||
|
||||
final AssetBundle bundle = AssetBundleFactory.instance.createBundle();
|
||||
await bundle.build(packagesPath: '.packages');
|
||||
expect(bundle.entries.keys, unorderedEquals(<String>['AssetManifest.bin',
|
||||
expect(bundle.entries.keys, unorderedEquals(<String>['AssetManifest.smcbin',
|
||||
'AssetManifest.json', 'FontManifest.json', 'NOTICES.Z']));
|
||||
}, overrides: <Type, Generator>{
|
||||
FileSystem: () => testFileSystem,
|
||||
|
@ -70,7 +70,7 @@ $assetsSection
|
||||
bool expectExists = true,
|
||||
}) async {
|
||||
Future<String> extractAssetManifestBinFromBundleAsJson(AssetBundle bundle) async {
|
||||
final List<int> manifestBytes = await bundle.entries['AssetManifest.bin']!.contentsAsBytes();
|
||||
final List<int> manifestBytes = await bundle.entries['AssetManifest.smcbin']!.contentsAsBytes();
|
||||
return json.encode(const StandardMessageCodec().decodeMessage(
|
||||
ByteData.sublistView(Uint8List.fromList(manifestBytes))
|
||||
));
|
||||
@ -135,7 +135,7 @@ $assetsSection
|
||||
final AssetBundle bundle = AssetBundleFactory.instance.createBundle();
|
||||
await bundle.build(packagesPath: '.packages');
|
||||
expect(bundle.entries.keys, unorderedEquals(
|
||||
<String>['NOTICES.Z', 'AssetManifest.json', 'AssetManifest.bin', 'FontManifest.json']));
|
||||
<String>['NOTICES.Z', 'AssetManifest.json', 'AssetManifest.smcbin', 'FontManifest.json']));
|
||||
const String expectedAssetManifest = '{}';
|
||||
expect(
|
||||
utf8.decode(await bundle.entries['AssetManifest.json']!.contentsAsBytes()),
|
||||
@ -161,7 +161,7 @@ $assetsSection
|
||||
final AssetBundle bundle = AssetBundleFactory.instance.createBundle();
|
||||
await bundle.build(packagesPath: '.packages');
|
||||
expect(bundle.entries.keys, unorderedEquals(
|
||||
<String>['NOTICES.Z', 'AssetManifest.json', 'AssetManifest.bin', 'FontManifest.json']));
|
||||
<String>['NOTICES.Z', 'AssetManifest.json', 'AssetManifest.smcbin', 'FontManifest.json']));
|
||||
const String expectedAssetManifest = '{}';
|
||||
expect(
|
||||
utf8.decode(await bundle.entries['AssetManifest.json']!.contentsAsBytes()),
|
||||
|
@ -51,7 +51,7 @@ void main() {
|
||||
final AssetBundle bundle = AssetBundleFactory.instance.createBundle();
|
||||
await bundle.build(packagesPath: '.packages');
|
||||
expect(bundle.entries.keys,
|
||||
unorderedEquals(<String>['AssetManifest.json', 'AssetManifest.bin'])
|
||||
unorderedEquals(<String>['AssetManifest.json', 'AssetManifest.smcbin'])
|
||||
);
|
||||
const String expectedJsonAssetManifest = '{}';
|
||||
const Map<Object, Object> expectedBinAssetManifest = <Object, Object>{};
|
||||
@ -60,7 +60,7 @@ void main() {
|
||||
expectedJsonAssetManifest,
|
||||
);
|
||||
expect(
|
||||
const StandardMessageCodec().decodeMessage(ByteData.sublistView(Uint8List.fromList(await bundle.entries['AssetManifest.bin']!.contentsAsBytes()))),
|
||||
const StandardMessageCodec().decodeMessage(ByteData.sublistView(Uint8List.fromList(await bundle.entries['AssetManifest.smcbin']!.contentsAsBytes()))),
|
||||
expectedBinAssetManifest
|
||||
);
|
||||
|
||||
@ -103,7 +103,7 @@ flutter:
|
||||
|
||||
expect(bundle.entries.keys, unorderedEquals(<String>[
|
||||
'AssetManifest.json',
|
||||
'AssetManifest.bin',
|
||||
'AssetManifest.smcbin',
|
||||
'FontManifest.json',
|
||||
'NOTICES.Z',
|
||||
'assets/foo/dog.png',
|
||||
@ -128,7 +128,7 @@ flutter:
|
||||
final AssetBundle bundle = AssetBundleFactory.instance.createBundle();
|
||||
await bundle.build(packagesPath: '.packages');
|
||||
expect(bundle.entries.keys, unorderedEquals(<String>['AssetManifest.json',
|
||||
'AssetManifest.bin', 'FontManifest.json', 'NOTICES.Z', 'assets/foo/bar.txt']));
|
||||
'AssetManifest.smcbin', 'FontManifest.json', 'NOTICES.Z', 'assets/foo/bar.txt']));
|
||||
// Simulate modifying the files by updating the filestat time manually.
|
||||
globals.fs.file(globals.fs.path.join('assets', 'foo', 'fizz.txt'))
|
||||
..createSync(recursive: true)
|
||||
@ -137,7 +137,7 @@ flutter:
|
||||
expect(bundle.needsBuild(), true);
|
||||
await bundle.build(packagesPath: '.packages');
|
||||
expect(bundle.entries.keys, unorderedEquals(<String>['AssetManifest.json',
|
||||
'AssetManifest.bin', 'FontManifest.json', 'NOTICES.Z', 'assets/foo/bar.txt',
|
||||
'AssetManifest.smcbin', 'FontManifest.json', 'NOTICES.Z', 'assets/foo/bar.txt',
|
||||
'assets/foo/fizz.txt']));
|
||||
}, overrides: <Type, Generator>{
|
||||
FileSystem: () => testFileSystem,
|
||||
@ -158,7 +158,7 @@ flutter:
|
||||
final AssetBundle bundle = AssetBundleFactory.instance.createBundle();
|
||||
await bundle.build(packagesPath: '.packages');
|
||||
expect(bundle.entries.keys, unorderedEquals(<String>['AssetManifest.json',
|
||||
'AssetManifest.bin', 'FontManifest.json', 'NOTICES.Z', 'assets/foo/bar.txt']));
|
||||
'AssetManifest.smcbin', 'FontManifest.json', 'NOTICES.Z', 'assets/foo/bar.txt']));
|
||||
expect(bundle.needsBuild(), false);
|
||||
|
||||
// Delete the wildcard directory and update pubspec file.
|
||||
@ -180,7 +180,7 @@ name: example''')
|
||||
expect(bundle.needsBuild(), true);
|
||||
await bundle.build(packagesPath: '.packages');
|
||||
expect(bundle.entries.keys, unorderedEquals(<String>['AssetManifest.json',
|
||||
'AssetManifest.bin', 'FontManifest.json', 'NOTICES.Z', 'assets/foo/bar.txt']));
|
||||
'AssetManifest.smcbin', 'FontManifest.json', 'NOTICES.Z', 'assets/foo/bar.txt']));
|
||||
}, overrides: <Type, Generator>{
|
||||
FileSystem: () => testFileSystem,
|
||||
ProcessManager: () => FakeProcessManager.any(),
|
||||
@ -204,7 +204,7 @@ flutter:
|
||||
final AssetBundle bundle = AssetBundleFactory.instance.createBundle();
|
||||
await bundle.build(packagesPath: '.packages');
|
||||
expect(bundle.entries.keys, unorderedEquals(<String>['AssetManifest.json',
|
||||
'AssetManifest.bin', 'FontManifest.json', 'NOTICES.Z', 'assets/foo/bar.txt']));
|
||||
'AssetManifest.smcbin', 'FontManifest.json', 'NOTICES.Z', 'assets/foo/bar.txt']));
|
||||
expect(bundle.needsBuild(), false);
|
||||
}, overrides: <Type, Generator>{
|
||||
FileSystem: () => testFileSystem,
|
||||
@ -237,7 +237,7 @@ flutter:
|
||||
).createBundle();
|
||||
await bundle.build(packagesPath: '.packages', deferredComponentsEnabled: true);
|
||||
expect(bundle.entries.keys, unorderedEquals(<String>['AssetManifest.json',
|
||||
'AssetManifest.bin', 'FontManifest.json', 'NOTICES.Z', 'assets/foo/bar.txt']));
|
||||
'AssetManifest.smcbin', 'FontManifest.json', 'NOTICES.Z', 'assets/foo/bar.txt']));
|
||||
expect(bundle.deferredComponentsEntries.length, 1);
|
||||
expect(bundle.deferredComponentsEntries['component1']!.length, 2);
|
||||
expect(bundle.needsBuild(), false);
|
||||
@ -268,7 +268,7 @@ flutter:
|
||||
await bundle.build(packagesPath: '.packages');
|
||||
expect(bundle.entries.keys, unorderedEquals(<String>['assets/foo/bar.txt',
|
||||
'assets/bar/barbie.txt', 'assets/wild/dash.txt', 'AssetManifest.json',
|
||||
'AssetManifest.bin', 'FontManifest.json', 'NOTICES.Z']));
|
||||
'AssetManifest.smcbin', 'FontManifest.json', 'NOTICES.Z']));
|
||||
expect(bundle.deferredComponentsEntries.isEmpty, true);
|
||||
expect(bundle.needsBuild(), false);
|
||||
}, overrides: <Type, Generator>{
|
||||
@ -302,7 +302,7 @@ flutter:
|
||||
).createBundle();
|
||||
await bundle.build(packagesPath: '.packages', deferredComponentsEnabled: true);
|
||||
expect(bundle.entries.keys, unorderedEquals(<String>['assets/foo/bar.txt',
|
||||
'AssetManifest.json', 'AssetManifest.bin', 'FontManifest.json', 'NOTICES.Z']));
|
||||
'AssetManifest.json', 'AssetManifest.smcbin', 'FontManifest.json', 'NOTICES.Z']));
|
||||
expect(bundle.deferredComponentsEntries.length, 1);
|
||||
expect(bundle.deferredComponentsEntries['component1']!.length, 2);
|
||||
expect(bundle.needsBuild(), false);
|
||||
@ -316,7 +316,7 @@ flutter:
|
||||
await bundle.build(packagesPath: '.packages', deferredComponentsEnabled: true);
|
||||
|
||||
expect(bundle.entries.keys, unorderedEquals(<String>['assets/foo/bar.txt',
|
||||
'AssetManifest.json', 'AssetManifest.bin', 'FontManifest.json', 'NOTICES.Z']));
|
||||
'AssetManifest.json', 'AssetManifest.smcbin', 'FontManifest.json', 'NOTICES.Z']));
|
||||
expect(bundle.deferredComponentsEntries.length, 1);
|
||||
expect(bundle.deferredComponentsEntries['component1']!.length, 3);
|
||||
}, overrides: <Type, Generator>{
|
||||
@ -663,7 +663,7 @@ flutter:
|
||||
await bundle.build(packagesPath: '.packages');
|
||||
|
||||
expect(bundle.entries.keys, unorderedEquals(<String>['packages/foo/bar/fizz.txt',
|
||||
'AssetManifest.json', 'AssetManifest.bin', 'FontManifest.json', 'NOTICES.Z']));
|
||||
'AssetManifest.json', 'AssetManifest.smcbin', 'FontManifest.json', 'NOTICES.Z']));
|
||||
expect(bundle.needsBuild(), false);
|
||||
|
||||
// Does not track dependency's wildcard directories.
|
||||
@ -799,7 +799,7 @@ flutter:
|
||||
|
||||
expect(await bundle.build(packagesPath: '.packages'), 0);
|
||||
expect(bundle.entries.keys, unorderedEquals(<String>['assets/foo.txt',
|
||||
'AssetManifest.json', 'AssetManifest.bin', 'FontManifest.json', 'NOTICES.Z']));
|
||||
'AssetManifest.json', 'AssetManifest.smcbin', 'FontManifest.json', 'NOTICES.Z']));
|
||||
}, overrides: <Type, Generator>{
|
||||
FileSystem: () => MemoryFileSystem.test(),
|
||||
ProcessManager: () => FakeProcessManager.any(),
|
||||
|
Loading…
x
Reference in New Issue
Block a user