Ad-hoc codesign Flutter.framework when code signing is disabled (#93556)

This commit is contained in:
Jenn Magder 2021-11-12 12:56:03 -08:00 committed by GitHub
parent 4ec54e2966
commit a25dca4a06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 40 additions and 14 deletions

View File

@ -625,9 +625,9 @@ Future<void> _createStubAppFramework(File outputFile, Environment environment,
} }
void _signFramework(Environment environment, String binaryPath, BuildMode buildMode) { void _signFramework(Environment environment, String binaryPath, BuildMode buildMode) {
final String codesignIdentity = environment.defines[kCodesignIdentity]; String codesignIdentity = environment.defines[kCodesignIdentity];
if (codesignIdentity == null || codesignIdentity.isEmpty) { if (codesignIdentity == null || codesignIdentity.isEmpty) {
return; codesignIdentity = '-';
} }
final ProcessResult result = environment.processManager.runSync(<String>[ final ProcessResult result = environment.processManager.runSync(<String>[
'codesign', 'codesign',

View File

@ -72,7 +72,8 @@ void main() {
testUsingContext('DebugUniversalFramework creates simulator binary', () async { testUsingContext('DebugUniversalFramework creates simulator binary', () async {
environment.defines[kIosArchs] = 'x86_64'; environment.defines[kIosArchs] = 'x86_64';
environment.defines[kSdkRoot] = 'path/to/iPhoneSimulator.sdk'; environment.defines[kSdkRoot] = 'path/to/iPhoneSimulator.sdk';
processManager.addCommand( final String appFrameworkPath = environment.buildDir.childDirectory('App.framework').childFile('App').path;
processManager.addCommands(<FakeCommand>[
FakeCommand(command: <String>[ FakeCommand(command: <String>[
'xcrun', 'xcrun',
'clang', 'clang',
@ -98,12 +99,17 @@ void main() {
'-isysroot', '-isysroot',
'path/to/iPhoneSimulator.sdk', 'path/to/iPhoneSimulator.sdk',
'-o', '-o',
environment.buildDir appFrameworkPath,
.childDirectory('App.framework')
.childFile('App')
.path,
]), ]),
); FakeCommand(command: <String>[
'codesign',
'--force',
'--sign',
'-',
'--timestamp=none',
appFrameworkPath,
]),
]);
await const DebugUniversalFramework().build(environment); await const DebugUniversalFramework().build(environment);
expect(processManager.hasRemainingExpectations, isFalse); expect(processManager.hasRemainingExpectations, isFalse);
@ -116,7 +122,8 @@ void main() {
testUsingContext('DebugUniversalFramework creates expected binary with arm64 only arch', () async { testUsingContext('DebugUniversalFramework creates expected binary with arm64 only arch', () async {
environment.defines[kIosArchs] = 'arm64'; environment.defines[kIosArchs] = 'arm64';
environment.defines[kSdkRoot] = 'path/to/iPhoneOS.sdk'; environment.defines[kSdkRoot] = 'path/to/iPhoneOS.sdk';
processManager.addCommand( final String appFrameworkPath = environment.buildDir.childDirectory('App.framework').childFile('App').path;
processManager.addCommands(<FakeCommand>[
FakeCommand(command: <String>[ FakeCommand(command: <String>[
'xcrun', 'xcrun',
'clang', 'clang',
@ -129,12 +136,17 @@ void main() {
'.tmp_rand0', 'flutter_tools_stub_source.rand0', 'debug_app.cc')), '.tmp_rand0', 'flutter_tools_stub_source.rand0', 'debug_app.cc')),
..._kSharedConfig, ..._kSharedConfig,
'-o', '-o',
environment.buildDir appFrameworkPath,
.childDirectory('App.framework')
.childFile('App')
.path,
]), ]),
); FakeCommand(command: <String>[
'codesign',
'--force',
'--sign',
'-',
'--timestamp=none',
appFrameworkPath,
]),
]);
await const DebugUniversalFramework().build(environment); await const DebugUniversalFramework().build(environment);
expect(processManager.hasRemainingExpectations, isFalse); expect(processManager.hasRemainingExpectations, isFalse);
@ -317,6 +329,7 @@ void main() {
FakeCommand lipoCommandNonFatResult; FakeCommand lipoCommandNonFatResult;
FakeCommand lipoVerifyArm64Command; FakeCommand lipoVerifyArm64Command;
FakeCommand bitcodeStripCommand; FakeCommand bitcodeStripCommand;
FakeCommand adHocCodesignCommand;
setUp(() { setUp(() {
final FileSystem fileSystem = MemoryFileSystem.test(); final FileSystem fileSystem = MemoryFileSystem.test();
@ -353,6 +366,15 @@ void main() {
'-o', '-o',
binary.path, binary.path,
]); ]);
adHocCodesignCommand = FakeCommand(command: <String>[
'codesign',
'--force',
'--sign',
'-',
'--timestamp=none',
binary.path,
]);
}); });
testWithoutContext('iphonesimulator', () async { testWithoutContext('iphonesimulator', () async {
@ -389,6 +411,7 @@ void main() {
'-verify_arch', '-verify_arch',
'x86_64', 'x86_64',
]), ]),
adHocCodesignCommand,
]); ]);
await const DebugUnpackIOS().build(environment); await const DebugUnpackIOS().build(environment);
@ -538,6 +561,7 @@ void main() {
copyPhysicalFrameworkCommand, copyPhysicalFrameworkCommand,
lipoCommandNonFatResult, lipoCommandNonFatResult,
lipoVerifyArm64Command, lipoVerifyArm64Command,
adHocCodesignCommand,
]); ]);
await const DebugUnpackIOS().build(environment); await const DebugUnpackIOS().build(environment);
@ -587,6 +611,7 @@ void main() {
'armv7', 'armv7',
binary.path, binary.path,
]), ]),
adHocCodesignCommand,
]); ]);
await const DebugUnpackIOS().build(environment); await const DebugUnpackIOS().build(environment);
@ -658,6 +683,7 @@ void main() {
lipoCommandNonFatResult, lipoCommandNonFatResult,
lipoVerifyArm64Command, lipoVerifyArm64Command,
bitcodeStripCommand, bitcodeStripCommand,
adHocCodesignCommand,
]); ]);
await const DebugUnpackIOS().build(environment); await const DebugUnpackIOS().build(environment);