mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

Fixes https://github.com/flutter/flutter/issues/142285. Part of work on https://github.com/flutter/flutter/pull/141194. This is a refactor. There should be no changes in tool behavior.
265 lines
8.3 KiB
Dart
265 lines
8.3 KiB
Dart
// 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 'package:file/memory.dart';
|
|
import 'package:flutter_tools/src/asset.dart';
|
|
import 'package:flutter_tools/src/base/file_system.dart';
|
|
import 'package:flutter_tools/src/base/logger.dart';
|
|
import 'package:flutter_tools/src/base/platform.dart';
|
|
import 'package:flutter_tools/src/base/user_messages.dart';
|
|
import 'package:flutter_tools/src/build_info.dart';
|
|
import 'package:flutter_tools/src/cache.dart';
|
|
import 'package:flutter_tools/src/project.dart';
|
|
|
|
// We aren't using this to construct paths—only to expose a type.
|
|
import 'package:path/path.dart' show Style; // flutter_ignore: package_path_import
|
|
|
|
import '../src/common.dart';
|
|
|
|
void main() {
|
|
final Style posix = Style.posix;
|
|
final Style windows = Style.windows;
|
|
final List<Style> styles = <Style>[posix, windows];
|
|
|
|
for (final Style style in styles) {
|
|
group('Assets (${style.name} file system)', () {
|
|
late FileSystem fileSystem;
|
|
late BufferLogger logger;
|
|
late Platform platform;
|
|
late String flutterRoot;
|
|
|
|
setUp(() {
|
|
fileSystem = MemoryFileSystem(
|
|
style: style == Style.posix ? FileSystemStyle.posix : FileSystemStyle.windows,
|
|
);
|
|
logger = BufferLogger.test();
|
|
platform = FakePlatform(
|
|
operatingSystem: style == Style.posix ? 'linux' : 'windows');
|
|
flutterRoot = Cache.defaultFlutterRoot(
|
|
platform: platform,
|
|
fileSystem: fileSystem,
|
|
userMessages: UserMessages(),
|
|
);
|
|
});
|
|
|
|
testWithoutContext('app font uses local font file', () async {
|
|
final String packagesPath = fileSystem.path.join('main', '.packages');
|
|
final String manifestPath =
|
|
fileSystem.path.join('main', 'pubspec.yaml');
|
|
final ManifestAssetBundle assetBundle = ManifestAssetBundle(
|
|
logger: logger,
|
|
fileSystem: fileSystem,
|
|
platform: platform,
|
|
splitDeferredAssets: true,
|
|
flutterRoot: flutterRoot,
|
|
);
|
|
|
|
fileSystem.file(fileSystem.path.join('font', 'pubspec.yaml'))
|
|
..createSync(recursive: true)
|
|
..writeAsStringSync(r'''
|
|
name: font
|
|
description: A test project that contains a font.
|
|
|
|
environment:
|
|
sdk: '>=3.2.0-0 <4.0.0'
|
|
|
|
flutter:
|
|
uses-material-design: true
|
|
fonts:
|
|
- family: test_font
|
|
fonts:
|
|
- asset: test_font_file
|
|
''');
|
|
fileSystem.file(fileSystem.path.join('font', 'test_font_file'))
|
|
..createSync(recursive: true)
|
|
..writeAsStringSync('This is a fake font.');
|
|
|
|
fileSystem.file(
|
|
fileSystem.path.join('main', '.dart_tool', 'package_config.json'))
|
|
..createSync(recursive: true)
|
|
..writeAsStringSync(r'''
|
|
{
|
|
"configVersion": 2,
|
|
"packages": [
|
|
{
|
|
"name": "font",
|
|
"rootUri": "../../font",
|
|
"packageUri": "lib/",
|
|
"languageVersion": "3.2"
|
|
},
|
|
{
|
|
"name": "main",
|
|
"rootUri": "../",
|
|
"packageUri": "lib/",
|
|
"languageVersion": "3.2"
|
|
}
|
|
],
|
|
"generated": "2024-01-08T19:39:02.396620Z",
|
|
"generator": "pub",
|
|
"generatorVersion": "3.3.0-276.0.dev"
|
|
}
|
|
''');
|
|
fileSystem.file(manifestPath)
|
|
..createSync(recursive: true)
|
|
..writeAsStringSync(r'''
|
|
name: main
|
|
description: A test project that has a package with a font as a dependency.
|
|
|
|
environment:
|
|
sdk: '>=3.2.0-0 <4.0.0'
|
|
|
|
dependencies:
|
|
font:
|
|
path: ../font
|
|
''');
|
|
|
|
await assetBundle.build(
|
|
packagesPath: packagesPath,
|
|
manifestPath: manifestPath,
|
|
flutterProject: FlutterProject.fromDirectoryTest(fileSystem.directory('main')),
|
|
);
|
|
|
|
expect(assetBundle.entries, contains('FontManifest.json'));
|
|
expect(
|
|
await _getValueAsString('FontManifest.json', assetBundle),
|
|
'[{"family":"packages/font/test_font","fonts":[{"asset":"packages/font/test_font_file"}]}]',
|
|
);
|
|
expect(assetBundle.wasBuiltOnce(), true);
|
|
expect(
|
|
assetBundle.inputFiles.map((File f) => f.path),
|
|
equals(<String>[
|
|
packagesPath,
|
|
fileSystem.path.join(fileSystem.currentDirectory.path, 'font', 'pubspec.yaml'),
|
|
fileSystem.path.join(fileSystem.currentDirectory.path, manifestPath),
|
|
fileSystem.path.join(fileSystem.currentDirectory.path,'font', 'test_font_file'),
|
|
]),
|
|
);
|
|
});
|
|
|
|
testWithoutContext('handles empty pubspec with .packages', () async {
|
|
final String packagesPath = fileSystem.path.join('fuchsia_test', 'main', '.packages');
|
|
final String manifestPath =
|
|
fileSystem.path.join('fuchsia_test', 'main', 'pubspec.yaml');
|
|
|
|
fileSystem.directory(fileSystem.file(manifestPath)).parent.createSync(recursive: true);
|
|
fileSystem.directory(fileSystem.file(packagesPath)).parent.createSync(recursive: true);
|
|
|
|
final ManifestAssetBundle assetBundle = ManifestAssetBundle(
|
|
logger: logger,
|
|
fileSystem: fileSystem,
|
|
platform: platform,
|
|
splitDeferredAssets: true,
|
|
flutterRoot: flutterRoot,
|
|
);
|
|
|
|
await assetBundle.build(
|
|
manifestPath: manifestPath, // file doesn't exist
|
|
packagesPath: packagesPath,
|
|
flutterProject: FlutterProject.fromDirectoryTest(fileSystem.file(manifestPath).parent),
|
|
);
|
|
|
|
expect(assetBundle.wasBuiltOnce(), true);
|
|
expect(
|
|
assetBundle.inputFiles.map((File f) => f.path),
|
|
<String>[],
|
|
);
|
|
});
|
|
|
|
testWithoutContext('bundles material shaders on non-web platforms',
|
|
() async {
|
|
final String shaderPath = fileSystem.path.join(
|
|
flutterRoot,
|
|
'packages',
|
|
'flutter',
|
|
'lib',
|
|
'src',
|
|
'material',
|
|
'shaders',
|
|
'ink_sparkle.frag',
|
|
);
|
|
fileSystem.file(shaderPath).createSync(recursive: true);
|
|
fileSystem.file(fileSystem.path.join('.dart_tool', 'package_config.json'))
|
|
..createSync(recursive: true)
|
|
..writeAsStringSync(r'''
|
|
{
|
|
"configVersion": 2,
|
|
"packages":[
|
|
{
|
|
"name": "my_package",
|
|
"rootUri": "file:///",
|
|
"packageUri": "lib/",
|
|
"languageVersion": "2.17"
|
|
}
|
|
]
|
|
}
|
|
''');
|
|
fileSystem.file('pubspec.yaml').writeAsStringSync('name: my_package');
|
|
final ManifestAssetBundle assetBundle = ManifestAssetBundle(
|
|
logger: logger,
|
|
fileSystem: fileSystem,
|
|
platform: platform,
|
|
flutterRoot: flutterRoot,
|
|
);
|
|
|
|
await assetBundle.build(
|
|
packagesPath: '.packages',
|
|
targetPlatform: TargetPlatform.android_arm,
|
|
flutterProject: FlutterProject.fromDirectoryTest(fileSystem.currentDirectory),
|
|
);
|
|
|
|
expect(assetBundle.entries.keys, contains('shaders/ink_sparkle.frag'));
|
|
});
|
|
|
|
testWithoutContext('bundles material shaders on web platforms',
|
|
() async {
|
|
final String shaderPath = fileSystem.path.join(
|
|
flutterRoot,
|
|
'packages',
|
|
'flutter',
|
|
'lib',
|
|
'src',
|
|
'material',
|
|
'shaders',
|
|
'ink_sparkle.frag',
|
|
);
|
|
fileSystem.file(shaderPath).createSync(recursive: true);
|
|
fileSystem.file(fileSystem.path.join('.dart_tool', 'package_config.json'))
|
|
..createSync(recursive: true)
|
|
..writeAsStringSync(r'''
|
|
{
|
|
"configVersion": 2,
|
|
"packages":[
|
|
{
|
|
"name": "my_package",
|
|
"rootUri": "file:///",
|
|
"packageUri": "lib/",
|
|
"languageVersion": "2.17"
|
|
}
|
|
]
|
|
}
|
|
''');
|
|
fileSystem.file('pubspec.yaml').writeAsStringSync('name: my_package');
|
|
final ManifestAssetBundle assetBundle = ManifestAssetBundle(
|
|
logger: logger,
|
|
fileSystem: fileSystem,
|
|
platform: platform,
|
|
flutterRoot: flutterRoot,
|
|
);
|
|
|
|
await assetBundle.build(
|
|
packagesPath: '.packages',
|
|
targetPlatform: TargetPlatform.web_javascript,
|
|
flutterProject: FlutterProject.fromDirectoryTest(fileSystem.currentDirectory),
|
|
);
|
|
|
|
expect(assetBundle.entries.keys, contains('shaders/ink_sparkle.frag'));
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
Future<String> _getValueAsString(String key, AssetBundle asset) async {
|
|
return String.fromCharCodes(await asset.entries[key]!.contentsAsBytes());
|
|
}
|