aboutsummaryrefslogtreecommitdiffhomepage
path: root/Example/Messaging/Tests
Commit message (Collapse)AuthorAge
* Split GoogleUtilities from FirebaseCore (#1370)Gravatar Paul Beusterien2018-07-06
|
* Fix the race condition of global data flag and fcm auto init enabled flag ↵Gravatar Chen Liang2018-06-29
| | | | (#1466)
* Disable failing didReceiveRemoteNotification tests(#1451) (#1452)Gravatar Paul Beusterien2018-06-25
|
* add a warning message that the topic operation is suspended without a token ↵Gravatar Chen Liang2018-06-19
| | | | (#1427)
* Corrected the deprecation warning when subscribing to or unsubscribing from ↵Gravatar Chen Liang2018-06-19
| | | | a topic (#1425)
* Add global data collection switch. (#1219)Gravatar Ryan Wilson2018-05-14
| | | | | | | * Addition of global data collection switch. * Added Messaging conformance to data switch. Also formatted code. * Move data collection flag internal until all SDKs conform to it. * Formatting in response to code review.
* replace the private OCMock method with a public one, and also fix the ↵Gravatar Chen Liang2018-04-19
| | | | EXC_BAD_ACCESSw (#1149)
* Options should be nullable for subscription (#1085)Gravatar Chen Liang2018-04-13
| | | | Getting warning message from xcode so we need to define it to remove warning.
* Adding a new topic subscription/unsubcription with completion handler method ↵Gravatar Chen Liang2018-03-30
| | | | | | (#1001) * add new topic subscription/unsubscription method with handler
* Migrate Firebase off ObjC module @import statements (#992)Gravatar Ben Hamilton (Ben Gertzfield)2018-03-29
| | | | | | | | | | | * Migrate Firebase off @import statements * - Migrate tests and test utils from @import to #import. - Update Xcode projects for tests to explicitly link in framework deps. - Update check_no_module_imports.sh to look for @imports in tests/test utils/ integration tests. * Ensure check_no_module_imports.sh explicitly exits with code 0 on success.
* Remove FIRMessagingInstanceIDProxyGravatar Morgan Chen2018-03-27
|
* avoid using initWithSuiteName which does not support iOS 7 (#765)Gravatar Chen Liang2018-02-06
|
* Fix tests.Gravatar Oleksiy Ivanov2018-01-31
|
* adding unit test for auto init enable function (#710)Gravatar Chen Liang2018-01-25
|
* Use brackets for module imports (#487)Gravatar Paul Beusterien2017-11-22
|
* Buildable and interoperable source pods (#444)Gravatar Paul Beusterien2017-11-21
|
* Update messaging test for upcoming InstanceID changes (#425)Gravatar Paul Beusterien2017-11-03
|
* Don't swizzle missing and optional delegate methodsGravatar Riz2017-10-04
| | | | | | | | | FCM's swizzling of the user notification center currently swizzles only one of the two optional delegate methods (userNotificationCenter:willPresentNotification:withCompletionHandler:), but not the other (userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:). The didReceiveNotificationResponse, if implemented by the delegate, is the sole receiver of all user action on a notification, including simply tapping on the notification itself. Prior to this change, if the developer had implemented didReceiveNotificationResponse, then FCM would not be able to collect this event for analytics. Additionally, I changed the logic in FIRMessagingRemoteNotificationsProxy to check whether these methods are actually implemented before swizzling them. It was always swizzling, which meant it was adding an implementation if the method didn't exist. This would confuse iOS into thinking the developer did implement these methods and NOT fall back to delivering the notifications to the application delegate. With this change, if the developer did not implement these methods, then FCM will not swizzle those methods. That keeps the behavior true to what the developer intended.
* Remove FIRMessaging_FAIL macro, log result code (#265)Gravatar Riz2017-09-13
| | | | | | This removes the `FIRMessaging_FAIL` macro which was using `__builtin_trap()`, and replaced with `NSAssert` calls. These `NSAssert` calls may not get called in release builds, and so we also log them with FIRLogger error messages. The RMQ database open error result code is now parsed and included in the error message to help us identify causes for #199 .
* Use modulemap to fix exposure of FirebaseCore's internal headers (#121)Gravatar Paul Beusterien2017-07-10
|
* Clean up logging and configuration in Messaging (#28)Gravatar Riz2017-05-24
| | | | | | | | | | * Remove mostly unused code from FIRMessagingLogger This cleans up some left-over old logging logic from before we moved to FIRLogger in Firebase Core. We no longer need this logging functionality. * Delete FIRMessagingConfig.{h,m} We no longer need a config class to store an unused log level filter (that filter is no longer needed).
* InitialGravatar Paul Beusterien2017-05-15