mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
731 lines
23 KiB
TypeScript
731 lines
23 KiB
TypeScript
import * as TKUnit from "../../TKUnit";
|
|
import { View, eachDescendant, getViewById, InheritedProperty } from "ui/core/view";
|
|
import { topmost } from "ui/frame";
|
|
import { Page } from "ui/page";
|
|
import { Button } from "ui/button";
|
|
import { Label } from "ui/label";
|
|
import { Color } from "color";
|
|
import { Layout } from "ui/layouts/layout";
|
|
import { StackLayout } from "ui/layouts/stack-layout";
|
|
import { AbsoluteLayout } from "ui/layouts/absolute-layout";
|
|
import * as utils from "utils/utils";
|
|
import * as types from "utils/types";
|
|
import * as helper from "../../ui/helper";
|
|
import * as observable from "data/observable";
|
|
import * as bindable from "ui/core/bindable";
|
|
import * as definition from "./view-tests";
|
|
|
|
export const test_eachDescendant = function () {
|
|
const test = function (views: Array<View>) {
|
|
|
|
// traverse the visual tree and verify the hierarchy
|
|
let counter = 0;
|
|
const callback = function (child: View): boolean {
|
|
TKUnit.assert(child === views[counter]);
|
|
counter++;
|
|
return true;
|
|
};
|
|
|
|
eachDescendant(topmost(), callback);
|
|
// Descendants: page, actionBar, button
|
|
TKUnit.assertEqual(counter, 3, "descendants");
|
|
};
|
|
|
|
helper.do_PageTest_WithButton(test);
|
|
};
|
|
|
|
export const test_getViewById_Static = function () {
|
|
const test = function (views: Array<View>) {
|
|
views[1].id = "myLayout";
|
|
|
|
// traverse the visual tree and verify the hierarchy
|
|
const result = getViewById(topmost(), "myLayout");
|
|
|
|
TKUnit.assert(result === views[1]);
|
|
};
|
|
|
|
helper.do_PageTest_WithButton(test);
|
|
};
|
|
|
|
export const test_getViewById_Instance = function () {
|
|
const test = function (views: Array<View>) {
|
|
views[1].id = "myLayout";
|
|
|
|
// traverse the visual tree and verify the hierarchy
|
|
const result = topmost().getViewById<View>("myLayout");
|
|
|
|
TKUnit.assert(result === views[1]);
|
|
};
|
|
|
|
helper.do_PageTest_WithButton(test);
|
|
};
|
|
|
|
export const test_eachDescendant_Break_Iteration = function () {
|
|
const test = function (views: Array<View>) {
|
|
// traverse the visual tree and verify the hierarchy
|
|
let counter = 0;
|
|
const callback = function (child: View): boolean {
|
|
TKUnit.assert(child === views[0]);
|
|
counter++;
|
|
return false;
|
|
};
|
|
|
|
eachDescendant(topmost(), callback);
|
|
TKUnit.assert(counter === 1);
|
|
};
|
|
|
|
helper.do_PageTest_WithButton(test);
|
|
};
|
|
|
|
export const test_parent_IsValid_WhenAttached_ToVisualTree = function () {
|
|
const test = function (views: Array<View>) {
|
|
// views[0] is a Page instance, its parent should be the topmost frame
|
|
TKUnit.assert(types.isDefined(views[0].parent));
|
|
TKUnit.assert(views[0].parent === topmost());
|
|
|
|
// views[1] is a Button instance, its parent should be the Page (views[0])
|
|
TKUnit.assert(types.isDefined(views[1].parent));
|
|
TKUnit.assert(views[1].parent === views[0]);
|
|
};
|
|
|
|
helper.do_PageTest_WithButton(test);
|
|
};
|
|
|
|
export const test_parent_IsReset_WhenDetached_FromVisualTree = function () {
|
|
let cachedViews: Array<View>;
|
|
|
|
const test = function (views: Array<View>) {
|
|
cachedViews = views;
|
|
};
|
|
|
|
helper.do_PageTest_WithStackLayout_AndButton(test);
|
|
|
|
TKUnit.assert(types.isUndefined(cachedViews[1].parent));
|
|
TKUnit.assert(types.isDefined(cachedViews[2].parent));
|
|
TKUnit.assert(cachedViews[2].parent === cachedViews[1]);
|
|
};
|
|
|
|
export const test_domId_IsUnique = function () {
|
|
const btn = new Button();
|
|
const topframe = topmost();
|
|
TKUnit.assert(btn._domId !== topframe._domId);
|
|
TKUnit.assert(btn._domId !== topframe.currentPage._domId);
|
|
};
|
|
|
|
export const test_Id_WillNotCrash_WhenSetToNumber = function () {
|
|
const btn = new Button();
|
|
btn.id = "1";
|
|
TKUnit.assert(btn.id === "1");
|
|
};
|
|
|
|
export const test_event_LoadedUnloaded_IsRaised = function () {
|
|
const test = function (views: Array<View>) {
|
|
let i;
|
|
for (i = 0; i < views.length; i++) {
|
|
TKUnit.assert(views[i].isLoaded);
|
|
}
|
|
|
|
// change the page's content and verify the proper events
|
|
let layoutUnloaded = false;
|
|
let buttonUnloaded = false;
|
|
|
|
views[1].on(View.unloadedEvent, (data) => {
|
|
layoutUnloaded = true;
|
|
});
|
|
|
|
views[2].on(View.unloadedEvent, (data) => {
|
|
buttonUnloaded = true;
|
|
});
|
|
|
|
const newButton = new Button();
|
|
let buttonLoaded = false;
|
|
|
|
newButton.on(View.loadedEvent, (data) => {
|
|
buttonLoaded = true;
|
|
});
|
|
|
|
(<Page>views[0]).content = newButton;
|
|
TKUnit.assert(layoutUnloaded);
|
|
TKUnit.assert(buttonUnloaded);
|
|
TKUnit.assert(buttonLoaded);
|
|
};
|
|
|
|
helper.do_PageTest_WithStackLayout_AndButton(test);
|
|
};
|
|
|
|
export function test_bindingContext_IsInherited() {
|
|
const context = {};
|
|
const test = function (views: Array<View>) {
|
|
views[0].bindingContext = context;
|
|
for (let i = 0; i < views.length; i++) {
|
|
TKUnit.assertEqual(views[i].bindingContext, context);
|
|
}
|
|
};
|
|
|
|
helper.do_PageTest_WithStackLayout_AndButton(test);
|
|
topmost().bindingContext = undefined;
|
|
}
|
|
|
|
export const test_isAddedToNativeVisualTree_IsUpdated = function () {
|
|
const test = function (views: Array<View>) {
|
|
|
|
for (let i = 0; i < views.length; i++) {
|
|
TKUnit.assert(views[i]._isAddedToNativeVisualTree, `View ${views[i]} not initially added`);
|
|
}
|
|
|
|
const newButton = new Button();
|
|
TKUnit.assert(!newButton._isAddedToNativeVisualTree, "Button is not added initially");
|
|
|
|
views[1]._addView(newButton);
|
|
TKUnit.assert(newButton._isAddedToNativeVisualTree, "Button is not added after _addView");
|
|
views[1]._removeView(newButton);
|
|
TKUnit.assert(!newButton._isAddedToNativeVisualTree, "Button is removed after _removeView");
|
|
};
|
|
|
|
helper.do_PageTest_WithStackLayout_AndButton(test);
|
|
};
|
|
|
|
export const test_addView_WillThrow_IfView_IsAlreadyAdded = function () {
|
|
const test = function (views: Array<View>) {
|
|
const newButton = new Button();
|
|
views[1]._addView(newButton);
|
|
|
|
let thrown = false;
|
|
try {
|
|
views[1]._addView(newButton);
|
|
} catch (e) {
|
|
thrown = true;
|
|
TKUnit.assert(e.message.indexOf("View already has a parent.") >= 0);
|
|
}
|
|
|
|
TKUnit.assert(thrown);
|
|
};
|
|
|
|
helper.do_PageTest_WithStackLayout_AndButton(test);
|
|
};
|
|
|
|
export const test_addToNativeVisualTree_WillThrow_IfView_IsAlreadyAdded = function () {
|
|
const test = function (views: [Page, StackLayout, View, View]) {
|
|
const newButton = new Button();
|
|
views[1]._addView(newButton);
|
|
|
|
let thrown = false;
|
|
try {
|
|
views[1]._addViewToNativeVisualTree(newButton);
|
|
} catch (e) {
|
|
thrown = true;
|
|
TKUnit.assert(e.message === "Child already added to the native visual tree.");
|
|
}
|
|
|
|
TKUnit.assert(thrown);
|
|
};
|
|
|
|
helper.do_PageTest_WithStackLayout_AndButton(test);
|
|
};
|
|
|
|
export const test_InheritableStyleProperties_AreInherited = function () {
|
|
helper.do_PageTest_WithStackLayout_AndButton((views) => {
|
|
const redColor = new Color("red");
|
|
views[0].style.color = redColor;
|
|
|
|
const newButton = new Button();
|
|
views[1].addChild(newButton);
|
|
|
|
TKUnit.assertEqual(newButton.style.color, redColor, "Color should be inherited");
|
|
});
|
|
};
|
|
|
|
export class TestButton extends Button {
|
|
|
|
}
|
|
|
|
export const test_InheritableStylePropertiesWhenUsedWithExtendedClass_AreInherited = function () {
|
|
let page = topmost().currentPage;
|
|
let redColor = new Color("red");
|
|
page.style.color = redColor;
|
|
|
|
let newButton = new TestButton();
|
|
page.content = newButton;
|
|
|
|
TKUnit.assertEqual(newButton.style.color, redColor);
|
|
};
|
|
|
|
class TestView extends Layout {
|
|
|
|
constructor(public name: string) {
|
|
super();
|
|
}
|
|
|
|
public inheritanceTest: number;
|
|
public booleanInheritanceTest: boolean;
|
|
public dummy: number;
|
|
|
|
public toString() {
|
|
return super.toString() + "." + this.name;
|
|
}
|
|
|
|
public onMeasure(widthMeasureSpec: number, heightMeasureSpec: number): void {
|
|
this.setMeasuredDimension(100, 100);
|
|
}
|
|
}
|
|
|
|
const inheritanceTestDefaultValue = 42;
|
|
const inheritanceTestProperty = new InheritedProperty<TestView, number>({ name: "inheritanceTest", defaultValue: inheritanceTestDefaultValue });
|
|
inheritanceTestProperty.register(TestView);
|
|
|
|
const booleanInheritanceTestDefaultValue = true;
|
|
const booleanInheritanceTestProperty = new InheritedProperty<TestView, boolean>({ name: "booleanInheritanceTest", defaultValue: booleanInheritanceTestDefaultValue });
|
|
booleanInheritanceTestProperty.register(TestView);
|
|
|
|
const dummyProperty = new InheritedProperty<TestView, number>({ name: "dummy", defaultValue: 0 });
|
|
dummyProperty.register(TestView);
|
|
|
|
export const test_InheritableProperties_getValuesFromParent = function () {
|
|
const testValue = 35;
|
|
const test = function (views: Array<View>) {
|
|
const bottomView = <TestView>views[3];
|
|
|
|
TKUnit.assert(bottomView.inheritanceTest === testValue, "Expected: " + testValue + " Actual: " + bottomView.inheritanceTest);
|
|
};
|
|
|
|
const firstView = new TestView("firstView");
|
|
firstView.inheritanceTest = testValue;
|
|
const secondView = new TestView("secondView");
|
|
const thirdView = new TestView("thirdView");
|
|
|
|
firstView.addChild(secondView);
|
|
secondView.addChild(thirdView);
|
|
|
|
helper.do_PageTest(test, firstView, secondView, thirdView);
|
|
};
|
|
|
|
export const test_BooleanInheritableProperties_getValuesFromParent = function () {
|
|
const testValue = false;
|
|
const test = function (views: Array<View>) {
|
|
const bottomView = <TestView>views[3];
|
|
|
|
TKUnit.assert(bottomView.booleanInheritanceTest === testValue, "Expected: " + testValue + " Actual: " + bottomView.booleanInheritanceTest);
|
|
};
|
|
|
|
const firstView = new TestView("firstView");
|
|
firstView.booleanInheritanceTest = testValue;
|
|
const secondView = new TestView("secondView");
|
|
const thirdView = new TestView("thirdView");
|
|
|
|
firstView.addChild(secondView);
|
|
secondView.addChild(thirdView);
|
|
|
|
helper.do_PageTest(test, firstView, secondView, thirdView);
|
|
};
|
|
|
|
export const test_InheritableProperties_resetValuesOnRemoveFromVisualTree = function () {
|
|
const testValue = 35;
|
|
const test = function (views: Array<View>) {
|
|
const bottomView = <TestView>views[3];
|
|
|
|
TKUnit.assert(bottomView.inheritanceTest === testValue, "Expected: " + testValue + " Actual: " + bottomView.inheritanceTest);
|
|
|
|
(<TestView>views[2]).removeChild(bottomView);
|
|
|
|
TKUnit.assert(bottomView.inheritanceTest === inheritanceTestDefaultValue, "Expected: " + inheritanceTestDefaultValue + " Actual: " + bottomView.inheritanceTest);
|
|
};
|
|
|
|
const firstView = new TestView("firstView");
|
|
firstView.inheritanceTest = testValue;
|
|
const secondView = new TestView("secondView");
|
|
const thirdView = new TestView("thirdView");
|
|
|
|
firstView.addChild(secondView);
|
|
secondView.addChild(thirdView);
|
|
|
|
helper.do_PageTest(test, firstView, secondView, thirdView);
|
|
};
|
|
|
|
export const test_InheritableProperties_DefaultValue = function () {
|
|
const test = function (views: Array<View>) {
|
|
const bottomView = <TestView>views[3];
|
|
|
|
TKUnit.assert(bottomView.inheritanceTest === inheritanceTestDefaultValue, "Expected: " + inheritanceTestDefaultValue + " Actual: " + bottomView.inheritanceTest);
|
|
};
|
|
|
|
const firstView = new TestView("firstView");
|
|
const secondView = new TestView("secondView");
|
|
const thirdView = new TestView("thirdView");
|
|
|
|
secondView.addChild(thirdView);
|
|
firstView.addChild(secondView);
|
|
|
|
helper.do_PageTest(test, firstView, secondView, thirdView);
|
|
};
|
|
|
|
export const test_InheritableProperties_ChangeNotification = function () {
|
|
const testValue = 35;
|
|
const test = function (views: Array<View>) {
|
|
const topView = <TestView>views[1];
|
|
topView.inheritanceTest = testValue;
|
|
|
|
const bottomView = <TestView>views[3];
|
|
bottomView.bind({ targetProperty: "dummy", sourceProperty: "inheritanceTest" }, bottomView);
|
|
|
|
TKUnit.assert(bottomView.dummy === testValue, "Expected: " + testValue + " Actual: " + bottomView.dummy);
|
|
};
|
|
|
|
const firstView = new TestView("firstView");
|
|
const secondView = new TestView("secondView");
|
|
const thirdView = new TestView("thirdView");
|
|
|
|
secondView.addChild(thirdView);
|
|
firstView.addChild(secondView);
|
|
|
|
helper.do_PageTest(test, firstView, secondView, thirdView);
|
|
};
|
|
|
|
function property_binding_test(propName: string, firstValue: any, secondValue: any, view?: View) {
|
|
let actualResult;
|
|
const model = new observable.Observable();
|
|
model.set(propName, firstValue);
|
|
|
|
const options: bindable.BindingOptions = {
|
|
sourceProperty: propName,
|
|
targetProperty: propName
|
|
};
|
|
|
|
if (!view) {
|
|
view = new TestView("view");
|
|
}
|
|
|
|
view.bind(options, model);
|
|
|
|
actualResult = view.get(propName);
|
|
TKUnit.assertEqual(actualResult, firstValue);
|
|
|
|
model.set(propName, secondValue);
|
|
actualResult = view.get(propName);
|
|
TKUnit.assertEqual(actualResult, secondValue);
|
|
}
|
|
|
|
function property_binding_style_test(propName: string, firstValue: any, secondValue: any, view?: View) {
|
|
let actualResult;
|
|
const model = new observable.Observable();
|
|
model.set(propName, firstValue);
|
|
|
|
const options: bindable.BindingOptions = {
|
|
sourceProperty: propName,
|
|
targetProperty: "style." + propName
|
|
};
|
|
|
|
if (!view) {
|
|
view = new TestView("view");
|
|
}
|
|
|
|
view.bind(options, model);
|
|
|
|
actualResult = view.style.get(propName);
|
|
TKUnit.assertEqual(actualResult, firstValue);
|
|
|
|
model.set(propName, secondValue);
|
|
actualResult = view.style.get(propName);
|
|
TKUnit.assertEqual(actualResult, secondValue);
|
|
}
|
|
|
|
export const test_binding_width = function () {
|
|
property_binding_test("width", 42, 43);
|
|
};
|
|
|
|
export const test_binding_height = function () {
|
|
property_binding_test("height", 42, 43);
|
|
};
|
|
|
|
export const test_binding_minWidth = function () {
|
|
property_binding_test("minWidth", 42, 43);
|
|
};
|
|
|
|
export const test_binding_minHeight = function () {
|
|
property_binding_test("minHeight", 42, 43);
|
|
};
|
|
|
|
export const test_binding_horizontalAlignment = function () {
|
|
property_binding_test("horizontalAlignment", "left", "right");
|
|
};
|
|
|
|
export const test_binding_verticalAlignment = function () {
|
|
property_binding_test("verticalAlignment", "top", "bottom");
|
|
};
|
|
|
|
export const test_binding_marginLeft = function () {
|
|
property_binding_test("marginLeft", 42, 43);
|
|
};
|
|
|
|
export const test_binding_marginTop = function () {
|
|
property_binding_test("marginTop", 42, 43);
|
|
};
|
|
|
|
export const test_binding_marginRight = function () {
|
|
property_binding_test("marginRight", 42, 43);
|
|
};
|
|
|
|
export const test_binding_marginBottom = function () {
|
|
property_binding_test("marginBottom", 42, 43);
|
|
};
|
|
|
|
export const test_binding_visibility = function () {
|
|
property_binding_test("visibility", "collapse", "visible");
|
|
};
|
|
|
|
export const test_binding_isEnabled = function () {
|
|
property_binding_test("isEnabled", false, true);
|
|
};
|
|
|
|
export const test_binding_isUserInteractionEnabled = function () {
|
|
property_binding_test("isUserInteractionEnabled", false, true);
|
|
};
|
|
|
|
export const test_binding_id = function () {
|
|
property_binding_test("id", "id1", "id2");
|
|
};
|
|
|
|
export const test_binding_cssClass = function () {
|
|
property_binding_test("cssClass", "class1", "class2");
|
|
};
|
|
|
|
export const test_binding_className = function () {
|
|
property_binding_test("className", "class1", "class2");
|
|
};
|
|
|
|
export const test_binding_style_color = function () {
|
|
property_binding_style_test("color", new Color("#FF0000"), new Color("#00FF00"));
|
|
};
|
|
|
|
export const test_binding_style_backgroundColor = function () {
|
|
property_binding_style_test("backgroundColor", new Color("#FF0000"), new Color("#00FF00"));
|
|
};
|
|
|
|
export const test_binding_style_fontSize = function () {
|
|
property_binding_style_test("fontSize", 5, 10);
|
|
};
|
|
|
|
export const test_binding_style_textAlignment = function () {
|
|
property_binding_style_test("textAlignment", "right", "center");
|
|
};
|
|
|
|
export const test_binding_style_width = function () {
|
|
property_binding_style_test("width", 42, 43);
|
|
};
|
|
|
|
export const test_binding_style_height = function () {
|
|
property_binding_style_test("height", 42, 43);
|
|
};
|
|
|
|
export const test_binding_style_minWidth = function () {
|
|
property_binding_style_test("minWidth", 42, 43);
|
|
};
|
|
|
|
export const test_binding_style_minHeight = function () {
|
|
property_binding_style_test("minHeight", 42, 43);
|
|
};
|
|
|
|
export const test_binding_style_margin = function () {
|
|
property_binding_style_test("margin", "1dip 2dip 3dip 4dip", "2dip 3dip 2dip 3dip");
|
|
};
|
|
|
|
export const test_binding_style_marginLeft = function () {
|
|
property_binding_style_test("marginLeft", 42, 43);
|
|
};
|
|
|
|
export const test_binding_style_marginTop = function () {
|
|
property_binding_style_test("marginTop", 42, 43);
|
|
};
|
|
|
|
export const test_binding_style_marginRight = function () {
|
|
property_binding_style_test("marginRight", 42, 43);
|
|
};
|
|
|
|
export const test_binding_style_marginBottom = function () {
|
|
property_binding_style_test("marginBottom", 42, 43);
|
|
};
|
|
|
|
export const test_binding_style_padding = function () {
|
|
property_binding_style_test("padding", "1dip 2dip 3dip 4dip", "2dip 3dip 2dip 3dip");
|
|
};
|
|
|
|
export const test_binding_style_paddingLeft = function () {
|
|
property_binding_style_test("paddingLeft", 42, 43);
|
|
};
|
|
|
|
export const test_binding_style_paddingTop = function () {
|
|
property_binding_style_test("paddingTop", 42, 43);
|
|
};
|
|
|
|
export const test_binding_style_paddingRight = function () {
|
|
property_binding_style_test("paddingRight", 42, 43);
|
|
};
|
|
|
|
export const test_binding_style_paddingBottom = function () {
|
|
property_binding_style_test("paddingBottom", 42, 43);
|
|
};
|
|
|
|
export const test_binding_style_horizontalAlignment = function () {
|
|
property_binding_style_test("horizontalAlignment", "left", "right");
|
|
};
|
|
|
|
export const test_binding_style_verticalAlignment = function () {
|
|
property_binding_style_test("verticalAlignment", "top", "bottom");
|
|
};
|
|
|
|
export const test_binding_style_visibility = function () {
|
|
property_binding_style_test("visibility", "collapse", "visible");
|
|
};
|
|
|
|
export const test_binding_style_opacity = function () {
|
|
property_binding_style_test("opacity", 0.5, 0.6);
|
|
};
|
|
|
|
function _createLabelWithBorder(): View {
|
|
const lbl = new Label();
|
|
lbl.borderRadius = 10;
|
|
lbl.borderWidth = 2;
|
|
lbl.borderColor = new Color("#FF0000");
|
|
lbl.backgroundColor = new Color("#FFFF00");
|
|
|
|
return lbl;
|
|
}
|
|
|
|
export const testIsVisible = function () {
|
|
const lbl = new Label();
|
|
|
|
helper.buildUIAndRunTest(lbl, function (views: Array<View>) {
|
|
TKUnit.assertEqual(lbl.visibility, "visible");
|
|
TKUnit.assertEqual(lbl.isCollapsed, false);
|
|
|
|
lbl.visibility = "collapse";
|
|
TKUnit.assertEqual(lbl.visibility, "collapse");
|
|
TKUnit.assertEqual(lbl.isCollapsed, true);
|
|
});
|
|
};
|
|
|
|
export const testSetInlineStyle = function () {
|
|
const lbl = new Label();
|
|
|
|
const expectedColor = "#ff0000";
|
|
const expectedBackgroundColor = "#ff0000";
|
|
|
|
lbl.setInlineStyle(`color: ${expectedColor};background-color: ${expectedBackgroundColor};`);
|
|
|
|
helper.buildUIAndRunTest(lbl, function (views: Array<View>) {
|
|
TKUnit.assertEqual(lbl.color.hex, expectedColor);
|
|
TKUnit.assertEqual(lbl.backgroundColor.hex, expectedBackgroundColor);
|
|
});
|
|
};
|
|
|
|
export const testBorderWidth = function () {
|
|
helper.buildUIAndRunTest(_createLabelWithBorder(), function (views: Array<View>) {
|
|
const lbl = views[0];
|
|
const expectedValue = <number>lbl.borderWidth * utils.layout.getDisplayDensity();
|
|
const actualValue = definition.getUniformNativeBorderWidth(lbl);
|
|
TKUnit.assertAreClose(actualValue, expectedValue, 0.01, "borderWidth");
|
|
});
|
|
};
|
|
|
|
export const testCornerRadius = function () {
|
|
helper.buildUIAndRunTest(_createLabelWithBorder(), function (views: Array<View>) {
|
|
const lbl = views[0];
|
|
const expectedValue = <number>lbl.borderRadius * utils.layout.getDisplayDensity();
|
|
const actualValue = definition.getUniformNativeCornerRadius(lbl);
|
|
TKUnit.assertAreClose(actualValue, expectedValue, 0.01, "borderRadius");
|
|
});
|
|
};
|
|
|
|
export const testBorderColor = function () {
|
|
helper.buildUIAndRunTest(_createLabelWithBorder(), function (views: Array<View>) {
|
|
const lbl = views[0];
|
|
TKUnit.assertEqual(definition.checkUniformNativeBorderColor(lbl), true, "BorderColor not applied correctly!");
|
|
});
|
|
};
|
|
|
|
export const testBackgroundColor = function () {
|
|
helper.buildUIAndRunTest(_createLabelWithBorder(), function (views: Array<View>) {
|
|
const lbl = views[0];
|
|
TKUnit.assertEqual(definition.checkNativeBackgroundColor(lbl), true, "BackgroundColor not applied correctly!");
|
|
});
|
|
};
|
|
|
|
export const testBackgroundImage = function () {
|
|
const lbl = _createLabelWithBorder();
|
|
lbl.className = "myClass";
|
|
helper.buildUIAndRunTest(lbl, function (views: Array<View>) {
|
|
const page = <Page>views[1];
|
|
page.css = ".myClass { background-image: url('~/logo.png') }";
|
|
TKUnit.assertEqual(definition.checkNativeBackgroundImage(lbl), true, "Style background-image not loaded correctly.");
|
|
});
|
|
};
|
|
|
|
export function test_automation_text_default_value() {
|
|
let view = new Button();
|
|
TKUnit.assertTrue(view.automationText === undefined, "AutomationText default value should be UNDEFINED.");
|
|
}
|
|
|
|
export const test_getLocationInWindow_IsUndefinedWhenNotInTheVisualTree = function () {
|
|
const label = new Label();
|
|
TKUnit.assertNull(label.getLocationInWindow());
|
|
};
|
|
|
|
export const test_getLocationOnScreen_IsUndefinedWhenNotInTheVisualTree = function () {
|
|
const label = new Label();
|
|
TKUnit.assertNull(label.getLocationOnScreen());
|
|
};
|
|
|
|
const delta = 1;
|
|
export const test_getLocationRelativeToOtherView = function () {
|
|
const a1 = new AbsoluteLayout();
|
|
a1.width = 200;
|
|
a1.height = 200;
|
|
a1.backgroundColor = new Color("red");
|
|
|
|
const a2 = new AbsoluteLayout();
|
|
a2.width = 100;
|
|
a2.height = 100;
|
|
AbsoluteLayout.setLeft(a2, 10);
|
|
AbsoluteLayout.setTop(a2, 10);
|
|
a2.backgroundColor = new Color("green");
|
|
|
|
const label = new Label();
|
|
label.text = "label";
|
|
label.id = "label";
|
|
label.width = 70;
|
|
label.height = 30;
|
|
AbsoluteLayout.setLeft(label, 10);
|
|
AbsoluteLayout.setTop(label, 10);
|
|
a2.backgroundColor = new Color("yellow");
|
|
|
|
a2.addChild(label);
|
|
a1.addChild(a2);
|
|
|
|
helper.buildUIAndRunTest(a1, function (views: Array<View>) {
|
|
TKUnit.waitUntilReady(() => a1.isLayoutValid);
|
|
|
|
const labelInA2 = label.getLocationRelativeTo(a2);
|
|
const labelInA1 = label.getLocationRelativeTo(a1);
|
|
const a2InA1 = a2.getLocationRelativeTo(a1);
|
|
|
|
TKUnit.assertAreClose(labelInA2.x, 10, delta, "labelInA2.x");
|
|
TKUnit.assertAreClose(labelInA2.y, 10, delta, "labelInA2.y");
|
|
|
|
TKUnit.assertAreClose(labelInA1.x, 20, delta, "labelInA1.x");
|
|
TKUnit.assertAreClose(labelInA1.y, 20, delta, "labelInA1.y");
|
|
|
|
TKUnit.assertAreClose(a2InA1.x, 10, delta, "a2InA1.x");
|
|
TKUnit.assertAreClose(a2InA1.y, 10, delta, "a2InA1.y");
|
|
});
|
|
};
|
|
|
|
export const test_getActualSize = function () {
|
|
const label = new Label();
|
|
label.width = 100;
|
|
label.height = 200;
|
|
helper.buildUIAndRunTest(label, function (views: Array<View>) {
|
|
TKUnit.waitUntilReady(() => label.isLayoutValid);
|
|
const actualSize = label.getActualSize();
|
|
TKUnit.assertAreClose(actualSize.width, 100, delta, "actualSize.width");
|
|
TKUnit.assertAreClose(actualSize.height, 200, delta, "actualSize.height");
|
|
});
|
|
}; |