| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /*
- * Copyright 2019 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 <XCTest/XCTest.h>
- #import <OCMock/OCMock.h>
- #import "Firebase/InstanceID/FIRInstanceIDUtilities.h"
- @interface FIRInstanceIDUtilitiesTest : XCTestCase
- @property(nonatomic, strong) id mainBundleMock;
- @end
- @implementation FIRInstanceIDUtilitiesTest
- - (void)setUp {
- _mainBundleMock = OCMPartialMock([NSBundle mainBundle]);
- [super setUp];
- }
- - (void)tearDown {
- [_mainBundleMock stopMocking];
- [super tearDown];
- }
- - (void)testAPNSTupleStringReturnsNilIfDeviceTokenNil {
- NSString *tupleString = FIRInstanceIDAPNSTupleStringForTokenAndServerType(nil, NO);
- XCTAssertNil(tupleString);
- }
- - (void)testAPNSTupleStringReturnsValidData {
- NSData *deviceToken = [@"FAKE_DEVICE_TOKEN" dataUsingEncoding:NSUTF8StringEncoding];
- NSString *expectedTokenString = FIRInstanceIDStringForAPNSDeviceToken(deviceToken);
- NSString *tupleString = FIRInstanceIDAPNSTupleStringForTokenAndServerType(deviceToken, NO);
- NSArray<NSString *> *components = [tupleString componentsSeparatedByString:@"_"];
- XCTAssertTrue(components.count == 2);
- XCTAssertEqualObjects(components.firstObject, @"p");
- XCTAssertEqualObjects(components.lastObject, expectedTokenString);
- }
- - (void)testAppVersionReturnsExpectedValue {
- NSString *expectedVersion = @"1.2.3";
- NSDictionary *fakeInfoDictionary = @{@"CFBundleShortVersionString" : expectedVersion};
- [[[_mainBundleMock stub] andReturn:fakeInfoDictionary] infoDictionary];
- NSString *appVersion = FIRInstanceIDCurrentAppVersion();
- XCTAssertEqualObjects(appVersion, expectedVersion);
- }
- - (void)testAppVersionReturnsEmptyStringWhenNotFound {
- NSDictionary *fakeInfoDictionary = @{};
- [[[_mainBundleMock stub] andReturn:fakeInfoDictionary] infoDictionary];
- NSString *appVersion = FIRInstanceIDCurrentAppVersion();
- XCTAssertEqualObjects(appVersion, @"");
- }
- - (void)testAppIdentifierReturnsExpectedValue {
- NSString *expectedIdentifier = @"com.me.myapp";
- [[[_mainBundleMock stub] andReturn:expectedIdentifier] bundleIdentifier];
- NSString *appIdentifier = FIRInstanceIDAppIdentifier();
- XCTAssertEqualObjects(appIdentifier, expectedIdentifier);
- }
- - (void)testAppIdentifierReturnsEmptyStringWhenNotFound {
- [[[_mainBundleMock stub] andReturn:nil] bundleIdentifier];
- NSString *appIdentifier = FIRInstanceIDAppIdentifier();
- XCTAssertEqualObjects(appIdentifier, @"");
- }
- - (void)testLocaleHasChanged {
- NSString *appDomain = [[NSBundle mainBundle] bundleIdentifier];
- [[NSUserDefaults standardUserDefaults] removePersistentDomainForName:appDomain];
- XCTAssertTrue(FIRInstanceIDHasLocaleChanged());
- [[NSUserDefaults standardUserDefaults] setObject:FIRInstanceIDCurrentLocale()
- forKey:kFIRInstanceIDUserDefaultsKeyLocale];
- XCTAssertFalse(FIRInstanceIDHasLocaleChanged());
- [[NSUserDefaults standardUserDefaults] setObject:@"zh-Hant"
- forKey:kFIRInstanceIDUserDefaultsKeyLocale];
- XCTAssertTrue(FIRInstanceIDHasLocaleChanged());
- }
- @end
|