Fix Generation of Tests from Fixtures
Summary:
https://github.com/facebook/yoga/pull/1116 added a change to the test generator "gentests.rb" to support a newer version of chromedriver, along with a change to the enum generator (not touched in this diff) to produce code consistent with the current tests, which seem to have been manually edited since last generation.
I had trouble running the test generator locally, because it relies on unversioned third-party dependencies, whose APIs change. Looking at source history, it seems like each time someone wants to run the script, they end up updating its syntax to match whatever versions they pull in.
This change adds a Gemfile and lock so that that the version of "watir" is locked, and so that we will also automatically pull in a consistent "chomedriver" version via the "webdrivers" gem. It includes the updates from the PR to be consistent with already output tests, and I have also updated the copyright header generation to no longer create lint warnings on newly generated tests (some of the previous ones were fixed manually it looks like).
The test generator would still produce bodies which would fail clang-format, and were manually edited (causing generation to emit new lint warnings), so I updated the generator to suppress clang-format in the body of the generated files.
Three tests, around the interaction of minimum dimensions and flexible children produce different results in Chrome now compared to when the tests were added, so running `gentests.rb` creates tests which break UTs. This doesn't seem like any sort of rounding, or device specific difference, so I have disabled these tests for now. While digging around, it does look like Chrome periodically will fix bugs in its own layout implementation which cause differences, like https://bugs.chromium.org/p/chromium/issues/detail?id=927066
Reviewed By: rozele, Andrey-Mishanin
Differential Revision: D39907416
fbshipit-source-id: f88714ff038b42f935901783452df25eabb6ebb1
2022-09-29 22:25:24 -07:00
|
|
|
/*
|
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2016-10-23 10:27:32 -07:00
|
|
|
*
|
Fix Generation of Tests from Fixtures
Summary:
https://github.com/facebook/yoga/pull/1116 added a change to the test generator "gentests.rb" to support a newer version of chromedriver, along with a change to the enum generator (not touched in this diff) to produce code consistent with the current tests, which seem to have been manually edited since last generation.
I had trouble running the test generator locally, because it relies on unversioned third-party dependencies, whose APIs change. Looking at source history, it seems like each time someone wants to run the script, they end up updating its syntax to match whatever versions they pull in.
This change adds a Gemfile and lock so that that the version of "watir" is locked, and so that we will also automatically pull in a consistent "chomedriver" version via the "webdrivers" gem. It includes the updates from the PR to be consistent with already output tests, and I have also updated the copyright header generation to no longer create lint warnings on newly generated tests (some of the previous ones were fixed manually it looks like).
The test generator would still produce bodies which would fail clang-format, and were manually edited (causing generation to emit new lint warnings), so I updated the generator to suppress clang-format in the body of the generated files.
Three tests, around the interaction of minimum dimensions and flexible children produce different results in Chrome now compared to when the tests were added, so running `gentests.rb` creates tests which break UTs. This doesn't seem like any sort of rounding, or device specific difference, so I have disabled these tests for now. While digging around, it does look like Chrome periodically will fix bugs in its own layout implementation which cause differences, like https://bugs.chromium.org/p/chromium/issues/detail?id=927066
Reviewed By: rozele, Andrey-Mishanin
Differential Revision: D39907416
fbshipit-source-id: f88714ff038b42f935901783452df25eabb6ebb1
2022-09-29 22:25:24 -07:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2023-12-14 11:48:22 -08:00
|
|
|
*
|
2024-01-18 21:22:05 -08:00
|
|
|
* @generated SignedSource<<4007f83eb3e84f3ee3fcf46d6d7be3bc>>
|
2023-12-14 11:48:22 -08:00
|
|
|
* generated by gentest/gentest-driver.ts from gentest/fixtures/YGFlexDirectionTest.html
|
2016-10-23 10:27:32 -07:00
|
|
|
*/
|
Fix Generation of Tests from Fixtures
Summary:
https://github.com/facebook/yoga/pull/1116 added a change to the test generator "gentests.rb" to support a newer version of chromedriver, along with a change to the enum generator (not touched in this diff) to produce code consistent with the current tests, which seem to have been manually edited since last generation.
I had trouble running the test generator locally, because it relies on unversioned third-party dependencies, whose APIs change. Looking at source history, it seems like each time someone wants to run the script, they end up updating its syntax to match whatever versions they pull in.
This change adds a Gemfile and lock so that that the version of "watir" is locked, and so that we will also automatically pull in a consistent "chomedriver" version via the "webdrivers" gem. It includes the updates from the PR to be consistent with already output tests, and I have also updated the copyright header generation to no longer create lint warnings on newly generated tests (some of the previous ones were fixed manually it looks like).
The test generator would still produce bodies which would fail clang-format, and were manually edited (causing generation to emit new lint warnings), so I updated the generator to suppress clang-format in the body of the generated files.
Three tests, around the interaction of minimum dimensions and flexible children produce different results in Chrome now compared to when the tests were added, so running `gentests.rb` creates tests which break UTs. This doesn't seem like any sort of rounding, or device specific difference, so I have disabled these tests for now. While digging around, it does look like Chrome periodically will fix bugs in its own layout implementation which cause differences, like https://bugs.chromium.org/p/chromium/issues/detail?id=927066
Reviewed By: rozele, Andrey-Mishanin
Differential Revision: D39907416
fbshipit-source-id: f88714ff038b42f935901783452df25eabb6ebb1
2022-09-29 22:25:24 -07:00
|
|
|
|
2016-12-05 02:56:20 -08:00
|
|
|
package com.facebook.yoga;
|
2016-10-23 10:27:32 -07:00
|
|
|
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
|
|
|
2023-05-10 22:46:39 -07:00
|
|
|
import org.junit.Ignore;
|
2018-07-30 09:30:51 -07:00
|
|
|
import org.junit.Test;
|
|
|
|
import org.junit.runner.RunWith;
|
|
|
|
import org.junit.runners.Parameterized;
|
|
|
|
|
|
|
|
@RunWith(Parameterized.class)
|
2016-12-03 04:40:21 -08:00
|
|
|
public class YGFlexDirectionTest {
|
2018-07-30 09:30:51 -07:00
|
|
|
@Parameterized.Parameters(name = "{0}")
|
|
|
|
public static Iterable<TestParametrization.NodeFactory> nodeFactories() {
|
|
|
|
return TestParametrization.nodeFactories();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Parameterized.Parameter public TestParametrization.NodeFactory mNodeFactory;
|
|
|
|
|
2016-10-23 10:27:32 -07:00
|
|
|
@Test
|
|
|
|
public void test_flex_direction_column_no_height() {
|
2019-09-17 06:52:49 -07:00
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
2017-03-01 09:19:55 -08:00
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root = createNode(config);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(100f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child0 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setHeight(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child1 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child1.setHeight(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child2 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child2.setHeight(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child2, 2);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
2017-02-03 11:19:45 -08:00
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(30f, root.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
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);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(20f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.RTL);
|
2017-02-03 11:19:45 -08:00
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(30f, 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);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(20f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_no_width() {
|
2019-09-17 06:52:49 -07:00
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
2017-03-01 09:19:55 -08:00
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root = createNode(config);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setFlexDirection(YogaFlexDirection.ROW);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setHeight(100f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child0 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setWidth(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child1 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child1.setWidth(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child2 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child2.setWidth(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child2, 2);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
2017-02-03 11:19:45 -08:00
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(30f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(10f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(20f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.RTL);
|
2017-02-03 11:19:45 -08:00
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(30f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(20f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_column() {
|
2019-09-17 06:52:49 -07:00
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
2017-03-01 09:19:55 -08:00
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root = createNode(config);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child0 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setHeight(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child1 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child1.setHeight(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child2 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child2.setHeight(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child2, 2);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
2017-02-03 11:19:45 -08:00
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
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);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(20f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.RTL);
|
2017-02-03 11:19:45 -08:00
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
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);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(20f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row() {
|
2019-09-17 06:52:49 -07:00
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
2017-03-01 09:19:55 -08:00
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root = createNode(config);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setFlexDirection(YogaFlexDirection.ROW);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child0 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setWidth(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child1 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child1.setWidth(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child2 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child2.setWidth(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child2, 2);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
2017-02-03 11:19:45 -08:00
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(10f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(20f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.RTL);
|
2017-02-03 11:19:45 -08:00
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(70f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_column_reverse() {
|
2019-09-17 06:52:49 -07:00
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
2017-03-01 09:19:55 -08:00
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root = createNode(config);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setFlexDirection(YogaFlexDirection.COLUMN_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child0 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setHeight(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child1 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child1.setHeight(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child2 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child2.setHeight(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child2, 2);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
2017-02-03 11:19:45 -08:00
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(90f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(80f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(70f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.RTL);
|
2017-02-03 11:19:45 -08:00
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
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(90f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(80f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(70f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse() {
|
2019-09-17 06:52:49 -07:00
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
2017-03-01 09:19:55 -08:00
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root = createNode(config);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child0 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setWidth(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child1 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child1.setWidth(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
final YogaNode root_child2 = createNode(config);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child2.setWidth(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child2, 2);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
2017-02-03 11:19:45 -08:00
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(90f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(80f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(70f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.RTL);
|
2017-02-03 11:19:45 -08:00
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(20f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
2023-10-03 11:31:34 -07:00
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_margin_left() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-03 11:31:34 -07:00
|
|
|
root.setMargin(YogaEdge.LEFT, 100f);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
root.setDirection(YogaDirection.LTR);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
|
|
|
assertEquals(100f, 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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(70f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
|
|
|
assertEquals(100f, 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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(20f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_margin_start() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-03 11:31:34 -07:00
|
|
|
root.setMargin(YogaEdge.START, 100f);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
root.setDirection(YogaDirection.LTR);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
|
|
|
assertEquals(100f, 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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(70f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(20f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_margin_right() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-03 11:31:34 -07:00
|
|
|
root.setMargin(YogaEdge.RIGHT, 100f);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(70f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(20f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_margin_end() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-03 11:31:34 -07:00
|
|
|
root.setMargin(YogaEdge.END, 100f);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(70f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
|
|
|
assertEquals(100f, 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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(20f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_column_reverse_margin_top() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.COLUMN_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-03 11:31:34 -07:00
|
|
|
root.setMargin(YogaEdge.TOP, 100f);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
root.setDirection(YogaDirection.LTR);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_column_reverse_margin_bottom() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.COLUMN_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-03 11:31:34 -07:00
|
|
|
root.setMargin(YogaEdge.BOTTOM, 100f);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.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(100f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
2023-10-11 14:02:39 -07:00
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_padding_left() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setPadding(YogaEdge.LEFT, 100);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(70f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.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(100f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(110f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(120f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_padding_start() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setPadding(YogaEdge.START, 100);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(70f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(20f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_padding_right() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setPadding(YogaEdge.RIGHT, 100);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
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(-10f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(-20f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(-30f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(20f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_padding_end() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setPadding(YogaEdge.END, 100);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
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(-10f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(-20f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(-30f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.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(100f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(110f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(120f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_column_reverse_padding_top() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.COLUMN_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setPadding(YogaEdge.TOP, 100);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.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(100f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_column_reverse_padding_bottom() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.COLUMN_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setPadding(YogaEdge.BOTTOM, 100);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
root.setDirection(YogaDirection.LTR);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
|
|
|
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(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.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(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_border_left() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setBorder(YogaEdge.LEFT, 100f);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(70f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.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(100f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(110f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(120f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_border_start() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setBorder(YogaEdge.START, 100f);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(70f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(20f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_border_right() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setBorder(YogaEdge.RIGHT, 100f);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
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(-10f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(-20f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(-30f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(20f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_border_end() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setBorder(YogaEdge.END, 100f);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
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(-10f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(-20f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(-30f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.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(100f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(110f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(120f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_column_reverse_border_top() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.COLUMN_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setBorder(YogaEdge.TOP, 100f);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.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(100f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_column_reverse_border_bottom() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setFlexDirection(YogaFlexDirection.COLUMN_REVERSE);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setBorder(YogaEdge.BOTTOM, 100f);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child1 = createNode(config);
|
|
|
|
root_child1.setWidth(10f);
|
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child2 = createNode(config);
|
|
|
|
root_child2.setWidth(10f);
|
|
|
|
root.addChildAt(root_child2, 2);
|
|
|
|
root.setDirection(YogaDirection.LTR);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
|
|
|
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(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.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(0f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
2023-10-11 14:02:39 -07:00
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_pos_left() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
2023-10-18 17:30:18 -07:00
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setPosition(YogaEdge.LEFT, 100f);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutX(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(80f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(70f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutX(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(10f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(20f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_pos_start() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
2023-10-18 17:30:18 -07:00
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setPosition(YogaEdge.START, 100f);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutX(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(80f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(70f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(-100f, root_child0.getLayoutX(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(10f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(20f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_pos_right() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
2023-10-18 17:30:18 -07:00
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setPosition(YogaEdge.RIGHT, 100f);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(-100f, root_child0.getLayoutX(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(80f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(70f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(-100f, root_child0.getLayoutX(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(10f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(20f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_pos_end() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
2023-10-18 17:30:18 -07:00
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setPosition(YogaEdge.END, 100f);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(-100f, root_child0.getLayoutX(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(80f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(70f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutX(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(10f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(20f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_column_reverse_pos_top() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
2023-10-18 17:30:18 -07:00
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.COLUMN_REVERSE);
|
|
|
|
root_child0.setPosition(YogaEdge.TOP, 100f);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutY(), 0.0f);
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutY(), 0.0f);
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_column_reverse_pos_bottom() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
2023-10-23 18:20:24 -07:00
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
2023-10-18 17:30:18 -07:00
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.COLUMN_REVERSE);
|
|
|
|
root_child0.setPosition(YogaEdge.BOTTOM, 100f);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
2023-10-11 14:02:39 -07:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(-100f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
|
|
|
root.setDirection(YogaDirection.RTL);
|
|
|
|
root.calculateLayout(YogaConstants.UNDEFINED, YogaConstants.UNDEFINED);
|
|
|
|
|
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
assertEquals(100f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(-100f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
|
2023-10-18 17:30:18 -07:00
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutHeight(), 0.0f);
|
2023-10-11 14:02:39 -07:00
|
|
|
}
|
|
|
|
|
2023-11-07 11:02:20 -08:00
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_inner_pos_left() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setPosition(YogaEdge.LEFT, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_inner_pos_right() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setPosition(YogaEdge.RIGHT, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_col_reverse_inner_pos_top() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.COLUMN_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setPosition(YogaEdge.TOP, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_col_reverse_inner_pos_bottom() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.COLUMN_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setPosition(YogaEdge.BOTTOM, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(80f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(80f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
@Ignore
|
|
|
|
public void test_flex_direction_row_reverse_inner_pos_start() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setPosition(YogaEdge.START, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
@Ignore
|
|
|
|
public void test_flex_direction_row_reverse_inner_pos_end() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setPosition(YogaEdge.END, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_inner_margin_left() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setMargin(YogaEdge.LEFT, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_inner_margin_right() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setMargin(YogaEdge.RIGHT, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_col_reverse_inner_margin_top() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.COLUMN_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setMargin(YogaEdge.TOP, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_col_reverse_inner_margin_bottom() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.COLUMN_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setMargin(YogaEdge.BOTTOM, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(80f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(80f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_inner_marign_start() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setMargin(YogaEdge.START, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_inner_margin_end() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setMargin(YogaEdge.END, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_inner_border_left() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setBorder(YogaEdge.LEFT, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_inner_border_right() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setBorder(YogaEdge.RIGHT, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_col_reverse_inner_border_top() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.COLUMN_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setBorder(YogaEdge.TOP, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_col_reverse_inner_border_bottom() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.COLUMN_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setBorder(YogaEdge.BOTTOM, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_inner_border_start() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setBorder(YogaEdge.LEFT, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_inner_border_end() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setBorder(YogaEdge.RIGHT, 10f);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_inner_padding_left() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setPadding(YogaEdge.LEFT, 10);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_inner_padding_right() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setPadding(YogaEdge.RIGHT, 10);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_col_reverse_inner_padding_top() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.COLUMN_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setPadding(YogaEdge.TOP, 10);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_col_reverse_inner_padding_bottom() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.COLUMN_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setPadding(YogaEdge.BOTTOM, 10);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_inner_padding_start() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setPadding(YogaEdge.START, 10);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_flex_direction_row_reverse_inner_padding_end() {
|
|
|
|
YogaConfig config = YogaConfigFactory.create();
|
|
|
|
|
|
|
|
final YogaNode root = createNode(config);
|
|
|
|
root.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
|
|
|
|
|
|
|
final YogaNode root_child0 = createNode(config);
|
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW_REVERSE);
|
|
|
|
root_child0.setWidth(100f);
|
|
|
|
root_child0.setHeight(100f);
|
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child0 = createNode(config);
|
|
|
|
root_child0_child0.setPositionType(YogaPositionType.ABSOLUTE);
|
|
|
|
root_child0_child0.setPadding(YogaEdge.END, 10);
|
|
|
|
root_child0_child0.setWidth(10f);
|
|
|
|
root_child0_child0.setHeight(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child1 = createNode(config);
|
|
|
|
root_child0_child1.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child1, 1);
|
|
|
|
|
|
|
|
final YogaNode root_child0_child2 = createNode(config);
|
|
|
|
root_child0_child2.setWidth(10f);
|
|
|
|
root_child0.addChildAt(root_child0_child2, 2);
|
|
|
|
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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(90f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(80f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.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(100f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child2.getLayoutHeight(), 0.0f);
|
|
|
|
}
|
|
|
|
|
2018-07-30 09:30:51 -07:00
|
|
|
private YogaNode createNode(YogaConfig config) {
|
|
|
|
return mNodeFactory.create(config);
|
|
|
|
}
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|