12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #import <XCTest/XCTest.h>
- #import <OCMock/OCMock.h>
- #import "RNNNavigationControllerPresenter.h"
- #import "UINavigationController+RNNOptions.h"
- #import "RNNNavigationController.h"
-
- @interface RNNNavigationControllerPresenterTest : XCTestCase
-
- @property (nonatomic, strong) RNNNavigationControllerPresenter *uut;
- @property (nonatomic, strong) RNNNavigationOptions *options;
- @property (nonatomic, strong) id bindedViewController;
-
- @end
-
- @implementation RNNNavigationControllerPresenterTest
-
- - (void)setUp {
- [super setUp];
- self.uut = [[RNNNavigationControllerPresenter alloc] init];
- self.bindedViewController = [OCMockObject partialMockForObject:[RNNNavigationController new]];
- [self.uut bindViewController:self.bindedViewController];
- self.options = [[RNNNavigationOptions alloc] initEmptyOptions];
- }
-
- - (void)testApplyOptions_shouldSetBackButtonColor_withDefaultValues {
- [[_bindedViewController expect] rnn_setBackButtonColor:nil];
- [self.uut applyOptions:self.options];
- [_bindedViewController verify];
- }
-
- - (void)testApplyOptions_shouldSetBackButtonColor_withColor {
- self.options.topBar.backButton.color = [[Color alloc] initWithValue:[UIColor redColor]];
- [[_bindedViewController expect] rnn_setBackButtonColor:[UIColor redColor]];
- [self.uut applyOptions:self.options];
- [_bindedViewController verify];
- }
-
- - (void)testApplyOptionsBeforePoppingShouldSetTopBarBackgroundForPoppingViewController {
- _options.topBar.background.color = [[Color alloc] initWithValue:[UIColor redColor]];
-
- [[_bindedViewController expect] setTopBarBackgroundColor:_options.topBar.background.color.get];
- [self.uut applyOptionsBeforePopping:self.options];
- [_bindedViewController verify];
- }
-
- - (void)testApplyOptionsBeforePoppingShouldSetLargeTitleForPoppingViewController {
- _options.topBar.largeTitle.visible = [[Bool alloc] initWithBOOL:YES];
-
- [self.uut applyOptionsBeforePopping:self.options];
- XCTAssertTrue([[self.uut.boundViewController navigationBar] prefersLargeTitles]);
- }
-
- - (void)testApplyOptionsBeforePoppingShouldSetDefaultLargeTitleFalseForPoppingViewController {
- _options.topBar.largeTitle.visible = nil;
-
- [self.uut applyOptionsBeforePopping:self.options];
- XCTAssertFalse([[self.uut.boundViewController navigationBar] prefersLargeTitles]);
- }
-
- @end
|