use of com.reactnativenavigation.options.Options in project react-native-navigation by wix.
the class SideMenuControllerTest method beforeEach.
@Override
public void beforeEach() {
super.beforeEach();
activity = createActivity();
childRegistry = new ChildControllersRegistry();
presenter = spy(new SideMenuPresenter());
child = new SimpleComponentViewController(activity, childRegistry, "child", new Options());
left = spy(new SimpleComponentViewController(activity, childRegistry, "left", new Options()));
right = spy(new SimpleComponentViewController(activity, childRegistry, "right", createSideMenuOptions()));
center = spy(new SimpleComponentViewController(activity, childRegistry, "center", createSideMenuOptions()));
uut = new SideMenuController(activity, childRegistry, "sideMenu", new Options(), presenter, new Presenter(activity, new Options())) {
@Override
public Options resolveCurrentOptions() {
resolvedOptions = super.resolveCurrentOptions();
return resolvedOptions;
}
};
uut.setCenterController(center);
parent = Mocks.INSTANCE.parentController(null);
Mockito.when(parent.resolveChildOptions(uut)).thenReturn(Options.EMPTY);
uut.setParentController(parent);
}
use of com.reactnativenavigation.options.Options in project react-native-navigation by wix.
the class SideMenuControllerTest method mergeChildOptions_lockModeIsUpdatedInInitialOptions.
@Test
public void mergeChildOptions_lockModeIsUpdatedInInitialOptions() {
setLeftRight(left, right);
Options leftDisabled = new Options();
leftDisabled.sideMenuRootOptions.left.enabled = new Bool(false);
left.mergeOptions(leftDisabled);
assertThat(uut.resolveCurrentOptions().sideMenuRootOptions.left.enabled.get()).isFalse();
Options rightVisible = new Options();
rightVisible.sideMenuRootOptions.right.visible = new Bool(true);
right.mergeOptions(rightVisible);
assertThat(uut.resolveCurrentOptions().sideMenuRootOptions.left.enabled.get()).isFalse();
}
use of com.reactnativenavigation.options.Options in project react-native-navigation by wix.
the class SideMenuControllerTest method setLeftController_setHeightAndWidthWithOptions.
@Test
public void setLeftController_setHeightAndWidthWithOptions() {
SideMenuOptions options = new SideMenuOptions();
options.height = new Number(100);
options.width = new Number(200);
uut.options.sideMenuRootOptions.left = options;
SimpleComponentViewController componentViewController = new SimpleComponentViewController(activity, childRegistry, "left", new Options());
uut.setLeftController(componentViewController);
int heightInDp = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 100, Resources.getSystem().getDisplayMetrics());
int widthInDp = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 200, Resources.getSystem().getDisplayMetrics());
LayoutParams params = componentViewController.getView().getLayoutParams();
assertThat(params.width).isEqualTo(widthInDp);
assertThat(params.height).isEqualTo(heightInDp);
}
use of com.reactnativenavigation.options.Options in project react-native-navigation by wix.
the class SideMenuControllerTest method applyChildOptions.
@Test
public void applyChildOptions() {
uut.applyChildOptions(new Options(), child);
verify(presenter).applyChildOptions(eq(resolvedOptions));
verify(parent).applyChildOptions(uut.options, child);
}
use of com.reactnativenavigation.options.Options in project react-native-navigation by wix.
the class SideMenuControllerTest method createSideMenuOptions.
@NotNull
private Options createSideMenuOptions() {
Options options = new Options();
options.sideMenuRootOptions.left.animate = new Bool(false);
options.sideMenuRootOptions.right.animate = new Bool(false);
return options;
}
Aggregations