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

This auto-formats all *.dart files in the repository outside of the `engine` subdirectory and enforces that these files stay formatted with a presubmit check. **Reviewers:** Please carefully review all the commits except for the one titled "formatted". The "formatted" commit was auto-generated by running `dev/tools/format.sh -a -f`. The other commits were hand-crafted to prepare the repo for the formatting change. I recommend reviewing the commits one-by-one via the "Commits" tab and avoiding Github's "Files changed" tab as it will likely slow down your browser because of the size of this PR. --------- Co-authored-by: Kate Lovett <katelovett@google.com> Co-authored-by: LongCatIsLooong <31859944+LongCatIsLooong@users.noreply.github.com>
633 lines
21 KiB
Dart
633 lines
21 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:args/command_runner.dart';
|
|
import 'package:file/memory.dart';
|
|
import 'package:flutter_tools/src/base/file_system.dart';
|
|
import 'package:flutter_tools/src/base/logger.dart';
|
|
import 'package:flutter_tools/src/build_info.dart';
|
|
import 'package:flutter_tools/src/build_system/build_system.dart';
|
|
import 'package:flutter_tools/src/bundle.dart';
|
|
import 'package:flutter_tools/src/bundle_builder.dart';
|
|
import 'package:flutter_tools/src/cache.dart';
|
|
import 'package:flutter_tools/src/commands/build_bundle.dart';
|
|
import 'package:flutter_tools/src/features.dart';
|
|
import 'package:flutter_tools/src/globals.dart' as globals;
|
|
import 'package:flutter_tools/src/project.dart';
|
|
import 'package:meta/meta.dart';
|
|
import 'package:test/fake.dart';
|
|
import 'package:unified_analytics/unified_analytics.dart';
|
|
|
|
import '../../src/common.dart';
|
|
import '../../src/context.dart';
|
|
import '../../src/fakes.dart';
|
|
import '../../src/test_build_system.dart';
|
|
import '../../src/test_flutter_command_runner.dart';
|
|
|
|
void main() {
|
|
Cache.disableLocking();
|
|
late Directory tempDir;
|
|
late FakeBundleBuilder fakeBundleBuilder;
|
|
final FileSystemStyle fileSystemStyle =
|
|
globals.fs.path.separator == '/' ? FileSystemStyle.posix : FileSystemStyle.windows;
|
|
late FakeAnalytics fakeAnalytics;
|
|
|
|
MemoryFileSystem fsFactory() {
|
|
return MemoryFileSystem.test(style: fileSystemStyle);
|
|
}
|
|
|
|
setUp(() {
|
|
tempDir = globals.fs.systemTempDirectory.createTempSync('flutter_tools_packages_test.');
|
|
|
|
fakeBundleBuilder = FakeBundleBuilder();
|
|
fakeAnalytics = getInitializedFakeAnalyticsInstance(
|
|
fs: fsFactory(),
|
|
fakeFlutterVersion: FakeFlutterVersion(),
|
|
);
|
|
});
|
|
|
|
tearDown(() {
|
|
tryToDelete(tempDir);
|
|
});
|
|
|
|
Future<BuildBundleCommand> runCommandIn(String projectPath, {List<String>? arguments}) async {
|
|
final BuildBundleCommand command = BuildBundleCommand(
|
|
logger: BufferLogger.test(),
|
|
bundleBuilder: fakeBundleBuilder,
|
|
);
|
|
final CommandRunner<void> runner = createTestCommandRunner(command);
|
|
await runner.run(<String>[
|
|
'bundle',
|
|
...?arguments,
|
|
'--target=$projectPath/lib/main.dart',
|
|
'--no-pub',
|
|
]);
|
|
return command;
|
|
}
|
|
|
|
testUsingContext(
|
|
'bundle getUsage indicate that project is a module',
|
|
() async {
|
|
final String projectPath = await createProject(
|
|
tempDir,
|
|
arguments: <String>['--no-pub', '--template=module'],
|
|
);
|
|
|
|
await runCommandIn(projectPath);
|
|
|
|
expect(
|
|
fakeAnalytics.sentEvents,
|
|
contains(
|
|
Event.commandUsageValues(
|
|
workflow: 'bundle',
|
|
commandHasTerminal: false,
|
|
buildBundleTargetPlatform: 'android-arm',
|
|
buildBundleIsModule: true,
|
|
),
|
|
),
|
|
);
|
|
},
|
|
overrides: <Type, Generator>{Analytics: () => fakeAnalytics},
|
|
);
|
|
|
|
testUsingContext(
|
|
'bundle getUsage indicate that project is not a module',
|
|
() async {
|
|
final String projectPath = await createProject(
|
|
tempDir,
|
|
arguments: <String>['--no-pub', '--template=app'],
|
|
);
|
|
|
|
final BuildBundleCommand command = await runCommandIn(projectPath);
|
|
|
|
expect((await command.usageValues).commandBuildBundleIsModule, false);
|
|
expect(
|
|
fakeAnalytics.sentEvents,
|
|
contains(
|
|
Event.commandUsageValues(
|
|
workflow: 'bundle',
|
|
commandHasTerminal: false,
|
|
buildBundleTargetPlatform: 'android-arm',
|
|
buildBundleIsModule: false,
|
|
),
|
|
),
|
|
);
|
|
},
|
|
overrides: <Type, Generator>{Analytics: () => fakeAnalytics},
|
|
);
|
|
|
|
testUsingContext('bundle getUsage indicate the target platform', () async {
|
|
final String projectPath = await createProject(
|
|
tempDir,
|
|
arguments: <String>['--no-pub', '--template=app'],
|
|
);
|
|
|
|
final BuildBundleCommand command = await runCommandIn(projectPath);
|
|
|
|
expect((await command.usageValues).commandBuildBundleTargetPlatform, 'android-arm');
|
|
});
|
|
|
|
testUsingContext(
|
|
'bundle fails to build for Windows if feature is disabled',
|
|
() async {
|
|
globals.fs.file(globals.fs.path.join('lib', 'main.dart')).createSync(recursive: true);
|
|
globals.fs.file('pubspec.yaml').createSync(recursive: true);
|
|
final CommandRunner<void> runner = createTestCommandRunner(
|
|
BuildBundleCommand(logger: BufferLogger.test()),
|
|
);
|
|
|
|
expect(
|
|
() => runner.run(<String>['bundle', '--no-pub', '--target-platform=windows-x64']),
|
|
throwsToolExit(message: 'Windows is not a supported target platform.'),
|
|
);
|
|
},
|
|
overrides: <Type, Generator>{
|
|
BuildSystem: () => TestBuildSystem.all(BuildResult(success: true)),
|
|
FileSystem: fsFactory,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
FeatureFlags: () => TestFeatureFlags(),
|
|
},
|
|
);
|
|
|
|
testUsingContext(
|
|
'bundle fails to build for Linux if feature is disabled',
|
|
() async {
|
|
globals.fs.file(globals.fs.path.join('lib', 'main.dart')).createSync(recursive: true);
|
|
globals.fs.file('pubspec.yaml').createSync();
|
|
final CommandRunner<void> runner = createTestCommandRunner(
|
|
BuildBundleCommand(logger: BufferLogger.test()),
|
|
);
|
|
|
|
expect(
|
|
() => runner.run(<String>['bundle', '--no-pub', '--target-platform=linux-x64']),
|
|
throwsToolExit(message: 'Linux is not a supported target platform.'),
|
|
);
|
|
},
|
|
overrides: <Type, Generator>{
|
|
BuildSystem: () => TestBuildSystem.all(BuildResult(success: true)),
|
|
FileSystem: fsFactory,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
FeatureFlags: () => TestFeatureFlags(),
|
|
},
|
|
);
|
|
|
|
testUsingContext(
|
|
'bundle fails to build for macOS if feature is disabled',
|
|
() async {
|
|
globals.fs.file(globals.fs.path.join('lib', 'main.dart')).createSync(recursive: true);
|
|
globals.fs.file('pubspec.yaml').createSync();
|
|
final CommandRunner<void> runner = createTestCommandRunner(
|
|
BuildBundleCommand(logger: BufferLogger.test()),
|
|
);
|
|
|
|
expect(
|
|
() => runner.run(<String>['bundle', '--no-pub', '--target-platform=darwin']),
|
|
throwsToolExit(message: 'macOS is not a supported target platform.'),
|
|
);
|
|
},
|
|
overrides: <Type, Generator>{
|
|
BuildSystem: () => TestBuildSystem.all(BuildResult(success: true)),
|
|
FileSystem: fsFactory,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
FeatureFlags: () => TestFeatureFlags(),
|
|
},
|
|
);
|
|
|
|
testUsingContext(
|
|
'bundle --tree-shake-icons fails',
|
|
() async {
|
|
globals.fs.file(globals.fs.path.join('lib', 'main.dart')).createSync(recursive: true);
|
|
globals.fs.file('pubspec.yaml').createSync();
|
|
final CommandRunner<void> runner = createTestCommandRunner(
|
|
BuildBundleCommand(logger: BufferLogger.test()),
|
|
);
|
|
|
|
expect(
|
|
() => runner.run(<String>['bundle', '--no-pub', '--release', '--tree-shake-icons']),
|
|
throwsToolExit(message: 'tree-shake-icons'),
|
|
);
|
|
},
|
|
overrides: <Type, Generator>{
|
|
FileSystem: fsFactory,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
},
|
|
);
|
|
|
|
testUsingContext(
|
|
'bundle can build for Windows if feature is enabled',
|
|
() async {
|
|
globals.fs.file(globals.fs.path.join('lib', 'main.dart')).createSync(recursive: true);
|
|
globals.fs.file('pubspec.yaml').createSync();
|
|
final CommandRunner<void> runner = createTestCommandRunner(
|
|
BuildBundleCommand(logger: BufferLogger.test()),
|
|
);
|
|
|
|
await runner.run(<String>['bundle', '--no-pub', '--target-platform=windows-x64']);
|
|
},
|
|
overrides: <Type, Generator>{
|
|
BuildSystem: () => TestBuildSystem.all(BuildResult(success: true)),
|
|
FileSystem: fsFactory,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
FeatureFlags: () => TestFeatureFlags(isWindowsEnabled: true),
|
|
},
|
|
);
|
|
|
|
testUsingContext(
|
|
'bundle can build for Linux if feature is enabled',
|
|
() async {
|
|
globals.fs.file(globals.fs.path.join('lib', 'main.dart')).createSync(recursive: true);
|
|
globals.fs.file('pubspec.yaml').createSync();
|
|
final CommandRunner<void> runner = createTestCommandRunner(
|
|
BuildBundleCommand(logger: BufferLogger.test()),
|
|
);
|
|
|
|
await runner.run(<String>['bundle', '--no-pub', '--target-platform=linux-x64']);
|
|
},
|
|
overrides: <Type, Generator>{
|
|
BuildSystem: () => TestBuildSystem.all(BuildResult(success: true)),
|
|
FileSystem: fsFactory,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
FeatureFlags: () => TestFeatureFlags(isLinuxEnabled: true),
|
|
},
|
|
);
|
|
|
|
testUsingContext(
|
|
'bundle can build for macOS if feature is enabled',
|
|
() async {
|
|
globals.fs.file(globals.fs.path.join('lib', 'main.dart')).createSync(recursive: true);
|
|
globals.fs.file('pubspec.yaml').createSync();
|
|
final CommandRunner<void> runner = createTestCommandRunner(
|
|
BuildBundleCommand(logger: BufferLogger.test()),
|
|
);
|
|
|
|
await runner.run(<String>['bundle', '--no-pub', '--target-platform=darwin']);
|
|
},
|
|
overrides: <Type, Generator>{
|
|
BuildSystem: () => TestBuildSystem.all(BuildResult(success: true)),
|
|
FileSystem: fsFactory,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
FeatureFlags: () => TestFeatureFlags(isMacOSEnabled: true),
|
|
},
|
|
);
|
|
|
|
testUsingContext(
|
|
'passes track widget creation through',
|
|
() async {
|
|
globals.fs.file(globals.fs.path.join('lib', 'main.dart')).createSync(recursive: true);
|
|
globals.fs.file('pubspec.yaml').createSync();
|
|
|
|
final CommandRunner<void> runner = createTestCommandRunner(
|
|
BuildBundleCommand(logger: BufferLogger.test()),
|
|
);
|
|
|
|
await runner.run(<String>[
|
|
'bundle',
|
|
'--no-pub',
|
|
'--debug',
|
|
'--target-platform=android-arm',
|
|
'--track-widget-creation',
|
|
]);
|
|
},
|
|
overrides: <Type, Generator>{
|
|
BuildSystem:
|
|
() => TestBuildSystem.all(BuildResult(success: true), (
|
|
Target target,
|
|
Environment environment,
|
|
) {
|
|
expect(environment.defines, <String, String>{
|
|
kBuildMode: 'debug',
|
|
kTargetPlatform: 'android-arm',
|
|
kTargetFile: globals.fs.path.join('lib', 'main.dart'),
|
|
kTrackWidgetCreation: 'true',
|
|
kFileSystemScheme: 'org-dartlang-root',
|
|
kIconTreeShakerFlag: 'false',
|
|
kDeferredComponents: 'false',
|
|
kDartObfuscation: 'false',
|
|
kNativeAssets: 'false',
|
|
});
|
|
}),
|
|
FileSystem: fsFactory,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
},
|
|
);
|
|
|
|
testUsingContext(
|
|
'passes dart-define through',
|
|
() async {
|
|
globals.fs.file(globals.fs.path.join('lib', 'main.dart')).createSync(recursive: true);
|
|
globals.fs.file('pubspec.yaml').createSync();
|
|
final CommandRunner<void> runner = createTestCommandRunner(
|
|
BuildBundleCommand(logger: BufferLogger.test()),
|
|
);
|
|
|
|
await runner.run(<String>[
|
|
'bundle',
|
|
'--no-pub',
|
|
'--debug',
|
|
'--target-platform=android-arm',
|
|
'--dart-define=foo=bar',
|
|
]);
|
|
},
|
|
overrides: <Type, Generator>{
|
|
BuildSystem:
|
|
() => TestBuildSystem.all(BuildResult(success: true), (
|
|
Target target,
|
|
Environment environment,
|
|
) {
|
|
expect(environment.defines, <String, String>{
|
|
kBuildMode: 'debug',
|
|
kTargetPlatform: 'android-arm',
|
|
kTargetFile: globals.fs.path.join('lib', 'main.dart'),
|
|
kTrackWidgetCreation: 'true',
|
|
kFileSystemScheme: 'org-dartlang-root',
|
|
kDartDefines: 'Zm9vPWJhcg==',
|
|
kIconTreeShakerFlag: 'false',
|
|
kDeferredComponents: 'false',
|
|
kDartObfuscation: 'false',
|
|
kNativeAssets: 'false',
|
|
});
|
|
}),
|
|
FileSystem: fsFactory,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
},
|
|
);
|
|
|
|
testUsingContext(
|
|
'passes filesystem-scheme through',
|
|
() async {
|
|
globals.fs.file(globals.fs.path.join('lib', 'main.dart')).createSync(recursive: true);
|
|
globals.fs.file('pubspec.yaml').createSync();
|
|
final CommandRunner<void> runner = createTestCommandRunner(
|
|
BuildBundleCommand(logger: BufferLogger.test()),
|
|
);
|
|
|
|
await runner.run(<String>[
|
|
'bundle',
|
|
'--no-pub',
|
|
'--debug',
|
|
'--target-platform=android-arm',
|
|
'--filesystem-scheme=org-dartlang-root2',
|
|
]);
|
|
},
|
|
overrides: <Type, Generator>{
|
|
BuildSystem:
|
|
() => TestBuildSystem.all(BuildResult(success: true), (
|
|
Target target,
|
|
Environment environment,
|
|
) {
|
|
expect(environment.defines, <String, String>{
|
|
kBuildMode: 'debug',
|
|
kTargetPlatform: 'android-arm',
|
|
kTargetFile: globals.fs.path.join('lib', 'main.dart'),
|
|
kTrackWidgetCreation: 'true',
|
|
kFileSystemScheme: 'org-dartlang-root2',
|
|
kIconTreeShakerFlag: 'false',
|
|
kDeferredComponents: 'false',
|
|
kDartObfuscation: 'false',
|
|
kNativeAssets: 'false',
|
|
});
|
|
}),
|
|
FileSystem: fsFactory,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
},
|
|
);
|
|
|
|
testUsingContext(
|
|
'passes filesystem-roots through',
|
|
() async {
|
|
globals.fs.file(globals.fs.path.join('lib', 'main.dart')).createSync(recursive: true);
|
|
globals.fs.file('pubspec.yaml').createSync();
|
|
final CommandRunner<void> runner = createTestCommandRunner(
|
|
BuildBundleCommand(logger: BufferLogger.test()),
|
|
);
|
|
|
|
await runner.run(<String>[
|
|
'bundle',
|
|
'--no-pub',
|
|
'--debug',
|
|
'--target-platform=android-arm',
|
|
'--filesystem-root=test1,test2',
|
|
]);
|
|
},
|
|
overrides: <Type, Generator>{
|
|
BuildSystem:
|
|
() => TestBuildSystem.all(BuildResult(success: true), (
|
|
Target target,
|
|
Environment environment,
|
|
) {
|
|
expect(environment.defines, <String, String>{
|
|
kBuildMode: 'debug',
|
|
kTargetPlatform: 'android-arm',
|
|
kTargetFile: globals.fs.path.join('lib', 'main.dart'),
|
|
kTrackWidgetCreation: 'true',
|
|
kFileSystemScheme: 'org-dartlang-root',
|
|
kFileSystemRoots: 'test1,test2',
|
|
kIconTreeShakerFlag: 'false',
|
|
kDeferredComponents: 'false',
|
|
kDartObfuscation: 'false',
|
|
kNativeAssets: 'false',
|
|
});
|
|
}),
|
|
FileSystem: fsFactory,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
},
|
|
);
|
|
|
|
testUsingContext(
|
|
'passes extra frontend-options through',
|
|
() async {
|
|
globals.fs.file(globals.fs.path.join('lib', 'main.dart')).createSync(recursive: true);
|
|
globals.fs.file('pubspec.yaml').createSync();
|
|
final CommandRunner<void> runner = createTestCommandRunner(
|
|
BuildBundleCommand(logger: BufferLogger.test()),
|
|
);
|
|
|
|
await runner.run(<String>[
|
|
'bundle',
|
|
'--no-pub',
|
|
'--debug',
|
|
'--target-platform=android-arm',
|
|
'--extra-front-end-options=--testflag,--testflag2',
|
|
]);
|
|
},
|
|
overrides: <Type, Generator>{
|
|
BuildSystem:
|
|
() => TestBuildSystem.all(BuildResult(success: true), (
|
|
Target target,
|
|
Environment environment,
|
|
) {
|
|
expect(environment.defines, <String, String>{
|
|
kBuildMode: 'debug',
|
|
kTargetPlatform: 'android-arm',
|
|
kTargetFile: globals.fs.path.join('lib', 'main.dart'),
|
|
kTrackWidgetCreation: 'true',
|
|
kFileSystemScheme: 'org-dartlang-root',
|
|
kExtraFrontEndOptions: '--testflag,--testflag2',
|
|
kIconTreeShakerFlag: 'false',
|
|
kDeferredComponents: 'false',
|
|
kDartObfuscation: 'false',
|
|
kNativeAssets: 'false',
|
|
});
|
|
}),
|
|
FileSystem: fsFactory,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
},
|
|
);
|
|
|
|
testUsingContext(
|
|
'passes extra gen_snapshot-options through',
|
|
() async {
|
|
globals.fs.file(globals.fs.path.join('lib', 'main.dart')).createSync(recursive: true);
|
|
globals.fs.file('pubspec.yaml').createSync();
|
|
final CommandRunner<void> runner = createTestCommandRunner(
|
|
BuildBundleCommand(logger: BufferLogger.test()),
|
|
);
|
|
|
|
await runner.run(<String>[
|
|
'bundle',
|
|
'--no-pub',
|
|
'--debug',
|
|
'--target-platform=android-arm',
|
|
'--extra-gen-snapshot-options=--testflag,--testflag2',
|
|
]);
|
|
},
|
|
overrides: <Type, Generator>{
|
|
BuildSystem:
|
|
() => TestBuildSystem.all(BuildResult(success: true), (
|
|
Target target,
|
|
Environment environment,
|
|
) {
|
|
expect(environment.defines, <String, String>{
|
|
kBuildMode: 'debug',
|
|
kTargetPlatform: 'android-arm',
|
|
kTargetFile: globals.fs.path.join('lib', 'main.dart'),
|
|
kTrackWidgetCreation: 'true',
|
|
kFileSystemScheme: 'org-dartlang-root',
|
|
kExtraGenSnapshotOptions: '--testflag,--testflag2',
|
|
kIconTreeShakerFlag: 'false',
|
|
kDeferredComponents: 'false',
|
|
kDartObfuscation: 'false',
|
|
kNativeAssets: 'false',
|
|
});
|
|
}),
|
|
FileSystem: fsFactory,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
},
|
|
);
|
|
|
|
testUsingContext(
|
|
'passes profile options through',
|
|
() async {
|
|
globals.fs.file(globals.fs.path.join('lib', 'main.dart')).createSync(recursive: true);
|
|
globals.fs.file('pubspec.yaml').createSync();
|
|
final CommandRunner<void> runner = createTestCommandRunner(
|
|
BuildBundleCommand(logger: BufferLogger.test()),
|
|
);
|
|
|
|
await runner.run(<String>[
|
|
'bundle',
|
|
'--no-pub',
|
|
'--profile',
|
|
'--dart-define=foo=bar',
|
|
'--target-platform=android-arm',
|
|
'--track-widget-creation',
|
|
'--filesystem-scheme=org-dartlang-root',
|
|
'--filesystem-root=test1,test2',
|
|
'--extra-gen-snapshot-options=--testflag,--testflag2',
|
|
'--extra-front-end-options=--testflagFront,--testflagFront2',
|
|
]);
|
|
},
|
|
overrides: <Type, Generator>{
|
|
BuildSystem:
|
|
() => TestBuildSystem.all(BuildResult(success: true), (
|
|
Target target,
|
|
Environment environment,
|
|
) {
|
|
expect(environment.defines, <String, String>{
|
|
kBuildMode: 'profile',
|
|
kTargetPlatform: 'android-arm',
|
|
kTargetFile: globals.fs.path.join('lib', 'main.dart'),
|
|
kDartDefines: 'Zm9vPWJhcg==',
|
|
kTrackWidgetCreation: 'true',
|
|
kFileSystemScheme: 'org-dartlang-root',
|
|
kFileSystemRoots: 'test1,test2',
|
|
kExtraGenSnapshotOptions: '--testflag,--testflag2',
|
|
kExtraFrontEndOptions: '--testflagFront,--testflagFront2',
|
|
kIconTreeShakerFlag: 'false',
|
|
kDeferredComponents: 'false',
|
|
kDartObfuscation: 'false',
|
|
kNativeAssets: 'false',
|
|
});
|
|
}),
|
|
FileSystem: fsFactory,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
},
|
|
);
|
|
|
|
testUsingContext(
|
|
'passes release options through',
|
|
() async {
|
|
globals.fs.file(globals.fs.path.join('lib', 'main.dart')).createSync(recursive: true);
|
|
globals.fs.file('pubspec.yaml').createSync();
|
|
final CommandRunner<void> runner = createTestCommandRunner(
|
|
BuildBundleCommand(logger: BufferLogger.test()),
|
|
);
|
|
|
|
await runner.run(<String>[
|
|
'bundle',
|
|
'--no-pub',
|
|
'--release',
|
|
'--dart-define=foo=bar',
|
|
'--target-platform=android-arm',
|
|
'--track-widget-creation',
|
|
'--filesystem-scheme=org-dartlang-root',
|
|
'--filesystem-root=test1,test2',
|
|
'--extra-gen-snapshot-options=--testflag,--testflag2',
|
|
'--extra-front-end-options=--testflagFront,--testflagFront2',
|
|
]);
|
|
},
|
|
overrides: <Type, Generator>{
|
|
BuildSystem:
|
|
() => TestBuildSystem.all(BuildResult(success: true), (
|
|
Target target,
|
|
Environment environment,
|
|
) {
|
|
expect(environment.defines, <String, String>{
|
|
kBuildMode: 'release',
|
|
kTargetPlatform: 'android-arm',
|
|
kTargetFile: globals.fs.path.join('lib', 'main.dart'),
|
|
kDartDefines: 'Zm9vPWJhcg==',
|
|
kTrackWidgetCreation: 'true',
|
|
kFileSystemScheme: 'org-dartlang-root',
|
|
kFileSystemRoots: 'test1,test2',
|
|
kExtraGenSnapshotOptions: '--testflag,--testflag2',
|
|
kExtraFrontEndOptions: '--testflagFront,--testflagFront2',
|
|
kIconTreeShakerFlag: 'false',
|
|
kDeferredComponents: 'false',
|
|
kDartObfuscation: 'false',
|
|
kNativeAssets: 'false',
|
|
});
|
|
}),
|
|
FileSystem: fsFactory,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
},
|
|
);
|
|
}
|
|
|
|
class FakeBundleBuilder extends Fake implements BundleBuilder {
|
|
@override
|
|
Future<void> build({
|
|
required TargetPlatform platform,
|
|
required BuildInfo buildInfo,
|
|
FlutterProject? project,
|
|
String? mainPath,
|
|
String manifestPath = defaultManifestPath,
|
|
String? applicationKernelFilePath,
|
|
String? depfilePath,
|
|
String? assetDirPath,
|
|
bool buildNativeAssets = true,
|
|
@visibleForTesting BuildSystem? buildSystem,
|
|
}) async {}
|
|
}
|