123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- #import <XCTest/XCTest.h>
- #import <OCMock/OCMock.h>
- #import "RNNViewControllerPresenter.h"
- #import "UIViewController+RNNOptions.h"
- #import "RNNReactView.h"
- #import "RNNRootViewController.h"
-
- @interface RNNViewControllerPresenterTest : XCTestCase
-
- @property (nonatomic, strong) RNNViewControllerPresenter *uut;
- @property (nonatomic, strong) RNNNavigationOptions *options;
- @property (nonatomic, strong) UIViewController *bindedViewController;
-
- @end
-
- @implementation RNNViewControllerPresenterTest
-
- - (void)setUp {
- [super setUp];
- self.uut = [[RNNViewControllerPresenter alloc] init];
- self.bindedViewController = [OCMockObject partialMockForObject:[RNNRootViewController new]];
- [self.uut bindViewController:self.bindedViewController];
- self.options = [[RNNNavigationOptions alloc] initEmptyOptions];
- }
-
- - (void)testApplyOptions_backgroundImageDefaultNilShouldNotAddSubview {
- [self.uut applyOptions:self.options];
- XCTAssertTrue((self.bindedViewController.view.subviews.count) == 0);
- }
-
- - (void)testApplyOptions_topBarPrefersLargeTitleDefaultFalse {
- [self.uut applyOptions:self.options];
-
- XCTAssertTrue(self.bindedViewController.navigationItem.largeTitleDisplayMode == UINavigationItemLargeTitleDisplayModeNever);
- }
-
- - (void)testApplyOptions_layoutBackgroundColorDefaultWhiteColor {
- [self.uut applyOptions:self.options];
- XCTAssertNil(self.bindedViewController.view.backgroundColor);
- }
-
- - (void)testApplyOptions_statusBarBlurDefaultFalse {
- [self.uut applyOptions:self.options];
- XCTAssertNil([self.bindedViewController.view viewWithTag:BLUR_STATUS_TAG]);
- }
-
- - (void)testApplyOptions_statusBarStyleDefaultStyle {
- [self.uut applyOptions:self.options];
- XCTAssertTrue([self.bindedViewController preferredStatusBarStyle] == UIStatusBarStyleDefault);
- }
-
- - (void)testApplyOptions_backButtonVisibleDefaultTrue {
- [self.uut applyOptions:self.options];
- XCTAssertFalse(self.bindedViewController.navigationItem.hidesBackButton);
- }
-
- - (void)testApplyOptions_drawBehindTabBarTrueWhenVisibleFalse {
- self.options.bottomTabs.visible = [[Bool alloc] initWithValue:@(0)];
- [[(id)self.bindedViewController expect] rnn_setDrawBehindTabBar:YES];
- [self.uut applyOptionsOnInit:self.options];
- [(id)self.bindedViewController verify];
- }
-
- - (void)testApplyOptions_setOverlayTouchOutsideIfHasValue {
- self.options.overlay.interceptTouchOutside = [[Bool alloc] initWithBOOL:YES];
- [[(id)self.bindedViewController expect] rnn_setInterceptTouchOutside:YES];
- [self.uut applyOptions:self.options];
- [(id)self.bindedViewController verify];
- }
-
- - (void)testBindViewControllerShouldCreateNavigationButtonsCreator {
- RNNViewControllerPresenter* presenter = [[RNNViewControllerPresenter alloc] init];
- [presenter bindViewController:self.bindedViewController viewCreator:nil];
- XCTAssertNotNil(presenter.navigationButtons);
- }
-
- - (void)testApplyOptionsOnInit_shouldSetModalPresentetionStyleWithDefault {
- [[(id)self.bindedViewController expect] rnn_setModalPresentationStyle:UIModalPresentationFullScreen];
- [self.uut applyOptionsOnInit:self.options];
- [(id)self.bindedViewController verify];
- }
-
- - (void)testApplyOptionsOnInit_shouldSetModalTransitionStyleWithDefault {
- [[(id)self.bindedViewController expect] rnn_setModalTransitionStyle:UIModalTransitionStyleCoverVertical];
- [self.uut applyOptionsOnInit:self.options];
- [(id)self.bindedViewController verify];
- }
-
- - (void)testApplyOptionsOnInit_shouldSetModalPresentetionStyleWithValue {
- self.options.modalPresentationStyle = [[Text alloc] initWithValue:@"overCurrentContext"];
- [[(id)self.bindedViewController expect] rnn_setModalPresentationStyle:UIModalPresentationOverCurrentContext];
- [self.uut applyOptionsOnInit:self.options];
- [(id)self.bindedViewController verify];
- }
-
- - (void)testApplyOptionsOnInit_shouldSetModalTransitionStyleWithValue {
- self.options.modalTransitionStyle = [[Text alloc] initWithValue:@"crossDissolve"];
- [[(id)self.bindedViewController expect] rnn_setModalTransitionStyle:UIModalTransitionStyleCrossDissolve];
- [self.uut applyOptionsOnInit:self.options];
- [(id)self.bindedViewController verify];
- }
-
- -(void)testApplyOptionsOnInit_TopBarDrawUnder_true {
- self.options.topBar.drawBehind = [[Bool alloc] initWithValue:@(1)];
-
- [[(id)self.bindedViewController expect] rnn_setDrawBehindTopBar:YES];
- [self.uut applyOptionsOnInit:self.options];
- [(id)self.bindedViewController verify];
- }
-
- -(void)testApplyOptionsOnInit_TopBarDrawUnder_false {
- self.options.topBar.drawBehind = [[Bool alloc] initWithValue:@(0)];
-
- [[(id)self.bindedViewController expect] rnn_setDrawBehindTopBar:NO];
- [self.uut applyOptionsOnInit:self.options];
- [(id)self.bindedViewController verify];
- }
-
- -(void)testApplyOptionsOnInit_BottomTabsDrawUnder_true {
- self.options.bottomTabs.drawBehind = [[Bool alloc] initWithValue:@(1)];
-
- [[(id)self.bindedViewController expect] rnn_setDrawBehindTabBar:YES];
- [self.uut applyOptionsOnInit:self.options];
- [(id)self.bindedViewController verify];
- }
-
- -(void)testApplyOptionsOnInit_BottomTabsDrawUnder_false {
- self.options.bottomTabs.drawBehind = [[Bool alloc] initWithValue:@(0)];
-
- [[(id)self.bindedViewController expect] rnn_setDrawBehindTabBar:NO];
- [self.uut applyOptionsOnInit:self.options];
- [(id)self.bindedViewController verify];
- }
-
-
- @end
|