| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440 |
- // Copyright 2017 Google
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #import "FIRTestCase.h"
- #import <FirebaseCore/FIRAppInternal.h>
- #import <FirebaseCore/FIRBundleUtil.h>
- #import <FirebaseCore/FIROptionsInternal.h>
- extern NSString *const kFIRIsMeasurementEnabled;
- extern NSString *const kFIRIsAnalyticsCollectionEnabled;
- extern NSString *const kFIRIsAnalyticsCollectionDeactivated;
- extern NSString *const kFIRLibraryVersionID;
- @interface FIROptions (Test)
- - (nullable NSDictionary *)analyticsOptionsDictionaryWithInfoDictionary:
- (nullable NSDictionary *)infoDictionary;
- @end
- @interface FIROptionsTest : FIRTestCase
- @end
- @implementation FIROptionsTest
- - (void)setUp {
- [super setUp];
- [FIROptions resetDefaultOptions];
- }
- - (void)testInit {
- NSDictionary *optionsDictionary = [FIROptions defaultOptionsDictionary];
- FIROptions *options = [[FIROptions alloc] initInternalWithOptionsDictionary:optionsDictionary];
- [self assertOptionsMatchDefaults:options andProjectID:YES];
- XCTAssertNil(options.deepLinkURLScheme);
- XCTAssertTrue(options.usingOptionsFromDefaultPlist);
- options.deepLinkURLScheme = kDeepLinkURLScheme;
- XCTAssertEqualObjects(options.deepLinkURLScheme, kDeepLinkURLScheme);
- }
- - (void)testDefaultOptionsDictionaryWithNilFilePath {
- id mockBundleUtil = OCMClassMock([FIRBundleUtil class]);
- [OCMStub([mockBundleUtil optionsDictionaryPathWithResourceName:kServiceInfoFileName
- andFileType:kServiceInfoFileType
- inBundles:[FIRBundleUtil relevantBundles]])
- andReturn:nil];
- XCTAssertNil([FIROptions defaultOptionsDictionary]);
- }
- - (void)testDefaultOptionsDictionaryWithInvalidSourceFile {
- id mockBundleUtil = OCMClassMock([FIRBundleUtil class]);
- [OCMStub([mockBundleUtil optionsDictionaryPathWithResourceName:kServiceInfoFileName
- andFileType:kServiceInfoFileType
- inBundles:[FIRBundleUtil relevantBundles]])
- andReturn:@"invalid.plist"];
- XCTAssertNil([FIROptions defaultOptionsDictionary]);
- }
- - (void)testDefaultOptions {
- FIROptions *options = [FIROptions defaultOptions];
- [self assertOptionsMatchDefaults:options andProjectID:YES];
- XCTAssertNil(options.deepLinkURLScheme);
- XCTAssertTrue(options.usingOptionsFromDefaultPlist);
- options.deepLinkURLScheme = kDeepLinkURLScheme;
- XCTAssertEqualObjects(options.deepLinkURLScheme, kDeepLinkURLScheme);
- }
- - (void)testInitCustomizedOptions {
- FIROptions *options =
- [[FIROptions alloc] initWithGoogleAppID:kGoogleAppID GCMSenderID:kGCMSenderID];
- options.APIKey = kAPIKey;
- options.bundleID = kBundleID;
- options.clientID = kClientID;
- options.databaseURL = kDatabaseURL;
- options.deepLinkURLScheme = kDeepLinkURLScheme;
- options.projectID = kProjectID;
- options.storageBucket = kStorageBucket;
- options.trackingID = kTrackingID;
- [self assertOptionsMatchDefaults:options andProjectID:YES];
- XCTAssertEqualObjects(options.deepLinkURLScheme, kDeepLinkURLScheme);
- XCTAssertFalse(options.usingOptionsFromDefaultPlist);
- }
- - (void)testInitWithContentsOfFile {
- NSString *filePath =
- [[NSBundle mainBundle] pathForResource:@"GoogleService-Info" ofType:@"plist"];
- FIROptions *options = [[FIROptions alloc] initWithContentsOfFile:filePath];
- [self assertOptionsMatchDefaults:options andProjectID:YES];
- XCTAssertNil(options.deepLinkURLScheme);
- XCTAssertFalse(options.usingOptionsFromDefaultPlist);
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Wnonnull"
- FIROptions *emptyOptions = [[FIROptions alloc] initWithContentsOfFile:nil];
- #pragma clang diagnostic pop
- XCTAssertNil(emptyOptions);
- FIROptions *invalidOptions = [[FIROptions alloc] initWithContentsOfFile:@"invalid.plist"];
- XCTAssertNil(invalidOptions);
- }
- - (void)assertOptionsMatchDefaults:(FIROptions *)options andProjectID:(BOOL)matchProjectID {
- XCTAssertEqualObjects(options.googleAppID, kGoogleAppID);
- XCTAssertEqualObjects(options.APIKey, kAPIKey);
- XCTAssertEqualObjects(options.clientID, kClientID);
- XCTAssertEqualObjects(options.trackingID, kTrackingID);
- XCTAssertEqualObjects(options.GCMSenderID, kGCMSenderID);
- XCTAssertNil(options.androidClientID);
- XCTAssertEqualObjects(options.libraryVersionID, kFIRLibraryVersionID);
- XCTAssertEqualObjects(options.databaseURL, kDatabaseURL);
- XCTAssertEqualObjects(options.storageBucket, kStorageBucket);
- XCTAssertEqualObjects(options.bundleID, kBundleID);
- // Custom `matchProjectID` parameter to be removed once the deprecated `FIROptions` constructor is
- // removed.
- if (matchProjectID) {
- XCTAssertEqualObjects(options.projectID, kProjectID);
- }
- }
- - (void)testCopyingProperties {
- NSMutableString *mutableString;
- FIROptions *options =
- [[FIROptions alloc] initWithGoogleAppID:kGoogleAppID GCMSenderID:kGCMSenderID];
- mutableString = [[NSMutableString alloc] initWithString:@"1"];
- options.APIKey = mutableString;
- [mutableString appendString:@"2"];
- XCTAssertEqualObjects(options.APIKey, @"1");
- mutableString = [[NSMutableString alloc] initWithString:@"1"];
- options.bundleID = mutableString;
- [mutableString appendString:@"2"];
- XCTAssertEqualObjects(options.bundleID, @"1");
- mutableString = [[NSMutableString alloc] initWithString:@"1"];
- options.clientID = mutableString;
- [mutableString appendString:@"2"];
- XCTAssertEqualObjects(options.clientID, @"1");
- mutableString = [[NSMutableString alloc] initWithString:@"1"];
- options.trackingID = mutableString;
- [mutableString appendString:@"2"];
- XCTAssertEqualObjects(options.trackingID, @"1");
- mutableString = [[NSMutableString alloc] initWithString:@"1"];
- options.GCMSenderID = mutableString;
- [mutableString appendString:@"2"];
- XCTAssertEqualObjects(options.GCMSenderID, @"1");
- mutableString = [[NSMutableString alloc] initWithString:@"1"];
- options.projectID = mutableString;
- [mutableString appendString:@"2"];
- XCTAssertEqualObjects(options.projectID, @"1");
- mutableString = [[NSMutableString alloc] initWithString:@"1"];
- options.androidClientID = mutableString;
- [mutableString appendString:@"2"];
- XCTAssertEqualObjects(options.androidClientID, @"1");
- mutableString = [[NSMutableString alloc] initWithString:@"1"];
- options.googleAppID = mutableString;
- [mutableString appendString:@"2"];
- XCTAssertEqualObjects(options.googleAppID, @"1");
- mutableString = [[NSMutableString alloc] initWithString:@"1"];
- options.databaseURL = mutableString;
- [mutableString appendString:@"2"];
- XCTAssertEqualObjects(options.databaseURL, @"1");
- mutableString = [[NSMutableString alloc] initWithString:@"1"];
- options.deepLinkURLScheme = mutableString;
- [mutableString appendString:@"2"];
- XCTAssertEqualObjects(options.deepLinkURLScheme, @"1");
- mutableString = [[NSMutableString alloc] initWithString:@"1"];
- options.storageBucket = mutableString;
- [mutableString appendString:@"2"];
- XCTAssertEqualObjects(options.storageBucket, @"1");
- }
- - (void)testCopyWithZone {
- // default options
- FIROptions *options = [FIROptions defaultOptions];
- options.deepLinkURLScheme = kDeepLinkURLScheme;
- XCTAssertEqualObjects(options.deepLinkURLScheme, kDeepLinkURLScheme);
- FIROptions *newOptions = [options copy];
- XCTAssertEqualObjects(newOptions.deepLinkURLScheme, kDeepLinkURLScheme);
- [options setDeepLinkURLScheme:kNewDeepLinkURLScheme];
- XCTAssertEqualObjects(options.deepLinkURLScheme, kNewDeepLinkURLScheme);
- XCTAssertEqualObjects(newOptions.deepLinkURLScheme, kDeepLinkURLScheme);
- // customized options
- FIROptions *customizedOptions =
- [[FIROptions alloc] initWithGoogleAppID:kGoogleAppID GCMSenderID:kGCMSenderID];
- customizedOptions.deepLinkURLScheme = kDeepLinkURLScheme;
- FIROptions *copyCustomizedOptions = [customizedOptions copy];
- [copyCustomizedOptions setDeepLinkURLScheme:kNewDeepLinkURLScheme];
- XCTAssertEqualObjects(customizedOptions.deepLinkURLScheme, kDeepLinkURLScheme);
- XCTAssertEqualObjects(copyCustomizedOptions.deepLinkURLScheme, kNewDeepLinkURLScheme);
- }
- - (void)testAnalyticsConstants {
- // The keys are public values and should never change.
- XCTAssertEqualObjects(kFIRIsMeasurementEnabled, @"IS_MEASUREMENT_ENABLED");
- XCTAssertEqualObjects(kFIRIsAnalyticsCollectionEnabled, @"FIREBASE_ANALYTICS_COLLECTION_ENABLED");
- XCTAssertEqualObjects(kFIRIsAnalyticsCollectionDeactivated,
- @"FIREBASE_ANALYTICS_COLLECTION_DEACTIVATED");
- }
- - (void)testAnalyticsOptions {
- // No keys anywhere.
- NSDictionary *optionsDictionary = nil;
- FIROptions *options = [[FIROptions alloc] initInternalWithOptionsDictionary:optionsDictionary];
- NSDictionary *mainDictionary = nil;
- NSDictionary *expectedAnalyticsOptions = @{};
- NSDictionary *analyticsOptions = [options analyticsOptionsDictionaryWithInfoDictionary:nil];
- XCTAssertEqualObjects(analyticsOptions, expectedAnalyticsOptions);
- optionsDictionary = @{};
- options = [[FIROptions alloc] initInternalWithOptionsDictionary:optionsDictionary];
- mainDictionary = @{};
- expectedAnalyticsOptions = @{};
- analyticsOptions = [options analyticsOptionsDictionaryWithInfoDictionary:mainDictionary];
- XCTAssertEqualObjects(analyticsOptions, expectedAnalyticsOptions);
- // Main has no keys.
- optionsDictionary = @{
- kFIRIsAnalyticsCollectionDeactivated : @YES,
- kFIRIsAnalyticsCollectionEnabled : @YES,
- kFIRIsMeasurementEnabled : @YES
- };
- options = [[FIROptions alloc] initInternalWithOptionsDictionary:optionsDictionary];
- mainDictionary = @{};
- expectedAnalyticsOptions = optionsDictionary;
- analyticsOptions = [options analyticsOptionsDictionaryWithInfoDictionary:mainDictionary];
- XCTAssertEqualObjects(analyticsOptions, expectedAnalyticsOptions);
- // Main overrides all the keys.
- optionsDictionary = @{
- kFIRIsAnalyticsCollectionDeactivated : @YES,
- kFIRIsAnalyticsCollectionEnabled : @YES,
- kFIRIsMeasurementEnabled : @YES
- };
- options = [[FIROptions alloc] initInternalWithOptionsDictionary:optionsDictionary];
- mainDictionary = @{
- kFIRIsAnalyticsCollectionDeactivated : @NO,
- kFIRIsAnalyticsCollectionEnabled : @NO,
- kFIRIsMeasurementEnabled : @NO
- };
- expectedAnalyticsOptions = mainDictionary;
- analyticsOptions = [options analyticsOptionsDictionaryWithInfoDictionary:mainDictionary];
- XCTAssertEqualObjects(analyticsOptions, expectedAnalyticsOptions);
- // Keys exist only in main.
- optionsDictionary = @{};
- options = [[FIROptions alloc] initInternalWithOptionsDictionary:optionsDictionary];
- mainDictionary = @{
- kFIRIsAnalyticsCollectionDeactivated : @YES,
- kFIRIsAnalyticsCollectionEnabled : @YES,
- kFIRIsMeasurementEnabled : @YES
- };
- expectedAnalyticsOptions = mainDictionary;
- analyticsOptions = [options analyticsOptionsDictionaryWithInfoDictionary:mainDictionary];
- XCTAssertEqualObjects(analyticsOptions, expectedAnalyticsOptions);
- // Main overrides single keys.
- optionsDictionary = @{
- kFIRIsAnalyticsCollectionDeactivated : @YES,
- kFIRIsAnalyticsCollectionEnabled : @YES,
- kFIRIsMeasurementEnabled : @YES
- };
- options = [[FIROptions alloc] initInternalWithOptionsDictionary:optionsDictionary];
- mainDictionary = @{ kFIRIsAnalyticsCollectionDeactivated : @NO };
- expectedAnalyticsOptions = @{
- kFIRIsAnalyticsCollectionDeactivated : @NO, // override
- kFIRIsAnalyticsCollectionEnabled : @YES,
- kFIRIsMeasurementEnabled : @YES
- };
- analyticsOptions = [options analyticsOptionsDictionaryWithInfoDictionary:mainDictionary];
- XCTAssertEqualObjects(analyticsOptions, expectedAnalyticsOptions);
- optionsDictionary = @{
- kFIRIsAnalyticsCollectionDeactivated : @YES,
- kFIRIsAnalyticsCollectionEnabled : @YES,
- kFIRIsMeasurementEnabled : @YES
- };
- options = [[FIROptions alloc] initInternalWithOptionsDictionary:optionsDictionary];
- mainDictionary = @{ kFIRIsAnalyticsCollectionEnabled : @NO };
- expectedAnalyticsOptions = @{
- kFIRIsAnalyticsCollectionDeactivated : @YES,
- kFIRIsAnalyticsCollectionEnabled : @NO, // override
- kFIRIsMeasurementEnabled : @YES
- };
- analyticsOptions = [options analyticsOptionsDictionaryWithInfoDictionary:mainDictionary];
- XCTAssertEqualObjects(analyticsOptions, expectedAnalyticsOptions);
- optionsDictionary = @{
- kFIRIsAnalyticsCollectionDeactivated : @YES,
- kFIRIsAnalyticsCollectionEnabled : @YES,
- kFIRIsMeasurementEnabled : @YES
- };
- options = [[FIROptions alloc] initInternalWithOptionsDictionary:optionsDictionary];
- mainDictionary = @{ kFIRIsMeasurementEnabled : @NO };
- expectedAnalyticsOptions = @{
- kFIRIsAnalyticsCollectionDeactivated : @YES,
- kFIRIsAnalyticsCollectionEnabled : @YES,
- kFIRIsMeasurementEnabled : @NO // override
- };
- analyticsOptions = [options analyticsOptionsDictionaryWithInfoDictionary:mainDictionary];
- XCTAssertEqualObjects(analyticsOptions, expectedAnalyticsOptions);
- }
- - (void)testAnalyticsOptions_combinatorial {
- // Complete combinatorial test.
- // Possible values for the flags in the plist, where NSNull means the flag is not present.
- NSArray *values = @[ [NSNull null], @NO, @YES ];
- // Sanity checks for the combination generation.
- int combinationCount = 0;
- NSMutableArray *uniqueMainCombinations = [[NSMutableArray alloc] init];
- NSMutableArray *uniqueOptionsCombinations = [[NSMutableArray alloc] init];
- // Generate all optout flag combinations for { main plist X GoogleService-info options plist }.
- // Options present in the main plist should override options of the same key in the service plist.
- for (id mainDeactivated in values) {
- for (id mainAnalyticsEnabled in values) {
- for (id mainMeasurementEnabled in values) {
- for (id optionsDeactivated in values) {
- for (id optionsAnalyticsEnabled in values) {
- for (id optionsMeasurementEnabled in values) {
- @autoreleasepool {
- // Fill the GoogleService-info options plist dictionary.
- NSMutableDictionary *optionsDictionary = [[NSMutableDictionary alloc] init];
- if (![optionsDeactivated isEqual:[NSNull null]]) {
- optionsDictionary[kFIRIsAnalyticsCollectionDeactivated] = optionsDeactivated;
- }
- if (![optionsAnalyticsEnabled isEqual:[NSNull null]]) {
- optionsDictionary[kFIRIsAnalyticsCollectionEnabled] = optionsAnalyticsEnabled;
- }
- if (![optionsMeasurementEnabled isEqual:[NSNull null]]) {
- optionsDictionary[kFIRIsMeasurementEnabled] = optionsMeasurementEnabled;
- }
- FIROptions *options =
- [[FIROptions alloc] initInternalWithOptionsDictionary:optionsDictionary];
- if (![uniqueOptionsCombinations containsObject:optionsDictionary]) {
- [uniqueOptionsCombinations addObject:optionsDictionary];
- }
- // Fill the main plist dictionary.
- NSMutableDictionary *mainDictionary = [[NSMutableDictionary alloc] init];
- if (![mainDeactivated isEqual:[NSNull null]]) {
- mainDictionary[kFIRIsAnalyticsCollectionDeactivated] = mainDeactivated;
- }
- if (![mainAnalyticsEnabled isEqual:[NSNull null]]) {
- mainDictionary[kFIRIsAnalyticsCollectionEnabled] = mainAnalyticsEnabled;
- }
- if (![mainMeasurementEnabled isEqual:[NSNull null]]) {
- mainDictionary[kFIRIsMeasurementEnabled] = mainMeasurementEnabled;
- }
- // Add mainDictionary to uniqueMainCombinations if it isn't included yet.
- if (![uniqueMainCombinations containsObject:mainDictionary]) {
- [uniqueMainCombinations addObject:mainDictionary];
- }
- // Generate the expected options by adding main values on top of the service options
- // values. The main values will replace any existing options values with the same
- // key. This is a different way of combining the two sets of flags from the actual
- // implementation in FIROptions, with equivalent output.
- NSMutableDictionary *expectedAnalyticsOptions =
- [[NSMutableDictionary alloc] initWithDictionary:optionsDictionary];
- [expectedAnalyticsOptions addEntriesFromDictionary:mainDictionary];
- NSDictionary *analyticsOptions =
- [options analyticsOptionsDictionaryWithInfoDictionary:mainDictionary];
- XCTAssertEqualObjects(analyticsOptions, expectedAnalyticsOptions);
- combinationCount++;
- }
- }
- }
- }
- }
- }
- }
- // Verify the sanity checks.
- XCTAssertEqual(combinationCount, 729); // = 3^6.
- XCTAssertEqual(uniqueOptionsCombinations.count, 27);
- int optionsSizeCount[4] = {0};
- for (NSDictionary *dictionary in uniqueOptionsCombinations) {
- optionsSizeCount[dictionary.count]++;
- }
- XCTAssertEqual(optionsSizeCount[0], 1);
- XCTAssertEqual(optionsSizeCount[1], 6);
- XCTAssertEqual(optionsSizeCount[2], 12);
- XCTAssertEqual(optionsSizeCount[3], 8);
- XCTAssertEqual(uniqueMainCombinations.count, 27);
- int mainSizeCount[4] = {0};
- for (NSDictionary *dictionary in uniqueMainCombinations) {
- mainSizeCount[dictionary.count]++;
- }
- XCTAssertEqual(mainSizeCount[0], 1);
- XCTAssertEqual(mainSizeCount[1], 6);
- XCTAssertEqual(mainSizeCount[2], 12);
- XCTAssertEqual(mainSizeCount[3], 8);
- }
- - (void)testVersionFormat {
- NSRegularExpression *sLibraryVersionRegex =
- [NSRegularExpression regularExpressionWithPattern:@"^[0-9]{8,}$" options:0 error:NULL];
- NSUInteger numberOfMatches =
- [sLibraryVersionRegex numberOfMatchesInString:kFIRLibraryVersionID
- options:0
- range:NSMakeRange(0, kFIRLibraryVersionID.length)];
- XCTAssertEqual(numberOfMatches, 1, @"Incorrect library version format.");
- }
- @end
|