// 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 '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/base/platform.dart'; import 'package:flutter_tools/src/build_info.dart'; import 'package:flutter_tools/src/cache.dart'; import 'package:flutter_tools/src/commands/build.dart'; import 'package:flutter_tools/src/commands/build_macos.dart'; import 'package:flutter_tools/src/features.dart'; import 'package:flutter_tools/src/ios/xcodeproj.dart'; import 'package:flutter_tools/src/project.dart'; import 'package:flutter_tools/src/reporting/reporting.dart'; import 'package:process/process.dart'; import '../../src/common.dart'; import '../../src/context.dart'; import '../../src/testbed.dart'; class FakeXcodeProjectInterpreterWithProfile extends FakeXcodeProjectInterpreter { @override Future getInfo(String projectPath, {String projectFilename}) async { return XcodeProjectInfo( ['Runner'], ['Debug', 'Profile', 'Release'], ['Runner'], BufferLogger.test(), ); } } final Platform macosPlatform = FakePlatform( operatingSystem: 'macos', environment: { 'FLUTTER_ROOT': '/', } ); final Platform notMacosPlatform = FakePlatform( operatingSystem: 'linux', environment: { 'FLUTTER_ROOT': '/', } ); void main() { FileSystem fileSystem; Usage usage; setUpAll(() { Cache.disableLocking(); }); setUp(() { fileSystem = MemoryFileSystem.test(); usage = Usage.test(); }); // Sets up the minimal mock project files necessary to look like a Flutter project. void createCoreMockProjectFiles() { fileSystem.file('pubspec.yaml').createSync(); fileSystem.file('.packages').createSync(); fileSystem.file(fileSystem.path.join('lib', 'main.dart')).createSync(recursive: true); } // Sets up the minimal mock project files necessary for macOS builds to succeed. void createMinimalMockProjectFiles() { fileSystem.directory(fileSystem.path.join('macos', 'Runner.xcworkspace')).createSync(recursive: true); createCoreMockProjectFiles(); } // Creates a FakeCommand for the xcodebuild call to build the app // in the given configuration. FakeCommand setUpMockXcodeBuildHandler(String configuration, { bool verbose = false, void Function() onRun }) { final FlutterProject flutterProject = FlutterProject.fromDirectory(fileSystem.currentDirectory); final Directory flutterBuildDir = fileSystem.directory(getMacOSBuildDirectory()); return FakeCommand( command: [ '/usr/bin/env', 'xcrun', 'xcodebuild', '-workspace', flutterProject.macos.xcodeWorkspace.path, '-configuration', configuration, '-scheme', 'Runner', '-derivedDataPath', flutterBuildDir.absolute.path, 'OBJROOT=${fileSystem.path.join(flutterBuildDir.absolute.path, 'Build', 'Intermediates.noindex')}', 'SYMROOT=${fileSystem.path.join(flutterBuildDir.absolute.path, 'Build', 'Products')}', if (verbose) 'VERBOSE_SCRIPT_LOGGING=YES' else '-quiet', 'COMPILER_INDEX_STORE_ENABLE=NO', ], stdout: 'STDOUT STUFF', onRun: () { fileSystem.file(fileSystem.path.join('macos', 'Flutter', 'ephemeral', '.app_filename')) ..createSync(recursive: true) ..writeAsStringSync('example.app'); if (onRun != null) { onRun(); } } ); } testUsingContext('macOS build fails when there is no macos project', () async { final BuildCommand command = BuildCommand(); createCoreMockProjectFiles(); expect(createTestCommandRunner(command).run( const ['build', 'macos', '--no-pub'] ), throwsToolExit(message: 'No macOS desktop project configured')); }, overrides: { Platform: () => macosPlatform, FileSystem: () => fileSystem, ProcessManager: () => FakeProcessManager.any(), FeatureFlags: () => TestFeatureFlags(isMacOSEnabled: true), }); testUsingContext('macOS build fails on non-macOS platform', () async { final BuildCommand command = BuildCommand(); fileSystem.file('pubspec.yaml').createSync(); fileSystem.file('.packages').createSync(); fileSystem.file(fileSystem.path.join('lib', 'main.dart')) .createSync(recursive: true); expect(createTestCommandRunner(command).run( const ['build', 'macos', '--no-pub'] ), throwsToolExit()); }, overrides: { Platform: () => notMacosPlatform, FileSystem: () => fileSystem, ProcessManager: () => FakeProcessManager.any(), FeatureFlags: () => TestFeatureFlags(isMacOSEnabled: true), }); testUsingContext('macOS build forwards error stdout to status logger error', () async { final BuildCommand command = BuildCommand(); createMinimalMockProjectFiles(); await createTestCommandRunner(command).run( const ['build', 'macos', '--debug', '--no-pub'] ); expect(testLogger.statusText, isNot(contains('STDOUT STUFF'))); expect(testLogger.traceText, isNot(contains('STDOUT STUFF'))); expect(testLogger.errorText, contains('STDOUT STUFF')); }, overrides: { FileSystem: () => fileSystem, ProcessManager: () => FakeProcessManager.list([ setUpMockXcodeBuildHandler('Debug') ]), Platform: () => macosPlatform, FeatureFlags: () => TestFeatureFlags(isMacOSEnabled: true), }); testUsingContext('macOS build invokes xcode build (debug)', () async { final BuildCommand command = BuildCommand(); createMinimalMockProjectFiles(); await createTestCommandRunner(command).run( const ['build', 'macos', '--debug', '--no-pub'] ); }, overrides: { FileSystem: () => fileSystem, ProcessManager: () => FakeProcessManager.list([ setUpMockXcodeBuildHandler('Debug') ]), Platform: () => macosPlatform, FeatureFlags: () => TestFeatureFlags(isMacOSEnabled: true), }); testUsingContext('macOS build invokes xcode build (debug) with verbosity', () async { final BuildCommand command = BuildCommand(); createMinimalMockProjectFiles(); await createTestCommandRunner(command).run( const ['build', 'macos', '--debug', '--no-pub', '-v'] ); }, overrides: { FileSystem: () => fileSystem, ProcessManager: () => FakeProcessManager.list([ setUpMockXcodeBuildHandler('Debug', verbose: true) ]), Platform: () => macosPlatform, FeatureFlags: () => TestFeatureFlags(isMacOSEnabled: true), }); testUsingContext('macOS build invokes xcode build (profile)', () async { final BuildCommand command = BuildCommand(); createMinimalMockProjectFiles(); await createTestCommandRunner(command).run( const ['build', 'macos', '--profile', '--no-pub'] ); }, overrides: { FileSystem: () => fileSystem, ProcessManager: () => FakeProcessManager.list([ setUpMockXcodeBuildHandler('Profile') ]), Platform: () => macosPlatform, XcodeProjectInterpreter: () => FakeXcodeProjectInterpreterWithProfile(), FeatureFlags: () => TestFeatureFlags(isMacOSEnabled: true), }); testUsingContext('macOS build invokes xcode build (release)', () async { final BuildCommand command = BuildCommand(); createMinimalMockProjectFiles(); await createTestCommandRunner(command).run( const ['build', 'macos', '--release', '--no-pub'] ); }, overrides: { FileSystem: () => fileSystem, ProcessManager: () => FakeProcessManager.list([ setUpMockXcodeBuildHandler('Release') ]), Platform: () => macosPlatform, FeatureFlags: () => TestFeatureFlags(isMacOSEnabled: true), }); testUsingContext('macOS build supports standard desktop build options', () async { final BuildCommand command = BuildCommand(); createMinimalMockProjectFiles(); fileSystem.file('lib/other.dart') .createSync(recursive: true); await createTestCommandRunner(command).run( const [ 'build', 'macos', '--target=lib/other.dart', '--no-pub', '--track-widget-creation', '--split-debug-info=foo/', '--enable-experiment=non-nullable', '--obfuscate', '--dart-define=foo.bar=2', '--dart-define=fizz.far=3', '--tree-shake-icons', '--bundle-sksl-path=foo/bar.sksl.json', ] ); final List contents = fileSystem .file('./macos/Flutter/ephemeral/Flutter-Generated.xcconfig') .readAsLinesSync(); expect(contents, containsAll([ 'DART_DEFINES=foo.bar%3D2,fizz.far%3D3', 'DART_OBFUSCATION=true', 'EXTRA_FRONT_END_OPTIONS=--enable-experiment%3Dnon-nullable', 'EXTRA_GEN_SNAPSHOT_OPTIONS=--enable-experiment%3Dnon-nullable', 'SPLIT_DEBUG_INFO=foo/', 'TRACK_WIDGET_CREATION=true', 'TREE_SHAKE_ICONS=true', 'FLUTTER_TARGET=lib/other.dart', 'BUNDLE_SKSL_PATH=foo/bar.sksl.json', ])); }, overrides: { FileSystem: () => fileSystem, ProcessManager: () => FakeProcessManager.list([ setUpMockXcodeBuildHandler('Release') ]), Platform: () => macosPlatform, FeatureFlags: () => TestFeatureFlags(isMacOSEnabled: true), }); testUsingContext('macOS build supports build-name and build-number', () async { final BuildCommand command = BuildCommand(); createMinimalMockProjectFiles(); await createTestCommandRunner(command).run( const [ 'build', 'macos', '--debug', '--no-pub', '--build-name=1.2.3', '--build-number=42', ], ); final String contents = fileSystem .file('./macos/Flutter/ephemeral/Flutter-Generated.xcconfig') .readAsStringSync(); expect(contents, contains('FLUTTER_BUILD_NAME=1.2.3')); expect(contents, contains('FLUTTER_BUILD_NUMBER=42')); }, overrides: { FileSystem: () => fileSystem, ProcessManager: () => FakeProcessManager.list([ setUpMockXcodeBuildHandler('Debug') ]), Platform: () => macosPlatform, FeatureFlags: () => TestFeatureFlags(isMacOSEnabled: true), }); testUsingContext('Refuses to build for macOS when feature is disabled', () { final CommandRunner runner = createTestCommandRunner(BuildCommand()); expect(() => runner.run(['build', 'macos', '--no-pub']), throwsToolExit()); }, overrides: { FeatureFlags: () => TestFeatureFlags(isMacOSEnabled: false), }); testUsingContext('hidden when not enabled on macOS host', () { expect(BuildMacosCommand(verboseHelp: false).hidden, true); }, overrides: { FeatureFlags: () => TestFeatureFlags(isMacOSEnabled: false), Platform: () => macosPlatform, }); testUsingContext('Not hidden when enabled and on macOS host', () { expect(BuildMacosCommand(verboseHelp: false).hidden, false); }, overrides: { FeatureFlags: () => TestFeatureFlags(isMacOSEnabled: true), Platform: () => macosPlatform, }); testUsingContext('Performs code size analysis and sends analytics', () async { final BuildCommand command = BuildCommand(); createMinimalMockProjectFiles(); fileSystem.file('build/macos/Build/Products/Release/Runner.app/App') ..createSync(recursive: true) ..writeAsBytesSync(List.generate(10000, (int index) => 0)); // Capture Usage.test() events. final StringBuffer buffer = await capturedConsolePrint(() => createTestCommandRunner(command).run( const ['build', 'macos', '--no-pub', '--analyze-size'] ) ); expect(testLogger.statusText, contains('A summary of your macOS bundle analysis can be found at')); expect(buffer.toString(), contains('event {category: code-size-analysis, action: macos, label: null, value: null, cd33:')); }, overrides: { FileSystem: () => fileSystem, ProcessManager: () => FakeProcessManager.list([ setUpMockXcodeBuildHandler('Release', onRun: () { fileSystem.file('build/flutter_size_01/snapshot.x86_64.json') ..createSync(recursive: true) ..writeAsStringSync('''[ { "l": "dart:_internal", "c": "SubListIterable", "n": "[Optimized] skip", "s": 2400 } ]'''); fileSystem.file('build/flutter_size_01/trace.x86_64.json') ..createSync(recursive: true) ..writeAsStringSync('{}'); }), ]), Platform: () => macosPlatform, FeatureFlags: () => TestFeatureFlags(isMacOSEnabled: true), FileSystemUtils: () => FileSystemUtils(fileSystem: fileSystem, platform: macosPlatform), Usage: () => usage, }); }