| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346 |
- /*
- * 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 <XCTest/XCTest.h>
- #import "OCMock.h"
- #import <GoogleUtilities/GULUserDefaults.h>
- #import "Firebase/InstanceID/Public/FirebaseInstanceID.h"
- #import "FirebaseMessaging/Sources/FIRMessagingPubSub.h"
- #import "FirebaseMessaging/Sources/FIRMessagingTopicsCommon.h"
- #import "FirebaseMessaging/Sources/NSError+FIRMessaging.h"
- #import "FirebaseMessaging/Sources/Public/FirebaseMessaging/FIRMessaging.h"
- #import "FirebaseMessaging/Tests/UnitTests/FIRMessagingTestUtilities.h"
- static NSString *const kFakeToken =
- @"fE1e1PZJFSQ:APA91bFAOjp1ahBWn9rTlbjArwBEm_"
- @"yUTTzK6dhIvLqzqqCSabaa4TQVM0pGTmF6r7tmMHPe6VYiGMHuCwJFgj5v97xl78sUNMLwuPPhoci8z_"
- @"QGlCrTbxCFGzEUfvA3fGpGgIVQU2W6";
- static NSString *const kFakeID = @"fE1e1PZJFSQ";
- static NSString *const kFIRMessagingSDKClassString = @"FIRMessaging";
- static NSString *const kFIRMessagingSDKVersionSelectorString = @"FIRMessagingSDKVersion";
- static NSString *const kFIRMessagingSDKLocaleSelectorString = @"FIRMessagingSDKCurrentLocale";
- static NSString *const kFIRMessagingTestsServiceSuiteName = @"com.messaging.test_serviceTest";
- @interface FIRMessaging ()
- @property(nonatomic, readwrite, strong) FIRMessagingPubSub *pubsub;
- @property(nonatomic, readwrite, strong) NSString *defaultFcmToken;
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Wdeprecated-declarations"
- @property(nonatomic, readwrite, strong) FIRInstanceID *instanceID;
- @end
- @interface FIRMessagingPubSub (ExposedForTest)
- - (void)updateSubscriptionWithToken:(NSString *)token
- topic:(NSString *)topic
- options:(NSDictionary *)options
- shouldDelete:(BOOL)shouldDelete
- handler:(FIRMessagingTopicOperationCompletion)handler;
- @end
- @interface FIRInstanceIDResult (ExposedForTest)
- @property(nonatomic, readwrite, copy) NSString *instanceID;
- @property(nonatomic, readwrite, copy) NSString *token;
- @end
- @interface FIRMessagingServiceTest : XCTestCase {
- FIRMessaging *_messaging;
- FIRInstanceIDResult *_result;
- id _mockInstanceID;
- id _mockMessaging;
- id _mockPubSub;
- FIRMessagingTestUtilities *_testUtil;
- }
- @end
- @implementation FIRMessagingServiceTest
- - (void)setUp {
- [super setUp];
- NSUserDefaults *defaults =
- [[NSUserDefaults alloc] initWithSuiteName:kFIRMessagingTestsServiceSuiteName];
- _testUtil = [[FIRMessagingTestUtilities alloc] initWithUserDefaults:defaults withRMQManager:NO];
- _mockMessaging = _testUtil.mockMessaging;
- _messaging = _testUtil.messaging;
- OCMStub([_mockMessaging defaultFcmToken]).andReturn(kFakeToken);
- _mockPubSub = _testUtil.mockPubsub;
- _mockInstanceID = _testUtil.mockInstanceID;
- _result = [[FIRInstanceIDResult alloc] init];
- _result.token = kFakeToken;
- _result.instanceID = kFakeID;
- }
- - (void)tearDown {
- [_testUtil cleanupAfterTest:self];
- _messaging = nil;
- [_mockPubSub stopMocking];
- [[[NSUserDefaults alloc] initWithSuiteName:kFIRMessagingTestsServiceSuiteName]
- removePersistentDomainForName:kFIRMessagingTestsServiceSuiteName];
- [super tearDown];
- }
- - (void)testSubscribe {
- XCTestExpectation *subscribeExpectation =
- [self expectationWithDescription:@"Should call subscribe on Pubsub"];
- NSString *token = kFakeToken;
- NSString *topic = @"/topics/some-random-topic";
- [[[_mockPubSub stub] andDo:^(NSInvocation *invocation) {
- [subscribeExpectation fulfill];
- }] updateSubscriptionWithToken:token
- topic:topic
- options:OCMOCK_ANY
- shouldDelete:NO
- handler:OCMOCK_ANY];
- [_mockPubSub subscribeWithToken:token
- topic:topic
- options:nil
- handler:^(NSError *error){
- // not a nil block
- }];
- // should call updateSubscription
- [self waitForExpectationsWithTimeout:0.1
- handler:^(NSError *error) {
- XCTAssertNil(error);
- [_mockPubSub verify];
- }];
- }
- - (void)testUnsubscribe {
- XCTestExpectation *subscribeExpectation =
- [self expectationWithDescription:@"Should call unsubscribe on Pubsub"];
- NSString *token = kFakeToken;
- NSString *topic = @"/topics/some-random-topic";
- [[[_mockPubSub stub] andDo:^(NSInvocation *invocation) {
- [subscribeExpectation fulfill];
- }] updateSubscriptionWithToken:[OCMArg isEqual:token]
- topic:[OCMArg isEqual:topic]
- options:[OCMArg checkWithBlock:^BOOL(id obj) {
- if ([obj isKindOfClass:[NSDictionary class]]) {
- return [(NSDictionary *)obj count] == 0;
- }
- return NO;
- }]
- shouldDelete:YES
- handler:OCMOCK_ANY];
- [_mockPubSub unsubscribeWithToken:token
- topic:topic
- options:nil
- handler:^(NSError *error){
- }];
- // should call updateSubscription
- [self waitForExpectationsWithTimeout:0.1
- handler:^(NSError *error) {
- XCTAssertNil(error);
- [_mockPubSub verify];
- }];
- }
- - (void)testSubscribeWithNoTopicPrefix {
- OCMStub([_mockInstanceID
- instanceIDWithHandler:([OCMArg invokeBlockWithArgs:_result, [NSNull null], nil])]);
- NSString *topicName = @"topicWithoutPrefix";
- NSString *topicNameWithPrefix = [FIRMessagingPubSub addPrefixToTopic:topicName];
- OCMExpect([_mockPubSub subscribeToTopic:[OCMArg isEqual:topicNameWithPrefix]
- handler:[OCMArg any]]);
- [_messaging subscribeToTopic:topicName];
- OCMVerifyAll(_mockPubSub);
- }
- - (void)testSubscribeWithTopicPrefix {
- OCMStub([_mockInstanceID
- instanceIDWithHandler:([OCMArg invokeBlockWithArgs:_result, [NSNull null], nil])]);
- NSString *topicName = @"/topics/topicWithoutPrefix";
- OCMExpect([_mockPubSub subscribeToTopic:[OCMArg isEqual:topicName] handler:[OCMArg any]]);
- [_messaging subscribeToTopic:topicName];
- OCMVerifyAll(_mockPubSub);
- }
- - (void)testUnsubscribeWithNoTopicPrefix {
- OCMStub([_mockInstanceID
- instanceIDWithHandler:([OCMArg invokeBlockWithArgs:_result, [NSNull null], nil])]);
- NSString *topicName = @"topicWithoutPrefix";
- NSString *topicNameWithPrefix = [FIRMessagingPubSub addPrefixToTopic:topicName];
- OCMExpect([_mockPubSub unsubscribeFromTopic:[OCMArg isEqual:topicNameWithPrefix]
- handler:[OCMArg any]]);
- [_messaging unsubscribeFromTopic:topicName];
- OCMVerifyAll(_mockPubSub);
- }
- - (void)testUnsubscribeWithTopicPrefix {
- OCMStub([_mockInstanceID
- instanceIDWithHandler:([OCMArg invokeBlockWithArgs:_result, [NSNull null], nil])]);
- NSString *topicName = @"/topics/topicWithPrefix";
- OCMExpect([_mockPubSub unsubscribeFromTopic:[OCMArg isEqual:topicName] handler:[OCMArg any]]);
- [_messaging unsubscribeFromTopic:topicName];
- OCMVerifyAll(_mockPubSub);
- }
- - (void)testSubscriptionCompletionHandlerWithSuccess {
- OCMStub([_mockInstanceID
- instanceIDWithHandler:([OCMArg invokeBlockWithArgs:_result, [NSNull null], nil])]);
- OCMStub([_mockPubSub subscribeToTopic:[OCMArg any]
- handler:([OCMArg invokeBlockWithArgs:[NSNull null], nil])]);
- XCTestExpectation *subscriptionCompletionExpectation =
- [self expectationWithDescription:@"Subscription is complete"];
- [_messaging subscribeToTopic:@"news"
- completion:^(NSError *error) {
- XCTAssertNil(error);
- [subscriptionCompletionExpectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:0.2
- handler:^(NSError *_Nullable error){
- }];
- }
- - (void)testUnsubscribeCompletionHandlerWithSuccess {
- OCMStub([_mockInstanceID
- instanceIDWithHandler:([OCMArg invokeBlockWithArgs:_result, [NSNull null], nil])]);
- OCMStub([_mockPubSub unsubscribeFromTopic:[OCMArg any]
- handler:([OCMArg invokeBlockWithArgs:[NSNull null], nil])]);
- XCTestExpectation *unsubscriptionCompletionExpectation =
- [self expectationWithDescription:@"Unsubscription is complete"];
- [_messaging unsubscribeFromTopic:@"news"
- completion:^(NSError *_Nullable error) {
- XCTAssertNil(error);
- [unsubscriptionCompletionExpectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:0.2
- handler:^(NSError *_Nullable error){
- }];
- }
- - (void)testSubscriptionCompletionHandlerWithInvalidTopicName {
- OCMStub([_mockInstanceID
- instanceIDWithHandler:([OCMArg invokeBlockWithArgs:_result, [NSNull null], nil])]);
- XCTestExpectation *subscriptionCompletionExpectation =
- [self expectationWithDescription:@"Subscription is complete"];
- [_messaging subscribeToTopic:@"!@#$%^&*()"
- completion:^(NSError *_Nullable error) {
- XCTAssertNotNil(error);
- XCTAssertEqual(error.code, FIRMessagingErrorInvalidTopicName);
- [subscriptionCompletionExpectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:0.2
- handler:^(NSError *_Nullable error){
- }];
- }
- - (void)testUnsubscribeCompletionHandlerWithInvalidTopicName {
- OCMStub([_mockInstanceID
- instanceIDWithHandler:([OCMArg invokeBlockWithArgs:_result, [NSNull null], nil])]);
- XCTestExpectation *unsubscriptionCompletionExpectation =
- [self expectationWithDescription:@"Unsubscription is complete"];
- [_messaging unsubscribeFromTopic:@"!@#$%^&*()"
- completion:^(NSError *error) {
- XCTAssertNotNil(error);
- XCTAssertEqual(error.code, FIRMessagingErrorInvalidTopicName);
- [unsubscriptionCompletionExpectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:0.2
- handler:^(NSError *_Nullable error){
- }];
- }
- - (void)testFIRMessagingSDKVersionInFIRMessagingService {
- Class versionClass = NSClassFromString(kFIRMessagingSDKClassString);
- SEL versionSelector = NSSelectorFromString(kFIRMessagingSDKVersionSelectorString);
- if ([versionClass respondsToSelector:versionSelector]) {
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Warc-performSelector-leaks"
- id versionString = [versionClass performSelector:versionSelector];
- #pragma clang diagnostic pop
- XCTAssertTrue([versionString isKindOfClass:[NSString class]]);
- } else {
- XCTFail("%@ does not respond to selector %@", kFIRMessagingSDKClassString,
- kFIRMessagingSDKVersionSelectorString);
- }
- }
- - (void)testFIRMessagingSDKLocaleInFIRMessagingService {
- Class klass = NSClassFromString(kFIRMessagingSDKClassString);
- SEL localeSelector = NSSelectorFromString(kFIRMessagingSDKLocaleSelectorString);
- if ([klass respondsToSelector:localeSelector]) {
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Warc-performSelector-leaks"
- id locale = [klass performSelector:localeSelector];
- #pragma clang diagnostic pop
- XCTAssertTrue([locale isKindOfClass:[NSString class]]);
- XCTAssertNotNil(locale);
- } else {
- XCTFail("%@ does not respond to selector %@", kFIRMessagingSDKClassString,
- kFIRMessagingSDKLocaleSelectorString);
- }
- }
- - (void)testSubscribeFailedWithInvalidToken {
- // Mock get token is failed with FIRMessagingErrorUnknown error.
- XCTestExpectation *subscriptionCompletionExpectation =
- [self expectationWithDescription:@"Subscription is complete"];
- NSString *failureReason = @"Invalid token.";
- OCMStub([_mockInstanceID
- instanceIDWithHandler:
- ([OCMArg invokeBlockWithArgs:[NSNull null],
- [NSError messagingErrorWithCode:kFIRMessagingErrorCodeUnknown
- failureReason:failureReason],
- nil])]);
- [_messaging subscribeToTopic:@"Apple"
- completion:^(NSError *_Nullable error) {
- XCTAssertNotNil(error);
- XCTAssertEqual(error.code, kFIRMessagingErrorCodeUnknown);
- XCTAssertEqualObjects(failureReason, error.localizedFailureReason);
- [subscriptionCompletionExpectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:0.2 handler:nil];
- }
- - (void)testUnsubscribeFailedWithInvalidToken {
- NSString *failureReason = @"Invalid token.";
- OCMStub([_mockInstanceID
- instanceIDWithHandler:
- ([OCMArg invokeBlockWithArgs:[NSNull null],
- [NSError messagingErrorWithCode:kFIRMessagingErrorCodeUnknown
- failureReason:failureReason],
- nil])]);
- XCTestExpectation *unsubscriptionCompletionExpectation =
- [self expectationWithDescription:@"Unsubscription is complete"];
- [_messaging unsubscribeFromTopic:@"news"
- completion:^(NSError *_Nullable error) {
- XCTAssertNotNil(error);
- XCTAssertEqual(error.code, kFIRMessagingErrorCodeUnknown);
- XCTAssertEqualObjects(failureReason, error.localizedFailureReason);
- [unsubscriptionCompletionExpectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:0.2 handler:nil];
- }
- #pragma clang diagnostic pop
- @end
|