Summary: Adds the feature to use percentage as a value unit. You can use the function ```YGPx(float)``` and ```YGPercent(float)``` for convenience. I did some benchmarks: ``` Without Percentage Feature - Release x86: Stack with flex: median: 0.000000 ms, stddev: 0.146683 ms Align stretch in undefined axis: median: 0.000000 ms, stddev: 0.136525 ms Nested flex: median: 0.000000 ms, stddev: 0.490101 ms Huge nested layout: median: 23.000000 ms, stddev: 0.928291 ms Stack with flex: median: 0.000000 ms, stddev: 0.170587 ms Align stretch in undefined axis: median: 0.000000 ms, stddev: 0.143384 ms Nested flex: median: 0.000000 ms, stddev: 0.477791 ms Huge nested layout: median: 22.000000 ms, stddev: 2.129779 ms With Percentage Feature - Release x86: Stack with flex: median: 0.000000 ms, stddev: 0.132951 ms Align stretch in undefined axis: median: 0.000000 ms, stddev: 0.136525 ms Nested flex: median: 0.000000 ms, stddev: 0.489570 ms Huge nested layout: median: 21.000000 ms, stddev: 1.390476 ms Closes https://github.com/facebook/yoga/pull/258 Reviewed By: dshahidehpour Differential Revision: D4361945 Pulled By: emilsjolander fbshipit-source-id: a8f5bc63ad352eb9410d792729e56664468cd76a
144 lines
5.7 KiB
C#
144 lines
5.7 KiB
C#
/**
|
|
* 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.
|
|
*/
|
|
|
|
using NUnit.Framework;
|
|
using System;
|
|
|
|
/**
|
|
* Tests for {@link YogaNode}.
|
|
*/
|
|
namespace Facebook.Yoga
|
|
{
|
|
[TestFixture]
|
|
public class YogaNodeCreateTest
|
|
{
|
|
[Test]
|
|
public void TestSimple()
|
|
{
|
|
YogaNode nodeDefault = new YogaNode();
|
|
YogaNode nodeCreated = YogaNode.Create(flexDirection: YogaFlexDirection.Row);
|
|
Assert.AreEqual(YogaFlexDirection.Row, nodeCreated.FlexDirection);
|
|
Assert.IsFalse(nodeDefault.IsDirty);
|
|
nodeDefault.CopyStyle(nodeCreated);
|
|
Assert.IsTrue(nodeDefault.IsDirty);
|
|
}
|
|
|
|
[Test]
|
|
public void TestSame()
|
|
{
|
|
YogaNode nodeDefault = new YogaNode();
|
|
YogaNode nodeCreated = YogaNode.Create();
|
|
Assert.IsFalse(nodeDefault.IsDirty);
|
|
nodeDefault.CopyStyle(nodeCreated);
|
|
Assert.IsFalse(nodeDefault.IsDirty);
|
|
}
|
|
|
|
[Test]
|
|
public void TestMultiple()
|
|
{
|
|
YogaNode node = YogaNode.Create(
|
|
positionType: YogaPositionType.Absolute,
|
|
wrap: YogaWrap.Wrap,
|
|
position: new Spacing(top:6, right:4),
|
|
margin: new Spacing(bottom:5, left:3));
|
|
|
|
Assert.AreEqual(YogaFlexDirection.Column, node.FlexDirection);
|
|
Assert.AreEqual(YogaPositionType.Absolute, node.PositionType);
|
|
Assert.AreEqual(YogaWrap.Wrap, node.Wrap);
|
|
Assert.AreEqual(6.Px(), node.GetPosition(YogaEdge.Top));
|
|
Assert.IsTrue(YogaConstants.IsUndefined(node.GetPosition(YogaEdge.Bottom)));
|
|
Assert.AreEqual(4.Px(), node.GetPosition(YogaEdge.Right));
|
|
Assert.IsTrue(YogaConstants.IsUndefined(node.GetPosition(YogaEdge.Left)));
|
|
Assert.AreEqual(0.Px(), node.GetMargin(YogaEdge.Top));
|
|
Assert.AreEqual(5.Px(), node.GetMargin(YogaEdge.Bottom));
|
|
Assert.AreEqual(3.Px(), node.GetMargin(YogaEdge.Left));
|
|
Assert.AreEqual(0.Px(), node.GetMargin(YogaEdge.Right));
|
|
}
|
|
|
|
[Test]
|
|
public void TestFull()
|
|
{
|
|
YogaNode node = YogaNode.Create(
|
|
styleDirection: YogaDirection.RTL,
|
|
flexDirection: YogaFlexDirection.RowReverse,
|
|
|
|
justifyContent: YogaJustify.SpaceAround,
|
|
alignContent: YogaAlign.Center,
|
|
alignItems: YogaAlign.FlexEnd,
|
|
alignSelf: YogaAlign.Stretch,
|
|
|
|
positionType: YogaPositionType.Absolute,
|
|
wrap: YogaWrap.Wrap,
|
|
overflow: YogaOverflow.Scroll,
|
|
|
|
flex: 1,
|
|
flexGrow: 2,
|
|
flexShrink: 3,
|
|
flexBasis: 4,
|
|
|
|
position: new Spacing(top: 5, bottom: 6, left: 7, right: 8),
|
|
margin: new Spacing(top: 9, bottom: 10, left: 11, right: 12),
|
|
padding: new Spacing(top: 13, bottom: 14, left: 15, right: 16),
|
|
border: new Border(top: 17, bottom: 18, left: 19, right: 20),
|
|
|
|
width: 21,
|
|
height: 22,
|
|
minWidth: 23,
|
|
minHeight: 24,
|
|
maxWidth: 25,
|
|
maxHeight: 26);
|
|
|
|
Assert.AreEqual(YogaDirection.RTL, node.StyleDirection);
|
|
Assert.AreEqual(YogaFlexDirection.RowReverse, node.FlexDirection);
|
|
|
|
Assert.AreEqual(YogaJustify.SpaceAround, node.JustifyContent);
|
|
Assert.AreEqual(YogaAlign.Center, node.AlignContent);
|
|
Assert.AreEqual(YogaAlign.FlexEnd, node.AlignItems);
|
|
Assert.AreEqual(YogaAlign.Stretch, node.AlignSelf);
|
|
|
|
Assert.AreEqual(YogaPositionType.Absolute, node.PositionType);
|
|
Assert.AreEqual(YogaWrap.Wrap, node.Wrap);
|
|
Assert.AreEqual(YogaOverflow.Scroll, node.Overflow);
|
|
|
|
Assert.AreEqual(2, node.FlexGrow);
|
|
Assert.AreEqual(3, node.FlexShrink);
|
|
Assert.AreEqual(4.Px(), node.FlexBasis);
|
|
node.FlexGrow = YogaConstants.Undefined;
|
|
Assert.AreEqual(1, node.FlexGrow);
|
|
|
|
Assert.AreEqual(5.Px(), node.GetPosition(YogaEdge.Top));
|
|
Assert.AreEqual(6.Px(), node.GetPosition(YogaEdge.Bottom));
|
|
Assert.AreEqual(7.Px(), node.GetPosition(YogaEdge.Left));
|
|
Assert.AreEqual(8.Px(), node.GetPosition(YogaEdge.Right));
|
|
|
|
Assert.AreEqual(9.Px(), node.GetMargin(YogaEdge.Top));
|
|
Assert.AreEqual(10.Px(), node.GetMargin(YogaEdge.Bottom));
|
|
Assert.AreEqual(11.Px(), node.GetMargin(YogaEdge.Left));
|
|
Assert.AreEqual(12.Px(), node.GetMargin(YogaEdge.Right));
|
|
|
|
Assert.AreEqual(13.Px(), node.GetPadding(YogaEdge.Top));
|
|
Assert.AreEqual(14.Px(), node.GetPadding(YogaEdge.Bottom));
|
|
Assert.AreEqual(15.Px(), node.GetPadding(YogaEdge.Left));
|
|
Assert.AreEqual(16.Px(), node.GetPadding(YogaEdge.Right));
|
|
|
|
Assert.AreEqual(17, node.GetBorder(YogaEdge.Top));
|
|
Assert.AreEqual(18, node.GetBorder(YogaEdge.Bottom));
|
|
Assert.AreEqual(19, node.GetBorder(YogaEdge.Left));
|
|
Assert.AreEqual(20, node.GetBorder(YogaEdge.Right));
|
|
|
|
Assert.AreEqual(21.Px(), node.Width);
|
|
Assert.AreEqual(22.Px(), node.Height);
|
|
Assert.AreEqual(23.Px(), node.MinWidth);
|
|
Assert.AreEqual(24.Px(), node.MinHeight);
|
|
Assert.AreEqual(25.Px(), node.MaxWidth);
|
|
Assert.AreEqual(26.Px(), node.MaxHeight);
|
|
}
|
|
}
|
|
}
|