mirror of
https://github.com/zhigang1992/react-native-notifications.git
synced 2026-06-12 17:18:11 +08:00
85 lines
4.3 KiB
Objective-C
85 lines
4.3 KiB
Objective-C
#import <XCTest/XCTest.h>
|
|
#import <OCMock/OCMock.h>
|
|
#import "RNNotificationEventHandler.h"
|
|
#import "RNNotificationUtils.h"
|
|
|
|
@interface RNNotificationEventHandlerTests : XCTestCase
|
|
@property (nonatomic, retain) RNNotificationEventHandler* uut;
|
|
@property (nonatomic, retain) RNNotificationsStore* store;
|
|
@property (nonatomic, retain) id mockedNotificationCenter;
|
|
@end
|
|
|
|
@implementation RNNotificationEventHandlerTests
|
|
|
|
- (void)setUp {
|
|
_store = [RNNotificationsStore sharedInstance];
|
|
_uut = [[RNNotificationEventHandler alloc] initWithStore:_store];
|
|
|
|
_mockedNotificationCenter = [OCMockObject partialMockForObject:[NSNotificationCenter new]];
|
|
[[[[[OCMockObject niceMockForClass:NSNotificationCenter.class] stub] classMethod] andReturn:_mockedNotificationCenter] defaultCenter];
|
|
}
|
|
|
|
- (void)testDidRegisterForRemoteNotifications_ShouldEmitEventWithDeviceTokenDataString {
|
|
NSData* deviceToken = [@"740f4707 bebcf74f 9b7c25d4 8e335894 5f6aa01d a5ddb387 462c7eaf 61bb78ad" dataUsingEncoding:NSUTF32StringEncoding];
|
|
[[_mockedNotificationCenter expect] postNotificationName:RNRegistered object:[OCMArg any] userInfo:[OCMArg checkWithBlock:^BOOL(id obj) {
|
|
return ([[obj objectForKey:@"deviceToken"] isEqualToString:[RNNotificationUtils deviceTokenToString:deviceToken]]);
|
|
}]];
|
|
[_uut didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
|
|
[_mockedNotificationCenter verify];
|
|
}
|
|
|
|
- (void)testDidRegisterForRemoteNotifications_ShouldEmitEventWithDeviceTokenString {
|
|
NSString* deviceToken = @"740f4707 bebcf74f 9b7c25d4 8e335894 5f6aa01d a5ddb387 462c7eaf 61bb78ad";
|
|
[[_mockedNotificationCenter expect] postNotificationName:RNRegistered object:[OCMArg any] userInfo:[OCMArg checkWithBlock:^BOOL(id obj) {
|
|
return ([[obj objectForKey:@"deviceToken"] isEqualToString:deviceToken]);
|
|
}]];
|
|
[_uut didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
|
|
[_mockedNotificationCenter verify];
|
|
}
|
|
|
|
- (void)testDidFailToRegisterForRemoteNotifications_ShouldEmitEvent {
|
|
NSError* error = [NSError errorWithDomain:@"domain" code:1 userInfo:nil];
|
|
[[_mockedNotificationCenter expect] postNotificationName:RNRegistrationFailed object:[OCMArg any] userInfo:[OCMArg checkWithBlock:^BOOL(id obj) {
|
|
return ([[obj valueForKey:@"code"] isEqualToNumber:@(1)] &&
|
|
[[obj valueForKey:@"domain"] isEqualToString:@"domain"]);
|
|
}]];
|
|
|
|
[_uut didFailToRegisterForRemoteNotificationsWithError:error];
|
|
[_mockedNotificationCenter verify];
|
|
}
|
|
|
|
- (void)testDidReceiveForegroundNotification_ShouldSaveCompletionBlockToStore {
|
|
UNNotification* notification = [self createNotificationWithIdentifier:@"id" andUserInfo:@{}];
|
|
void (^testBlock)(UNNotificationPresentationOptions) = ^void(UNNotificationPresentationOptions options) {};
|
|
|
|
[_uut didReceiveForegroundNotification:notification withCompletionHandler:testBlock];
|
|
XCTAssertEqual([_store getPresentationCompletionHandler:@"id"], testBlock);
|
|
}
|
|
|
|
- (void)testDidReceiveForegroundNotification_ShouldEmitEvent {
|
|
UNNotification* notification = [self createNotificationWithIdentifier:@"id" andUserInfo:@{@"extraKey": @"extraValue"}];
|
|
void (^testBlock)(UNNotificationPresentationOptions) = ^void(UNNotificationPresentationOptions options) {};
|
|
|
|
[[_mockedNotificationCenter expect] postNotificationName:RNNotificationReceivedForeground object:[OCMArg any] userInfo:[OCMArg checkWithBlock:^BOOL(id obj) {
|
|
return ([[obj valueForKey:@"identifier"] isEqualToString:@"id"] &&
|
|
[[[obj valueForKey:@"payload"] valueForKey:@"extraKey"] isEqualToString:@"extraValue"]);
|
|
}]];
|
|
[_uut didReceiveForegroundNotification:notification withCompletionHandler:testBlock];
|
|
[_mockedNotificationCenter verify];
|
|
}
|
|
|
|
- (UNNotification *)createNotificationWithIdentifier:(NSString *)identifier andUserInfo:(NSDictionary *)userInfo {
|
|
UNNotification* notification = [OCMockObject niceMockForClass:[UNNotification class]];
|
|
UNNotificationContent* content = [OCMockObject niceMockForClass:[UNNotificationContent class]];
|
|
OCMStub([content userInfo]).andReturn(userInfo);
|
|
UNNotificationRequest* request = [OCMockObject partialMockForObject:[UNNotificationRequest requestWithIdentifier:identifier content:content trigger:nil]];
|
|
OCMStub(notification.request).andReturn(request);
|
|
OCMStub(request.content).andReturn(content);
|
|
|
|
return notification;
|
|
}
|
|
|
|
|
|
|
|
@end
|