mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
779 lines
29 KiB
Dart
779 lines
29 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.
|
|
|
|
// @dart = 2.8
|
|
|
|
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/platform.dart';
|
|
import 'package:flutter_tools/src/cache.dart';
|
|
import 'package:flutter_tools/src/commands/build.dart';
|
|
import 'package:flutter_tools/src/commands/build_ios.dart';
|
|
import 'package:flutter_tools/src/ios/xcodeproj.dart';
|
|
import 'package:flutter_tools/src/reporting/reporting.dart';
|
|
|
|
import '../../general.shard/ios/xcresult_test_data.dart';
|
|
import '../../src/common.dart';
|
|
import '../../src/context.dart';
|
|
import '../../src/fake_process_manager.dart';
|
|
import '../../src/test_flutter_command_runner.dart';
|
|
|
|
class FakeXcodeProjectInterpreterWithBuildSettings extends FakeXcodeProjectInterpreter {
|
|
FakeXcodeProjectInterpreterWithBuildSettings({ this.overrides = const <String, String>{} });
|
|
|
|
final Map<String, String> overrides;
|
|
|
|
@override
|
|
Future<Map<String, String>> getBuildSettings(
|
|
String projectPath, {
|
|
XcodeProjectBuildContext buildContext,
|
|
Duration timeout = const Duration(minutes: 1),
|
|
}) async {
|
|
return <String, String>{
|
|
...overrides,
|
|
'PRODUCT_BUNDLE_IDENTIFIER': 'io.flutter.someProject',
|
|
'DEVELOPMENT_TEAM': 'abc',
|
|
};
|
|
}
|
|
}
|
|
|
|
final Platform macosPlatform = FakePlatform(
|
|
operatingSystem: 'macos',
|
|
environment: <String, String>{
|
|
'FLUTTER_ROOT': '/',
|
|
'HOME': '/',
|
|
}
|
|
);
|
|
final Platform notMacosPlatform = FakePlatform(
|
|
environment: <String, String>{
|
|
'FLUTTER_ROOT': '/',
|
|
}
|
|
);
|
|
|
|
void main() {
|
|
FileSystem fileSystem;
|
|
TestUsage usage;
|
|
FakeProcessManager fakeProcessManager;
|
|
|
|
setUpAll(() {
|
|
Cache.disableLocking();
|
|
});
|
|
|
|
setUp(() {
|
|
fileSystem = MemoryFileSystem.test();
|
|
usage = TestUsage();
|
|
fakeProcessManager = FakeProcessManager.empty();
|
|
});
|
|
|
|
// 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 iOS builds to succeed.
|
|
void createMinimalMockProjectFiles() {
|
|
fileSystem.directory(fileSystem.path.join('ios', 'Runner.xcodeproj')).createSync(recursive: true);
|
|
fileSystem.directory(fileSystem.path.join('ios', 'Runner.xcworkspace')).createSync(recursive: true);
|
|
fileSystem.file(fileSystem.path.join('ios', 'Runner.xcodeproj', 'project.pbxproj')).createSync();
|
|
createCoreMockProjectFiles();
|
|
}
|
|
|
|
const FakeCommand xattrCommand = FakeCommand(command: <String>[
|
|
'xattr', '-r', '-d', 'com.apple.FinderInfo', '/',
|
|
]);
|
|
|
|
FakeCommand setUpXCResultCommand({String stdout = '', void Function() onRun}) {
|
|
return FakeCommand(
|
|
command: const <String>[
|
|
'xcrun',
|
|
'xcresulttool',
|
|
'get',
|
|
'--path',
|
|
_xcBundleFilePath,
|
|
'--format',
|
|
'json',
|
|
],
|
|
stdout: stdout,
|
|
onRun: onRun,
|
|
);
|
|
}
|
|
|
|
// Creates a FakeCommand for the xcodebuild call to build the app
|
|
// in the given configuration.
|
|
FakeCommand setUpFakeXcodeBuildHandler({ bool verbose = false, int exitCode = 0, void Function() onRun }) {
|
|
return FakeCommand(
|
|
command: <String>[
|
|
'xcrun',
|
|
'xcodebuild',
|
|
'-configuration', 'Release',
|
|
if (verbose)
|
|
'VERBOSE_SCRIPT_LOGGING=YES'
|
|
else
|
|
'-quiet',
|
|
'-workspace', 'Runner.xcworkspace',
|
|
'-scheme', 'Runner',
|
|
'-sdk', 'iphoneos',
|
|
'-destination',
|
|
'generic/platform=iOS',
|
|
'-resultBundlePath', '/.tmp_rand0/flutter_ios_build_temp_dirrand0/temporary_xcresult_bundle',
|
|
'-resultBundleVersion', '3',
|
|
'FLUTTER_SUPPRESS_ANALYTICS=true',
|
|
'COMPILER_INDEX_STORE_ENABLE=NO',
|
|
'-archivePath', '/build/ios/archive/Runner',
|
|
'archive',
|
|
],
|
|
stdout: 'STDOUT STUFF',
|
|
exitCode: exitCode,
|
|
onRun: onRun,
|
|
);
|
|
}
|
|
|
|
FakeCommand exportArchiveCommand({
|
|
String exportOptionsPlist = '/ExportOptions.plist',
|
|
File cachePlist,
|
|
}) {
|
|
return FakeCommand(
|
|
command: <String>[
|
|
'xcrun',
|
|
'xcodebuild',
|
|
'-exportArchive',
|
|
'-allowProvisioningDeviceRegistration',
|
|
'-allowProvisioningUpdates',
|
|
'-archivePath',
|
|
'/build/ios/archive/Runner.xcarchive',
|
|
'-exportPath',
|
|
'/build/ios/ipa',
|
|
'-exportOptionsPlist',
|
|
exportOptionsPlist,
|
|
],
|
|
onRun: () {
|
|
// exportOptionsPlist will be cleaned up within the command.
|
|
// Save it somewhere else so test expectations can be run on it.
|
|
if (cachePlist != null) {
|
|
cachePlist.writeAsStringSync(fileSystem.file(_exportOptionsPlist).readAsStringSync());
|
|
}
|
|
}
|
|
);
|
|
}
|
|
|
|
testUsingContext('ipa build fails when there is no ios project', () async {
|
|
final BuildCommand command = BuildCommand();
|
|
createCoreMockProjectFiles();
|
|
|
|
expect(createTestCommandRunner(command).run(
|
|
const <String>['build', 'ipa', '--no-pub']
|
|
), throwsToolExit(message: 'Application not configured for iOS'));
|
|
}, overrides: <Type, Generator>{
|
|
Platform: () => macosPlatform,
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
XcodeProjectInterpreter: () => FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('ipa build fails in debug with code analysis', () async {
|
|
final BuildCommand command = BuildCommand();
|
|
createCoreMockProjectFiles();
|
|
|
|
expect(createTestCommandRunner(command).run(
|
|
const <String>['build', 'ipa', '--no-pub', '--debug', '--analyze-size']
|
|
), throwsToolExit(message: '--analyze-size" can only be used on release builds'));
|
|
}, overrides: <Type, Generator>{
|
|
Platform: () => macosPlatform,
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
XcodeProjectInterpreter: () => FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('ipa 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);
|
|
|
|
final bool supported = BuildIOSArchiveCommand(verboseHelp: false).supported;
|
|
expect(createTestCommandRunner(command).run(
|
|
const <String>['build', 'ipa', '--no-pub']
|
|
), supported ? throwsToolExit() : throwsA(isA<UsageException>()));
|
|
}, overrides: <Type, Generator>{
|
|
Platform: () => notMacosPlatform,
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
XcodeProjectInterpreter: () => FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('ipa build fails when export plist does not exist',
|
|
() async {
|
|
final BuildCommand command = BuildCommand();
|
|
createMinimalMockProjectFiles();
|
|
|
|
await expectToolExitLater(
|
|
createTestCommandRunner(command).run(<String>[
|
|
'build',
|
|
'ipa',
|
|
'--export-options-plist',
|
|
'bogus.plist',
|
|
'--no-pub',
|
|
]),
|
|
contains('property list does not exist'),
|
|
);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
Platform: () => macosPlatform,
|
|
XcodeProjectInterpreter: () =>
|
|
FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('ipa build fails when export plist is not a file', () async {
|
|
final Directory bogus = fileSystem.directory('bogus')..createSync();
|
|
final BuildCommand command = BuildCommand();
|
|
createMinimalMockProjectFiles();
|
|
|
|
await expectToolExitLater(
|
|
createTestCommandRunner(command).run(<String>[
|
|
'build',
|
|
'ipa',
|
|
'--export-options-plist',
|
|
bogus.path,
|
|
'--no-pub',
|
|
]),
|
|
contains('is not a file.'),
|
|
);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
Platform: () => macosPlatform,
|
|
XcodeProjectInterpreter: () =>
|
|
FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('ipa build fails when --export-options-plist and --export-method are used together', () async {
|
|
final BuildCommand command = BuildCommand();
|
|
createMinimalMockProjectFiles();
|
|
|
|
await expectToolExitLater(
|
|
createTestCommandRunner(command).run(<String>[
|
|
'build',
|
|
'ipa',
|
|
'--export-options-plist',
|
|
'ExportOptions.plist',
|
|
'--export-method',
|
|
'app-store',
|
|
'--no-pub',
|
|
]),
|
|
contains('"--export-options-plist" is not compatible with "--export-method"'),
|
|
);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
Platform: () => macosPlatform,
|
|
XcodeProjectInterpreter: () =>
|
|
FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('ipa build reports when IPA fails', () async {
|
|
final BuildCommand command = BuildCommand();
|
|
fakeProcessManager.addCommands(<FakeCommand>[
|
|
xattrCommand,
|
|
setUpFakeXcodeBuildHandler(),
|
|
const FakeCommand(
|
|
command: <String>[
|
|
'xcrun',
|
|
'xcodebuild',
|
|
'-exportArchive',
|
|
'-allowProvisioningDeviceRegistration',
|
|
'-allowProvisioningUpdates',
|
|
'-archivePath',
|
|
'/build/ios/archive/Runner.xcarchive',
|
|
'-exportPath',
|
|
'/build/ios/ipa',
|
|
'-exportOptionsPlist',
|
|
_exportOptionsPlist,
|
|
],
|
|
exitCode: 1,
|
|
stderr: 'error: exportArchive: "Runner.app" requires a provisioning profile.',
|
|
),
|
|
]);
|
|
createMinimalMockProjectFiles();
|
|
|
|
await createTestCommandRunner(command).run(
|
|
const <String>['build', 'ipa', '--no-pub']
|
|
);
|
|
|
|
expect(testLogger.statusText, contains('build/ios/archive/Runner.xcarchive'));
|
|
expect(testLogger.statusText, contains('Building App Store IPA'));
|
|
expect(testLogger.errorText, contains('Encountered error while creating the IPA:'));
|
|
expect(testLogger.errorText, contains('error: exportArchive: "Runner.app" requires a provisioning profile.'));
|
|
expect(fakeProcessManager, hasNoRemainingExpectations);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => fakeProcessManager,
|
|
Platform: () => macosPlatform,
|
|
XcodeProjectInterpreter: () => FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('ipa build invokes xcodebuild and archives for app store', () async {
|
|
final File cachedExportOptionsPlist = fileSystem.file('/CachedExportOptions.plist');
|
|
final BuildCommand command = BuildCommand();
|
|
fakeProcessManager.addCommands(<FakeCommand>[
|
|
xattrCommand,
|
|
setUpFakeXcodeBuildHandler(),
|
|
exportArchiveCommand(exportOptionsPlist: _exportOptionsPlist, cachePlist: cachedExportOptionsPlist),
|
|
]);
|
|
createMinimalMockProjectFiles();
|
|
|
|
await createTestCommandRunner(command).run(
|
|
const <String>['build', 'ipa', '--no-pub']
|
|
);
|
|
|
|
const String expectedIpaPlistContents = '''
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>method</key>
|
|
<string>app-store</string>
|
|
<key>uploadBitcode</key>
|
|
<false/>
|
|
</dict>
|
|
</plist>
|
|
''';
|
|
|
|
final String actualIpaPlistContents = fileSystem.file(cachedExportOptionsPlist).readAsStringSync();
|
|
expect(actualIpaPlistContents, expectedIpaPlistContents);
|
|
|
|
expect(testLogger.statusText, contains('build/ios/archive/Runner.xcarchive'));
|
|
expect(testLogger.statusText, contains('Building App Store IPA'));
|
|
expect(testLogger.statusText, contains('Built IPA to /build/ios/ipa'));
|
|
expect(testLogger.statusText, contains('To upload to the App Store'));
|
|
expect(fakeProcessManager, hasNoRemainingExpectations);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => fakeProcessManager,
|
|
Platform: () => macosPlatform,
|
|
XcodeProjectInterpreter: () => FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('ipa build invokes xcodebuild and archives for ad-hoc distribution', () async {
|
|
final File cachedExportOptionsPlist = fileSystem.file('/CachedExportOptions.plist');
|
|
final BuildCommand command = BuildCommand();
|
|
fakeProcessManager.addCommands(<FakeCommand>[
|
|
xattrCommand,
|
|
setUpFakeXcodeBuildHandler(),
|
|
exportArchiveCommand(exportOptionsPlist: _exportOptionsPlist, cachePlist: cachedExportOptionsPlist),
|
|
]);
|
|
createMinimalMockProjectFiles();
|
|
|
|
await createTestCommandRunner(command).run(
|
|
const <String>['build', 'ipa', '--no-pub', '--export-method', 'ad-hoc']
|
|
);
|
|
|
|
const String expectedIpaPlistContents = '''
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>method</key>
|
|
<string>ad-hoc</string>
|
|
<key>uploadBitcode</key>
|
|
<false/>
|
|
</dict>
|
|
</plist>
|
|
''';
|
|
|
|
final String actualIpaPlistContents = fileSystem.file(cachedExportOptionsPlist).readAsStringSync();
|
|
expect(actualIpaPlistContents, expectedIpaPlistContents);
|
|
|
|
expect(testLogger.statusText, contains('build/ios/archive/Runner.xcarchive'));
|
|
expect(testLogger.statusText, contains('Building ad-hoc IPA'));
|
|
expect(testLogger.statusText, contains('Built IPA to /build/ios/ipa'));
|
|
// Don't instruct how to upload to the App Store.
|
|
expect(testLogger.statusText, isNot(contains('To upload')));
|
|
expect(fakeProcessManager, hasNoRemainingExpectations);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => fakeProcessManager,
|
|
Platform: () => macosPlatform,
|
|
XcodeProjectInterpreter: () => FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('ipa build invokes xcodebuild and archives for enterprise distribution', () async {
|
|
final File cachedExportOptionsPlist = fileSystem.file('/CachedExportOptions.plist');
|
|
final BuildCommand command = BuildCommand();
|
|
fakeProcessManager.addCommands(<FakeCommand>[
|
|
xattrCommand,
|
|
setUpFakeXcodeBuildHandler(),
|
|
exportArchiveCommand(exportOptionsPlist: _exportOptionsPlist, cachePlist: cachedExportOptionsPlist),
|
|
]);
|
|
createMinimalMockProjectFiles();
|
|
|
|
await createTestCommandRunner(command).run(
|
|
const <String>['build', 'ipa', '--no-pub', '--export-method', 'enterprise']
|
|
);
|
|
|
|
const String expectedIpaPlistContents = '''
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>method</key>
|
|
<string>enterprise</string>
|
|
<key>uploadBitcode</key>
|
|
<false/>
|
|
</dict>
|
|
</plist>
|
|
''';
|
|
|
|
final String actualIpaPlistContents = fileSystem.file(cachedExportOptionsPlist).readAsStringSync();
|
|
expect(actualIpaPlistContents, expectedIpaPlistContents);
|
|
|
|
expect(testLogger.statusText, contains('build/ios/archive/Runner.xcarchive'));
|
|
expect(testLogger.statusText, contains('Building enterprise IPA'));
|
|
expect(testLogger.statusText, contains('Built IPA to /build/ios/ipa'));
|
|
// Don't instruct how to upload to the App Store.
|
|
expect(testLogger.statusText, isNot(contains('To upload')));
|
|
expect(fakeProcessManager, hasNoRemainingExpectations);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => fakeProcessManager,
|
|
Platform: () => macosPlatform,
|
|
XcodeProjectInterpreter: () => FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('ipa build invokes xcodebuild and archives with bitcode on', () async {
|
|
final File cachedExportOptionsPlist = fileSystem.file('/CachedExportOptions.plist');
|
|
final BuildCommand command = BuildCommand();
|
|
fakeProcessManager.addCommands(<FakeCommand>[
|
|
xattrCommand,
|
|
setUpFakeXcodeBuildHandler(),
|
|
exportArchiveCommand(exportOptionsPlist: _exportOptionsPlist, cachePlist: cachedExportOptionsPlist),
|
|
]);
|
|
createMinimalMockProjectFiles();
|
|
|
|
await createTestCommandRunner(command).run(
|
|
const <String>['build', 'ipa', '--no-pub',]
|
|
);
|
|
|
|
const String expectedIpaPlistContents = '''
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>method</key>
|
|
<string>app-store</string>
|
|
</dict>
|
|
</plist>
|
|
''';
|
|
|
|
final String actualIpaPlistContents = fileSystem.file(cachedExportOptionsPlist).readAsStringSync();
|
|
expect(actualIpaPlistContents, expectedIpaPlistContents);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => fakeProcessManager,
|
|
Platform: () => macosPlatform,
|
|
XcodeProjectInterpreter: () => FakeXcodeProjectInterpreterWithBuildSettings(
|
|
overrides: <String, String>{'ENABLE_BITCODE': 'YES'},
|
|
),
|
|
});
|
|
|
|
testUsingContext('ipa build invokes xcode build with verbosity', () async {
|
|
final BuildCommand command = BuildCommand();
|
|
fakeProcessManager.addCommands(<FakeCommand>[
|
|
xattrCommand,
|
|
setUpFakeXcodeBuildHandler(verbose: true),
|
|
exportArchiveCommand(exportOptionsPlist: _exportOptionsPlist),
|
|
]);
|
|
createMinimalMockProjectFiles();
|
|
|
|
await createTestCommandRunner(command).run(
|
|
const <String>['build', 'ipa', '--no-pub', '-v']
|
|
);
|
|
expect(fakeProcessManager, hasNoRemainingExpectations);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => fakeProcessManager,
|
|
Platform: () => macosPlatform,
|
|
XcodeProjectInterpreter: () => FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('ipa build --no-codesign skips codesigning and IPA creation', () async {
|
|
final BuildCommand command = BuildCommand();
|
|
fakeProcessManager.addCommands(<FakeCommand>[
|
|
xattrCommand,
|
|
const FakeCommand(
|
|
command: <String>[
|
|
'xcrun',
|
|
'xcodebuild',
|
|
'-configuration', 'Release',
|
|
'-quiet',
|
|
'-workspace', 'Runner.xcworkspace',
|
|
'-scheme', 'Runner',
|
|
'-sdk', 'iphoneos',
|
|
'-destination',
|
|
'generic/platform=iOS',
|
|
'CODE_SIGNING_ALLOWED=NO',
|
|
'CODE_SIGNING_REQUIRED=NO',
|
|
'CODE_SIGNING_IDENTITY=""',
|
|
'-resultBundlePath',
|
|
'/.tmp_rand0/flutter_ios_build_temp_dirrand0/temporary_xcresult_bundle',
|
|
'-resultBundleVersion', '3',
|
|
'FLUTTER_SUPPRESS_ANALYTICS=true',
|
|
'COMPILER_INDEX_STORE_ENABLE=NO',
|
|
'-archivePath',
|
|
'/build/ios/archive/Runner',
|
|
'archive',
|
|
],
|
|
),
|
|
]);
|
|
createMinimalMockProjectFiles();
|
|
|
|
await createTestCommandRunner(command).run(
|
|
const <String>['build', 'ipa', '--no-pub', '--no-codesign']
|
|
);
|
|
expect(fakeProcessManager, hasNoRemainingExpectations);
|
|
expect(testLogger.statusText, contains('Codesigning disabled with --no-codesign, skipping IPA'));
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => fakeProcessManager,
|
|
Platform: () => macosPlatform,
|
|
XcodeProjectInterpreter: () => FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('code size analysis fails when app not found', () async {
|
|
final BuildCommand command = BuildCommand();
|
|
createMinimalMockProjectFiles();
|
|
|
|
await expectToolExitLater(
|
|
createTestCommandRunner(command).run(
|
|
const <String>['build', 'ipa', '--no-pub', '--analyze-size']
|
|
),
|
|
contains('Could not find app to analyze code size'),
|
|
);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => FakeProcessManager.any(),
|
|
Platform: () => macosPlatform,
|
|
XcodeProjectInterpreter: () =>
|
|
FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('Performs code size analysis and sends analytics', () async {
|
|
final BuildCommand command = BuildCommand();
|
|
createMinimalMockProjectFiles();
|
|
|
|
fileSystem.file('build/ios/archive/Runner.xcarchive/Products/Applications/Runner.app/Frameworks/App.framework/App')
|
|
..createSync(recursive: true)
|
|
..writeAsBytesSync(List<int>.generate(10000, (int index) => 0));
|
|
fakeProcessManager.addCommands(<FakeCommand>[
|
|
xattrCommand,
|
|
setUpFakeXcodeBuildHandler(onRun: () {
|
|
fileSystem.file('build/flutter_size_01/snapshot.arm64.json')
|
|
..createSync(recursive: true)
|
|
..writeAsStringSync('''
|
|
[
|
|
{
|
|
"l": "dart:_internal",
|
|
"c": "SubListIterable",
|
|
"n": "[Optimized] skip",
|
|
"s": 2400
|
|
}
|
|
]''');
|
|
fileSystem.file('build/flutter_size_01/trace.arm64.json')
|
|
..createSync(recursive: true)
|
|
..writeAsStringSync('{}');
|
|
}),
|
|
exportArchiveCommand(exportOptionsPlist: _exportOptionsPlist),
|
|
]);
|
|
|
|
await createTestCommandRunner(command).run(
|
|
const <String>['build', 'ipa', '--no-pub', '--analyze-size']
|
|
);
|
|
|
|
expect(testLogger.statusText, contains('A summary of your iOS bundle analysis can be found at'));
|
|
expect(testLogger.statusText, contains('flutter pub global activate devtools; flutter pub global run devtools --appSizeBase='));
|
|
expect(usage.events, contains(
|
|
const TestUsageEvent('code-size-analysis', 'ios'),
|
|
));
|
|
expect(fakeProcessManager, hasNoRemainingExpectations);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => fakeProcessManager,
|
|
Platform: () => macosPlatform,
|
|
FileSystemUtils: () => FileSystemUtils(fileSystem: fileSystem, platform: macosPlatform),
|
|
Usage: () => usage,
|
|
XcodeProjectInterpreter: () => FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('ipa build invokes xcode build export archive when passed plist', () async {
|
|
final String outputPath =
|
|
fileSystem.path.absolute(fileSystem.path.join('build', 'ios', 'ipa'));
|
|
final File exportOptions = fileSystem.file('ExportOptions.plist')
|
|
..createSync();
|
|
final BuildCommand command = BuildCommand();
|
|
fakeProcessManager.addCommands(<FakeCommand>[
|
|
xattrCommand,
|
|
setUpFakeXcodeBuildHandler(),
|
|
exportArchiveCommand(),
|
|
]);
|
|
createMinimalMockProjectFiles();
|
|
|
|
await createTestCommandRunner(command).run(
|
|
<String>[
|
|
'build',
|
|
'ipa',
|
|
'--no-pub',
|
|
'--export-options-plist',
|
|
exportOptions.path,
|
|
],
|
|
);
|
|
|
|
expect(testLogger.statusText, contains('Built IPA to $outputPath.'));
|
|
expect(fakeProcessManager, hasNoRemainingExpectations);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => fakeProcessManager,
|
|
Platform: () => macosPlatform,
|
|
XcodeProjectInterpreter: () =>
|
|
FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('Trace error if xcresult is empty.', () async {
|
|
final BuildCommand command = BuildCommand();
|
|
fakeProcessManager.addCommands(<FakeCommand>[
|
|
xattrCommand,
|
|
setUpFakeXcodeBuildHandler(exitCode: 1, onRun: () {
|
|
fileSystem.systemTempDirectory.childDirectory(_xcBundleFilePath).createSync();
|
|
}),
|
|
setUpXCResultCommand(),
|
|
]);
|
|
createMinimalMockProjectFiles();
|
|
|
|
await expectLater(
|
|
createTestCommandRunner(command).run(const <String>['build', 'ipa', '--no-pub']),
|
|
throwsToolExit(),
|
|
);
|
|
|
|
expect(testLogger.traceText, contains('xcresult parser: Unrecognized top level json format.'));
|
|
expect(fakeProcessManager, hasNoRemainingExpectations);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => fakeProcessManager,
|
|
Platform: () => macosPlatform,
|
|
XcodeProjectInterpreter: () => FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('Display xcresult issues on console if parsed.', () async {
|
|
final BuildCommand command = BuildCommand();
|
|
fakeProcessManager.addCommands(<FakeCommand>[
|
|
xattrCommand,
|
|
setUpFakeXcodeBuildHandler(exitCode: 1, onRun: () {
|
|
fileSystem.systemTempDirectory.childDirectory(_xcBundleFilePath).createSync();
|
|
}),
|
|
setUpXCResultCommand(stdout: kSampleResultJsonWithIssues),
|
|
]);
|
|
createMinimalMockProjectFiles();
|
|
|
|
await expectLater(
|
|
createTestCommandRunner(command).run(const <String>['build', 'ipa', '--no-pub']),
|
|
throwsToolExit(),
|
|
);
|
|
|
|
expect(testLogger.errorText, contains("Use of undeclared identifier 'asdas'"));
|
|
expect(testLogger.errorText, contains('/Users/m/Projects/test_create/ios/Runner/AppDelegate.m:7:56'));
|
|
expect(fakeProcessManager, hasNoRemainingExpectations);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => fakeProcessManager,
|
|
Platform: () => macosPlatform,
|
|
XcodeProjectInterpreter: () => FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('Do not display xcresult issues that needs to be discarded.', () async {
|
|
final BuildCommand command = BuildCommand();
|
|
fakeProcessManager.addCommands(<FakeCommand>[
|
|
xattrCommand,
|
|
setUpFakeXcodeBuildHandler(exitCode: 1, onRun: () {
|
|
fileSystem.systemTempDirectory.childDirectory(_xcBundleFilePath).createSync();
|
|
}),
|
|
setUpXCResultCommand(stdout: kSampleResultJsonWithIssuesToBeDiscarded),
|
|
]);
|
|
createMinimalMockProjectFiles();
|
|
|
|
await expectLater(
|
|
createTestCommandRunner(command).run(const <String>['build', 'ipa', '--no-pub']),
|
|
throwsToolExit(),
|
|
);
|
|
|
|
expect(testLogger.errorText, contains("Use of undeclared identifier 'asdas'"));
|
|
expect(testLogger.errorText, contains('/Users/m/Projects/test_create/ios/Runner/AppDelegate.m:7:56'));
|
|
expect(testLogger.errorText, isNot(contains('Command PhaseScriptExecution failed with a nonzero exit code')));
|
|
expect(testLogger.warningText, isNot(contains("The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.0.99.")));
|
|
expect(fakeProcessManager, hasNoRemainingExpectations);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => fakeProcessManager,
|
|
Platform: () => macosPlatform,
|
|
XcodeProjectInterpreter: () => FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
testUsingContext('Trace if xcresult bundle does not exist.', () async {
|
|
final BuildCommand command = BuildCommand();
|
|
fakeProcessManager.addCommands(<FakeCommand>[
|
|
xattrCommand,
|
|
setUpFakeXcodeBuildHandler(exitCode: 1),
|
|
]);
|
|
createMinimalMockProjectFiles();
|
|
|
|
await expectLater(
|
|
createTestCommandRunner(command).run(const <String>['build', 'ipa', '--no-pub']),
|
|
throwsToolExit(),
|
|
);
|
|
|
|
expect(testLogger.traceText, contains('The xcresult bundle are not generated. Displaying xcresult is disabled.'));
|
|
expect(fakeProcessManager, hasNoRemainingExpectations);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => fakeProcessManager,
|
|
Platform: () => macosPlatform,
|
|
XcodeProjectInterpreter: () => FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
|
|
|
|
testUsingContext('Extra error message for provision profile issue in xcresulb bundle.', () async {
|
|
final BuildCommand command = BuildCommand();
|
|
fakeProcessManager.addCommands(<FakeCommand>[
|
|
xattrCommand,
|
|
setUpFakeXcodeBuildHandler(exitCode: 1, onRun: () {
|
|
fileSystem.systemTempDirectory.childDirectory(_xcBundleFilePath).createSync();
|
|
}),
|
|
setUpXCResultCommand(stdout: kSampleResultJsonWithProvisionIssue),
|
|
]);
|
|
createMinimalMockProjectFiles();
|
|
|
|
await expectLater(
|
|
createTestCommandRunner(command).run(const <String>['build', 'ipa', '--no-pub']),
|
|
throwsToolExit(),
|
|
);
|
|
|
|
expect(testLogger.errorText, contains('Some Provisioning profile issue.'));
|
|
expect(testLogger.errorText, contains('It appears that there was a problem signing your application prior to installation on the device.'));
|
|
expect(testLogger.errorText, contains('Verify that the Bundle Identifier in your project is your signing id in Xcode'));
|
|
expect(testLogger.errorText, contains('open ios/Runner.xcworkspace'));
|
|
expect(testLogger.errorText, contains("Also try selecting 'Product > Build' to fix the problem."));
|
|
expect(fakeProcessManager, hasNoRemainingExpectations);
|
|
}, overrides: <Type, Generator>{
|
|
FileSystem: () => fileSystem,
|
|
ProcessManager: () => fakeProcessManager,
|
|
Platform: () => macosPlatform,
|
|
XcodeProjectInterpreter: () => FakeXcodeProjectInterpreterWithBuildSettings(),
|
|
});
|
|
}
|
|
|
|
const String _xcBundleFilePath = '/.tmp_rand0/flutter_ios_build_temp_dirrand0/temporary_xcresult_bundle';
|
|
const String _exportOptionsPlist = '/.tmp_rand0/flutter_build_ios.rand0/ExportOptions.plist';
|