Summary: I am about to embark on supporting `position: static` in Yoga. The enum exists already (and is the default position type, lol) but does not actually do anything and just behaves like `position: relative`. My approach here is to write a bunch of tests to test for the various behaviors of static positions and then develop on Yoga afterwards to get those tests passing. To do this, we need to make a few changes to the gentest files as there is not support for adding `position: static` at the moment: * Make it so that the gentest code can physically write `YGPositionTypeStatic` if it encounters `position: static` in the style * Make it so that gentest.js knows that Yoga's default is actually static. This way the code generated in the tests will actually label nodes for non default values * Explicitly label the position type even when it is not declared in the style prop (with the exception of the default) * Regenerate all the tests Additionally I added the first, basic test: making sure insets do nothing on a statically positioned element. Reviewed By: NickGerleman Differential Revision: D50437855 fbshipit-source-id: 0e8bbf1c224d477ea4592b7563d0b70d2ffa79c8
2301 lines
97 KiB
Java
2301 lines
97 KiB
Java
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
// @generated by gentest/gentest.rb from gentest/fixtures/YGAlignItemsTest.html
|
|
|
|
package com.facebook.yoga;
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
|
|
import org.junit.Ignore;
|
|
import org.junit.Test;
|
|
import org.junit.runner.RunWith;
|
|
import org.junit.runners.Parameterized;
|
|
|
|
@RunWith(Parameterized.class)
|
|
public class YGAlignItemsTest {
|
|
@Parameterized.Parameters(name = "{0}")
|
|
public static Iterable<TestParametrization.NodeFactory> nodeFactories() {
|
|
return TestParametrization.nodeFactories();
|
|
}
|
|
|
|
@Parameterized.Parameter public TestParametrization.NodeFactory mNodeFactory;
|
|
|
|
@Test
|
|
public void test_align_items_stretch() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setHeight(10f);
|
|
root.addChildAt(root_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_items_center() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setAlignItems(YogaAlign.CENTER);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setWidth(10f);
|
|
root_child0.setHeight(10f);
|
|
root.addChildAt(root_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(45f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(45f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_items_flex_start() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setAlignItems(YogaAlign.FLEX_START);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setWidth(10f);
|
|
root_child0.setHeight(10f);
|
|
root.addChildAt(root_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(90f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_items_flex_end() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setAlignItems(YogaAlign.FLEX_END);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setWidth(10f);
|
|
root_child0.setHeight(10f);
|
|
root.addChildAt(root_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(90f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_baseline() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setFlexDirection(YogaFlexDirection.ROW);
|
|
root.setAlignItems(YogaAlign.BASELINE);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setWidth(50f);
|
|
root_child0.setHeight(50f);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
root_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1.setWidth(50f);
|
|
root_child1.setHeight(20f);
|
|
root.addChildAt(root_child1, 1);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(30f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(30f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_baseline_child() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setFlexDirection(YogaFlexDirection.ROW);
|
|
root.setAlignItems(YogaAlign.BASELINE);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setWidth(50f);
|
|
root_child0.setHeight(50f);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
root_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1.setWidth(50f);
|
|
root_child1.setHeight(20f);
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
final YogaNode root_child1_child0 = createNode(config);
|
|
root_child1_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child0.setWidth(50f);
|
|
root_child1_child0.setHeight(10f);
|
|
root_child1.addChildAt(root_child1_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(40f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(40f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_baseline_child_multiline() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setFlexDirection(YogaFlexDirection.ROW);
|
|
root.setAlignItems(YogaAlign.BASELINE);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setWidth(50f);
|
|
root_child0.setHeight(60f);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
root_child1.setFlexDirection(YogaFlexDirection.ROW);
|
|
root_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1.setWrap(YogaWrap.WRAP);
|
|
root_child1.setWidth(50f);
|
|
root_child1.setHeight(25f);
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
final YogaNode root_child1_child0 = createNode(config);
|
|
root_child1_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child0.setWidth(25f);
|
|
root_child1_child0.setHeight(20f);
|
|
root_child1.addChildAt(root_child1_child0, 0);
|
|
|
|
final YogaNode root_child1_child1 = createNode(config);
|
|
root_child1_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child1.setWidth(25f);
|
|
root_child1_child1.setHeight(10f);
|
|
root_child1.addChildAt(root_child1_child1, 1);
|
|
|
|
final YogaNode root_child1_child2 = createNode(config);
|
|
root_child1_child2.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child2.setWidth(25f);
|
|
root_child1_child2.setHeight(20f);
|
|
root_child1.addChildAt(root_child1_child2, 2);
|
|
|
|
final YogaNode root_child1_child3 = createNode(config);
|
|
root_child1_child3.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child3.setWidth(25f);
|
|
root_child1_child3.setHeight(10f);
|
|
root_child1.addChildAt(root_child1_child3, 3);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(60f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(40f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(25f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(25f, root_child1_child1.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child1.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child2.getLayoutX(), 0.0f);
|
|
assertEquals(20f, root_child1_child2.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child2.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1_child2.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(25f, root_child1_child3.getLayoutX(), 0.0f);
|
|
assertEquals(20f, root_child1_child3.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child3.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child3.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(60f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(40f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(25f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(25f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child1.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child1.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(25f, root_child1_child2.getLayoutX(), 0.0f);
|
|
assertEquals(20f, root_child1_child2.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child2.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1_child2.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child3.getLayoutX(), 0.0f);
|
|
assertEquals(20f, root_child1_child3.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child3.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child3.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_baseline_child_multiline_override() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setFlexDirection(YogaFlexDirection.ROW);
|
|
root.setAlignItems(YogaAlign.BASELINE);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setWidth(50f);
|
|
root_child0.setHeight(60f);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
root_child1.setFlexDirection(YogaFlexDirection.ROW);
|
|
root_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1.setWrap(YogaWrap.WRAP);
|
|
root_child1.setWidth(50f);
|
|
root_child1.setHeight(25f);
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
final YogaNode root_child1_child0 = createNode(config);
|
|
root_child1_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child0.setWidth(25f);
|
|
root_child1_child0.setHeight(20f);
|
|
root_child1.addChildAt(root_child1_child0, 0);
|
|
|
|
final YogaNode root_child1_child1 = createNode(config);
|
|
root_child1_child1.setAlignSelf(YogaAlign.BASELINE);
|
|
root_child1_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child1.setWidth(25f);
|
|
root_child1_child1.setHeight(10f);
|
|
root_child1.addChildAt(root_child1_child1, 1);
|
|
|
|
final YogaNode root_child1_child2 = createNode(config);
|
|
root_child1_child2.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child2.setWidth(25f);
|
|
root_child1_child2.setHeight(20f);
|
|
root_child1.addChildAt(root_child1_child2, 2);
|
|
|
|
final YogaNode root_child1_child3 = createNode(config);
|
|
root_child1_child3.setAlignSelf(YogaAlign.BASELINE);
|
|
root_child1_child3.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child3.setWidth(25f);
|
|
root_child1_child3.setHeight(10f);
|
|
root_child1.addChildAt(root_child1_child3, 3);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(60f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(25f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(25f, root_child1_child1.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child1.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child2.getLayoutX(), 0.0f);
|
|
assertEquals(20f, root_child1_child2.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child2.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1_child2.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(25f, root_child1_child3.getLayoutX(), 0.0f);
|
|
assertEquals(20f, root_child1_child3.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child3.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child3.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(60f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(25f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(25f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child1.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child1.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(25f, root_child1_child2.getLayoutX(), 0.0f);
|
|
assertEquals(20f, root_child1_child2.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child2.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1_child2.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child3.getLayoutX(), 0.0f);
|
|
assertEquals(20f, root_child1_child3.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child3.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child3.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_baseline_child_multiline_no_override_on_secondline() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setFlexDirection(YogaFlexDirection.ROW);
|
|
root.setAlignItems(YogaAlign.BASELINE);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setWidth(50f);
|
|
root_child0.setHeight(60f);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
root_child1.setFlexDirection(YogaFlexDirection.ROW);
|
|
root_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1.setWrap(YogaWrap.WRAP);
|
|
root_child1.setWidth(50f);
|
|
root_child1.setHeight(25f);
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
final YogaNode root_child1_child0 = createNode(config);
|
|
root_child1_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child0.setWidth(25f);
|
|
root_child1_child0.setHeight(20f);
|
|
root_child1.addChildAt(root_child1_child0, 0);
|
|
|
|
final YogaNode root_child1_child1 = createNode(config);
|
|
root_child1_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child1.setWidth(25f);
|
|
root_child1_child1.setHeight(10f);
|
|
root_child1.addChildAt(root_child1_child1, 1);
|
|
|
|
final YogaNode root_child1_child2 = createNode(config);
|
|
root_child1_child2.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child2.setWidth(25f);
|
|
root_child1_child2.setHeight(20f);
|
|
root_child1.addChildAt(root_child1_child2, 2);
|
|
|
|
final YogaNode root_child1_child3 = createNode(config);
|
|
root_child1_child3.setAlignSelf(YogaAlign.BASELINE);
|
|
root_child1_child3.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child3.setWidth(25f);
|
|
root_child1_child3.setHeight(10f);
|
|
root_child1.addChildAt(root_child1_child3, 3);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(60f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(40f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(25f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(25f, root_child1_child1.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child1.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child2.getLayoutX(), 0.0f);
|
|
assertEquals(20f, root_child1_child2.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child2.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1_child2.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(25f, root_child1_child3.getLayoutX(), 0.0f);
|
|
assertEquals(20f, root_child1_child3.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child3.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child3.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(60f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(40f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(25f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(25f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child1.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child1.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(25f, root_child1_child2.getLayoutX(), 0.0f);
|
|
assertEquals(20f, root_child1_child2.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child2.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1_child2.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child3.getLayoutX(), 0.0f);
|
|
assertEquals(20f, root_child1_child3.getLayoutY(), 0.0f);
|
|
assertEquals(25f, root_child1_child3.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child3.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_baseline_child_top() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setFlexDirection(YogaFlexDirection.ROW);
|
|
root.setAlignItems(YogaAlign.BASELINE);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setPosition(YogaEdge.TOP, 10f);
|
|
root_child0.setWidth(50f);
|
|
root_child0.setHeight(50f);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
root_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1.setWidth(50f);
|
|
root_child1.setHeight(20f);
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
final YogaNode root_child1_child0 = createNode(config);
|
|
root_child1_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child0.setWidth(50f);
|
|
root_child1_child0.setHeight(10f);
|
|
root_child1.addChildAt(root_child1_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(10f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(40f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(10f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(40f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_baseline_child_top2() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setFlexDirection(YogaFlexDirection.ROW);
|
|
root.setAlignItems(YogaAlign.BASELINE);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setWidth(50f);
|
|
root_child0.setHeight(50f);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
root_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1.setPosition(YogaEdge.TOP, 5f);
|
|
root_child1.setWidth(50f);
|
|
root_child1.setHeight(20f);
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
final YogaNode root_child1_child0 = createNode(config);
|
|
root_child1_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child0.setWidth(50f);
|
|
root_child1_child0.setHeight(10f);
|
|
root_child1.addChildAt(root_child1_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(45f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(45f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_baseline_double_nested_child() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setFlexDirection(YogaFlexDirection.ROW);
|
|
root.setAlignItems(YogaAlign.BASELINE);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setWidth(50f);
|
|
root_child0.setHeight(50f);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
root_child0_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0_child0.setWidth(50f);
|
|
root_child0_child0.setHeight(20f);
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
root_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1.setWidth(50f);
|
|
root_child1.setHeight(20f);
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
final YogaNode root_child1_child0 = createNode(config);
|
|
root_child1_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child0.setWidth(50f);
|
|
root_child1_child0.setHeight(15f);
|
|
root_child1.addChildAt(root_child1_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(5f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(15f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(5f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(15f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_baseline_column() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setAlignItems(YogaAlign.BASELINE);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setWidth(50f);
|
|
root_child0.setHeight(50f);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
root_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1.setWidth(50f);
|
|
root_child1.setHeight(20f);
|
|
root.addChildAt(root_child1, 1);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_baseline_child_margin() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setFlexDirection(YogaFlexDirection.ROW);
|
|
root.setAlignItems(YogaAlign.BASELINE);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setMargin(YogaEdge.LEFT, 5f);
|
|
root_child0.setMargin(YogaEdge.TOP, 5f);
|
|
root_child0.setMargin(YogaEdge.RIGHT, 5f);
|
|
root_child0.setMargin(YogaEdge.BOTTOM, 5f);
|
|
root_child0.setWidth(50f);
|
|
root_child0.setHeight(50f);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
root_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1.setWidth(50f);
|
|
root_child1.setHeight(20f);
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
final YogaNode root_child1_child0 = createNode(config);
|
|
root_child1_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child0.setMargin(YogaEdge.LEFT, 1f);
|
|
root_child1_child0.setMargin(YogaEdge.TOP, 1f);
|
|
root_child1_child0.setMargin(YogaEdge.RIGHT, 1f);
|
|
root_child1_child0.setMargin(YogaEdge.BOTTOM, 1f);
|
|
root_child1_child0.setWidth(50f);
|
|
root_child1_child0.setHeight(10f);
|
|
root_child1.addChildAt(root_child1_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(5f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(5f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(60f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(44f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(1f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(1f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(45f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(5f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(-10f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(44f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(-1f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(1f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_baseline_child_padding() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setFlexDirection(YogaFlexDirection.ROW);
|
|
root.setAlignItems(YogaAlign.BASELINE);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setPadding(YogaEdge.LEFT, 5);
|
|
root.setPadding(YogaEdge.TOP, 5);
|
|
root.setPadding(YogaEdge.RIGHT, 5);
|
|
root.setPadding(YogaEdge.BOTTOM, 5);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setWidth(50f);
|
|
root_child0.setHeight(50f);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
root_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1.setPadding(YogaEdge.LEFT, 5);
|
|
root_child1.setPadding(YogaEdge.TOP, 5);
|
|
root_child1.setPadding(YogaEdge.RIGHT, 5);
|
|
root_child1.setPadding(YogaEdge.BOTTOM, 5);
|
|
root_child1.setWidth(50f);
|
|
root_child1.setHeight(20f);
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
final YogaNode root_child1_child0 = createNode(config);
|
|
root_child1_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child0.setWidth(50f);
|
|
root_child1_child0.setHeight(10f);
|
|
root_child1.addChildAt(root_child1_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(5f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(5f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(55f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(40f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(5f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(5f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(45f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(5f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(-5f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(40f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(-5f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(5f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_baseline_multiline() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setFlexDirection(YogaFlexDirection.ROW);
|
|
root.setAlignItems(YogaAlign.BASELINE);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWrap(YogaWrap.WRAP);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setWidth(50f);
|
|
root_child0.setHeight(50f);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
root_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1.setWidth(50f);
|
|
root_child1.setHeight(20f);
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
final YogaNode root_child1_child0 = createNode(config);
|
|
root_child1_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child0.setWidth(50f);
|
|
root_child1_child0.setHeight(10f);
|
|
root_child1.addChildAt(root_child1_child0, 0);
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
root_child2.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child2.setWidth(50f);
|
|
root_child2.setHeight(20f);
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
final YogaNode root_child2_child0 = createNode(config);
|
|
root_child2_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child2_child0.setWidth(50f);
|
|
root_child2_child0.setHeight(10f);
|
|
root_child2.addChildAt(root_child2_child0, 0);
|
|
|
|
final YogaNode root_child3 = createNode(config);
|
|
root_child3.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child3.setWidth(50f);
|
|
root_child3.setHeight(50f);
|
|
root.addChildAt(root_child3, 3);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(40f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
assertEquals(100f, root_child2.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child2.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child2_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child2_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child2_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child3.getLayoutX(), 0.0f);
|
|
assertEquals(60f, root_child3.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child3.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child3.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(40f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child2.getLayoutX(), 0.0f);
|
|
assertEquals(100f, root_child2.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child2.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child2_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child2_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child2_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child3.getLayoutX(), 0.0f);
|
|
assertEquals(60f, root_child3.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child3.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child3.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
@Ignore
|
|
public void test_align_baseline_multiline_column() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setAlignItems(YogaAlign.BASELINE);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWrap(YogaWrap.WRAP);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setWidth(50f);
|
|
root_child0.setHeight(50f);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
root_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1.setWidth(30f);
|
|
root_child1.setHeight(50f);
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
final YogaNode root_child1_child0 = createNode(config);
|
|
root_child1_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child0.setWidth(20f);
|
|
root_child1_child0.setHeight(20f);
|
|
root_child1.addChildAt(root_child1_child0, 0);
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
root_child2.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child2.setWidth(40f);
|
|
root_child2.setHeight(70f);
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
final YogaNode root_child2_child0 = createNode(config);
|
|
root_child2_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child2_child0.setWidth(10f);
|
|
root_child2_child0.setHeight(10f);
|
|
root_child2.addChildAt(root_child2_child0, 0);
|
|
|
|
final YogaNode root_child3 = createNode(config);
|
|
root_child3.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child3.setWidth(50f);
|
|
root_child3.setHeight(20f);
|
|
root.addChildAt(root_child3, 3);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(30f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(20f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child2.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
assertEquals(40f, root_child2.getLayoutWidth(), 0.0f);
|
|
assertEquals(70f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child2_child0.getLayoutY(), 0.0f);
|
|
assertEquals(10f, root_child2_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child2_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child3.getLayoutX(), 0.0f);
|
|
assertEquals(70f, root_child3.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child3.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child3.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(30f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(20f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
assertEquals(40f, root_child2.getLayoutWidth(), 0.0f);
|
|
assertEquals(70f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(30f, root_child2_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child2_child0.getLayoutY(), 0.0f);
|
|
assertEquals(10f, root_child2_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child2_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child3.getLayoutX(), 0.0f);
|
|
assertEquals(70f, root_child3.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child3.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child3.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
@Ignore
|
|
public void test_align_baseline_multiline_column2() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setAlignItems(YogaAlign.BASELINE);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWrap(YogaWrap.WRAP);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setWidth(50f);
|
|
root_child0.setHeight(50f);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
root_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1.setWidth(30f);
|
|
root_child1.setHeight(50f);
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
final YogaNode root_child1_child0 = createNode(config);
|
|
root_child1_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child0.setWidth(20f);
|
|
root_child1_child0.setHeight(20f);
|
|
root_child1.addChildAt(root_child1_child0, 0);
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
root_child2.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child2.setWidth(40f);
|
|
root_child2.setHeight(70f);
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
final YogaNode root_child2_child0 = createNode(config);
|
|
root_child2_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child2_child0.setWidth(10f);
|
|
root_child2_child0.setHeight(10f);
|
|
root_child2.addChildAt(root_child2_child0, 0);
|
|
|
|
final YogaNode root_child3 = createNode(config);
|
|
root_child3.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child3.setWidth(50f);
|
|
root_child3.setHeight(20f);
|
|
root.addChildAt(root_child3, 3);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(30f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(20f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child2.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
assertEquals(40f, root_child2.getLayoutWidth(), 0.0f);
|
|
assertEquals(70f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child2_child0.getLayoutY(), 0.0f);
|
|
assertEquals(10f, root_child2_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child2_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child3.getLayoutX(), 0.0f);
|
|
assertEquals(70f, root_child3.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child3.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child3.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(30f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(20f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
assertEquals(40f, root_child2.getLayoutWidth(), 0.0f);
|
|
assertEquals(70f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(30f, root_child2_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child2_child0.getLayoutY(), 0.0f);
|
|
assertEquals(10f, root_child2_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child2_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child3.getLayoutX(), 0.0f);
|
|
assertEquals(70f, root_child3.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child3.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child3.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_baseline_multiline_row_and_column() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setFlexDirection(YogaFlexDirection.ROW);
|
|
root.setAlignItems(YogaAlign.BASELINE);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWrap(YogaWrap.WRAP);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setWidth(50f);
|
|
root_child0.setHeight(50f);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
root_child1.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1.setWidth(50f);
|
|
root_child1.setHeight(50f);
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
final YogaNode root_child1_child0 = createNode(config);
|
|
root_child1_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child1_child0.setWidth(50f);
|
|
root_child1_child0.setHeight(10f);
|
|
root_child1.addChildAt(root_child1_child0, 0);
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
root_child2.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child2.setWidth(50f);
|
|
root_child2.setHeight(20f);
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
final YogaNode root_child2_child0 = createNode(config);
|
|
root_child2_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child2_child0.setWidth(50f);
|
|
root_child2_child0.setHeight(10f);
|
|
root_child2.addChildAt(root_child2_child0, 0);
|
|
|
|
final YogaNode root_child3 = createNode(config);
|
|
root_child3.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child3.setWidth(50f);
|
|
root_child3.setHeight(20f);
|
|
root.addChildAt(root_child3, 3);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(40f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
assertEquals(100f, root_child2.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child2.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child2_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child2_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child2_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child3.getLayoutX(), 0.0f);
|
|
assertEquals(90f, root_child3.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child3.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child3.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
assertEquals(40f, root_child1.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
assertEquals(50f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child1_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child1_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child1_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(50f, root_child2.getLayoutX(), 0.0f);
|
|
assertEquals(100f, root_child2.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child2.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child2_child0.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child2_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(10f, root_child2_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child3.getLayoutX(), 0.0f);
|
|
assertEquals(90f, root_child3.getLayoutY(), 0.0f);
|
|
assertEquals(50f, root_child3.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child3.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_items_center_child_with_margin_bigger_than_parent() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setJustifyContent(YogaJustify.CENTER);
|
|
root.setAlignItems(YogaAlign.CENTER);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(52f);
|
|
root.setHeight(52f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setAlignItems(YogaAlign.CENTER);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
root_child0_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0_child0.setMargin(YogaEdge.LEFT, 10f);
|
|
root_child0_child0.setMargin(YogaEdge.RIGHT, 10f);
|
|
root_child0_child0.setWidth(52f);
|
|
root_child0_child0.setHeight(52f);
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(52f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(52f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(-10f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(72f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(52f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(52f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(52f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(52f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(52f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(-10f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(72f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(52f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(52f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(52f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_items_flex_end_child_with_margin_bigger_than_parent() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setJustifyContent(YogaJustify.CENTER);
|
|
root.setAlignItems(YogaAlign.CENTER);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(52f);
|
|
root.setHeight(52f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setAlignItems(YogaAlign.FLEX_END);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
root_child0_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0_child0.setMargin(YogaEdge.LEFT, 10f);
|
|
root_child0_child0.setMargin(YogaEdge.RIGHT, 10f);
|
|
root_child0_child0.setWidth(52f);
|
|
root_child0_child0.setHeight(52f);
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(52f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(52f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(-10f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(72f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(52f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(52f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(52f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(52f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(52f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(-10f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(72f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(52f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(52f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(52f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_items_center_child_without_margin_bigger_than_parent() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setJustifyContent(YogaJustify.CENTER);
|
|
root.setAlignItems(YogaAlign.CENTER);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(52f);
|
|
root.setHeight(52f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setAlignItems(YogaAlign.CENTER);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
root_child0_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0_child0.setWidth(72f);
|
|
root_child0_child0.setHeight(72f);
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(52f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(52f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(-10f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(-10f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(72f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(72f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(72f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(72f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(52f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(52f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(-10f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(-10f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(72f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(72f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(72f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(72f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_items_flex_end_child_without_margin_bigger_than_parent() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setJustifyContent(YogaJustify.CENTER);
|
|
root.setAlignItems(YogaAlign.CENTER);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(52f);
|
|
root.setHeight(52f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setAlignItems(YogaAlign.FLEX_END);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
root_child0_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0_child0.setWidth(72f);
|
|
root_child0_child0.setHeight(72f);
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(52f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(52f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(-10f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(-10f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(72f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(72f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(72f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(72f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(52f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(52f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(-10f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(-10f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(72f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(72f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(72f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(72f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_center_should_size_based_on_content() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setAlignItems(YogaAlign.CENTER);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setMargin(YogaEdge.TOP, 20f);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setJustifyContent(YogaJustify.CENTER);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setFlexShrink(1f);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
root_child0_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0_child0.setFlexGrow(1f);
|
|
root_child0_child0.setFlexShrink(1f);
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
final YogaNode root_child0_child0_child0 = createNode(config);
|
|
root_child0_child0_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0_child0_child0.setWidth(20f);
|
|
root_child0_child0_child0.setHeight(20f);
|
|
root_child0_child0.addChildAt(root_child0_child0_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(20f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(40f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(20f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(20f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(20f, root_child0_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child0_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(20f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(40f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(20f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(20f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(20f, root_child0_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child0_child0_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_stretch_should_size_based_on_parent() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setMargin(YogaEdge.TOP, 20f);
|
|
root.setWidth(100f);
|
|
root.setHeight(100f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setJustifyContent(YogaJustify.CENTER);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0.setFlexShrink(1f);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
root_child0_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0_child0.setFlexGrow(1f);
|
|
root_child0_child0.setFlexShrink(1f);
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
final YogaNode root_child0_child0_child0 = createNode(config);
|
|
root_child0_child0_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0_child0_child0.setWidth(20f);
|
|
root_child0_child0_child0.setHeight(20f);
|
|
root_child0_child0.addChildAt(root_child0_child0_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(20f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(20f, root_child0_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child0_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(20f, root.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(100f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(80f, root_child0_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(20f, root_child0_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(20f, root_child0_child0_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_flex_start_with_shrinking_children() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(500f);
|
|
root.setHeight(500f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setAlignItems(YogaAlign.FLEX_START);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
root_child0_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0_child0.setFlexGrow(1f);
|
|
root_child0_child0.setFlexShrink(1f);
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
final YogaNode root_child0_child0_child0 = createNode(config);
|
|
root_child0_child0_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0_child0_child0.setFlexGrow(1f);
|
|
root_child0_child0_child0.setFlexShrink(1f);
|
|
root_child0_child0.addChildAt(root_child0_child0_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(500f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(500f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(500f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(500f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(500f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(500f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(500f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_flex_start_with_stretching_children() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(500f);
|
|
root.setHeight(500f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
root_child0_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0_child0.setFlexGrow(1f);
|
|
root_child0_child0.setFlexShrink(1f);
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
final YogaNode root_child0_child0_child0 = createNode(config);
|
|
root_child0_child0_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0_child0_child0.setFlexGrow(1f);
|
|
root_child0_child0_child0.setFlexShrink(1f);
|
|
root_child0_child0.addChildAt(root_child0_child0_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(500f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(500f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(500f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(500f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(500f, root_child0_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(500f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(500f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(500f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(500f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(500f, root_child0_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
@Test
|
|
public void test_align_flex_start_with_shrinking_children_with_stretch() {
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
config.setExperimentalFeatureEnabled(YogaExperimentalFeature.ABSOLUTE_PERCENTAGE_AGAINST_PADDING_EDGE, true);
|
|
|
|
final YogaNode root = createNode(config);
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
root.setWidth(500f);
|
|
root.setHeight(500f);
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
root_child0.setAlignItems(YogaAlign.FLEX_START);
|
|
root_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
root_child0_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0_child0.setFlexGrow(1f);
|
|
root_child0_child0.setFlexShrink(1f);
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
final YogaNode root_child0_child0_child0 = createNode(config);
|
|
root_child0_child0_child0.setPositionType(YogaPositionType.RELATIVE);
|
|
root_child0_child0_child0.setFlexGrow(1f);
|
|
root_child0_child0_child0.setFlexShrink(1f);
|
|
root_child0_child0.addChildAt(root_child0_child0_child0, 0);
|
|
root.setDirection(YogaDirection.LTR);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(500f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(500f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(500f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
assertEquals(500f, root.getLayoutWidth(), 0.0f);
|
|
assertEquals(500f, root.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
assertEquals(500f, root_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(500f, root_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutX(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutY(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutWidth(), 0.0f);
|
|
assertEquals(0f, root_child0_child0_child0.getLayoutHeight(), 0.0f);
|
|
}
|
|
|
|
private YogaNode createNode(YogaConfig config) {
|
|
return mNodeFactory.create(config);
|
|
}
|
|
}
|