Summary: `/*` is the standard throughout open source code. For example, Firefox uses single /*: https://hg.mozilla.org/mozilla-central/file/21d22b2f541258d3d1cf96c7ba5ad73e96e616b5/gfx/ipc/CompositorWidgetVsyncObserver.cpp#l3 In addition, Rust considers `/**` to be a doc comment (similar to Javadoc) and having such a comment at the beginning of the file causes `rustc` to barf. Note that some JavaScript tooling requires `/**`. This is OK since JavaScript files were not covered by the linter in the first place, but it would be good to have that tooling fixed too. Reviewed By: zertosh Differential Revision: D15640366 fbshipit-source-id: b4ed4599071516364d6109720750d6a43304c089
136 lines
4.4 KiB
C++
136 lines
4.4 KiB
C++
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the LICENSE
|
|
* file in the root directory of this source tree.
|
|
*/
|
|
#include <gtest/gtest.h>
|
|
#include <yoga/Yoga.h>
|
|
|
|
using namespace ::testing;
|
|
|
|
class YogaTest_HadOverflowTests : public Test {
|
|
protected:
|
|
YogaTest_HadOverflowTests() {
|
|
config = YGConfigNew();
|
|
root = YGNodeNewWithConfig(config);
|
|
YGNodeStyleSetWidth(root, 200);
|
|
YGNodeStyleSetHeight(root, 100);
|
|
YGNodeStyleSetFlexDirection(root, YGFlexDirectionColumn);
|
|
YGNodeStyleSetFlexWrap(root, YGWrapNoWrap);
|
|
}
|
|
|
|
~YogaTest_HadOverflowTests() {
|
|
YGNodeFreeRecursive(root);
|
|
YGConfigFree(config);
|
|
}
|
|
|
|
YGNodeRef root;
|
|
YGConfigRef config;
|
|
};
|
|
|
|
TEST_F(
|
|
YogaTest_HadOverflowTests,
|
|
children_overflow_no_wrap_and_no_flex_children) {
|
|
const YGNodeRef child0 = YGNodeNewWithConfig(config);
|
|
YGNodeStyleSetWidth(child0, 80);
|
|
YGNodeStyleSetHeight(child0, 40);
|
|
YGNodeStyleSetMargin(child0, YGEdgeTop, 10);
|
|
YGNodeStyleSetMargin(child0, YGEdgeBottom, 15);
|
|
YGNodeInsertChild(root, child0, 0);
|
|
const YGNodeRef child1 = YGNodeNewWithConfig(config);
|
|
YGNodeStyleSetWidth(child1, 80);
|
|
YGNodeStyleSetHeight(child1, 40);
|
|
YGNodeStyleSetMargin(child1, YGEdgeBottom, 5);
|
|
YGNodeInsertChild(root, child1, 1);
|
|
|
|
YGNodeCalculateLayout(root, 200, 100, YGDirectionLTR);
|
|
|
|
ASSERT_TRUE(YGNodeLayoutGetHadOverflow(root));
|
|
}
|
|
|
|
TEST_F(
|
|
YogaTest_HadOverflowTests,
|
|
spacing_overflow_no_wrap_and_no_flex_children) {
|
|
const YGNodeRef child0 = YGNodeNewWithConfig(config);
|
|
YGNodeStyleSetWidth(child0, 80);
|
|
YGNodeStyleSetHeight(child0, 40);
|
|
YGNodeStyleSetMargin(child0, YGEdgeTop, 10);
|
|
YGNodeStyleSetMargin(child0, YGEdgeBottom, 10);
|
|
YGNodeInsertChild(root, child0, 0);
|
|
const YGNodeRef child1 = YGNodeNewWithConfig(config);
|
|
YGNodeStyleSetWidth(child1, 80);
|
|
YGNodeStyleSetHeight(child1, 40);
|
|
YGNodeStyleSetMargin(child1, YGEdgeBottom, 5);
|
|
YGNodeInsertChild(root, child1, 1);
|
|
|
|
YGNodeCalculateLayout(root, 200, 100, YGDirectionLTR);
|
|
|
|
ASSERT_TRUE(YGNodeLayoutGetHadOverflow(root));
|
|
}
|
|
|
|
TEST_F(YogaTest_HadOverflowTests, no_overflow_no_wrap_and_flex_children) {
|
|
const YGNodeRef child0 = YGNodeNewWithConfig(config);
|
|
YGNodeStyleSetWidth(child0, 80);
|
|
YGNodeStyleSetHeight(child0, 40);
|
|
YGNodeStyleSetMargin(child0, YGEdgeTop, 10);
|
|
YGNodeStyleSetMargin(child0, YGEdgeBottom, 10);
|
|
YGNodeInsertChild(root, child0, 0);
|
|
const YGNodeRef child1 = YGNodeNewWithConfig(config);
|
|
YGNodeStyleSetWidth(child1, 80);
|
|
YGNodeStyleSetHeight(child1, 40);
|
|
YGNodeStyleSetMargin(child1, YGEdgeBottom, 5);
|
|
YGNodeStyleSetFlexShrink(child1, 1);
|
|
YGNodeInsertChild(root, child1, 1);
|
|
|
|
YGNodeCalculateLayout(root, 200, 100, YGDirectionLTR);
|
|
|
|
ASSERT_FALSE(YGNodeLayoutGetHadOverflow(root));
|
|
}
|
|
|
|
TEST_F(YogaTest_HadOverflowTests, hadOverflow_gets_reset_if_not_logger_valid) {
|
|
const YGNodeRef child0 = YGNodeNewWithConfig(config);
|
|
YGNodeStyleSetWidth(child0, 80);
|
|
YGNodeStyleSetHeight(child0, 40);
|
|
YGNodeStyleSetMargin(child0, YGEdgeTop, 10);
|
|
YGNodeStyleSetMargin(child0, YGEdgeBottom, 10);
|
|
YGNodeInsertChild(root, child0, 0);
|
|
const YGNodeRef child1 = YGNodeNewWithConfig(config);
|
|
YGNodeStyleSetWidth(child1, 80);
|
|
YGNodeStyleSetHeight(child1, 40);
|
|
YGNodeStyleSetMargin(child1, YGEdgeBottom, 5);
|
|
YGNodeInsertChild(root, child1, 1);
|
|
|
|
YGNodeCalculateLayout(root, 200, 100, YGDirectionLTR);
|
|
|
|
ASSERT_TRUE(YGNodeLayoutGetHadOverflow(root));
|
|
|
|
YGNodeStyleSetFlexShrink(child1, 1);
|
|
|
|
YGNodeCalculateLayout(root, 200, 100, YGDirectionLTR);
|
|
|
|
ASSERT_FALSE(YGNodeLayoutGetHadOverflow(root));
|
|
}
|
|
|
|
TEST_F(YogaTest_HadOverflowTests, spacing_overflow_in_nested_nodes) {
|
|
const YGNodeRef child0 = YGNodeNewWithConfig(config);
|
|
YGNodeStyleSetWidth(child0, 80);
|
|
YGNodeStyleSetHeight(child0, 40);
|
|
YGNodeStyleSetMargin(child0, YGEdgeTop, 10);
|
|
YGNodeStyleSetMargin(child0, YGEdgeBottom, 10);
|
|
YGNodeInsertChild(root, child0, 0);
|
|
const YGNodeRef child1 = YGNodeNewWithConfig(config);
|
|
YGNodeStyleSetWidth(child1, 80);
|
|
YGNodeStyleSetHeight(child1, 40);
|
|
YGNodeInsertChild(root, child1, 1);
|
|
const YGNodeRef child1_1 = YGNodeNewWithConfig(config);
|
|
YGNodeStyleSetWidth(child1_1, 80);
|
|
YGNodeStyleSetHeight(child1_1, 40);
|
|
YGNodeStyleSetMargin(child1_1, YGEdgeBottom, 5);
|
|
YGNodeInsertChild(child1, child1_1, 0);
|
|
|
|
YGNodeCalculateLayout(root, 200, 100, YGDirectionLTR);
|
|
|
|
ASSERT_TRUE(YGNodeLayoutGetHadOverflow(root));
|
|
}
|