Skip to content

Commit 3c38c50

Browse files
yogevbdguyca
andauthoredMar 16, 2020
Merge options with correct child (#6041)
Co-authored-by: Guy Carmeli <[email protected]>
1 parent ba12604 commit 3c38c50

File tree

6 files changed

+65
-31
lines changed

6 files changed

+65
-31
lines changed
 

‎lib/ios/RNNBottomTabsController.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ - (void)onChildAddToParent:(UIViewController *)child options:(RNNNavigationOptio
3838

3939
- (void)mergeChildOptions:(RNNNavigationOptions *)options child:(UIViewController *)child {
4040
[super mergeChildOptions:options child:child];
41-
[_bottomTabPresenter mergeOptions:options resolvedOptions:self.resolveOptions child:[self findViewController:child]];
42-
[_dotIndicatorPresenter mergeOptions:options resolvedOptions:self.resolveOptions child:[self findViewController:child]];
41+
[_bottomTabPresenter mergeOptions:options resolvedOptions:child.resolveOptions child:[self findViewController:child]];
42+
[_dotIndicatorPresenter mergeOptions:options resolvedOptions:child.resolveOptions child:[self findViewController:child]];
4343
}
4444

4545
- (id<UITabBarControllerDelegate>)delegate {

‎playground/ios/NavigationTests/RNNCommandsHandlerTest.m

+42-23
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,8 @@
1010
#import "RNNLayoutManager.h"
1111
#import "RNNBottomTabsController.h"
1212
#import "BottomTabsAttachModeFactory.h"
13-
14-
@interface MockUIApplication : NSObject
15-
16-
-(UIWindow *)keyWindow;
17-
18-
@end
19-
20-
@implementation MockUIApplication
21-
22-
- (UIWindow *)keyWindow {
23-
return [UIWindow new];
24-
}
25-
26-
@end
13+
#import <ReactNativeNavigation/BottomTabPresenterCreator.h>
14+
#import "RNNComponentViewController+Utils.h"
2715

2816
@interface MockUINavigationController : RNNStackController
2917
@property (nonatomic, strong) NSArray* willReturnVCs;
@@ -62,7 +50,6 @@ @implementation RNNCommandsHandlerTest
6250

6351
- (void)setUp {
6452
[super setUp];
65-
self.sharedApplication = [OCMockObject mockForClass:[UIApplication class]];
6653
self.creator = [OCMockObject partialMockForObject:[RNNTestRootViewCreator new]];
6754
self.mainWindow = [OCMockObject partialMockForObject:[UIWindow new]];
6855
self.eventEmmiter = [OCMockObject partialMockForObject:[RNNEventEmitter new]];
@@ -75,7 +62,12 @@ - (void)setUp {
7562
self.vc3 = [self generateComponentWithComponentId:@"3"];
7663
_nvc = [[MockUINavigationController alloc] init];
7764
[_nvc setViewControllers:@[self.vc1, self.vc2, self.vc3]];
78-
OCMStub([self.sharedApplication keyWindow]).andReturn(self.mainWindow);
65+
66+
UIApplication* sharedApplication = [OCMockObject niceMockForClass:[UIApplication class]];
67+
id mockedApplicationClass = OCMClassMock([UIApplication class]);
68+
OCMStub(ClassMethod([mockedApplicationClass sharedApplication])).andReturn(sharedApplication);
69+
OCMStub(sharedApplication.keyWindow).andReturn(self.mainWindow);
70+
OCMStub([sharedApplication windows]).andReturn(@[self.mainWindow]);
7971
}
8072

8173
- (RNNComponentViewController *)generateComponentWithComponentId:(NSString *)componentId {
@@ -129,14 +121,11 @@ - (NSArray*)getPublicMethodNamesForObject:(NSObject*)obj {
129121
-(void)testDynamicStylesMergeWithStaticStyles {
130122
RNNNavigationOptions* initialOptions = [[RNNNavigationOptions alloc] initWithDict:@{}];
131123
initialOptions.topBar.title.text = [[Text alloc] initWithValue:@"the title"];
132-
RNNLayoutInfo* layoutInfo = [RNNLayoutInfo new];
133124
RNNTestRootViewCreator* creator = [[RNNTestRootViewCreator alloc] init];
134-
135-
RNNComponentPresenter* presenter = [[RNNComponentPresenter alloc] initWithComponentRegistry:nil defaultOptions:nil];
136-
RNNComponentViewController* vc = [[RNNComponentViewController alloc] initWithLayoutInfo:layoutInfo rootViewCreator:creator eventEmitter:nil presenter:presenter options:initialOptions defaultOptions:nil];
125+
RNNComponentViewController* vc = [RNNComponentViewController createWithComponentId:@"componentId" initialOptions:initialOptions];
137126

138127
RNNStackController* nav = [[RNNStackController alloc] initWithLayoutInfo:nil creator:creator options:[[RNNNavigationOptions alloc] initEmptyOptions] defaultOptions:nil presenter:[[RNNStackPresenter alloc] init] eventEmitter:nil childViewControllers:@[vc]];
139-
128+
[self.mainWindow setRootViewController:nav];
140129
[vc viewWillAppear:false];
141130
XCTAssertTrue([vc.navigationItem.title isEqual:@"the title"]);
142131

@@ -146,9 +135,11 @@ -(void)testDynamicStylesMergeWithStaticStyles {
146135
UIColor* expectedColor = [UIColor colorWithRed:1 green:0 blue:0 alpha:1];
147136

148137
[self.uut mergeOptions:@"componentId" options:dictFromJs completion:^{
149-
XCTAssertTrue([vc.navigationItem.title isEqual:@"the title"]);
150-
XCTAssertTrue([nav.navigationBar.barTintColor isEqual:expectedColor]);
138+
151139
}];
140+
141+
XCTAssertTrue([vc.navigationItem.title isEqual:@"the title"]);
142+
XCTAssertTrue([vc.navigationItem.standardAppearance.backgroundColor isEqual:expectedColor]);
152143
}
153144

154145
- (void)testMergeOptions_shouldOverrideOptions {
@@ -420,6 +411,34 @@ - (void)testSetRoot_withBottomTabsAttachModeAfterInitialTab {
420411
XCTAssertTrue(_vc2.isViewLoaded);
421412
}
422413

414+
- (void)testMergeOptions_shouldMergeWithChildOnly {
415+
[self.uut setReadyToReceiveCommands:true];
416+
NSDictionary* mergeOptions = @{@"bottomTab": @{@"badge": @"Badge"}};
417+
418+
RNNNavigationOptions* firstChildOptions = [RNNNavigationOptions emptyOptions];
419+
firstChildOptions.bottomTab.text = [Text withValue:@"First"];
420+
RNNNavigationOptions* secondChildOptions = [RNNNavigationOptions emptyOptions];
421+
secondChildOptions.bottomTab.text = [Text withValue:@"Second"];
422+
423+
RNNComponentViewController* firstChild = [RNNComponentViewController createWithComponentId:@"first" initialOptions:firstChildOptions];
424+
RNNComponentViewController* secondChild = [RNNComponentViewController createWithComponentId:@"second" initialOptions:secondChildOptions];
425+
426+
RNNBottomTabsController* tabBarController = [[RNNBottomTabsController alloc] initWithLayoutInfo:nil creator:nil options:[RNNNavigationOptions emptyOptions] defaultOptions:[[RNNNavigationOptions alloc] initEmptyOptions] presenter:[RNNBasePresenter new] bottomTabPresenter:[BottomTabPresenterCreator createWithDefaultOptions:[RNNNavigationOptions emptyOptions]] dotIndicatorPresenter:nil eventEmitter:_eventEmmiter childViewControllers:@[firstChild, secondChild] bottomTabsAttacher:nil];
427+
428+
OCMStub([self.controllerFactory createLayout:[OCMArg any]]).andReturn(tabBarController);
429+
[self.mainWindow setRootViewController:tabBarController];
430+
[secondChild viewWillAppear:YES];
431+
432+
[self.uut mergeOptions:secondChild.layoutInfo.componentId options:mergeOptions completion:^{
433+
434+
}];
435+
436+
XCTAssertTrue([secondChild.tabBarItem.badgeValue isEqualToString:@"Badge"]);
437+
XCTAssertNil(firstChild.tabBarItem.badgeValue);
438+
XCTAssertTrue([firstChild.tabBarItem.title isEqualToString:@"First"]);
439+
XCTAssertTrue([secondChild.tabBarItem.title isEqualToString:@"Second"]);
440+
}
441+
423442
- (void)testShowModal_shouldShowAnimated {
424443
[self.uut setReadyToReceiveCommands:true];
425444
self.vc1.options = [[RNNNavigationOptions alloc] initEmptyOptions];

‎playground/ios/NavigationTests/RNNLayoutManagerTest.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ - (void)setUp {
2626
_secondWindow = [[UIWindow alloc] init];
2727
NSArray* windows = @[_firstWindow, _secondWindow];
2828

29-
UIApplication* sharedApplication = [OCMockObject mockForClass:[UIApplication class]];
29+
UIApplication* sharedApplication = [OCMockObject niceMockForClass:[UIApplication class]];
3030
id mockedApplicationClass = OCMClassMock([UIApplication class]);
3131
OCMStub(ClassMethod([mockedApplicationClass sharedApplication])).andReturn(sharedApplication);
3232
OCMStub(sharedApplication.keyWindow).andReturn(_firstWindow);

‎playground/ios/NavigationTests/utils/RNNComponentViewController+Utils.h

+2
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,6 @@
55

66
+ (RNNComponentViewController *)createWithComponentId:(NSString *)componentId;
77

8+
+ (RNNComponentViewController *)createWithComponentId:(NSString *)componentId initialOptions:(RNNNavigationOptions *)initialOptions;
9+
810
@end
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
#import "RNNComponentViewController+Utils.h"
2+
#import "RNNTestRootViewCreator.h"
23

34
@implementation RNNComponentViewController (Utils)
45

5-
+ (RNNComponentViewController *)createWithComponentId:(NSString *)componentId {
6+
+ (RNNComponentViewController *)createWithComponentId:(NSString *)componentId initialOptions:(RNNNavigationOptions *)initialOptions {
67
RNNLayoutInfo* layoutInfo = [[RNNLayoutInfo alloc] init];
78
layoutInfo.componentId = componentId;
8-
return [[RNNComponentViewController alloc] initWithLayoutInfo:layoutInfo rootViewCreator:nil eventEmitter:nil presenter:nil options:nil defaultOptions:nil];
9+
return [[RNNComponentViewController alloc] initWithLayoutInfo:layoutInfo rootViewCreator:[[RNNTestRootViewCreator alloc] init] eventEmitter:nil presenter:[[RNNComponentPresenter alloc] initWithComponentRegistry:nil defaultOptions:nil] options:initialOptions defaultOptions:nil];
10+
}
11+
12+
+ (RNNComponentViewController *)createWithComponentId:(NSString *)componentId {
13+
return [self createWithComponentId:componentId initialOptions:nil];
914
}
1015

1116
@end

‎playground/ios/playground.xcodeproj/project.pbxproj

+11-3
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
50996C6923AA487800008F89 /* RNNTestRootViewCreator.m in Sources */ = {isa = PBXBuildFile; fileRef = E58D263D2385888C003F36BA /* RNNTestRootViewCreator.m */; };
2222
50BCB27623F1A2B100D6C8E5 /* TopBarAppearancePresenterTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 50BCB27523F1A26600D6C8E5 /* TopBarAppearancePresenterTest.m */; };
2323
50C9A8D1240EB95F00BD699F /* RNNBottomTabsController+Helpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 50CF233C240695B10098042D /* RNNBottomTabsController+Helpers.m */; };
24-
50CF233D240695B10098042D /* RNNBottomTabsController+Helpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 50CF233C240695B10098042D /* RNNBottomTabsController+Helpers.m */; };
2524
50C9A8D4240FB9D000BD699F /* RNNComponentViewController+Utils.m in Sources */ = {isa = PBXBuildFile; fileRef = 50C9A8D3240FB9D000BD699F /* RNNComponentViewController+Utils.m */; };
25+
50CF233D240695B10098042D /* RNNBottomTabsController+Helpers.m in Sources */ = {isa = PBXBuildFile; fileRef = 50CF233C240695B10098042D /* RNNBottomTabsController+Helpers.m */; };
2626
67C681D42B662A53F29C19DA /* Pods_NavigationIOS12Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DEE0B5D45FD34FBABC6586CF /* Pods_NavigationIOS12Tests.framework */; };
2727
9D204F3DC4FBCD81583BF99F /* Pods_playground.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A3340545EAAF11C1F146864 /* Pods_playground.framework */; };
2828
E5046080227748EA00212BD8 /* JavaScriptCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E504607F227748EA00212BD8 /* JavaScriptCore.framework */; };
@@ -97,10 +97,10 @@
9797
50996C6123AA46DD00008F89 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
9898
50996C6723AA477400008F89 /* RNNRootViewControllerTest.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RNNRootViewControllerTest.m; sourceTree = "<group>"; };
9999
50BCB27523F1A26600D6C8E5 /* TopBarAppearancePresenterTest.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TopBarAppearancePresenterTest.m; sourceTree = "<group>"; };
100-
50CF233B240695B10098042D /* RNNBottomTabsController+Helpers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "RNNBottomTabsController+Helpers.h"; sourceTree = "<group>"; };
101-
50CF233C240695B10098042D /* RNNBottomTabsController+Helpers.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "RNNBottomTabsController+Helpers.m"; sourceTree = "<group>"; };
102100
50C9A8D2240FB9D000BD699F /* RNNComponentViewController+Utils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "RNNComponentViewController+Utils.h"; sourceTree = "<group>"; };
103101
50C9A8D3240FB9D000BD699F /* RNNComponentViewController+Utils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "RNNComponentViewController+Utils.m"; sourceTree = "<group>"; };
102+
50CF233B240695B10098042D /* RNNBottomTabsController+Helpers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "RNNBottomTabsController+Helpers.h"; sourceTree = "<group>"; };
103+
50CF233C240695B10098042D /* RNNBottomTabsController+Helpers.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "RNNBottomTabsController+Helpers.m"; sourceTree = "<group>"; };
104104
7F8E255E2E08F6ECE7DF6FE3 /* Pods-playground.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-playground.release.xcconfig"; path = "Target Support Files/Pods-playground/Pods-playground.release.xcconfig"; sourceTree = "<group>"; };
105105
84E32151E3A71C2B7328BCB4 /* Pods_NavigationTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_NavigationTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
106106
B484A10A046B0046B98A76B5 /* Pods-playground.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-playground.debug.xcconfig"; path = "Target Support Files/Pods-playground/Pods-playground.debug.xcconfig"; sourceTree = "<group>"; };
@@ -399,11 +399,13 @@
399399
50996C5C23AA46DD00008F89 = {
400400
CreatedOnToolsVersion = 11.2.1;
401401
ProvisioningStyle = Automatic;
402+
TestTargetID = 13B07F861A680F5B00A75B9A;
402403
};
403404
E58D261A238587F4003F36BA = {
404405
CreatedOnToolsVersion = 11.2.1;
405406
DevelopmentTeam = S3GLW74Y8N;
406407
ProvisioningStyle = Automatic;
408+
TestTargetID = 13B07F861A680F5B00A75B9A;
407409
};
408410
};
409411
};
@@ -892,6 +894,7 @@
892894
PRODUCT_BUNDLE_IDENTIFIER = rn.NavigationIOS12Tests;
893895
PRODUCT_NAME = "$(TARGET_NAME)";
894896
TARGETED_DEVICE_FAMILY = "1,2";
897+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/playground.app/playground";
895898
};
896899
name = Debug;
897900
};
@@ -916,6 +919,7 @@
916919
PRODUCT_BUNDLE_IDENTIFIER = rn.NavigationIOS12Tests;
917920
PRODUCT_NAME = "$(TARGET_NAME)";
918921
TARGETED_DEVICE_FAMILY = "1,2";
922+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/playground.app/playground";
919923
};
920924
name = Release;
921925
};
@@ -1026,6 +1030,7 @@
10261030
isa = XCBuildConfiguration;
10271031
baseConfigurationReference = 4259AF43A23D928FE78B4A3A /* Pods-NavigationTests.debug.xcconfig */;
10281032
buildSettings = {
1033+
BUNDLE_LOADER = "$(TEST_HOST)";
10291034
CLANG_ANALYZER_NONNULL = YES;
10301035
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
10311036
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
@@ -1044,13 +1049,15 @@
10441049
PRODUCT_BUNDLE_IDENTIFIER = com.wix.NavigationTests;
10451050
PRODUCT_NAME = "$(TARGET_NAME)";
10461051
TARGETED_DEVICE_FAMILY = "1,2";
1052+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/playground.app/playground";
10471053
};
10481054
name = Debug;
10491055
};
10501056
E58D2623238587F4003F36BA /* Release */ = {
10511057
isa = XCBuildConfiguration;
10521058
baseConfigurationReference = D95A99C17C65D674BA9DF26B /* Pods-NavigationTests.release.xcconfig */;
10531059
buildSettings = {
1060+
BUNDLE_LOADER = "$(TEST_HOST)";
10541061
CLANG_ANALYZER_NONNULL = YES;
10551062
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
10561063
CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
@@ -1069,6 +1076,7 @@
10691076
PRODUCT_BUNDLE_IDENTIFIER = com.wix.NavigationTests;
10701077
PRODUCT_NAME = "$(TARGET_NAME)";
10711078
TARGETED_DEVICE_FAMILY = "1,2";
1079+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/playground.app/playground";
10721080
};
10731081
name = Release;
10741082
};

0 commit comments

Comments
 (0)
Please sign in to comment.