Commit c8c935cd authored by Todd Volkert's avatar Todd Volkert Committed by Jonah Williams

Allow bundle identifier to be surrounded with quotes. (#26300)

Picked up from #22498, originally by @jugyo
parent 763a8d6d
...@@ -156,7 +156,7 @@ class IosProject { ...@@ -156,7 +156,7 @@ class IosProject {
/// The parent of this project. /// The parent of this project.
final FlutterProject parent; final FlutterProject parent;
static final RegExp _productBundleIdPattern = RegExp(r'^\s*PRODUCT_BUNDLE_IDENTIFIER\s*=\s*(.*);\s*$'); static final RegExp _productBundleIdPattern = RegExp(r'''^\s*PRODUCT_BUNDLE_IDENTIFIER\s*=\s*(["']?)(.*?)\1;\s*$''');
static const String _productBundleIdVariable = r'$(PRODUCT_BUNDLE_IDENTIFIER)'; static const String _productBundleIdVariable = r'$(PRODUCT_BUNDLE_IDENTIFIER)';
static const String _hostAppBundleName = 'Runner'; static const String _hostAppBundleName = 'Runner';
...@@ -225,7 +225,7 @@ class IosProject { ...@@ -225,7 +225,7 @@ class IosProject {
// Info.plist has no build variables in product bundle ID. // Info.plist has no build variables in product bundle ID.
return fromPlist; return fromPlist;
} }
final String fromPbxproj = _firstMatchInFile(xcodeProjectInfoFile, _productBundleIdPattern)?.group(1); final String fromPbxproj = _firstMatchInFile(xcodeProjectInfoFile, _productBundleIdPattern)?.group(2);
if (fromPbxproj != null && (fromPlist == null || fromPlist == _productBundleIdVariable)) { if (fromPbxproj != null && (fromPlist == null || fromPlist == _productBundleIdVariable)) {
// Common case. Avoids parsing build settings. // Common case. Avoids parsing build settings.
return fromPbxproj; return fromPbxproj;
......
...@@ -271,6 +271,21 @@ void main() { ...@@ -271,6 +271,21 @@ void main() {
when(mockIOSWorkflow.getPlistValueFromFile(any, any)).thenReturn('\$(PRODUCT_BUNDLE_IDENTIFIER).\$(SUFFIX)'); when(mockIOSWorkflow.getPlistValueFromFile(any, any)).thenReturn('\$(PRODUCT_BUNDLE_IDENTIFIER).\$(SUFFIX)');
expect(project.ios.productBundleIdentifier, 'io.flutter.someProject.suffix'); expect(project.ios.productBundleIdentifier, 'io.flutter.someProject.suffix');
}); });
testWithMocks('empty surrounded by quotes', () async {
final FlutterProject project = await someProject();
addIosWithBundleId(project.directory, '', qualifier: '"');
expect(project.ios.productBundleIdentifier, '');
});
testWithMocks('surrounded by double quotes', () async {
final FlutterProject project = await someProject();
addIosWithBundleId(project.directory, 'io.flutter.someProject', qualifier: '"');
expect(project.ios.productBundleIdentifier, 'io.flutter.someProject');
});
testWithMocks('surrounded by single quotes', () async {
final FlutterProject project = await someProject();
addIosWithBundleId(project.directory, 'io.flutter.someProject', qualifier: '\'');
expect(project.ios.productBundleIdentifier, 'io.flutter.someProject');
});
}); });
group('organization names set', () { group('organization names set', () {
...@@ -425,13 +440,13 @@ void expectNotExists(FileSystemEntity entity) { ...@@ -425,13 +440,13 @@ void expectNotExists(FileSystemEntity entity) {
expect(entity.existsSync(), isFalse); expect(entity.existsSync(), isFalse);
} }
void addIosWithBundleId(Directory directory, String id) { void addIosWithBundleId(Directory directory, String id, {String qualifier}) {
directory directory
.childDirectory('ios') .childDirectory('ios')
.childDirectory('Runner.xcodeproj') .childDirectory('Runner.xcodeproj')
.childFile('project.pbxproj') .childFile('project.pbxproj')
..createSync(recursive: true) ..createSync(recursive: true)
..writeAsStringSync(projectFileWithBundleId(id)); ..writeAsStringSync(projectFileWithBundleId(id, qualifier: qualifier));
} }
void addAndroidWithApplicationId(Directory directory, String id) { void addAndroidWithApplicationId(Directory directory, String id) {
...@@ -460,13 +475,13 @@ flutter: ...@@ -460,13 +475,13 @@ flutter:
invalid: invalid:
'''; ''';
String projectFileWithBundleId(String id) { String projectFileWithBundleId(String id, {String qualifier}) {
return ''' return '''
97C147061CF9000F007C117D /* Debug */ = { 97C147061CF9000F007C117D /* Debug */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
buildSettings = { buildSettings = {
PRODUCT_BUNDLE_IDENTIFIER = $id; PRODUCT_BUNDLE_IDENTIFIER = ${qualifier ?? ''}$id${qualifier ?? ''};
PRODUCT_NAME = "\$(TARGET_NAME)"; PRODUCT_NAME = "\$(TARGET_NAME)";
}; };
name = Debug; name = Debug;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment