blob: 2ee1db4177a623f525ee4b296d64ac7f9904ab79 [file] [log] [blame]
/****************************************************************************
**
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the test suite of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** BSD License Usage
** Alternatively, you may use this file under the terms of the BSD license
** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of The Qt Company Ltd nor the names of its
** contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/
import QtQuick 2.12
import QtTest 1.0
import QtQuick.Controls 2.12
import QtQuick.Layouts 1.12
TestCase {
id: testCase
width: 400
height: 400
visible: true
when: windowShown
name: "TextField"
Component {
id: textField
TextField { }
}
Component {
id: rectangle
Rectangle { }
}
Component {
id: signalSpy
SignalSpy { }
}
function test_creation() {
var control = createTemporaryObject(textField, testCase)
verify(control)
}
function test_implicitSize() {
var control = createTemporaryObject(textField, testCase)
verify(control)
var implicitWidthSpy = signalSpy.createObject(control, { target: control, signalName: "implicitWidthChanged"} )
verify(implicitWidthSpy.valid)
var implicitHeightSpy = signalSpy.createObject(control, { target: control, signalName: "implicitHeightChanged"} )
verify(implicitHeightSpy.valid)
var implicitBackgroundWidthSpy = createTemporaryObject(signalSpy, testCase, {target: control, signalName: "implicitBackgroundWidthChanged"})
verify(implicitBackgroundWidthSpy.valid)
var implicitBackgroundHeightSpy = createTemporaryObject(signalSpy, testCase, {target: control, signalName: "implicitBackgroundHeightChanged"})
verify(implicitBackgroundHeightSpy.valid)
var implicitWidthChanges = 0
var implicitHeightChanges = 0
var implicitBackgroundWidthChanges = 0
var implicitBackgroundHeightChanges = 0
verify(control.implicitWidth >= control.leftPadding + control.rightPadding)
verify(control.implicitHeight >= control.contentHeight + control.topPadding + control.bottomPadding)
compare(control.implicitBackgroundWidth, control.background.implicitWidth)
compare(control.implicitBackgroundHeight, control.background.implicitHeight)
control.background = rectangle.createObject(control, {implicitWidth: 400, implicitHeight: 200})
compare(control.implicitWidth, 400)
compare(control.implicitHeight, 200)
compare(control.implicitBackgroundWidth, 400)
compare(control.implicitBackgroundHeight, 200)
compare(implicitWidthSpy.count, ++implicitWidthChanges)
compare(implicitHeightSpy.count, ++implicitHeightChanges)
compare(implicitBackgroundWidthSpy.count, ++implicitBackgroundWidthChanges)
compare(implicitBackgroundHeightSpy.count, ++implicitBackgroundHeightChanges)
control.background = null
compare(control.implicitWidth, control.leftPadding + control.rightPadding)
compare(control.implicitHeight, control.contentHeight + control.topPadding + control.bottomPadding)
compare(control.implicitBackgroundWidth, 0)
compare(control.implicitBackgroundHeight, 0)
compare(implicitWidthSpy.count, ++implicitWidthChanges)
compare(implicitHeightSpy.count, ++implicitHeightChanges)
compare(implicitBackgroundWidthSpy.count, ++implicitBackgroundWidthChanges)
compare(implicitBackgroundHeightSpy.count, ++implicitBackgroundHeightChanges)
control.text = "TextField"
compare(control.implicitWidth, control.contentWidth + control.leftPadding + control.rightPadding)
compare(control.implicitHeight, control.contentHeight + control.topPadding + control.bottomPadding)
compare(control.implicitBackgroundWidth, 0)
compare(control.implicitBackgroundHeight, 0)
compare(implicitWidthSpy.count, ++implicitWidthChanges)
compare(implicitHeightSpy.count, implicitHeightChanges)
compare(implicitBackgroundWidthSpy.count, implicitBackgroundWidthChanges)
compare(implicitBackgroundHeightSpy.count, implicitBackgroundHeightChanges)
control.placeholderText = "..."
compare(control.implicitWidth, control.contentWidth + control.leftPadding + control.rightPadding)
compare(control.implicitHeight, control.contentHeight + control.topPadding + control.bottomPadding)
compare(control.implicitBackgroundWidth, 0)
compare(control.implicitBackgroundHeight, 0)
compare(implicitWidthSpy.count, implicitWidthChanges)
compare(implicitHeightSpy.count, implicitHeightChanges)
compare(implicitBackgroundWidthSpy.count, implicitBackgroundWidthChanges)
compare(implicitBackgroundHeightSpy.count, implicitBackgroundHeightChanges)
}
function test_alignment_data() {
return [
{ tag: "empty", text: "", placeholderText: "", textAlignment: undefined, placeholderAlignment: Qt.AlignLeft },
{ tag: "empty,left", text: "", placeholderText: "", textAlignment: Qt.AlignLeft, placeholderAlignment: Qt.AlignLeft },
{ tag: "empty,center", text: "", placeholderText: "", textAlignment: Qt.AlignHCenter, placeholderAlignment: Qt.AlignHCenter },
{ tag: "empty,right", text: "", placeholderText: "", textAlignment: Qt.AlignRight, placeholderAlignment: Qt.AlignRight },
{ tag: "empty,ltr", text: "", placeholderText: "Search", textAlignment: undefined, placeholderAlignment: Qt.AlignLeft },
{ tag: "empty,ltr,left", text: "", placeholderText: "Search", textAlignment: Qt.AlignLeft, placeholderAlignment: Qt.AlignLeft },
{ tag: "empty,ltr,center", text: "", placeholderText: "Search", textAlignment: Qt.AlignHCenter, placeholderAlignment: Qt.AlignHCenter },
{ tag: "empty,ltr,right", text: "", placeholderText: "Search", textAlignment: Qt.AlignRight, placeholderAlignment: Qt.AlignRight },
{ tag: "empty,rtl", text: "", placeholderText: "بحث", textAlignment: undefined, placeholderAlignment: Qt.AlignRight },
{ tag: "empty,rtl,left", text: "", placeholderText: "بحث", textAlignment: Qt.AlignLeft, placeholderAlignment: Qt.AlignLeft },
{ tag: "empty,rtl,center", text: "", placeholderText: "بحث", textAlignment: Qt.AlignHCenter, placeholderAlignment: Qt.AlignHCenter },
{ tag: "empty,rtl,right", text: "", placeholderText: "بحث", textAlignment: Qt.AlignRight, placeholderAlignment: Qt.AlignRight },
{ tag: "ltr,empty", text: "Text", placeholderText: "", textAlignment: undefined, placeholderAlignment: Qt.AlignLeft },
{ tag: "ltr,empty,left", text: "Text", placeholderText: "", textAlignment: Qt.AlignLeft, placeholderAlignment: Qt.AlignLeft },
{ tag: "ltr,empty,center", text: "Text", placeholderText: "", textAlignment: Qt.AlignHCenter, placeholderAlignment: Qt.AlignHCenter },
{ tag: "ltr,empty,right", text: "Text", placeholderText: "", textAlignment: Qt.AlignRight, placeholderAlignment: Qt.AlignRight },
{ tag: "ltr,ltr", text: "Text", placeholderText: "Search", textAlignment: undefined, placeholderAlignment: Qt.AlignLeft },
{ tag: "ltr,ltr,left", text: "Text", placeholderText: "Search", textAlignment: Qt.AlignLeft, placeholderAlignment: Qt.AlignLeft },
{ tag: "ltr,ltr,center", text: "Text", placeholderText: "Search", textAlignment: Qt.AlignHCenter, placeholderAlignment: Qt.AlignHCenter },
{ tag: "ltr,ltr,right", text: "Text", placeholderText: "Search", textAlignment: Qt.AlignRight, placeholderAlignment: Qt.AlignRight },
{ tag: "ltr,rtl", text: "Text", placeholderText: "بحث", textAlignment: undefined, placeholderAlignment: Qt.AlignRight },
{ tag: "ltr,rtl,left", text: "Text", placeholderText: "بحث", textAlignment: Qt.AlignLeft, placeholderAlignment: Qt.AlignLeft },
{ tag: "ltr,rtl,center", text: "Text", placeholderText: "بحث", textAlignment: Qt.AlignHCenter, placeholderAlignment: Qt.AlignHCenter },
{ tag: "ltr,rtl,right", text: "Text", placeholderText: "بحث", textAlignment: Qt.AlignRight, placeholderAlignment: Qt.AlignRight },
{ tag: "rtl,empty", text: "نص", placeholderText: "", textAlignment: undefined, placeholderAlignment: Qt.AlignLeft },
{ tag: "rtl,empty,left", text: "نص", placeholderText: "", textAlignment: Qt.AlignLeft, placeholderAlignment: Qt.AlignLeft },
{ tag: "rtl,empty,center", text: "نص", placeholderText: "", textAlignment: Qt.AlignHCenter, placeholderAlignment: Qt.AlignHCenter },
{ tag: "rtl,empty,right", text: "نص", placeholderText: "", textAlignment: Qt.AlignRight, placeholderAlignment: Qt.AlignRight },
{ tag: "rtl,ltr", text: "نص", placeholderText: "Search", textAlignment: undefined, placeholderAlignment: Qt.AlignLeft },
{ tag: "rtl,ltr,left", text: "نص", placeholderText: "Search", textAlignment: Qt.AlignLeft, placeholderAlignment: Qt.AlignLeft },
{ tag: "rtl,ltr,center", text: "نص", placeholderText: "Search", textAlignment: Qt.AlignHCenter, placeholderAlignment: Qt.AlignHCenter },
{ tag: "rtl,ltr,right", text: "نص", placeholderText: "Search", textAlignment: Qt.AlignRight, placeholderAlignment: Qt.AlignRight },
{ tag: "rtl,rtl", text: "نص", placeholderText: "بحث", textAlignment: undefined, placeholderAlignment: Qt.AlignRight },
{ tag: "rtl,rtl,left", text: "نص", placeholderText: "بحث", textAlignment: Qt.AlignLeft, placeholderAlignment: Qt.AlignLeft },
{ tag: "rtl,rtl,center", text: "نص", placeholderText: "بحث", textAlignment: Qt.AlignHCenter, placeholderAlignment: Qt.AlignHCenter },
{ tag: "rtl,rtl,right", text: "نص", placeholderText: "بحث", textAlignment: Qt.AlignRight, placeholderAlignment: Qt.AlignRight },
]
}
function test_alignment(data) {
var control = createTemporaryObject(textField, testCase, {text: data.text, placeholderText: data.placeholderText, horizontalAlignment: data.textAlignment})
if (data.textAlignment !== undefined)
compare(control.horizontalAlignment, data.textAlignment)
for (var i = 0; i < control.children.length; ++i) {
if (control.children[i].hasOwnProperty("text") && control.children[i].hasOwnProperty("horizontalAlignment"))
compare(control.children[i].effectiveHorizontalAlignment, data.placeholderAlignment) // placeholder
}
control.verticalAlignment = TextField.AlignBottom
compare(control.verticalAlignment, TextField.AlignBottom)
for (var j = 0; j < control.children.length; ++j) {
if (control.children[j].hasOwnProperty("text") && control.children[j].hasOwnProperty("verticalAlignment"))
compare(control.children[j].verticalAlignment, Text.AlignBottom) // placeholder
}
}
function test_font_explicit_attributes_data() {
return [
{tag: "bold", value: true},
{tag: "capitalization", value: Font.Capitalize},
{tag: "family", value: "Courier"},
{tag: "italic", value: true},
{tag: "strikeout", value: true},
{tag: "underline", value: true},
{tag: "weight", value: Font.Black},
{tag: "wordSpacing", value: 55}
]
}
function test_font_explicit_attributes(data) {
var control = createTemporaryObject(textField, testCase)
verify(control)
var child = textField.createObject(control)
verify(child)
var controlSpy = signalSpy.createObject(control, {target: control, signalName: "fontChanged"})
verify(controlSpy.valid)
var childSpy = signalSpy.createObject(child, {target: child, signalName: "fontChanged"})
verify(childSpy.valid)
var defaultValue = control.font[data.tag]
child.font[data.tag] = defaultValue
compare(child.font[data.tag], defaultValue)
compare(childSpy.count, 0)
control.font[data.tag] = data.value
compare(control.font[data.tag], data.value)
compare(controlSpy.count, 1)
compare(child.font[data.tag], defaultValue)
compare(childSpy.count, 0)
}
function test_hover_data() {
return [
{ tag: "enabled", hoverEnabled: true },
{ tag: "disabled", hoverEnabled: false },
]
}
function test_hover(data) {
var control = createTemporaryObject(textField, testCase, {hoverEnabled: data.hoverEnabled})
verify(control)
compare(control.hovered, false)
mouseMove(control)
compare(control.hovered, data.hoverEnabled)
mouseMove(control, -1, -1)
compare(control.hovered, false)
}
function test_pressedReleased_data() {
return [
{
tag: "pressed outside", x: -1, y: -1, button: Qt.LeftButton,
controlPressEvent: null,
controlReleaseEvent: null,
parentPressEvent: {
x: 0, y: 0, button: Qt.LeftButton, buttons: Qt.LeftButton, modifiers: Qt.NoModifier, wasHeld: false, isClick: false
},
parentReleaseEvent: {
x: 0, y: 0, button: Qt.LeftButton, buttons: Qt.NoButton, modifiers: Qt.NoModifier, wasHeld: false, isClick: false
},
},
{
tag: "left click", x: 0, y: 0, button: Qt.LeftButton,
controlPressEvent: {
x: 0, y: 0, button: Qt.LeftButton, buttons: Qt.LeftButton, modifiers: Qt.NoModifier, wasHeld: false, isClick: false
},
controlReleaseEvent: {
x: 0, y: 0, button: Qt.LeftButton, buttons: Qt.NoButton, modifiers: Qt.NoModifier, wasHeld: false, isClick: false
},
parentPressEvent: null,
parentReleaseEvent: null,
},
{
tag: "right click", x: 0, y: 0, button: Qt.RightButton,
controlPressEvent: {
x: 0, y: 0, button: Qt.RightButton, buttons: Qt.RightButton, modifiers: Qt.NoModifier, wasHeld: false, isClick: false
},
controlReleaseEvent: {
x: 0, y: 0, button: Qt.RightButton, buttons: Qt.NoButton, modifiers: Qt.NoModifier, wasHeld: false, isClick: false
},
parentPressEvent: null,
parentReleaseEvent: null,
},
];
}
Component {
id: mouseAreaComponent
MouseArea {
anchors.fill: parent
}
}
function checkMouseEvent(event, expectedEvent) {
compare(event.x, expectedEvent.x)
compare(event.y, expectedEvent.y)
compare(event.button, expectedEvent.button)
compare(event.buttons, expectedEvent.buttons)
}
function test_pressedReleased(data) {
var mouseArea = createTemporaryObject(mouseAreaComponent, testCase)
verify(mouseArea)
var control = textField.createObject(mouseArea)
verify(control)
// Give enough room to check presses outside of the control and on the parent.
control.x = 1;
control.y = 1;
function checkControlPressEvent(event) {
checkMouseEvent(event, data.controlPressEvent)
}
function checkControlReleaseEvent(event) {
checkMouseEvent(event, data.controlReleaseEvent)
}
function checkParentPressEvent(event) {
checkMouseEvent(event, data.parentPressEvent)
}
function checkParentReleaseEvent(event) {
checkMouseEvent(event, data.parentReleaseEvent)
}
// Can't use signalArguments, because the event won't live that long.
if (data.controlPressEvent)
control.onPressed.connect(checkControlPressEvent)
if (data.controlReleaseEvent)
control.onReleased.connect(checkControlReleaseEvent)
if (data.parentPressEvent)
control.onPressed.connect(checkParentPressEvent)
if (data.parentReleaseEvent)
control.onReleased.connect(checkParentReleaseEvent)
var controlPressedSpy = signalSpy.createObject(control, { target: control, signalName: "pressed" })
verify(controlPressedSpy.valid)
var controlReleasedSpy = signalSpy.createObject(control, { target: control, signalName: "released" })
verify(controlReleasedSpy.valid)
var parentPressedSpy = signalSpy.createObject(mouseArea, { target: mouseArea, signalName: "pressed" })
verify(parentPressedSpy.valid)
var parentReleasedSpy = signalSpy.createObject(mouseArea, { target: mouseArea, signalName: "released" })
verify(parentReleasedSpy.valid)
mousePress(control, data.x, data.y, data.button)
compare(controlPressedSpy.count, data.controlPressEvent ? 1 : 0)
compare(parentPressedSpy.count, data.parentPressEvent ? 1 : 0)
mouseRelease(control, data.x, data.y, data.button)
compare(controlReleasedSpy.count, data.controlReleaseEvent ? 1 : 0)
compare(parentReleasedSpy.count, data.parentReleaseEvent ? 1 : 0)
}
Component {
id: ignoreTextField
TextField {
property bool ignorePress: false
property bool ignoreRelease: false
onPressed: if (ignorePress) event.accepted = false
onReleased: if (ignoreRelease) event.accepted = false
}
}
function checkEventAccepted(event) {
compare(event.accepted, true)
}
function checkEventIgnored(event) {
compare(event.accepted, false)
}
function test_ignorePressRelease() {
var mouseArea = createTemporaryObject(mouseAreaComponent, testCase)
verify(mouseArea)
var control = ignoreTextField.createObject(mouseArea)
verify(control)
var controlPressedSpy = signalSpy.createObject(control, { target: control, signalName: "pressed" })
verify(controlPressedSpy.valid)
var controlReleasedSpy = signalSpy.createObject(control, { target: control, signalName: "released" })
verify(controlReleasedSpy.valid)
var parentPressedSpy = signalSpy.createObject(mouseArea, { target: mouseArea, signalName: "pressed" })
verify(parentPressedSpy.valid)
var parentReleasedSpy = signalSpy.createObject(mouseArea, { target: mouseArea, signalName: "released" })
verify(parentReleasedSpy.valid)
// Ignore only press events.
control.onPressed.connect(checkEventIgnored)
control.ignorePress = true
mousePress(control, 0, 0, data.button)
// The control will still get the signal, it just won't accept the event.
compare(controlPressedSpy.count, 1)
compare(parentPressedSpy.count, 1)
mouseRelease(control, 0, 0, data.button)
compare(controlReleasedSpy.count, 0)
compare(parentReleasedSpy.count, 1)
control.onPressed.disconnect(checkEventIgnored)
// Ignore only release events.
control.onPressed.connect(checkEventAccepted)
control.onReleased.connect(checkEventIgnored)
control.ignorePress = false
control.ignoreRelease = true
mousePress(control, 0, 0, data.button)
compare(controlPressedSpy.count, 2)
compare(parentPressedSpy.count, 1)
mouseRelease(control, 0, 0, data.button)
compare(controlReleasedSpy.count, 1)
compare(parentReleasedSpy.count, 1)
control.onPressed.disconnect(checkEventAccepted)
control.onReleased.disconnect(checkEventIgnored)
}
function test_multiClick() {
var control = createTemporaryObject(textField, testCase, {text: "Qt Quick Controls 2 TextArea", selectByMouse: true})
verify(control)
waitForRendering(control)
control.width = control.contentWidth
var rect = control.positionToRectangle(12)
// double click -> select word
mouseDoubleClickSequence(control, rect.x + rect.width / 2, rect.y + rect.height / 2)
compare(control.selectedText, "Controls")
// tripple click -> select whole line
mouseClick(control, rect.x + rect.width / 2, rect.y + rect.height / 2)
compare(control.selectedText, "Qt Quick Controls 2 TextArea")
}
// QTBUG-64048
function test_rightClick() {
var control = createTemporaryObject(textField, testCase, {text: "TextField", selectByMouse: true})
verify(control)
control.selectAll()
compare(control.selectedText, "TextField")
mouseClick(control, control.width / 2, control.height / 2, Qt.RightButton)
compare(control.selectedText, "TextField")
mouseClick(control, control.width / 2, control.height / 2, Qt.LeftButton | Qt.RightButton)
compare(control.selectedText, "")
}
// QTBUG-66260
function test_placeholderTextColor() {
var control = createTemporaryObject(textField, testCase)
verify(control)
// usually default value should not be pure opacue black
verify(control.placeholderTextColor !== "#ff000000")
control.placeholderTextColor = "#12345678"
compare(control.placeholderTextColor, "#12345678")
for (var i = 0; i < control.children.length; ++i) {
if (control.children[i].hasOwnProperty("text"))
compare(control.children[i].color, control.placeholderTextColor) // placeholder.color
}
}
function test_inset() {
var control = createTemporaryObject(textField, testCase, {background: rectangle.createObject(control)})
verify(control)
var topInsetSpy = createTemporaryObject(signalSpy, testCase, {target: control, signalName: "topInsetChanged"})
verify(topInsetSpy.valid)
var leftInsetSpy = createTemporaryObject(signalSpy, testCase, {target: control, signalName: "leftInsetChanged"})
verify(leftInsetSpy.valid)
var rightInsetSpy = createTemporaryObject(signalSpy, testCase, {target: control, signalName: "rightInsetChanged"})
verify(rightInsetSpy.valid)
var bottomInsetSpy = createTemporaryObject(signalSpy, testCase, {target: control, signalName: "bottomInsetChanged"})
verify(bottomInsetSpy.valid)
var topInsetChanges = 0
var leftInsetChanges = 0
var rightInsetChanges = 0
var bottomInsetChanges = 0
compare(control.topInset, 0)
compare(control.leftInset, 0)
compare(control.rightInset, 0)
compare(control.bottomInset, 0)
control.width = 100
control.height = 100
compare(control.background.x, 0)
compare(control.background.y, 0)
compare(control.background.width, 100)
compare(control.background.height, 100)
control.topInset = 10
compare(control.topInset, 10)
compare(control.leftInset, 0)
compare(control.rightInset, 0)
compare(control.bottomInset, 0)
compare(topInsetSpy.count, ++topInsetChanges)
compare(leftInsetSpy.count, leftInsetChanges)
compare(rightInsetSpy.count, rightInsetChanges)
compare(bottomInsetSpy.count, bottomInsetChanges)
compare(control.background.x, 0)
compare(control.background.y, 10)
compare(control.background.width, 100)
compare(control.background.height, 90)
control.leftInset = 20
compare(control.topInset, 10)
compare(control.leftInset, 20)
compare(control.rightInset, 0)
compare(control.bottomInset, 0)
compare(topInsetSpy.count, topInsetChanges)
compare(leftInsetSpy.count, ++leftInsetChanges)
compare(rightInsetSpy.count, rightInsetChanges)
compare(bottomInsetSpy.count, bottomInsetChanges)
compare(control.background.x, 20)
compare(control.background.y, 10)
compare(control.background.width, 80)
compare(control.background.height, 90)
control.rightInset = 30
compare(control.topInset, 10)
compare(control.leftInset, 20)
compare(control.rightInset, 30)
compare(control.bottomInset, 0)
compare(topInsetSpy.count, topInsetChanges)
compare(leftInsetSpy.count, leftInsetChanges)
compare(rightInsetSpy.count, ++rightInsetChanges)
compare(bottomInsetSpy.count, bottomInsetChanges)
compare(control.background.x, 20)
compare(control.background.y, 10)
compare(control.background.width, 50)
compare(control.background.height, 90)
control.bottomInset = 40
compare(control.topInset, 10)
compare(control.leftInset, 20)
compare(control.rightInset, 30)
compare(control.bottomInset, 40)
compare(topInsetSpy.count, topInsetChanges)
compare(leftInsetSpy.count, leftInsetChanges)
compare(rightInsetSpy.count, rightInsetChanges)
compare(bottomInsetSpy.count, ++bottomInsetChanges)
compare(control.background.x, 20)
compare(control.background.y, 10)
compare(control.background.width, 50)
compare(control.background.height, 50)
control.topInset = undefined
compare(control.topInset, 0)
compare(control.leftInset, 20)
compare(control.rightInset, 30)
compare(control.bottomInset, 40)
compare(topInsetSpy.count, ++topInsetChanges)
compare(leftInsetSpy.count, leftInsetChanges)
compare(rightInsetSpy.count, rightInsetChanges)
compare(bottomInsetSpy.count, bottomInsetChanges)
compare(control.background.x, 20)
compare(control.background.y, 0)
compare(control.background.width, 50)
compare(control.background.height, 60)
control.leftInset = undefined
compare(control.topInset, 0)
compare(control.leftInset, 0)
compare(control.rightInset, 30)
compare(control.bottomInset, 40)
compare(topInsetSpy.count, topInsetChanges)
compare(leftInsetSpy.count, ++leftInsetChanges)
compare(rightInsetSpy.count, rightInsetChanges)
compare(bottomInsetSpy.count, bottomInsetChanges)
compare(control.background.x, 0)
compare(control.background.y, 0)
compare(control.background.width, 70)
compare(control.background.height, 60)
control.rightInset = undefined
compare(control.topInset, 0)
compare(control.leftInset, 0)
compare(control.rightInset, 0)
compare(control.bottomInset, 40)
compare(topInsetSpy.count, topInsetChanges)
compare(leftInsetSpy.count, leftInsetChanges)
compare(rightInsetSpy.count, ++rightInsetChanges)
compare(bottomInsetSpy.count, bottomInsetChanges)
compare(control.background.x, 0)
compare(control.background.y, 0)
compare(control.background.width, 100)
compare(control.background.height, 60)
control.bottomInset = undefined
compare(control.topInset, 0)
compare(control.leftInset, 0)
compare(control.rightInset, 0)
compare(control.bottomInset, 0)
compare(topInsetSpy.count, topInsetChanges)
compare(leftInsetSpy.count, leftInsetChanges)
compare(rightInsetSpy.count, rightInsetChanges)
compare(bottomInsetSpy.count, ++bottomInsetChanges)
compare(control.background.x, 0)
compare(control.background.y, 0)
compare(control.background.width, 100)
compare(control.background.height, 100)
}
Component {
id: layoutComponent
ColumnLayout {
anchors.fill: parent
property alias textField: textField
TextField {
id: textField
placeholderText: "Placeholder"
Layout.fillWidth: true
}
}
}
function test_inLayout() {
var layout = createTemporaryObject(layoutComponent, testCase)
verify(layout)
var control = layout.textField
verify(control)
compare(control.width, control.parent.width)
compare(control.background.width, control.width)
}
}