// Copyright (C) 2017 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause import QtQuick import QtTest import QtQuick.Controls import QtQuick.Layouts 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() { failOnWarning(/.?/) 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, control.width / 2, control.height / 2) 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"}) 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"}) 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, "") } function test_mouseSelect() { var control = createTemporaryObject(textField, testCase, {text: "Text", width: parent.width}) verify(control) verify(control.selectByMouse) // true by default since 6.4 var pressSpy = signalSpy.createObject(control, {target: control, signalName: "pressed"}) const y = control.height / 2 mousePress(control, 0, y, Qt.LeftButton) tryCompare(pressSpy, "count", 1) mouseMove(control, control.implicitWidth, y, 0, Qt.LeftButton) mouseRelease(control, control.implicitWidth, y, Qt.LeftButton) tryVerify(function() { return control.selectedText.length > 1 }) // ideally the whole 4-letter word } function test_noTouchSelect() { var control = createTemporaryObject(textField, testCase, {text: "Text"}) verify(control) verify(control.selectByMouse) // true by default since 6.4 var touch = touchEvent(control) const y = control.height / 2 touch.press(0, control, 0, y).commit() touch.move(0, control, control.implicitWidth, 0).commit() touch.release(0, control) compare(control.selectedText, "") } function test_aaTouchPressAndHold() { var control = createTemporaryObject(textField, testCase, {text: "Text"}) verify(control) verify(control.selectByMouse) // true by default since 6.4 var pressSpy = signalSpy.createObject(control, {target: control, signalName: "pressed"}) var pressAndHoldSpy = signalSpy.createObject(control, {target: control, signalName: "pressAndHold"}) var touch = touchEvent(control) touch.press(0, control).commit() tryCompare(pressSpy, "count", 1) tryCompare(pressAndHoldSpy, "count", 1) touch.release(0, control).commit() } // 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) } // QTBUG-95558 Component { id: textFieldWithPointSizeSet TextField { font.pointSize: 24 } } Component { id: textFieldWithPixelSizeSet TextField { font.pixelSize: 42 } } function test_setPointSizeDoesNotWarn() { // QTBUG-95558 // macOS is special: 43eca45b061fe965fe2a6f1876d4a35a58e3a9e4 if (Qt.platform.os === "osx" || Qt.platform.os === "macos") skip("TextField hard-codes pixel size on macOS") failOnWarning("Both point size and pixel size set. Using pixel size.") var textField = createTemporaryObject(textFieldWithPointSizeSet, testCase) verify(textField) } function test_setPixelSizeDoesNotWarn() { failOnWarning("Both point size and pixel size set. Using pixel size.") var textField = createTemporaryObject(textFieldWithPixelSizeSet, testCase) verify(textField) } }