123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338 |
- #import <XCTest/XCTest.h>
- #import <objc/runtime.h>
- #import "RNNCommandsHandler.h"
- #import "RNNNavigationOptions.h"
- #import "RNNTestRootViewCreator.h"
- #import "RNNRootViewController.h"
- #import "RNNNavigationController.h"
- #import "RNNErrorHandler.h"
- #import <OCMock/OCMock.h>
-
- @interface MockUIApplication : NSObject
-
- -(UIWindow *)keyWindow;
-
- @end
-
- @implementation MockUIApplication
-
- - (UIWindow *)keyWindow {
- return [UIWindow new];
- }
-
- @end
-
- @interface MockUINavigationController : RNNNavigationController
- @property (nonatomic, strong) NSArray* willReturnVCs;
- @end
-
- @implementation MockUINavigationController
-
- -(NSArray<UIViewController *> *)popToViewController:(UIViewController *)viewController animated:(BOOL)animated {
- return self.willReturnVCs;
- }
-
- -(NSArray<UIViewController *> *)popToRootViewControllerAnimated:(BOOL)animated {
- return self.willReturnVCs;
- }
-
- @end
-
- @interface RNNCommandsHandlerTest : XCTestCase
-
- @property (nonatomic, strong) id store;
- @property (nonatomic, strong) RNNCommandsHandler* uut;
- @property (nonatomic, strong) RNNRootViewController* vc1;
- @property (nonatomic, strong) RNNRootViewController* vc2;
- @property (nonatomic, strong) RNNRootViewController* vc3;
- @property (nonatomic, strong) MockUINavigationController* nvc;
- @property (nonatomic, strong) id mainWindow;
- @property (nonatomic, strong) id sharedApplication;
- @property (nonatomic, strong) id controllerFactory;
- @property (nonatomic, strong) id overlayManager;
- @property (nonatomic, strong) id eventEmmiter;
-
- @end
-
- @implementation RNNCommandsHandlerTest
-
- - (void)setUp {
- [super setUp];
- self.mainWindow = [OCMockObject partialMockForObject:[UIWindow new]];
- self.store = [OCMockObject partialMockForObject:[[RNNStore alloc] init]];
- self.eventEmmiter = [OCMockObject partialMockForObject:[RNNEventEmitter new]];
- self.overlayManager = [OCMockObject partialMockForObject:[RNNOverlayManager new]];
- self.controllerFactory = [OCMockObject partialMockForObject:[[RNNControllerFactory alloc] initWithRootViewCreator:nil eventEmitter:self.eventEmmiter andBridge:nil]];
- self.uut = [[RNNCommandsHandler alloc] initWithStore:self.store controllerFactory:self.controllerFactory eventEmitter:self.eventEmmiter stackManager:[RNNNavigationStackManager new] modalManager:[RNNModalManager new] overlayManager:self.overlayManager mainWindow:_mainWindow];
- self.vc1 = [RNNRootViewController new];
- self.vc2 = [RNNRootViewController new];
- self.vc3 = [RNNRootViewController new];
- _nvc = [[MockUINavigationController alloc] init];
- [_nvc setViewControllers:@[self.vc1, self.vc2, self.vc3]];
- [self.store setComponent:self.vc1 componentId:@"vc1"];
- [self.store setComponent:self.vc2 componentId:@"vc2"];
- [self.store setComponent:self.vc3 componentId:@"vc3"];
- OCMStub([self.sharedApplication keyWindow]).andReturn(self.mainWindow);
- }
-
-
- - (void)testAssertReadyForEachMethodThrowsExceptoins {
- NSArray* methods = [self getPublicMethodNamesForObject:self.uut];
- [self.store setReadyToReceiveCommands:false];
- for (NSString* methodName in methods) {
- SEL s = NSSelectorFromString(methodName);
- IMP imp = [self.uut methodForSelector:s];
- void (*func)(id, SEL, id, id, id) = (void *)imp;
-
- XCTAssertThrowsSpecificNamed(func(self.uut,s, nil, nil, nil), NSException, @"BridgeNotLoadedError");
- }
- }
-
- -(NSArray*) getPublicMethodNamesForObject:(NSObject*)obj{
- NSMutableArray* skipMethods = [NSMutableArray new];
-
- [skipMethods addObject:@"initWithStore:controllerFactory:eventEmitter:stackManager:modalManager:overlayManager:mainWindow:"];
- [skipMethods addObject:@"assertReady"];
- [skipMethods addObject:@"removePopedViewControllers:"];
- [skipMethods addObject:@".cxx_destruct"];
- [skipMethods addObject:@"dismissedModal:"];
- [skipMethods addObject:@"dismissedMultipleModals:"];
-
- NSMutableArray* result = [NSMutableArray new];
-
- // count and names:
- int i=0;
- unsigned int mc = 0;
- Method * mlist = class_copyMethodList(object_getClass(obj), &mc);
-
- for(i=0; i<mc; i++) {
- NSString *methodName = [NSString stringWithUTF8String:sel_getName(method_getName(mlist[i]))];
-
- // filter skippedMethods
- if (methodName && ![skipMethods containsObject:methodName]) {
- [result addObject:methodName];
- }
- }
-
- return result;
- }
-
- -(void)testDynamicStylesMergeWithStaticStyles {
- RNNNavigationOptions* initialOptions = [[RNNNavigationOptions alloc] initWithDict:@{}];
- initialOptions.topBar.title.text = [[Text alloc] initWithValue:@"the title"];
- RNNLayoutInfo* layoutInfo = [RNNLayoutInfo new];
- RNNTestRootViewCreator* creator = [[RNNTestRootViewCreator alloc] init];
-
- RNNViewControllerPresenter* presenter = [[RNNViewControllerPresenter alloc] init];
- RNNRootViewController* vc = [[RNNRootViewController alloc] initWithLayoutInfo:layoutInfo rootViewCreator:creator eventEmitter:nil presenter:presenter options:initialOptions defaultOptions:nil];
-
- RNNNavigationController* nav = [[RNNNavigationController alloc] initWithLayoutInfo:nil childViewControllers:@[vc] options:[[RNNNavigationOptions alloc] initEmptyOptions] defaultOptions:nil presenter:[[RNNNavigationControllerPresenter alloc] init]];
-
- [vc viewWillAppear:false];
- XCTAssertTrue([vc.navigationItem.title isEqual:@"the title"]);
-
- [self.store setReadyToReceiveCommands:true];
- [self.store setComponent:vc componentId:@"componentId"];
-
- NSDictionary* dictFromJs = @{@"topBar": @{@"background" : @{@"color" : @(0xFFFF0000)}}};
- UIColor* expectedColor = [UIColor colorWithRed:1 green:0 blue:0 alpha:1];
-
- [self.uut mergeOptions:@"componentId" options:dictFromJs completion:^{
- XCTAssertTrue([vc.navigationItem.title isEqual:@"the title"]);
- XCTAssertTrue([nav.navigationBar.barTintColor isEqual:expectedColor]);
- }];
- }
-
- - (void)testMergeOptions_shouldOverrideOptions {
- RNNNavigationOptions* initialOptions = [[RNNNavigationOptions alloc] initWithDict:@{}];
- initialOptions.topBar.title.text = [[Text alloc] initWithValue:@"the title"];
-
- RNNViewControllerPresenter* presenter = [[RNNViewControllerPresenter alloc] init];
- RNNRootViewController* vc = [[RNNRootViewController alloc] initWithLayoutInfo:nil rootViewCreator:[[RNNTestRootViewCreator alloc] init] eventEmitter:nil presenter:presenter options:initialOptions defaultOptions:nil];
-
- __unused RNNNavigationController* nav = [[RNNNavigationController alloc] initWithRootViewController:vc];
- [vc viewWillAppear:false];
- XCTAssertTrue([vc.navigationItem.title isEqual:@"the title"]);
-
- [self.store setReadyToReceiveCommands:true];
- [self.store setComponent:vc componentId:@"componentId"];
-
- NSDictionary* dictFromJs = @{@"topBar": @{@"title" : @{@"text" : @"new title"}}};
-
- [self.uut mergeOptions:@"componentId" options:dictFromJs completion:^{
- XCTAssertTrue([vc.navigationItem.title isEqual:@"new title"]);
- }];
- }
-
- - (void)testPop_removeTopVCFromStore {
- [self.store setReadyToReceiveCommands:true];
- XCTestExpectation *expectation = [self expectationWithDescription:@"Testing Async Method"];
-
- [self.uut pop:@"vc3" mergeOptions:nil completion:^{
- XCTAssertNil([self.store findComponentForId:@"vc3"]);
- XCTAssertNotNil([self.store findComponentForId:@"vc2"]);
- XCTAssertNotNil([self.store findComponentForId:@"vc1"]);
- [expectation fulfill];
- } rejection:^(NSString *code, NSString *message, NSError *error) {
-
- }];
-
- [self waitForExpectationsWithTimeout:1 handler:nil];
- }
-
- - (void)testPopToSpecificVC_removeAllPopedVCFromStore {
- [self.store setReadyToReceiveCommands:true];
- XCTestExpectation *expectation = [self expectationWithDescription:@"Testing Async Method"];
- _nvc.willReturnVCs = @[self.vc2, self.vc3];
- [self.uut popTo:@"vc1" mergeOptions:nil completion:^{
- XCTAssertNil([self.store findComponentForId:@"vc2"]);
- XCTAssertNil([self.store findComponentForId:@"vc3"]);
- XCTAssertNotNil([self.store findComponentForId:@"vc1"]);
- [expectation fulfill];
- } rejection:nil];
-
- [self waitForExpectationsWithTimeout:1 handler:nil];
- }
-
- - (void)testPopToRoot_removeAllTopVCsFromStore {
- [self.store setReadyToReceiveCommands:true];
- _nvc.willReturnVCs = @[self.vc2, self.vc3];
- XCTestExpectation *expectation = [self expectationWithDescription:@"Testing Async Method"];
- [self.uut popToRoot:@"vc3" mergeOptions:nil completion:^{
- XCTAssertNil([self.store findComponentForId:@"vc2"]);
- XCTAssertNil([self.store findComponentForId:@"vc3"]);
- XCTAssertNotNil([self.store findComponentForId:@"vc1"]);
- [expectation fulfill];
- } rejection:nil];
-
- [self waitForExpectationsWithTimeout:1 handler:nil];
- }
-
- - (void)testShowOverlay_createLayout {
- [self.store setReadyToReceiveCommands:true];
- OCMStub([self.overlayManager showOverlayWindow:[OCMArg any]]);
- NSDictionary* layout = @{};
-
- [[self.controllerFactory expect] createLayout:layout saveToStore:self.store];
- [self.uut showOverlay:layout completion:^{}];
- [self.controllerFactory verify];
- }
-
- - (void)testShowOverlay_saveToStore {
- [self.store setReadyToReceiveCommands:true];
- OCMStub([self.overlayManager showOverlayWindow:[OCMArg any]]);
- OCMStub([self.controllerFactory createLayout:[OCMArg any] saveToStore:[OCMArg any]]);
-
- [[self.controllerFactory expect] createLayout:[OCMArg any] saveToStore:self.store];
- [self.uut showOverlay:@{} completion:^{}];
- [self.overlayManager verify];
- }
-
- - (void)testShowOverlay_withCreatedLayout {
- [self.store setReadyToReceiveCommands:true];
- UIViewController* layoutVC = [RNNRootViewController new];
- OCMStub([self.controllerFactory createLayout:[OCMArg any] saveToStore:[OCMArg any]]).andReturn(layoutVC);
-
- [[self.overlayManager expect] showOverlayWindow:[OCMArg any]];
- [self.uut showOverlay:@{} completion:^{}];
- [self.overlayManager verify];
- }
-
- - (void)testShowOverlay_invokeNavigationCommandEventWithLayout {
- [self.store setReadyToReceiveCommands:true];
- OCMStub([self.overlayManager showOverlayWindow:[OCMArg any]]);
- OCMStub([self.controllerFactory createLayout:[OCMArg any] saveToStore:[OCMArg any]]);
-
- NSDictionary* layout = @{};
-
- [[self.eventEmmiter expect] sendOnNavigationCommandCompletion:@"showOverlay" params:[OCMArg any]];
- [self.uut showOverlay:layout completion:^{}];
- [self.eventEmmiter verify];
- }
-
- - (void)testDismissOverlay_findComponentFromStore {
- [self.store setReadyToReceiveCommands:true];
- NSString* componentId = @"componentId";
- [[self.store expect] findComponentForId:componentId];
- [self.uut dismissOverlay:componentId completion:^{} rejection:^(NSString *code, NSString *message, NSError *error) {}];
- [self.store verify];
- }
-
- - (void)testDismissOverlay_dismissReturnedViewController {
- [self.store setReadyToReceiveCommands:true];
- NSString* componentId = @"componentId";
- UIViewController* returnedView = [UIViewController new];
- OCMStub([self.store findComponentForId:componentId]).andReturn(returnedView);
-
- [[self.overlayManager expect] dismissOverlay:returnedView];
- [self.uut dismissOverlay:componentId completion:^{} rejection:^(NSString *code, NSString *message, NSError *error) {}];
- [self.overlayManager verify];
- }
-
- - (void)testDismissOverlay_handleErrorIfNoOverlayExists {
- [self.store setReadyToReceiveCommands:true];
- NSString* componentId = @"componentId";
- id errorHandlerMockClass = [OCMockObject mockForClass:[RNNErrorHandler class]];
-
- [[errorHandlerMockClass expect] reject:[OCMArg any] withErrorCode:1010 errorDescription:[OCMArg any]];
- [self.uut dismissOverlay:componentId completion:[OCMArg any] rejection:[OCMArg any]];
- [errorHandlerMockClass verify];
- }
-
- - (void)testDismissOverlay_invokeNavigationCommandEvent {
- [self.store setReadyToReceiveCommands:true];
- NSString* componentId = @"componentId";
- OCMStub([self.store findComponentForId:componentId]).andReturn([UIViewController new]);
-
- [[self.eventEmmiter expect] sendOnNavigationCommandCompletion:@"dismissOverlay" params:[OCMArg any]];
- [self.uut dismissOverlay:componentId completion:^{
-
- } rejection:^(NSString *code, NSString *message, NSError *error) {}];
-
- [self.eventEmmiter verify];
- }
-
- - (void)testSetRoot_setRootViewControllerOnMainWindow {
- [self.store setReadyToReceiveCommands:true];
- OCMStub([self.controllerFactory createLayout:[OCMArg any] saveToStore:self.store]).andReturn(self.vc1);
-
- [[self.mainWindow expect] setRootViewController:self.vc1];
- [self.uut setRoot:@{} completion:^{}];
- [self.mainWindow verify];
- }
-
- - (void)testSetRoot_removeAllComponentsFromMainWindow {
- [self.store setReadyToReceiveCommands:true];
- OCMStub([self.controllerFactory createLayout:[OCMArg any] saveToStore:self.store]).andReturn(self.vc1);
-
- [[self.store expect] removeAllComponentsFromWindow:self.mainWindow];
- [self.uut setRoot:@{} completion:^{}];
- [self.store verify];
- }
-
- - (void)testSetStackRoot_resetStackWithSingleComponent {
- OCMStub([self.controllerFactory createChildrenLayout:[OCMArg any] saveToStore:self.store]).andReturn(@[self.vc2]);
- [self.store setReadyToReceiveCommands:true];
- [self.uut setStackRoot:@"vc1" children:nil completion:^{
-
- } rejection:^(NSString *code, NSString *message, NSError *error) {
-
- }];
- XCTAssertEqual(_nvc.viewControllers.firstObject, self.vc2);
- XCTAssertEqual(_nvc.viewControllers.count, 1);
- }
-
- - (void)testSetStackRoot_setMultipleChildren {
- NSArray* newViewControllers = @[_vc1, _vc3];
- OCMStub([self.controllerFactory createChildrenLayout:[OCMArg any] saveToStore:self.store]).andReturn(newViewControllers);
- [self.store setReadyToReceiveCommands:true];
- [self.uut setStackRoot:@"vc1" children:nil completion:^{
-
- } rejection:^(NSString *code, NSString *message, NSError *error) {
-
- }];
- XCTAssertTrue([_nvc.viewControllers isEqual:newViewControllers]);
- }
-
- @end
|