2016-10-23 10:27:32 -07:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2014-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
|
|
|
|
2016-12-03 04:40:21 -08:00
|
|
|
// @Generated by gentest/gentest.rb from gentest/fixtures/YGMinMaxDimensionTest.html
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-05 02:56:20 -08:00
|
|
|
package com.facebook.yoga;
|
2016-10-23 10:27:32 -07:00
|
|
|
|
|
|
|
import org.junit.Test;
|
|
|
|
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
|
|
|
2016-12-03 04:40:21 -08:00
|
|
|
public class YGMinMaxDimensionTest {
|
2016-10-23 10:27:32 -07:00
|
|
|
@Test
|
|
|
|
public void test_max_width() {
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root = new YogaNode();
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root_child0 = new YogaNode();
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setMaxWidth(50f);
|
|
|
|
root_child0.setHeight(10f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
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(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.RTL);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
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(50f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(10f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_max_height() {
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root = new YogaNode();
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setFlexDirection(YogaFlexDirection.ROW);
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root_child0 = new YogaNode();
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setWidth(10f);
|
|
|
|
root_child0.setMaxHeight(50f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
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(50f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.RTL);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
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(50f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_min_height() {
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root = new YogaNode();
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root_child0 = new YogaNode();
|
2016-11-23 11:12:51 -08:00
|
|
|
root_child0.setFlexGrow(1f);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setMinHeight(60f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root_child1 = new YogaNode();
|
2016-11-23 11:12:51 -08:00
|
|
|
root_child1.setFlexGrow(1f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child1, 1);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
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(80f, 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(20f, root_child1.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.RTL);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
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(80f, 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(20f, root_child1.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_min_width() {
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root = new YogaNode();
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setFlexDirection(YogaFlexDirection.ROW);
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setHeight(100f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root_child0 = new YogaNode();
|
2016-11-23 11:12:51 -08:00
|
|
|
root_child0.setFlexGrow(1f);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setMinWidth(60f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root_child1 = new YogaNode();
|
2016-11-23 11:12:51 -08:00
|
|
|
root_child1.setFlexGrow(1f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child1, 1);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
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(80f, 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(20f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.RTL);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
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(20f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(80f, 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(0f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(20f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root_child1.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_justify_content_min_max() {
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root = new YogaNode();
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setJustifyContent(YogaJustify.CENTER);
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(100f);
|
|
|
|
root.setMinHeight(100f);
|
|
|
|
root.setMaxHeight(200f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root_child0 = new YogaNode();
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setWidth(60f);
|
|
|
|
root_child0.setHeight(60f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
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(20f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(60f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(60f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.RTL);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
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(40f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(20f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(60f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(60f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_align_items_min_max() {
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root = new YogaNode();
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setAlignItems(YogaAlign.CENTER);
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setMinWidth(100f);
|
|
|
|
root.setMaxWidth(200f);
|
|
|
|
root.setHeight(100f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root_child0 = new YogaNode();
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setWidth(60f);
|
|
|
|
root_child0.setHeight(60f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
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(20f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(60f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(60f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.RTL);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
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(20f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(60f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(60f, root_child0.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void test_justify_content_overflow_min_max() {
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root = new YogaNode();
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setJustifyContent(YogaJustify.CENTER);
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setMinHeight(100f);
|
|
|
|
root.setMaxHeight(110f);
|
2016-10-23 10:27:32 -07:00
|
|
|
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root_child0 = new YogaNode();
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setWidth(50f);
|
|
|
|
root_child0.setHeight(50f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root_child1 = new YogaNode();
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child1.setWidth(50f);
|
|
|
|
root_child1.setHeight(50f);
|
2016-10-23 10:27:32 -07:00
|
|
|
root.addChildAt(root_child1, 1);
|
|
|
|
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root_child2 = new YogaNode();
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child2.setWidth(50f);
|
|
|
|
root_child2.setHeight(50f);
|
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);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
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(50f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(110f, 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(-20f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(50f, 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(30f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(50f, 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(80f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(50f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(50f, 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);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
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(50f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(110f, root.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(-20f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(50f, root_child0.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child1.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(30f, root_child1.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(50f, root_child1.getLayoutHeight(), 0.0f);
|
|
|
|
|
|
|
|
assertEquals(0f, root_child2.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(80f, root_child2.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(50f, root_child2.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(50f, root_child2.getLayoutHeight(), 0.0f);
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|
|
|
|
|
2016-11-08 09:45:58 -08:00
|
|
|
@Test
|
|
|
|
public void test_flex_grow_within_max_width() {
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root = new YogaNode();
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(200f);
|
|
|
|
root.setHeight(100f);
|
2016-11-08 09:45:58 -08:00
|
|
|
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root_child0 = new YogaNode();
|
2016-12-02 05:47:43 -08:00
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setMaxWidth(100f);
|
2016-11-08 09:45:58 -08:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root_child0_child0 = new YogaNode();
|
2016-11-23 11:12:51 -08:00
|
|
|
root_child0_child0.setFlexGrow(1f);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0_child0.setHeight(20f);
|
2016-11-08 09:45:58 -08:00
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
2016-11-08 09:45:58 -08:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(200f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-11-08 09:45:58 -08: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(20f, root_child0.getLayoutHeight(), 0.0f);
|
2016-11-08 09:45:58 -08:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(20f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2016-11-08 09:45:58 -08:00
|
|
|
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.RTL);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
2016-11-08 09:45:58 -08:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(200f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-11-08 09:45:58 -08:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(100f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(20f, root_child0.getLayoutHeight(), 0.0f);
|
2016-11-08 09:45:58 -08:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(100f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(20f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2016-11-08 09:45:58 -08:00
|
|
|
}
|
|
|
|
|
2016-11-11 08:05:44 -08:00
|
|
|
@Test
|
|
|
|
public void test_flex_grow_within_constrained_max_width() {
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root = new YogaNode();
|
2016-11-29 09:04:43 -08:00
|
|
|
root.setWidth(200f);
|
|
|
|
root.setHeight(100f);
|
2016-11-11 08:05:44 -08:00
|
|
|
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root_child0 = new YogaNode();
|
2016-12-02 05:47:43 -08:00
|
|
|
root_child0.setFlexDirection(YogaFlexDirection.ROW);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0.setMaxWidth(300f);
|
2016-11-11 08:05:44 -08:00
|
|
|
root.addChildAt(root_child0, 0);
|
|
|
|
|
2016-12-03 04:40:23 -08:00
|
|
|
final YogaNode root_child0_child0 = new YogaNode();
|
2016-11-23 11:12:51 -08:00
|
|
|
root_child0_child0.setFlexGrow(1f);
|
2016-11-29 09:04:43 -08:00
|
|
|
root_child0_child0.setHeight(20f);
|
2016-11-11 08:05:44 -08:00
|
|
|
root_child0.addChildAt(root_child0_child0, 0);
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.LTR);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
2016-11-11 08:05:44 -08:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(200f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-11-11 08:05:44 -08:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(200f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(20f, root_child0.getLayoutHeight(), 0.0f);
|
2016-11-11 08:05:44 -08:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(200f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(20f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2016-11-11 08:05:44 -08:00
|
|
|
|
2016-12-02 05:47:43 -08:00
|
|
|
root.setDirection(YogaDirection.RTL);
|
2016-11-29 12:23:02 -08:00
|
|
|
root.calculateLayout();
|
2016-11-11 08:05:44 -08:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(200f, root.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(100f, root.getLayoutHeight(), 0.0f);
|
2016-11-11 08:05:44 -08:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(200f, root_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(20f, root_child0.getLayoutHeight(), 0.0f);
|
2016-11-11 08:05:44 -08:00
|
|
|
|
2016-11-23 11:12:51 -08:00
|
|
|
assertEquals(0f, root_child0_child0.getLayoutX(), 0.0f);
|
|
|
|
assertEquals(0f, root_child0_child0.getLayoutY(), 0.0f);
|
|
|
|
assertEquals(200f, root_child0_child0.getLayoutWidth(), 0.0f);
|
|
|
|
assertEquals(20f, root_child0_child0.getLayoutHeight(), 0.0f);
|
2016-11-11 08:05:44 -08:00
|
|
|
}
|
|
|
|
|
2016-10-23 10:27:32 -07:00
|
|
|
}
|