-
Notifications
You must be signed in to change notification settings - Fork 1.7k
should not persist context message ID in loggedMessageIDs #3670
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
9ec930f
should not log context message
charlotteliang 7e87567
fix indents
charlotteliang 8e2fa94
minor tweak
charlotteliang 4ff7dff
also add test for a notification that is locally scheduled
charlotteliang 8196ece
remove trailing space
charlotteliang 9f20747
fix whitespace trailing
charlotteliang deca331
fix weird trailing whitespace, must be my recent vimrc settings
charlotteliang 1668b78
remove more white space
charlotteliang 00f5e4c
check aps type and make method static
charlotteliang a56e7e1
fix typo
charlotteliang File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,244 @@ | ||
/* | ||
* 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/OCMock.h> | ||
|
||
#import <FirebaseCore/FIRAppInternal.h> | ||
#import <FirebaseInstanceID/FirebaseInstanceID.h> | ||
#import <FirebaseAnalyticsInterop/FIRAnalyticsInterop.h> | ||
#import <FirebaseMessaging/FIRMessaging.h> | ||
|
||
#import "Example/Messaging/Tests/FIRMessagingTestUtilities.h" | ||
#import "Firebase/Messaging/FIRMessaging_Private.h" | ||
#import "Firebase/Messaging/FIRMessagingAnalytics.h" | ||
#import "Firebase/Messaging/FIRMessagingRmqManager.h" | ||
#import "Firebase/Messaging/FIRMessagingSyncMessageManager.h" | ||
|
||
extern NSString *const kFIRMessagingFCMTokenFetchAPNSOption; | ||
|
||
/// The NSUserDefaults domain for testing. | ||
static NSString *const kFIRMessagingDefaultsTestDomain = @"com.messaging.tests"; | ||
|
||
@interface FIRMessaging () | ||
|
||
@property(nonatomic, readwrite, strong) NSString *defaultFcmToken; | ||
@property(nonatomic, readwrite, strong) FIRInstanceID *instanceID; | ||
@property(nonatomic, readwrite, strong) FIRMessagingRmqManager *rmq2Manager; | ||
|
||
- (BOOL)handleContextManagerMessage:(NSDictionary *)message; | ||
- (void)handleIncomingLinkIfNeededFromMessage:(NSDictionary *)message; | ||
|
||
@end | ||
|
||
/* | ||
* This class checks if we handle the received message properly | ||
* based on each type of messages. Checks include duplicate message handling, | ||
* analytics logging, etc. | ||
*/ | ||
@interface FIRMessagingHandlingTest : XCTestCase | ||
|
||
@property(nonatomic, readonly, strong) FIRMessaging *messaging; | ||
@property(nonatomic, strong) FIRMessagingAnalytics *messageAnalytics; | ||
@property(nonatomic, strong) id mockMessaging; | ||
@property(nonatomic, strong) id mockInstanceID; | ||
@property(nonatomic, strong) id mockFirebaseApp; | ||
@property(nonatomic, strong) id mockMessagingAnalytics; | ||
|
||
@end | ||
|
||
@implementation FIRMessagingHandlingTest | ||
|
||
- (void)setUp { | ||
[super setUp]; | ||
|
||
// Create the messaging instance with all the necessary dependencies. | ||
NSUserDefaults *defaults = | ||
[[NSUserDefaults alloc] initWithSuiteName:kFIRMessagingDefaultsTestDomain]; | ||
_messaging = [FIRMessagingTestUtilities messagingForTestsWithUserDefaults:defaults]; | ||
_mockFirebaseApp = OCMClassMock([FIRApp class]); | ||
OCMStub([_mockFirebaseApp defaultApp]).andReturn(_mockFirebaseApp); | ||
_mockInstanceID = OCMPartialMock(self.messaging.instanceID); | ||
[[NSUserDefaults standardUserDefaults] | ||
removePersistentDomainForName:[NSBundle mainBundle].bundleIdentifier]; | ||
_mockMessaging = OCMPartialMock(_messaging); | ||
_mockMessagingAnalytics = OCMClassMock([FIRMessagingAnalytics class]); | ||
} | ||
|
||
- (void)tearDown { | ||
[self.messaging.messagingUserDefaults removePersistentDomainForName:kFIRMessagingDefaultsTestDomain]; | ||
self.messaging.shouldEstablishDirectChannel = NO; | ||
self.messaging.defaultFcmToken = nil; | ||
[_mockMessagingAnalytics stopMocking]; | ||
[_mockMessaging stopMocking]; | ||
[_mockInstanceID stopMocking]; | ||
[_mockFirebaseApp stopMocking]; | ||
_messaging = nil; | ||
[super tearDown]; | ||
} | ||
|
||
-(void)testEmptyNotification { | ||
XCTAssertEqualObjects(@(FIRMessagingMessageStatusUnknown), @([_mockMessaging appDidReceiveMessage:@{}].status)); | ||
} | ||
|
||
-(void)testAPNSDisplayNotification { | ||
NSDictionary *notificationPayload = @{ | ||
@"aps": @{ | ||
@"alert" : @{ | ||
@"body" : @"body of notification", | ||
@"title" : @"title of notification", | ||
} | ||
}, | ||
@"gcm.message_id" : @"1566515013484879", | ||
@"gcm.n.e" : @1, | ||
@"google.c.a.c_id" : @"7379928225816991517", | ||
@"google.c.a.e" : @1, | ||
@"google.c.a.ts" : @1566515009, | ||
@"google.c.a.udt" : @0 | ||
}; | ||
OCMExpect([_mockMessaging handleContextManagerMessage:notificationPayload]); | ||
OCMExpect([_mockMessaging handleIncomingLinkIfNeededFromMessage:notificationPayload]); | ||
OCMExpect([_mockMessagingAnalytics logMessage:notificationPayload toAnalytics:[OCMArg any]]); | ||
XCTAssertEqualObjects(@(FIRMessagingMessageStatusNew), | ||
@([_messaging appDidReceiveMessage:notificationPayload].status)); | ||
OCMVerifyAll(_mockMessaging); | ||
|
||
OCMReject([_mockMessaging handleContextManagerMessage:notificationPayload]); | ||
OCMReject([_mockMessaging handleIncomingLinkIfNeededFromMessage:notificationPayload]); | ||
OCMReject([_mockMessagingAnalytics logMessage:notificationPayload toAnalytics:[OCMArg any]]); | ||
|
||
XCTAssertEqualObjects(@(FIRMessagingMessageStatusNew), | ||
@([_messaging appDidReceiveMessage:notificationPayload].status)); | ||
OCMVerifyAll(_mockMessaging); | ||
// Clear database | ||
[_messaging.rmq2Manager deleteSyncMessageWithRmqID:@"1566515013484879"]; | ||
} | ||
|
||
-(void)testAPNSContentAvailableNotification { | ||
NSDictionary *notificationPayload = @{ | ||
@"aps": @{ | ||
@"content-available" : @1 | ||
}, | ||
@"gcm.message_id" : @"1566513591299872", | ||
@"image" : @"bunny.png", | ||
@"google.c.a.e" : @1 | ||
}; | ||
OCMExpect([_mockMessaging handleContextManagerMessage:notificationPayload]); | ||
OCMExpect([_mockMessaging handleIncomingLinkIfNeededFromMessage:notificationPayload]); | ||
OCMExpect([_mockMessagingAnalytics logMessage:notificationPayload toAnalytics:[OCMArg any]]); | ||
XCTAssertEqualObjects(@(FIRMessagingMessageStatusNew), | ||
@([_messaging appDidReceiveMessage:notificationPayload].status)); | ||
OCMVerifyAll(_mockMessaging); | ||
|
||
OCMReject([_mockMessaging handleContextManagerMessage:notificationPayload]); | ||
OCMReject([_mockMessaging handleIncomingLinkIfNeededFromMessage:notificationPayload]); | ||
OCMReject([_mockMessagingAnalytics logMessage:notificationPayload toAnalytics:[OCMArg any]]); | ||
|
||
XCTAssertEqualObjects(@(FIRMessagingMessageStatusNew), | ||
@([_messaging appDidReceiveMessage:notificationPayload].status)); | ||
OCMVerifyAll(_mockMessaging); | ||
[_messaging.rmq2Manager deleteSyncMessageWithRmqID:@"1566513591299872"]; | ||
|
||
} | ||
|
||
-(void)testAPNSContentAvailableContextualNotification { | ||
NSDictionary *notificationPayload = @{ | ||
@"aps" : @{ | ||
@"content-available": @1 | ||
}, | ||
@"gcm.message_id": @"1566515531287827", | ||
@"gcm.n.e" : @1, | ||
@"gcm.notification.body" : @"Local time zone message!", | ||
@"gcm.notification.title" : @"Hello", | ||
@"gcms" : @"gcm.gmsproc.cm", | ||
@"google.c.a.c_id" : @"5941428497527920876", | ||
@"google.c.a.e" : @1, | ||
@"google.c.a.ts" : @1566565920, | ||
@"google.c.a.udt" : @1, | ||
@"google.c.cm.cat" : @"com.google.firebase.messaging.testapp.dev", | ||
@"google.c.cm.lt_end" : @"2019-09-20 13:12:00", | ||
@"google.c.cm.lt_start" : @"2019-08-23 13:12:00", | ||
}; | ||
OCMExpect([_mockMessaging handleContextManagerMessage:notificationPayload]); | ||
OCMExpect([_mockMessaging handleIncomingLinkIfNeededFromMessage:notificationPayload]); | ||
OCMExpect([_mockMessagingAnalytics logMessage:notificationPayload toAnalytics:[OCMArg any]]); | ||
XCTAssertEqualObjects(@(FIRMessagingMessageStatusNew), | ||
@([_messaging appDidReceiveMessage:notificationPayload].status)); | ||
OCMVerifyAll(_mockMessaging); | ||
|
||
OCMReject([_mockMessaging handleContextManagerMessage:notificationPayload]); | ||
OCMReject([_mockMessaging handleIncomingLinkIfNeededFromMessage:notificationPayload]); | ||
OCMReject([_mockMessagingAnalytics logMessage:notificationPayload toAnalytics:[OCMArg any]]); | ||
|
||
XCTAssertEqualObjects(@(FIRMessagingMessageStatusNew), | ||
@([_messaging appDidReceiveMessage:notificationPayload].status)); | ||
OCMVerifyAll(_mockMessaging); | ||
[_messaging.rmq2Manager deleteSyncMessageWithRmqID:@"1566515531287827"]; | ||
|
||
} | ||
|
||
-(void)testContextualLocalNotification { | ||
NSDictionary *notificationPayload = @{ | ||
@"gcm.message_id": @"1566515531281975", | ||
@"gcm.n.e" : @1, | ||
@"gcm.notification.body" : @"Local time zone message!", | ||
@"gcm.notification.title" : @"Hello", | ||
@"gcms" : @"gcm.gmsproc.cm", | ||
@"google.c.a.c_id" : @"5941428497527920876", | ||
@"google.c.a.e" : @1, | ||
@"google.c.a.ts" : @1566565920, | ||
@"google.c.a.udt" : @1, | ||
}; | ||
OCMExpect([_mockMessaging handleContextManagerMessage:notificationPayload]); | ||
OCMExpect([_mockMessaging handleIncomingLinkIfNeededFromMessage:notificationPayload]); | ||
OCMExpect([_mockMessagingAnalytics logMessage:notificationPayload toAnalytics:[OCMArg any]]); | ||
XCTAssertEqualObjects(@(FIRMessagingMessageStatusNew), | ||
@([_messaging appDidReceiveMessage:notificationPayload].status)); | ||
OCMVerifyAll(_mockMessaging); | ||
|
||
OCMReject([_mockMessaging handleContextManagerMessage:notificationPayload]); | ||
OCMReject([_mockMessaging handleIncomingLinkIfNeededFromMessage:notificationPayload]); | ||
OCMReject([_mockMessagingAnalytics logMessage:notificationPayload toAnalytics:[OCMArg any]]); | ||
|
||
XCTAssertEqualObjects(@(FIRMessagingMessageStatusNew), | ||
@([_messaging appDidReceiveMessage:notificationPayload].status)); | ||
OCMVerifyAll(_mockMessaging); | ||
[_messaging.rmq2Manager deleteSyncMessageWithRmqID:@"1566515531281975"]; | ||
} | ||
|
||
-(void)testMCSNotification { | ||
NSDictionary *notificationPayload = @{ | ||
@"from" : @"35006771263", | ||
@"image" : @"bunny.png" | ||
}; | ||
OCMExpect([_mockMessaging handleContextManagerMessage:notificationPayload]); | ||
OCMExpect([_mockMessaging handleIncomingLinkIfNeededFromMessage:notificationPayload]); | ||
OCMExpect([_mockMessagingAnalytics logMessage:notificationPayload toAnalytics:[OCMArg any]]); | ||
XCTAssertEqualObjects(@(FIRMessagingMessageStatusNew), | ||
@([_messaging appDidReceiveMessage:notificationPayload].status)); | ||
OCMVerifyAll(_mockMessaging); | ||
|
||
OCMExpect([_mockMessaging handleContextManagerMessage:notificationPayload]); | ||
OCMExpect([_mockMessaging handleIncomingLinkIfNeededFromMessage:notificationPayload]); | ||
OCMExpect([_mockMessagingAnalytics logMessage:notificationPayload toAnalytics:[OCMArg any]]); | ||
|
||
XCTAssertEqualObjects(@(FIRMessagingMessageStatusNew), | ||
@([_messaging appDidReceiveMessage:notificationPayload].status)); | ||
OCMVerifyAll(_mockMessaging); | ||
} | ||
|
||
@end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.