123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574 |
- #import <XCTest/XCTest.h>
- #import <OCMock/OCMock.h>
- #import "RNNRootViewController.h"
- #import "RNNReactRootViewCreator.h"
- #import "RNNTestRootViewCreator.h"
- #import <React/RCTConvert.h>
- #import "RNNNavigationOptions.h"
- #import "RNNNavigationController.h"
- #import "RNNTabBarController.h"
- #import "RNNUIBarButtonItem.h"
-
-
- @interface RNNRootViewController (EmbedInTabBar)
- - (void)embedInTabBarController;
- @end
-
- @implementation RNNRootViewController (EmbedInTabBar)
-
- - (void)embedInTabBarController {
- RNNTabBarController* tabVC = [[RNNTabBarController alloc] init];
- tabVC.viewControllers = @[self];
- [self viewWillAppear:false];
- }
-
- @end
-
- @interface RNNRootViewControllerTest : XCTestCase
-
- @property (nonatomic, strong) id<RNNRootViewCreator> creator;
- @property (nonatomic, strong) NSString* pageName;
- @property (nonatomic, strong) NSString* componentId;
- @property (nonatomic, strong) id emitter;
- @property (nonatomic, strong) RNNNavigationOptions* options;
- @property (nonatomic, strong) RNNLayoutInfo* layoutInfo;
- @property (nonatomic, strong) RNNRootViewController* uut;
- @end
-
- @implementation RNNRootViewControllerTest
-
- - (void)setUp {
- [super setUp];
- self.creator = [[RNNTestRootViewCreator alloc] init];
- self.pageName = @"somename";
- self.componentId = @"cntId";
- self.emitter = nil;
- self.options = [[RNNNavigationOptions alloc] initWithDict:@{}];
-
- RNNLayoutInfo* layoutInfo = [RNNLayoutInfo new];
- layoutInfo.componentId = self.componentId;
- layoutInfo.name = self.pageName;
-
- id presenter = [OCMockObject partialMockForObject:[[RNNViewControllerPresenter alloc] init]];
- self.uut = [[RNNRootViewController alloc] initWithLayoutInfo:layoutInfo rootViewCreator:self.creator eventEmitter:self.emitter presenter:presenter options:self.options defaultOptions:nil];
- }
-
- -(void)testTopBarBackgroundColor_validColor{
- NSNumber* inputColor = @(0xFFFF0000);
- self.options.topBar.background.color = [[Color alloc] initWithValue:[RCTConvert UIColor:inputColor]];
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- UIColor* expectedColor = [UIColor colorWithRed:1 green:0 blue:0 alpha:1];
-
- XCTAssertTrue([self.uut.navigationController.navigationBar.barTintColor isEqual:expectedColor]);
- }
-
- -(void)testTopBarBackgroundColorWithoutNavigationController{
- NSNumber* inputColor = @(0xFFFF0000);
- self.options.topBar.background.color = [[Color alloc] initWithValue:[RCTConvert UIColor:inputColor]];
-
- XCTAssertNoThrow([self.uut viewWillAppear:false]);
- }
-
- - (void)testStatusBarHidden_default {
- [self.uut viewWillAppear:false];
-
- XCTAssertFalse([self.uut prefersStatusBarHidden]);
- }
-
- - (void)testStatusBarVisible_false {
- self.options.statusBar.visible = [[Bool alloc] initWithValue:@(0)];
- [self.uut viewWillAppear:false];
-
- XCTAssertTrue([self.uut prefersStatusBarHidden]);
- }
-
- - (void)testStatusBarVisible_true {
- self.options.statusBar.visible = [[Bool alloc] initWithValue:@(1)];
- [self.uut viewWillAppear:false];
-
- XCTAssertFalse([self.uut prefersStatusBarHidden]);
- }
-
- - (void)testStatusBarHideWithTopBar_false {
- self.options.statusBar.hideWithTopBar = [[Bool alloc] initWithValue:@(0)];
- self.options.topBar.visible = [[Bool alloc] initWithValue:@(0)];
- [self.uut viewWillAppear:false];
-
- XCTAssertFalse([self.uut prefersStatusBarHidden]);
- }
-
- - (void)testStatusBarHideWithTopBar_true {
- self.options.statusBar.hideWithTopBar = [[Bool alloc] initWithValue:@(1)];
- self.options.topBar.visible = [[Bool alloc] initWithValue:@(0)];
- __unused RNNNavigationController* nav = [self createNavigationController];
-
- [self.uut viewWillAppear:false];
-
- XCTAssertTrue([self.uut prefersStatusBarHidden]);
- }
-
- -(void)testTitle_string{
- NSString* title =@"some title";
- self.options.topBar.title.text = [[Text alloc] initWithValue:title];
-
- [self.uut viewWillAppear:false];
- XCTAssertTrue([self.uut.navigationItem.title isEqual:title]);
- }
-
- -(void)testTitle_default{
- [self.uut viewWillAppear:false];
- XCTAssertNil(self.uut.navigationItem.title);
- }
-
- -(void)testTopBarTextColor_validColor{
- UIColor* inputColor = [RCTConvert UIColor:@(0xFFFF0000)];
- self.options.topBar.title.color = [[Color alloc] initWithValue:inputColor];
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- UIColor* expectedColor = [UIColor colorWithRed:1 green:0 blue:0 alpha:1];
- XCTAssertTrue([self.uut.navigationController.navigationBar.titleTextAttributes[@"NSColor"] isEqual:expectedColor]);
- }
-
- -(void)testbackgroundColor_validColor{
- UIColor* inputColor = [RCTConvert UIColor:@(0xFFFF0000)];
- self.options.layout.backgroundColor = [[Color alloc] initWithValue:inputColor];
- [self.uut viewWillAppear:false];
- UIColor* expectedColor = [UIColor colorWithRed:1 green:0 blue:0 alpha:1];
- XCTAssertTrue([self.uut.view.backgroundColor isEqual:expectedColor]);
- }
-
- -(void)testTopBarTextFontFamily_validFont{
- NSString* inputFont = @"HelveticaNeue";
- __unused RNNNavigationController* nav = [self createNavigationController];
- self.options.topBar.title.fontFamily = [[Text alloc] initWithValue:inputFont];
- [self.uut viewWillAppear:false];
- UIFont* expectedFont = [UIFont fontWithName:inputFont size:17];
- XCTAssertTrue([self.uut.navigationController.navigationBar.titleTextAttributes[@"NSFont"] isEqual:expectedFont]);
- }
-
- -(void)testTopBarHideOnScroll_true {
- NSNumber* hideOnScrollInput = @(1);
- __unused RNNNavigationController* nav = [self createNavigationController];
- self.options.topBar.hideOnScroll = [[Bool alloc] initWithValue:hideOnScrollInput];;
- [self.uut viewWillAppear:false];
- XCTAssertTrue(self.uut.navigationController.hidesBarsOnSwipe);
- }
-
- -(void)testTopBarTranslucent {
- NSNumber* topBarTranslucentInput = @(0);
- self.options.topBar.background.translucent = [[Bool alloc] initWithValue:topBarTranslucentInput];
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- XCTAssertFalse(self.uut.navigationController.navigationBar.translucent);
- }
-
- -(void)testTabBadge {
- NSString* tabBadgeInput = @"5";
- self.options.bottomTab.badge = [[Text alloc] initWithValue:tabBadgeInput];
- __unused RNNTabBarController* vc = [[RNNTabBarController alloc] init];
- NSMutableArray* controllers = [NSMutableArray new];
- UITabBarItem* item = [[UITabBarItem alloc] initWithTitle:@"A Tab" image:nil tag:1];
- [self.uut setTabBarItem:item];
- [controllers addObject:self.uut];
- [vc setViewControllers:controllers];
- [self.uut viewWillAppear:false];
- XCTAssertTrue([self.uut.tabBarItem.badgeValue isEqualToString:tabBadgeInput]);
-
- }
-
- -(void)testTopBarTransparent_BOOL_True {
- UIColor* transparentColor = [RCTConvert UIColor:@(0x00000000)];
- self.options.topBar.background.color = [[Color alloc] initWithValue:transparentColor];
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- UIView* transparentView = [self.uut.navigationController.navigationBar viewWithTag:TOP_BAR_TRANSPARENT_TAG];
- XCTAssertTrue(transparentView);
- XCTAssertTrue([NSStringFromCGRect(transparentView.frame) isEqual: NSStringFromCGRect(CGRectZero)]);
- }
-
- -(void)testTopBarTransparent_BOOL_false {
- UIColor* inputColor = [RCTConvert UIColor:@(0xFFFF0000)];
- __unused RNNNavigationController* nav = [self createNavigationController];
- self.options.topBar.background.color = [[Color alloc] initWithValue:inputColor];
- [self.uut viewWillAppear:false];
- UIView* transparentView = [self.uut.navigationController.navigationBar viewWithTag:TOP_BAR_TRANSPARENT_TAG];
- XCTAssertFalse(transparentView);
- }
-
- -(void)testTopBarLargeTitle_default {
- [self.uut viewWillAppear:false];
-
- XCTAssertEqual(self.uut.navigationItem.largeTitleDisplayMode, UINavigationItemLargeTitleDisplayModeNever);
- }
-
- -(void)testTopBarLargeTitle_true {
- self.options.topBar.largeTitle.visible = [[Bool alloc] initWithValue:@(1)];
- [self.uut viewWillAppear:false];
-
- XCTAssertEqual(self.uut.navigationItem.largeTitleDisplayMode, UINavigationItemLargeTitleDisplayModeAlways);
- }
-
- -(void)testTopBarLargeTitle_false {
- self.options.topBar.largeTitle.visible = [[Bool alloc] initWithValue:@(0)];
- [self.uut viewWillAppear:false];
-
- XCTAssertEqual(self.uut.navigationItem.largeTitleDisplayMode, UINavigationItemLargeTitleDisplayModeNever);
- }
-
-
- -(void)testTopBarLargeTitleFontSize_withoutTextFontFamily_withoutTextColor {
- NSNumber* topBarTextFontSizeInput = @(15);
- self.options.topBar.largeTitle.fontSize = [[Number alloc] initWithValue:topBarTextFontSizeInput];
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- UIFont* expectedFont = [UIFont systemFontOfSize:15];
-
- XCTAssertTrue([self.uut.navigationController.navigationBar.largeTitleTextAttributes[@"NSFont"] isEqual:expectedFont]);
- }
-
- -(void)testTopBarLargeTitleFontSize_withoutTextFontFamily_withTextColor {
- NSNumber* topBarTextFontSizeInput = @(15);
- UIColor* inputColor = [RCTConvert UIColor:@(0xFFFF0000)];
- self.options.topBar.largeTitle.fontSize = [[Number alloc] initWithValue:topBarTextFontSizeInput];
- self.options.topBar.largeTitle.color = [[Color alloc] initWithValue:inputColor];
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- UIFont* expectedFont = [UIFont systemFontOfSize:15];
- UIColor* expectedColor = [UIColor colorWithRed:1 green:0 blue:0 alpha:1];
- XCTAssertTrue([self.uut.navigationController.navigationBar.largeTitleTextAttributes[@"NSFont"] isEqual:expectedFont]);
- XCTAssertTrue([self.uut.navigationController.navigationBar.largeTitleTextAttributes[@"NSColor"] isEqual:expectedColor]);
- }
-
- -(void)testTopBarLargeTitleFontSize_withTextFontFamily_withTextColor {
- NSNumber* topBarTextFontSizeInput = @(15);
- UIColor* inputColor = [RCTConvert UIColor:@(0xFFFF0000)];
- NSString* inputFont = @"HelveticaNeue";
- self.options.topBar.largeTitle.fontSize = [[Number alloc] initWithValue:topBarTextFontSizeInput];
- self.options.topBar.largeTitle.color = [[Color alloc] initWithValue:inputColor];
- self.options.topBar.largeTitle.fontFamily = [[Text alloc] initWithValue:inputFont];
-
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- UIColor* expectedColor = [UIColor colorWithRed:1 green:0 blue:0 alpha:1];
- UIFont* expectedFont = [UIFont fontWithName:inputFont size:15];
- XCTAssertTrue([self.uut.navigationController.navigationBar.largeTitleTextAttributes[@"NSFont"] isEqual:expectedFont]);
- XCTAssertTrue([self.uut.navigationController.navigationBar.largeTitleTextAttributes[@"NSColor"] isEqual:expectedColor]);
- }
-
- -(void)testTopBarLargeTitleFontSize_withTextFontFamily_withoutTextColor {
- NSNumber* topBarTextFontSizeInput = @(15);
- NSString* inputFont = @"HelveticaNeue";
- self.options.topBar.largeTitle.fontSize = [[Number alloc] initWithValue:topBarTextFontSizeInput];
- self.options.topBar.largeTitle.fontFamily = [[Text alloc] initWithValue:inputFont];
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- UIFont* expectedFont = [UIFont fontWithName:inputFont size:15];
- XCTAssertTrue([self.uut.navigationController.navigationBar.largeTitleTextAttributes[@"NSFont"] isEqual:expectedFont]);
- }
-
-
- -(void)testTopBarTextFontSize_withoutTextFontFamily_withoutTextColor {
- NSNumber* topBarTextFontSizeInput = @(15);
- self.options.topBar.title.fontSize = [[Number alloc] initWithValue:topBarTextFontSizeInput];
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- UIFont* expectedFont = [UIFont systemFontOfSize:15];
- XCTAssertTrue([self.uut.navigationController.navigationBar.titleTextAttributes[@"NSFont"] isEqual:expectedFont]);
- }
-
- -(void)testTopBarTextFontSize_withoutTextFontFamily_withTextColor {
- NSNumber* topBarTextFontSizeInput = @(15);
- UIColor* inputColor = [RCTConvert UIColor:@(0xFFFF0000)];
- self.options.topBar.title.fontSize = [[Number alloc] initWithValue:topBarTextFontSizeInput];
- self.options.topBar.title.color = [[Color alloc] initWithValue:inputColor];
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- UIFont* expectedFont = [UIFont systemFontOfSize:15];
- UIColor* expectedColor = [UIColor colorWithRed:1 green:0 blue:0 alpha:1];
- XCTAssertTrue([self.uut.navigationController.navigationBar.titleTextAttributes[@"NSFont"] isEqual:expectedFont]);
- XCTAssertTrue([self.uut.navigationController.navigationBar.titleTextAttributes[@"NSColor"] isEqual:expectedColor]);
- }
-
- -(void)testTopBarTextFontSize_withTextFontFamily_withTextColor {
- NSNumber* topBarTextFontSizeInput = @(15);
- UIColor* inputColor = [RCTConvert UIColor:@(0xFFFF0000)];
- NSString* inputFont = @"HelveticaNeue";
- self.options.topBar.title.fontSize = [[Number alloc] initWithValue:topBarTextFontSizeInput];
- self.options.topBar.title.color = [[Color alloc] initWithValue:inputColor];
- self.options.topBar.title.fontFamily = [[Text alloc] initWithValue:inputFont];
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- UIColor* expectedColor = [UIColor colorWithRed:1 green:0 blue:0 alpha:1];
- UIFont* expectedFont = [UIFont fontWithName:inputFont size:15];
- XCTAssertTrue([self.uut.navigationController.navigationBar.titleTextAttributes[@"NSFont"] isEqual:expectedFont]);
- XCTAssertTrue([self.uut.navigationController.navigationBar.titleTextAttributes[@"NSColor"] isEqual:expectedColor]);
- }
-
- -(void)testTopBarTextFontSize_withTextFontFamily_withoutTextColor {
- NSNumber* topBarTextFontSizeInput = @(15);
- NSString* inputFont = @"HelveticaNeue";
- self.options.topBar.title.fontSize = [[Number alloc] initWithValue:topBarTextFontSizeInput];
- self.options.topBar.title.fontFamily = [[Text alloc] initWithValue:inputFont];
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- UIFont* expectedFont = [UIFont fontWithName:inputFont size:15];
- XCTAssertTrue([self.uut.navigationController.navigationBar.titleTextAttributes[@"NSFont"] isEqual:expectedFont]);
- }
-
- // TODO: Currently not passing
- -(void)testTopBarTextFontFamily_invalidFont{
- NSString* inputFont = @"HelveticaNeueeeee";
- __unused RNNNavigationController* nav = [self createNavigationController];
- self.options.topBar.title.fontFamily = [[Text alloc] initWithValue:inputFont];
- // XCTAssertThrows([self.uut viewWillAppear:false]);
- }
-
- -(void)testOrientation_portrait {
- NSArray* supportedOrientations = @[@"portrait"];
- self.options.layout.orientation = supportedOrientations;
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- UIInterfaceOrientationMask expectedOrientation = UIInterfaceOrientationMaskPortrait;
- XCTAssertTrue(self.uut.navigationController.supportedInterfaceOrientations == expectedOrientation);
- }
-
- -(void)testOrientation_portraitString {
- NSString* supportedOrientation = @"portrait";
- self.options.layout.orientation = supportedOrientation;
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- UIInterfaceOrientationMask expectedOrientation = (UIInterfaceOrientationMaskPortrait);
- XCTAssertTrue(self.uut.navigationController.supportedInterfaceOrientations == expectedOrientation);
- }
-
- -(void)testOrientation_portraitAndLandscape {
- NSArray* supportedOrientations = @[@"portrait", @"landscape"];
- self.options.layout.orientation = supportedOrientations;
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- UIInterfaceOrientationMask expectedOrientation = (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscape);
- XCTAssertTrue(self.uut.navigationController.supportedInterfaceOrientations == expectedOrientation);
- }
-
- -(void)testOrientation_all {
- NSArray* supportedOrientations = @[@"all"];
- self.options.layout.orientation = supportedOrientations;
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- UIInterfaceOrientationMask expectedOrientation = UIInterfaceOrientationMaskAll;
- XCTAssertTrue(self.uut.navigationController.supportedInterfaceOrientations == expectedOrientation);
- }
-
- -(void)testOrientation_default {
- NSString* supportedOrientations = @"default";
- self.options.layout.orientation = supportedOrientations;
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- UIInterfaceOrientationMask expectedOrientation = [[UIApplication sharedApplication] supportedInterfaceOrientationsForWindow:[[UIApplication sharedApplication] keyWindow]];
- XCTAssertTrue(self.uut.navigationController.supportedInterfaceOrientations == expectedOrientation);
- }
-
-
- -(void)testOrientationTabsController_portrait {
- NSArray* supportedOrientations = @[@"portrait"];
- self.options.layout.orientation = supportedOrientations;
- __unused RNNTabBarController* vc = [[RNNTabBarController alloc] init];
- NSMutableArray* controllers = [NSMutableArray new];
-
- [controllers addObject:self.uut];
- [vc setViewControllers:controllers];
- [self.uut viewWillAppear:false];
-
- UIInterfaceOrientationMask expectedOrientation = UIInterfaceOrientationMaskPortrait;
- XCTAssertTrue(self.uut.tabBarController.supportedInterfaceOrientations == expectedOrientation);
- }
-
- -(void)testOrientationTabsController_portraitAndLandscape {
- NSArray* supportedOrientations = @[@"portrait", @"landscape"];
- self.options.layout.orientation = supportedOrientations;
- __unused RNNTabBarController* vc = [[RNNTabBarController alloc] init];
- NSMutableArray* controllers = [NSMutableArray new];
-
- [controllers addObject:self.uut];
- [vc setViewControllers:controllers];
- [self.uut viewWillAppear:false];
-
- UIInterfaceOrientationMask expectedOrientation = (UIInterfaceOrientationMaskPortrait | UIInterfaceOrientationMaskLandscape);
- XCTAssertTrue(self.uut.tabBarController.supportedInterfaceOrientations == expectedOrientation);
- }
-
- -(void)testOrientationTabsController_all {
- NSArray* supportedOrientations = @[@"all"];
- self.options.layout.orientation = supportedOrientations;
- __unused RNNTabBarController* vc = [[RNNTabBarController alloc] init];
- NSMutableArray* controllers = [NSMutableArray new];
-
- [controllers addObject:self.uut];
- [vc setViewControllers:controllers];
- [self.uut viewWillAppear:false];
-
- UIInterfaceOrientationMask expectedOrientation = UIInterfaceOrientationMaskAll;
- XCTAssertTrue(self.uut.tabBarController.supportedInterfaceOrientations == expectedOrientation);
- }
-
- -(void)testRightButtonsWithTitle_withoutStyle {
- self.options.topBar.rightButtons = @[@{@"id": @"testId", @"text": @"test"}];
- self.uut = [[RNNRootViewController alloc] initWithLayoutInfo:nil rootViewCreator:nil eventEmitter:nil presenter:[RNNViewControllerPresenter new] options:self.options defaultOptions:nil];
- RNNNavigationController* nav = [[RNNNavigationController alloc] initWithLayoutInfo:nil childViewControllers:@[self.uut] options:nil defaultOptions:nil presenter:nil];
-
- RNNUIBarButtonItem* button = (RNNUIBarButtonItem*)[nav.topViewController.navigationItem.rightBarButtonItems objectAtIndex:0];
- NSString* expectedButtonId = @"testId";
- NSString* expectedTitle = @"test";
- XCTAssertTrue([button.buttonId isEqualToString:expectedButtonId]);
- XCTAssertTrue([button.title isEqualToString:expectedTitle]);
- XCTAssertTrue(button.enabled);
- }
-
- -(void)testRightButtonsWithTitle_withStyle {
- NSNumber* inputColor = @(0xFFFF0000);
-
- self.options.topBar.rightButtons = @[@{@"id": @"testId", @"text": @"test", @"enabled": @false, @"buttonColor": inputColor, @"buttonFontSize": @22, @"buttonFontWeight": @"800"}];
- self.uut = [[RNNRootViewController alloc] initWithLayoutInfo:nil rootViewCreator:nil eventEmitter:nil presenter:[RNNViewControllerPresenter new] options:self.options defaultOptions:nil];
- RNNNavigationController* nav = [[RNNNavigationController alloc] initWithLayoutInfo:nil childViewControllers:@[self.uut] options:nil defaultOptions:nil presenter:nil];
-
- RNNUIBarButtonItem* button = (RNNUIBarButtonItem*)[nav.topViewController.navigationItem.rightBarButtonItems objectAtIndex:0];
- NSString* expectedButtonId = @"testId";
- NSString* expectedTitle = @"test";
- XCTAssertTrue([button.buttonId isEqualToString:expectedButtonId]);
- XCTAssertTrue([button.title isEqualToString:expectedTitle]);
- XCTAssertFalse(button.enabled);
-
- //TODO: Determine how to tests buttonColor,buttonFontSize and buttonFontWeight?
- }
-
-
- -(void)testLeftButtonsWithTitle_withoutStyle {
- self.options.topBar.leftButtons = @[@{@"id": @"testId", @"text": @"test"}];
- self.uut = [[RNNRootViewController alloc] initWithLayoutInfo:nil rootViewCreator:nil eventEmitter:nil presenter:[RNNViewControllerPresenter new] options:self.options defaultOptions:nil];
- RNNNavigationController* nav = [[RNNNavigationController alloc] initWithLayoutInfo:nil childViewControllers:@[self.uut] options:nil defaultOptions:nil presenter:nil];
-
- RNNUIBarButtonItem* button = (RNNUIBarButtonItem*)[nav.topViewController.navigationItem.leftBarButtonItems objectAtIndex:0];
- NSString* expectedButtonId = @"testId";
- NSString* expectedTitle = @"test";
- XCTAssertTrue([button.buttonId isEqualToString:expectedButtonId]);
- XCTAssertTrue([button.title isEqualToString:expectedTitle]);
- XCTAssertTrue(button.enabled);
- }
-
- -(void)testLeftButtonsWithTitle_withStyle {
- NSNumber* inputColor = @(0xFFFF0000);
-
- self.options.topBar.leftButtons = @[@{@"id": @"testId", @"text": @"test", @"enabled": @false, @"buttonColor": inputColor, @"buttonFontSize": @22, @"buttonFontWeight": @"800"}];
- self.uut = [[RNNRootViewController alloc] initWithLayoutInfo:nil rootViewCreator:nil eventEmitter:nil presenter:[RNNViewControllerPresenter new] options:self.options defaultOptions:nil];
- RNNNavigationController* nav = [[RNNNavigationController alloc] initWithLayoutInfo:nil childViewControllers:@[self.uut] options:nil defaultOptions:nil presenter:nil];
-
- RNNUIBarButtonItem* button = (RNNUIBarButtonItem*)[nav.topViewController.navigationItem.leftBarButtonItems objectAtIndex:0];
- NSString* expectedButtonId = @"testId";
- NSString* expectedTitle = @"test";
- XCTAssertTrue([button.buttonId isEqualToString:expectedButtonId]);
- XCTAssertTrue([button.title isEqualToString:expectedTitle]);
- XCTAssertFalse(button.enabled);
-
- //TODO: Determine how to tests buttonColor,buttonFontSize and buttonFontWeight?
- }
-
- -(void)testTopBarNoBorderOn {
- NSNumber* topBarNoBorderInput = @(1);
- self.options.topBar.noBorder = [[Bool alloc] initWithValue:topBarNoBorderInput];
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- XCTAssertNotNil(self.uut.navigationController.navigationBar.shadowImage);
- }
-
- -(void)testTopBarNoBorderOff {
- NSNumber* topBarNoBorderInput = @(0);
- self.options.topBar.noBorder = [[Bool alloc] initWithValue:topBarNoBorderInput];
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- XCTAssertNil(self.uut.navigationController.navigationBar.shadowImage);
- }
-
- -(void)testStatusBarBlurOn {
- NSNumber* statusBarBlurInput = @(1);
- self.options.statusBar.blur = [[Bool alloc] initWithValue:statusBarBlurInput];
- [self.uut viewWillAppear:false];
- XCTAssertNotNil([self.uut.view viewWithTag:BLUR_STATUS_TAG]);
- }
-
- -(void)testStatusBarBlurOff {
- NSNumber* statusBarBlurInput = @(0);
- self.options.statusBar.blur = [[Bool alloc] initWithValue:statusBarBlurInput];
- [self.uut viewWillAppear:false];
- XCTAssertNil([self.uut.view viewWithTag:BLUR_STATUS_TAG]);
- }
-
- - (void)testTabBarHidden_default {
- [self.uut viewWillAppear:false];
-
- XCTAssertFalse([self.uut hidesBottomBarWhenPushed]);
- }
-
- - (void)testTabBarHidden_false {
- self.options.bottomTabs.visible = [[Bool alloc] initWithValue:@(1)];
- [self.uut viewWillAppear:false];
-
- XCTAssertFalse([self.uut hidesBottomBarWhenPushed]);
- }
-
- -(void)testTopBarBlur_default {
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- XCTAssertNil([self.uut.navigationController.navigationBar viewWithTag:BLUR_TOPBAR_TAG]);
- }
-
- -(void)testTopBarBlur_false {
- NSNumber* topBarBlurInput = @(0);
- self.options.topBar.background.blur = [[Bool alloc] initWithValue:topBarBlurInput];
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- XCTAssertNil([self.uut.navigationController.navigationBar viewWithTag:BLUR_TOPBAR_TAG]);
- }
-
- -(void)testTopBarBlur_true {
- NSNumber* topBarBlurInput = @(1);
- self.options.topBar.background.blur = [[Bool alloc] initWithValue:topBarBlurInput];
- __unused RNNNavigationController* nav = [self createNavigationController];
- [self.uut viewWillAppear:false];
- XCTAssertNotNil([self.uut.navigationController.navigationBar viewWithTag:BLUR_TOPBAR_TAG]);
- }
-
- -(void)testBackgroundImage {
- Image* backgroundImage = [[Image alloc] initWithValue:[[UIImage alloc] init]];
- self.options.backgroundImage = backgroundImage;
- [self.uut viewWillAppear:false];
-
- XCTAssertTrue([[(UIImageView*)self.uut.view.subviews[0] image] isEqual:backgroundImage.get]);
- }
-
- - (void)testMergeOptionsShouldCallPresenterMergeOptions {
- RNNNavigationOptions* newOptions = [[RNNNavigationOptions alloc] initEmptyOptions];
- [[(id)self.uut.presenter expect] mergeOptions:newOptions currentOptions:self.uut.options defaultOptions:self.uut.defaultOptions];
- [self.uut mergeOptions:newOptions];
- [(id)self.uut.presenter verify];
- }
-
- - (void)testOverrideOptions {
- RNNNavigationOptions* newOptions = [[RNNNavigationOptions alloc] initEmptyOptions];
- newOptions.topBar.background.color = [[Color alloc] initWithValue:[UIColor redColor]];
-
- [self.uut overrideOptions:newOptions];
- XCTAssertEqual([UIColor redColor], self.uut.options.topBar.background.color.get);
- }
-
- #pragma mark BottomTabs
-
-
- - (RNNNavigationController *)createNavigationController {
- RNNNavigationController* nav = [[RNNNavigationController alloc] initWithLayoutInfo:nil childViewControllers:@[self.uut] options:[[RNNNavigationOptions alloc] initEmptyOptions] defaultOptions:nil presenter:[[RNNNavigationControllerPresenter alloc] init]];
-
- return nav;
- }
-
- @end
|