react-native-navigation的迁移库

RNNNavigationControllerTest.m 6.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. #import <XCTest/XCTest.h>
  2. #import <OCMock/OCMock.h>
  3. #import "RNNNavigationController.h"
  4. #import "RNNRootViewController.h"
  5. @interface RNNNavigationControllerTest : XCTestCase
  6. @property (nonatomic, strong) RNNNavigationController *uut;
  7. @end
  8. @implementation RNNNavigationControllerTest {
  9. RNNRootViewController* _vc1;
  10. id _vc2Mock;
  11. RNNRootViewController* _vc2;
  12. UIViewController* _vc3;
  13. RNNNavigationOptions* _options;
  14. }
  15. - (void)setUp {
  16. [super setUp];
  17. _vc1 = [[RNNRootViewController alloc] initWithLayoutInfo:nil rootViewCreator:nil eventEmitter:nil presenter:[OCMockObject partialMockForObject:[[RNNViewControllerPresenter alloc] init]] options:[[RNNNavigationOptions alloc] initEmptyOptions] defaultOptions:[[RNNNavigationOptions alloc] initEmptyOptions]];
  18. _vc2 = [[RNNRootViewController alloc] initWithLayoutInfo:nil rootViewCreator:nil eventEmitter:nil presenter:[[RNNViewControllerPresenter alloc] init] options:[[RNNNavigationOptions alloc] initEmptyOptions] defaultOptions:[[RNNNavigationOptions alloc] initEmptyOptions]];
  19. _vc2Mock = [OCMockObject partialMockForObject:_vc2];
  20. _vc3 = [UIViewController new];
  21. _options = [OCMockObject partialMockForObject:[[RNNNavigationOptions alloc] initEmptyOptions]];
  22. self.uut = [[RNNNavigationController alloc] initWithLayoutInfo:nil childViewControllers:@[_vc1, _vc2] options:_options defaultOptions:nil presenter:[OCMockObject partialMockForObject:[[RNNNavigationControllerPresenter alloc] init]]];
  23. }
  24. - (void)testInitWithLayoutInfo_shouldBindPresenter {
  25. XCTAssertNotNil(self.uut.presenter);
  26. }
  27. - (void)testInitWithLayoutInfo_shouldSetMultipleViewControllers {
  28. self.uut = [[RNNNavigationController alloc] initWithLayoutInfo:nil childViewControllers:@[_vc1, _vc2] options:[[RNNNavigationOptions alloc] initWithDict:@{}] defaultOptions:nil presenter:[[RNNViewControllerPresenter alloc] init]];
  29. XCTAssertTrue(self.uut.viewControllers.count == 2);
  30. }
  31. - (void)testChildViewControllerForStatusBarStyle_shouldReturnTopViewController {
  32. XCTAssertTrue(self.uut.childViewControllerForStatusBarStyle == self.uut.topViewController);
  33. }
  34. - (void)testCurrentChild_shouldReturnTopViewController {
  35. XCTAssertTrue(self.uut.getCurrentChild == self.uut.topViewController);
  36. }
  37. - (void)testCurrentLeaf_shouldReturnCurrentChildLeaf {
  38. [[_vc2Mock expect] getCurrentLeaf];
  39. [self.uut getCurrentLeaf];
  40. [_vc2Mock verify];
  41. }
  42. - (void)testGetLeafViewController_shouldReturnTopViewController {
  43. XCTAssertTrue(self.uut.getCurrentChild == self.uut.topViewController);
  44. }
  45. - (void)testPreferredStatusBarStyle_shouldReturnLeafPreferredStatusBarStyle {
  46. self.uut.getCurrentChild.resolveOptions.statusBar.style = [[Text alloc] initWithValue:@"light"];
  47. XCTAssertTrue(self.uut.preferredStatusBarStyle == self.uut.getCurrentChild.preferredStatusBarStyle);
  48. }
  49. - (void)testPopGestureEnabled_false {
  50. NSNumber* popGestureEnabled = @(0);
  51. RNNNavigationOptions* options = [[RNNNavigationOptions alloc] initEmptyOptions];
  52. options.popGesture = [[Bool alloc] initWithValue:popGestureEnabled];
  53. self.uut = [self createNavigationControllerWithOptions:options];
  54. [self.uut viewWillAppear:false];
  55. XCTAssertFalse(self.uut.interactivePopGestureRecognizer.enabled);
  56. }
  57. - (void)testPopGestureEnabled_true {
  58. NSNumber* popGestureEnabled = @(1);
  59. RNNNavigationOptions* options = [[RNNNavigationOptions alloc] initEmptyOptions];
  60. options.popGesture = [[Bool alloc] initWithValue:popGestureEnabled];
  61. self.uut = [self createNavigationControllerWithOptions:options];
  62. [self.uut onChildWillAppear];
  63. XCTAssertTrue(self.uut.interactivePopGestureRecognizer.enabled);
  64. }
  65. - (void)testRootBackgroundImage {
  66. UIImage* rootBackgroundImage = [[UIImage alloc] init];
  67. RNNNavigationOptions* options = [[RNNNavigationOptions alloc] initEmptyOptions];
  68. options.rootBackgroundImage = [[Image alloc] initWithValue:rootBackgroundImage];
  69. self.uut = [self createNavigationControllerWithOptions:options];
  70. [self.uut onChildWillAppear];
  71. XCTAssertTrue([[(UIImageView*)self.uut.view.subviews[0] image] isEqual:rootBackgroundImage]);
  72. }
  73. - (void)testTopBarBackgroundClipToBounds_true {
  74. RNNNavigationOptions* options = [[RNNNavigationOptions alloc] initEmptyOptions];
  75. options.topBar.background.clipToBounds = [[Bool alloc] initWithValue:@(1)];
  76. self.uut = [self createNavigationControllerWithOptions:options];
  77. [self.uut onChildWillAppear];
  78. XCTAssertTrue(self.uut.navigationBar.clipsToBounds);
  79. }
  80. - (void)testTopBarBackgroundClipToBounds_false {
  81. RNNNavigationOptions* options = [[RNNNavigationOptions alloc] initEmptyOptions];
  82. options.topBar.background.clipToBounds = [[Bool alloc] initWithValue:@(0)];
  83. self.uut = [self createNavigationControllerWithOptions:options];
  84. XCTAssertFalse(self.uut.navigationController.navigationBar.clipsToBounds);
  85. }
  86. - (void)testSupportedOrientationsShouldReturnCurrentChildSupportedOrientations {
  87. XCTAssertEqual(self.uut.supportedInterfaceOrientations, self.uut.getCurrentChild.supportedInterfaceOrientations);
  88. }
  89. - (void)testPopViewControllerReturnLastChildViewController {
  90. RNNNavigationController* uut = [RNNNavigationController new];
  91. [uut setViewControllers:@[_vc1, _vc2]];
  92. XCTAssertEqual([uut popViewControllerAnimated:NO], _vc2);
  93. }
  94. - (void)testPopViewControllerSetTopBarBackgroundForPoppingViewController {
  95. _options.topBar.background.color = [[Color alloc] initWithValue:[UIColor redColor]];
  96. [_vc1 overrideOptions:_options];
  97. [self.uut popViewControllerAnimated:NO];
  98. XCTAssertEqual(_vc1.resolveOptions.topBar.background.color.get, self.uut.navigationBar.barTintColor);
  99. }
  100. - (void)testPopViewControllerSetDefaultTopBarBackgroundForPoppingViewController {
  101. _options.topBar.background.color = [[Color alloc] initWithValue:[UIColor redColor]];
  102. [_vc1 setDefaultOptions:_options];
  103. [self.uut popViewControllerAnimated:NO];
  104. XCTAssertEqual(_vc1.resolveOptions.topBar.background.color.get, self.uut.navigationBar.barTintColor);
  105. }
  106. - (void)testPopViewControllerShouldInvokeApplyOptionsBeforePoppingForDestinationViewController {
  107. RNNNavigationController* uut = [RNNNavigationController new];
  108. [uut setViewControllers:@[_vc1, _vc2]];
  109. [[(id)uut.presenter expect] applyOptionsBeforePopping:[OCMArg any]];
  110. [uut popViewControllerAnimated:NO];
  111. [(id)uut.presenter verify];
  112. }
  113. - (void)testOverrideOptionsShouldOverrideOptionsState {
  114. RNNNavigationOptions* overrideOptions = [[RNNNavigationOptions alloc] initEmptyOptions];
  115. [(RNNNavigationOptions*)[(id)self.uut.options expect] overrideOptions:overrideOptions];
  116. [self.uut overrideOptions:overrideOptions];
  117. [(id)self.uut.options verify];
  118. }
  119. - (RNNNavigationController *)createNavigationControllerWithOptions:(RNNNavigationOptions *)options {
  120. return [[RNNNavigationController alloc] initWithLayoutInfo:nil childViewControllers:@[_vc1] options:options defaultOptions:nil presenter:[[RNNNavigationControllerPresenter alloc] init]];
  121. }
  122. @end