2014-10-29 08:01:22 -07:00
|
|
|
/**
|
2016-07-25 06:31:32 -07:00
|
|
|
* Copyright (c) 2014-present, Facebook, Inc.
|
2014-10-29 08:01:22 -07:00
|
|
|
* 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-07-25 06:31:32 -07:00
|
|
|
|
2014-09-18 15:15:21 -07:00
|
|
|
package com.facebook.csslayout;
|
|
|
|
|
|
|
|
import org.junit.Test;
|
|
|
|
|
|
|
|
import static junit.framework.Assert.*;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests for {@link LayoutEngine} and {@link CSSNode} to make sure layouts are only generated when
|
|
|
|
* needed.
|
|
|
|
*/
|
|
|
|
public class LayoutCachingTest {
|
|
|
|
|
|
|
|
private void assertTreeHasNewLayout(boolean expectedHasNewLayout, CSSNode root) {
|
|
|
|
assertEquals(expectedHasNewLayout, root.hasNewLayout());
|
|
|
|
|
|
|
|
for (int i = 0; i < root.getChildCount(); i++) {
|
|
|
|
assertTreeHasNewLayout(expectedHasNewLayout, root.getChildAt(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void markLayoutAppliedForTree(CSSNode root) {
|
2014-10-08 15:42:51 -07:00
|
|
|
root.markLayoutSeen();
|
2014-09-18 15:15:21 -07:00
|
|
|
for (int i = 0; i < root.getChildCount(); i++) {
|
|
|
|
markLayoutAppliedForTree(root.getChildAt(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void testCachesFullTree() {
|
2015-03-23 17:49:47 +00:00
|
|
|
CSSLayoutContext layoutContext = new CSSLayoutContext();
|
2014-09-18 15:15:21 -07:00
|
|
|
CSSNode root = new CSSNode();
|
|
|
|
CSSNode c0 = new CSSNode();
|
|
|
|
CSSNode c1 = new CSSNode();
|
|
|
|
CSSNode c0c0 = new CSSNode();
|
|
|
|
root.addChildAt(c0, 0);
|
|
|
|
root.addChildAt(c1, 1);
|
|
|
|
c0.addChildAt(c0c0, 0);
|
2016-06-03 22:19:03 +01:00
|
|
|
|
2015-03-23 17:49:47 +00:00
|
|
|
root.calculateLayout(layoutContext);
|
2014-09-18 15:15:21 -07:00
|
|
|
assertTreeHasNewLayout(true, root);
|
|
|
|
markLayoutAppliedForTree(root);
|
|
|
|
|
2015-03-23 17:49:47 +00:00
|
|
|
root.calculateLayout(layoutContext);
|
2015-01-19 12:37:30 +00:00
|
|
|
assertTrue(root.hasNewLayout());
|
|
|
|
assertTreeHasNewLayout(false, c0);
|
|
|
|
assertTreeHasNewLayout(false, c1);
|
2014-09-18 15:15:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void testInvalidatesCacheWhenChildAdded() {
|
2015-03-23 17:49:47 +00:00
|
|
|
CSSLayoutContext layoutContext = new CSSLayoutContext();
|
2014-09-18 15:15:21 -07:00
|
|
|
CSSNode root = new CSSNode();
|
|
|
|
CSSNode c0 = new CSSNode();
|
|
|
|
CSSNode c1 = new CSSNode();
|
|
|
|
CSSNode c0c0 = new CSSNode();
|
|
|
|
CSSNode c0c1 = new CSSNode();
|
2015-01-19 12:37:30 +00:00
|
|
|
CSSNode c1c0 = new CSSNode();
|
2014-09-18 15:15:21 -07:00
|
|
|
c0c1.setStyleWidth(200);
|
|
|
|
c0c1.setStyleHeight(200);
|
|
|
|
root.addChildAt(c0, 0);
|
|
|
|
root.addChildAt(c1, 1);
|
|
|
|
c0.addChildAt(c0c0, 0);
|
2015-01-19 12:37:30 +00:00
|
|
|
c0c0.addChildAt(c1c0, 0);
|
2014-09-18 15:15:21 -07:00
|
|
|
|
2015-03-23 17:49:47 +00:00
|
|
|
root.calculateLayout(layoutContext);
|
2014-09-18 15:15:21 -07:00
|
|
|
markLayoutAppliedForTree(root);
|
|
|
|
|
|
|
|
c0.addChildAt(c0c1, 1);
|
|
|
|
|
2015-03-23 17:49:47 +00:00
|
|
|
root.calculateLayout(layoutContext);
|
2014-09-18 15:15:21 -07:00
|
|
|
assertTrue(root.hasNewLayout());
|
|
|
|
assertTrue(c0.hasNewLayout());
|
|
|
|
assertTrue(c0c1.hasNewLayout());
|
|
|
|
|
2015-01-19 12:37:30 +00:00
|
|
|
assertTrue(c0c0.hasNewLayout());
|
|
|
|
assertTrue(c1.hasNewLayout());
|
|
|
|
|
2015-10-15 01:30:33 +03:00
|
|
|
assertTrue(c1c0.hasNewLayout());
|
2014-09-18 15:15:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void testInvalidatesCacheWhenEnumPropertyChanges() {
|
2015-03-23 17:49:47 +00:00
|
|
|
CSSLayoutContext layoutContext = new CSSLayoutContext();
|
2014-09-18 15:15:21 -07:00
|
|
|
CSSNode root = new CSSNode();
|
|
|
|
CSSNode c0 = new CSSNode();
|
|
|
|
CSSNode c1 = new CSSNode();
|
|
|
|
CSSNode c0c0 = new CSSNode();
|
|
|
|
root.addChildAt(c0, 0);
|
|
|
|
root.addChildAt(c1, 1);
|
|
|
|
c0.addChildAt(c0c0, 0);
|
|
|
|
|
2015-03-23 17:49:47 +00:00
|
|
|
root.calculateLayout(layoutContext);
|
2014-09-18 15:15:21 -07:00
|
|
|
markLayoutAppliedForTree(root);
|
|
|
|
|
|
|
|
c1.setAlignSelf(CSSAlign.CENTER);
|
2015-03-23 17:49:47 +00:00
|
|
|
root.calculateLayout(layoutContext);
|
2014-09-18 15:15:21 -07:00
|
|
|
|
|
|
|
assertTrue(root.hasNewLayout());
|
|
|
|
assertTrue(c1.hasNewLayout());
|
|
|
|
|
2015-01-19 12:37:30 +00:00
|
|
|
assertTrue(c0.hasNewLayout());
|
2014-09-18 15:15:21 -07:00
|
|
|
assertFalse(c0c0.hasNewLayout());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void testInvalidatesCacheWhenFloatPropertyChanges() {
|
2015-03-23 17:49:47 +00:00
|
|
|
CSSLayoutContext layoutContext = new CSSLayoutContext();
|
2014-09-18 15:15:21 -07:00
|
|
|
CSSNode root = new CSSNode();
|
|
|
|
CSSNode c0 = new CSSNode();
|
|
|
|
CSSNode c1 = new CSSNode();
|
|
|
|
CSSNode c0c0 = new CSSNode();
|
|
|
|
root.addChildAt(c0, 0);
|
|
|
|
root.addChildAt(c1, 1);
|
|
|
|
c0.addChildAt(c0c0, 0);
|
|
|
|
|
2015-03-23 17:49:47 +00:00
|
|
|
root.calculateLayout(layoutContext);
|
2014-09-18 15:15:21 -07:00
|
|
|
markLayoutAppliedForTree(root);
|
|
|
|
|
2015-01-19 12:37:30 +00:00
|
|
|
c1.setMargin(Spacing.LEFT, 10);
|
2015-03-23 17:49:47 +00:00
|
|
|
root.calculateLayout(layoutContext);
|
2014-09-18 15:15:21 -07:00
|
|
|
|
|
|
|
assertTrue(root.hasNewLayout());
|
|
|
|
assertTrue(c1.hasNewLayout());
|
|
|
|
|
2015-01-19 12:37:30 +00:00
|
|
|
assertTrue(c0.hasNewLayout());
|
2015-10-15 01:30:33 +03:00
|
|
|
assertTrue(c0c0.hasNewLayout());
|
2014-09-18 15:15:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void testInvalidatesFullTreeWhenParentWidthChanges() {
|
2015-03-23 17:49:47 +00:00
|
|
|
CSSLayoutContext layoutContext = new CSSLayoutContext();
|
2014-09-18 15:15:21 -07:00
|
|
|
CSSNode root = new CSSNode();
|
|
|
|
CSSNode c0 = new CSSNode();
|
|
|
|
CSSNode c1 = new CSSNode();
|
|
|
|
CSSNode c0c0 = new CSSNode();
|
2015-01-19 12:37:30 +00:00
|
|
|
CSSNode c1c0 = new CSSNode();
|
2014-09-18 15:15:21 -07:00
|
|
|
root.addChildAt(c0, 0);
|
|
|
|
root.addChildAt(c1, 1);
|
|
|
|
c0.addChildAt(c0c0, 0);
|
2015-01-19 12:37:30 +00:00
|
|
|
c1.addChildAt(c1c0, 0);
|
2014-09-18 15:15:21 -07:00
|
|
|
|
2015-03-23 17:49:47 +00:00
|
|
|
root.calculateLayout(layoutContext);
|
2014-09-18 15:15:21 -07:00
|
|
|
markLayoutAppliedForTree(root);
|
|
|
|
|
|
|
|
c0.setStyleWidth(200);
|
2015-03-23 17:49:47 +00:00
|
|
|
root.calculateLayout(layoutContext);
|
2014-09-18 15:15:21 -07:00
|
|
|
|
|
|
|
assertTrue(root.hasNewLayout());
|
|
|
|
assertTrue(c0.hasNewLayout());
|
|
|
|
assertTrue(c0c0.hasNewLayout());
|
|
|
|
|
2015-01-19 12:37:30 +00:00
|
|
|
assertTrue(c1.hasNewLayout());
|
2015-10-15 01:30:33 +03:00
|
|
|
assertTrue(c1c0.hasNewLayout());
|
2014-09-18 15:15:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void testDoesNotInvalidateCacheWhenPropertyIsTheSame() {
|
2015-03-23 17:49:47 +00:00
|
|
|
CSSLayoutContext layoutContext = new CSSLayoutContext();
|
2014-09-18 15:15:21 -07:00
|
|
|
CSSNode root = new CSSNode();
|
|
|
|
CSSNode c0 = new CSSNode();
|
|
|
|
CSSNode c1 = new CSSNode();
|
|
|
|
CSSNode c0c0 = new CSSNode();
|
|
|
|
root.addChildAt(c0, 0);
|
|
|
|
root.addChildAt(c1, 1);
|
|
|
|
c0.addChildAt(c0c0, 0);
|
|
|
|
root.setStyleWidth(200);
|
|
|
|
|
2015-03-23 17:49:47 +00:00
|
|
|
root.calculateLayout(layoutContext);
|
2014-09-18 15:15:21 -07:00
|
|
|
markLayoutAppliedForTree(root);
|
|
|
|
|
2014-10-08 15:42:51 -07:00
|
|
|
root.setStyleWidth(200);
|
2015-03-23 17:49:47 +00:00
|
|
|
root.calculateLayout(layoutContext);
|
2015-01-19 12:37:30 +00:00
|
|
|
|
|
|
|
assertTrue(root.hasNewLayout());
|
|
|
|
assertTreeHasNewLayout(false, c0);
|
|
|
|
assertTreeHasNewLayout(false, c1);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void testInvalidateCacheWhenHeightChangesPosition() {
|
2015-03-23 17:49:47 +00:00
|
|
|
CSSLayoutContext layoutContext = new CSSLayoutContext();
|
2015-01-19 12:37:30 +00:00
|
|
|
CSSNode root = new CSSNode();
|
|
|
|
CSSNode c0 = new CSSNode();
|
|
|
|
CSSNode c1 = new CSSNode();
|
|
|
|
CSSNode c1c0 = new CSSNode();
|
|
|
|
root.addChildAt(c0, 0);
|
|
|
|
root.addChildAt(c1, 1);
|
|
|
|
c1.addChildAt(c1c0, 0);
|
|
|
|
|
2015-03-23 17:49:47 +00:00
|
|
|
root.calculateLayout(layoutContext);
|
2015-01-19 12:37:30 +00:00
|
|
|
markLayoutAppliedForTree(root);
|
|
|
|
|
|
|
|
c0.setStyleHeight(100);
|
2015-03-23 17:49:47 +00:00
|
|
|
root.calculateLayout(layoutContext);
|
2015-01-19 12:37:30 +00:00
|
|
|
|
|
|
|
assertTrue(root.hasNewLayout());
|
|
|
|
assertTrue(c0.hasNewLayout());
|
|
|
|
assertTrue(c1.hasNewLayout());
|
|
|
|
assertFalse(c1c0.hasNewLayout());
|
2014-10-08 15:42:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void testInvalidatesOnNewMeasureFunction() {
|
2015-03-23 17:49:47 +00:00
|
|
|
CSSLayoutContext layoutContext = new CSSLayoutContext();
|
2014-10-08 15:42:51 -07:00
|
|
|
CSSNode root = new CSSNode();
|
|
|
|
CSSNode c0 = new CSSNode();
|
|
|
|
CSSNode c1 = new CSSNode();
|
|
|
|
CSSNode c0c0 = new CSSNode();
|
|
|
|
root.addChildAt(c0, 0);
|
|
|
|
root.addChildAt(c1, 1);
|
|
|
|
c0.addChildAt(c0c0, 0);
|
2014-09-18 15:15:21 -07:00
|
|
|
|
2015-03-23 17:49:47 +00:00
|
|
|
root.calculateLayout(layoutContext);
|
2014-10-08 15:42:51 -07:00
|
|
|
markLayoutAppliedForTree(root);
|
|
|
|
|
|
|
|
c1.setMeasureFunction(new CSSNode.MeasureFunction() {
|
|
|
|
@Override
|
2016-01-06 16:56:56 +00:00
|
|
|
public void measure(CSSNode node, float width, CSSMeasureMode widthMode, float height, CSSMeasureMode heightMode, MeasureOutput measureOutput) {
|
2014-10-08 15:42:51 -07:00
|
|
|
measureOutput.width = 100;
|
|
|
|
measureOutput.height = 20;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2015-03-23 17:49:47 +00:00
|
|
|
root.calculateLayout(layoutContext);
|
2014-10-08 15:42:51 -07:00
|
|
|
|
|
|
|
assertTrue(root.hasNewLayout());
|
|
|
|
assertTrue(c1.hasNewLayout());
|
|
|
|
|
2015-01-19 12:37:30 +00:00
|
|
|
assertTrue(c0.hasNewLayout());
|
2015-10-15 01:30:33 +03:00
|
|
|
assertTrue(c0c0.hasNewLayout());
|
2014-09-18 15:15:21 -07:00
|
|
|
}
|
|
|
|
}
|