mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
The doc-snippets were inconsistent (no spaces before title, small-caps, JS instead of JavaScript, etc.)
354 lines
14 KiB
TypeScript
354 lines
14 KiB
TypeScript
import TKUnit = require("../TKUnit");
|
||
import {Label} from "ui/label";
|
||
import layoutHelper = require("./layout-helper");
|
||
import testModule = require("../ui-test");
|
||
import commonTests = require("./common-layout-tests");
|
||
|
||
// <snippet module="ui/layouts/wrap-layout" title="WrapLayout">
|
||
// # WrapLayout
|
||
// Using a WrapLayout requires the WrapLayout module.
|
||
// ``` JavaScript
|
||
import wrapLayoutModule = require("ui/layouts/wrap-layout");
|
||
// ```
|
||
|
||
// Other frequently used modules when working with a WrapLayout include:
|
||
// ``` JavaScript
|
||
import enums = require("ui/enums");
|
||
// ```
|
||
// </snippet>
|
||
|
||
export class WrapLayoutTest extends testModule.UITest<wrapLayoutModule.WrapLayout> {
|
||
|
||
public create(): wrapLayoutModule.WrapLayout {
|
||
// <snippet module="ui/layouts/wrap-layout" title="WrapLayout">
|
||
// ## Creating a WrapLayout
|
||
// ``` JavaScript
|
||
var wrapLayout = new wrapLayoutModule.WrapLayout();
|
||
// ```
|
||
// </snippet>
|
||
|
||
// ### Declaring a WrapLayout.
|
||
//``` XML
|
||
// <Page>
|
||
// <WrapLayout>
|
||
// <Label text="This is Label 1" />
|
||
// <Label text="This is Label 2" />
|
||
// <Label text="This is Label 3" />
|
||
// <Label text="This is Label 4" />
|
||
// </WrapLayout>
|
||
// </Page>
|
||
//```
|
||
// </snippet>
|
||
|
||
wrapLayout.width = layoutHelper.dp(200);
|
||
wrapLayout.height = layoutHelper.dp(200);
|
||
|
||
for (let i = 0; i < 2; i++) {
|
||
let label = new Label();
|
||
label.text = "" + i;
|
||
|
||
label.width = layoutHelper.dp(100);
|
||
label.height = layoutHelper.dp(100);
|
||
wrapLayout.addChild(label);
|
||
}
|
||
|
||
return wrapLayout;
|
||
}
|
||
|
||
public testItemWidhtItemHeight() {
|
||
let wrap = this.testView;
|
||
wrap.removeChildren();
|
||
|
||
wrap.itemWidth = layoutHelper.dp(40);
|
||
wrap.itemHeight = layoutHelper.dp(40);
|
||
|
||
let lbl1 = new layoutHelper.MyButton();
|
||
lbl1.text = "1";
|
||
wrap.addChild(lbl1);
|
||
|
||
let lbl2 = new layoutHelper.MyButton();
|
||
lbl2.text = "2";
|
||
lbl2.width = layoutHelper.dp(80);
|
||
lbl2.height = layoutHelper.dp(80);
|
||
wrap.addChild(lbl2);
|
||
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
TKUnit.assertEqual(lbl1.measureWidth, 40, "lbl1.measureWidth");
|
||
TKUnit.assertEqual(lbl1.measureHeight, 40, "lbl1.measureHeight");
|
||
TKUnit.assertEqual(lbl1.layoutWidth, 40, "lbl1.layoutWidth");
|
||
TKUnit.assertEqual(lbl1.layoutHeight, 40, "lbl1.layoutHeight");
|
||
|
||
TKUnit.assertEqual(lbl2.measureWidth, 40, "lbl2.measureWidth");
|
||
TKUnit.assertEqual(lbl2.measureHeight, 40, "lbl2.measureHeight");
|
||
TKUnit.assertEqual(lbl2.layoutWidth, 40, "lbl2.layoutWidth");
|
||
TKUnit.assertEqual(lbl2.layoutHeight, 40, "lbl2.layoutHeight");
|
||
}
|
||
|
||
public testPaddingReduceAvailableSize() {
|
||
let wrap = this.testView;
|
||
wrap.removeChildren();
|
||
wrap.paddingLeft = wrap.paddingTop = wrap.paddingRight = wrap.paddingBottom = layoutHelper.dp(10);
|
||
|
||
let lbl1 = new layoutHelper.MyButton();
|
||
lbl1.text = "1";
|
||
lbl1.minWidth = layoutHelper.dp(200);
|
||
lbl1.minHeight = layoutHelper.dp(200);
|
||
wrap.addChild(lbl1);
|
||
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
TKUnit.assertEqual(lbl1.measureWidth, 180, "lbl1.measureWidth");
|
||
TKUnit.assertEqual(lbl1.measureHeight, 180, "lbl1.measureHeight");
|
||
TKUnit.assertEqual(lbl1.layoutWidth, 180, "lbl1.layoutWidth");
|
||
TKUnit.assertEqual(lbl1.layoutHeight, 180, "lbl1.layoutHeight");
|
||
}
|
||
|
||
public testHorizontalOrientation() {
|
||
|
||
this.testView.orientation = enums.Orientation.horizontal;
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
let actualValue = this.testView.getChildAt(0)._getCurrentLayoutBounds();
|
||
TKUnit.assertEqual(actualValue.left, 0, "ActualLeft on Index 0");
|
||
TKUnit.assertEqual(actualValue.top, 0, "ActualTop on Index 0");
|
||
TKUnit.assertEqual(actualValue.right, 100, "ActualRight on Index 0");
|
||
TKUnit.assertEqual(actualValue.bottom, 100, "ActualBottom on Index 0");
|
||
|
||
actualValue = this.testView.getChildAt(1)._getCurrentLayoutBounds();
|
||
TKUnit.assertEqual(actualValue.left, 100, "ActualLeft on Index 1");
|
||
TKUnit.assertEqual(actualValue.top, 0, "ActualTop on Index 1");
|
||
TKUnit.assertEqual(actualValue.right, 200, "ActualRight on Index 1");
|
||
TKUnit.assertEqual(actualValue.bottom, 100, "ActualBottom on Index 1");
|
||
}
|
||
|
||
public testVerticalOrientation() {
|
||
var wrapLayout = this.testView;
|
||
// <snippet module="ui/layouts/wrap-layout" title="WrapLayout">
|
||
// ## Setting the orientation of a wrap-layout.
|
||
// ``` JavaScript
|
||
wrapLayout.orientation = enums.Orientation.vertical;
|
||
// ```
|
||
// </snippet>
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
let actualValue = this.testView.getChildAt(0)._getCurrentLayoutBounds();
|
||
TKUnit.assertEqual(actualValue.left, 0, "ActualLeft on Index 0");
|
||
TKUnit.assertEqual(actualValue.top, 0, "ActualTop on Index 0");
|
||
TKUnit.assertEqual(actualValue.right, 100, "ActualRight on Index 0");
|
||
TKUnit.assertEqual(actualValue.bottom, 100, "ActualBottom on Index 0");
|
||
|
||
actualValue = this.testView.getChildAt(1)._getCurrentLayoutBounds();
|
||
TKUnit.assertEqual(actualValue.left, 0, "ActualLeft on Index 1");
|
||
TKUnit.assertEqual(actualValue.top, 100, "ActualTop on Index 1");
|
||
TKUnit.assertEqual(actualValue.right, 100, "ActualRight on Index 1");
|
||
TKUnit.assertEqual(actualValue.bottom, 200, "ActualBottom on Index 1");
|
||
}
|
||
|
||
public testChangeOrientation() {
|
||
this.testView.orientation = enums.Orientation.horizontal;
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
this.testView.orientation = enums.Orientation.vertical;
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
let actualValue = this.testView.getChildAt(0)._getCurrentLayoutBounds();
|
||
TKUnit.assertEqual(actualValue.left, 0, "ActualLeft on Index 0");
|
||
TKUnit.assertEqual(actualValue.top, 0, "ActualTop on Index 0");
|
||
TKUnit.assertEqual(actualValue.right, 100, "ActualRight on Index 0");
|
||
TKUnit.assertEqual(actualValue.bottom, 100, "ActualBottom on Index 0");
|
||
|
||
actualValue = this.testView.getChildAt(1)._getCurrentLayoutBounds();
|
||
TKUnit.assertEqual(actualValue.left, 0, "ActualLeft on Index 1");
|
||
TKUnit.assertEqual(actualValue.top, 100, "ActualTop on Index 1");
|
||
TKUnit.assertEqual(actualValue.right, 100, "ActualRight on Index 1");
|
||
TKUnit.assertEqual(actualValue.bottom, 200, "ActualBottom on Index 1");
|
||
}
|
||
|
||
public testItemWidth() {
|
||
this.testView.itemWidth = layoutHelper.dp(50);
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
let actualValue = this.testView.getChildAt(1)._getCurrentLayoutBounds().left;
|
||
TKUnit.assertEqual(actualValue, 50, "ActualLeft on Index 1");
|
||
}
|
||
|
||
public testChangeItemWidth() {
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
this.testView.itemWidth = layoutHelper.dp(50);
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
let actualValue = this.testView.getChildAt(1)._getCurrentLayoutBounds().left;
|
||
TKUnit.assertEqual(actualValue, 50, "ActualLeft on Index 1");
|
||
}
|
||
|
||
public testItemWidthLargerThanTheAvailableWidth() {
|
||
this.testView.itemWidth = layoutHelper.dp(1000);
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
TKUnit.assertEqual(this.testView.getChildAt(0)._getCurrentLayoutBounds().top, 0, "ActualTop on Index 0");
|
||
TKUnit.assertEqual(this.testView.getChildAt(1)._getCurrentLayoutBounds().top, 100, "ActualTop on Index 1");
|
||
}
|
||
|
||
public testItemHeight() {
|
||
this.testView.itemHeight = layoutHelper.dp(50);
|
||
this.testView.orientation = enums.Orientation.vertical;
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
let actualValue = this.testView.getChildAt(1)._getCurrentLayoutBounds().top;
|
||
TKUnit.assertEqual(actualValue, 50, "ActualTop on Index 1");
|
||
}
|
||
|
||
public testChangeItemHeight() {
|
||
this.testView.orientation = enums.Orientation.vertical;
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
this.testView.itemHeight = layoutHelper.dp(50);
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
let actualValue = this.testView.getChildAt(1)._getCurrentLayoutBounds().top;
|
||
TKUnit.assertEqual(actualValue, 50, "ActualTop on Index 1");
|
||
}
|
||
|
||
public testItemHeightLargerThanTheAvailableHeight() {
|
||
this.testView.orientation = enums.Orientation.vertical;
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
this.testView.itemHeight = layoutHelper.dp(1000);
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
TKUnit.assertEqual(this.testView.getChildAt(0)._getCurrentLayoutBounds().left, 0, "ActualLeft on Index 0");
|
||
TKUnit.assertEqual(this.testView.getChildAt(1)._getCurrentLayoutBounds().left, 100, "ActualLeft on Index 1");
|
||
}
|
||
|
||
public testPaddingLeftAndTop() {
|
||
this.testView.removeChildren();
|
||
this.testView.paddingLeft = layoutHelper.dp(20);
|
||
this.testView.paddingTop = layoutHelper.dp(30);
|
||
|
||
var btn = new layoutHelper.MyButton();
|
||
btn.width = layoutHelper.dp(50);
|
||
btn.height = layoutHelper.dp(50);
|
||
this.testView.addChild(btn);
|
||
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
layoutHelper.assertLayout(btn, 20, 30, 50, 50);
|
||
}
|
||
|
||
public testPaddingRight() {
|
||
this.testView.removeChildren();
|
||
this.testView.paddingRight = layoutHelper.dp(30);
|
||
this.testView.width = layoutHelper.dp(200);
|
||
|
||
var btn1 = new layoutHelper.MyButton();
|
||
this.testView.addChild(btn1);
|
||
btn1.width = layoutHelper.dp(100);
|
||
btn1.height = layoutHelper.dp(50);
|
||
|
||
var btn2 = new layoutHelper.MyButton();
|
||
btn2.width = layoutHelper.dp(80);
|
||
btn2.height = layoutHelper.dp(50);
|
||
this.testView.addChild(btn2);
|
||
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
layoutHelper.assertMeasure(btn1, 100, 50);
|
||
layoutHelper.assertMeasure(btn2, 80, 50);
|
||
|
||
// There should be no space left for the button on the first row,
|
||
// because for the padding (200 - 100 - 30) = 70 button wants 80
|
||
layoutHelper.assertLayout(btn1, 0, 0, 100, 50, "button1");
|
||
layoutHelper.assertLayout(btn2, 0, 50, 80, 50, "button2");
|
||
}
|
||
|
||
public testPaddingBottom() {
|
||
this.testView.removeChildren();
|
||
this.testView.paddingBottom = layoutHelper.dp(30);
|
||
this.testView.height = layoutHelper.dp(200);
|
||
this.testView.orientation = enums.Orientation.vertical;
|
||
|
||
var btn1 = new layoutHelper.MyButton();
|
||
this.testView.addChild(btn1);
|
||
btn1.width = layoutHelper.dp(50);
|
||
btn1.height = layoutHelper.dp(100);
|
||
|
||
var btn2 = new layoutHelper.MyButton();
|
||
btn2.width = layoutHelper.dp(50);
|
||
btn2.height = layoutHelper.dp(80);
|
||
this.testView.addChild(btn2);
|
||
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
layoutHelper.assertMeasure(btn1, 50, 100);
|
||
layoutHelper.assertMeasure(btn2, 50, 80);
|
||
|
||
// There should be no space left for the button on the first row,
|
||
// because of the padding (200 - 100 - 30) = 70 button wants 80
|
||
layoutHelper.assertLayout(btn1, 0, 0, 50, 100, "button1");
|
||
layoutHelper.assertLayout(btn2, 50, 0, 50, 80, "button2");
|
||
}
|
||
|
||
public test_percent_support() {
|
||
let layout = this.testView;
|
||
layout.removeChildren();
|
||
layout.width = layoutHelper.dp(200);
|
||
layout.height = layoutHelper.dp(200);
|
||
|
||
let btn = new layoutHelper.MyButton();
|
||
btn.horizontalAlignment = enums.HorizontalAlignment.left;
|
||
btn.verticalAlignment = enums.VerticalAlignment.top;
|
||
(<any>btn).width = "50%";
|
||
(<any>btn).height = "50%";
|
||
btn.margin = "10%";
|
||
btn.text = "1";
|
||
layout.addChild(btn);
|
||
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
TKUnit.assertEqual(btn.getMeasuredWidth(), 100, "Button MeasuredWidth incorrect");
|
||
TKUnit.assertEqual(btn.getMeasuredHeight(), 100, "Button MeasuredHeight incorrect");
|
||
|
||
let bounds = btn._getCurrentLayoutBounds();
|
||
TKUnit.assertEqual(bounds.left, 20, "TopLeft layout LEFT incorrect");
|
||
TKUnit.assertEqual(bounds.top, 20, "TopLeft layout TOP incorrect");
|
||
TKUnit.assertEqual(bounds.right, 120, "TopLeft layout RIGHT incorrect");
|
||
TKUnit.assertEqual(bounds.bottom, 120, "TopLeft layout BOTTOM incorrect");
|
||
|
||
btn.horizontalAlignment = enums.HorizontalAlignment.center;
|
||
btn.verticalAlignment = enums.VerticalAlignment.center;
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
bounds = btn._getCurrentLayoutBounds();
|
||
TKUnit.assertEqual(bounds.left, 20, "Center layout LEFT incorrect");
|
||
TKUnit.assertEqual(bounds.top, 20, "Center layout TOP incorrect");
|
||
TKUnit.assertEqual(bounds.right, 120, "Center layout RIGHT incorrect");
|
||
TKUnit.assertEqual(bounds.bottom, 120, "Center layout BOTTOM incorrect");
|
||
|
||
btn.horizontalAlignment = enums.HorizontalAlignment.stretch;
|
||
btn.verticalAlignment = enums.VerticalAlignment.stretch;
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
bounds = btn._getCurrentLayoutBounds();
|
||
TKUnit.assertEqual(bounds.left, 20, "Stretch layout LEFT incorrect");
|
||
TKUnit.assertEqual(bounds.top, 20, "Stretch layout TOP incorrect");
|
||
TKUnit.assertEqual(bounds.right, 120, "Stretch layout RIGHT incorrect");
|
||
TKUnit.assertEqual(bounds.bottom, 120, "Stretch layout BOTTOM incorrect");
|
||
|
||
btn.horizontalAlignment = enums.HorizontalAlignment.right;
|
||
btn.verticalAlignment = enums.VerticalAlignment.bottom;
|
||
this.waitUntilTestElementLayoutIsValid();
|
||
|
||
bounds = btn._getCurrentLayoutBounds();
|
||
TKUnit.assertEqual(bounds.left, 20, "BottomRight layout LEFT incorrect");
|
||
TKUnit.assertEqual(bounds.top, 20, "BottomRight layout TOP incorrect");
|
||
TKUnit.assertEqual(bounds.right, 120, "BottomRight layout RIGHT incorrect");
|
||
TKUnit.assertEqual(bounds.bottom, 120, "BottomRight layout BOTTOM incorrect");
|
||
}
|
||
|
||
public test_percent_support_nativeLayoutParams_are_correct() {
|
||
commonTests.percent_support_nativeLayoutParams_are_correct(this);
|
||
}
|
||
}
|
||
|
||
export function createTestCase(): WrapLayoutTest {
|
||
return new WrapLayoutTest();
|
||
}
|