aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quickcontrols2/qquicktextarea
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/quickcontrols2/qquicktextarea')
-rw-r--r--tests/auto/quickcontrols2/qquicktextarea/CMakeLists.txt46
-rw-r--r--tests/auto/quickcontrols2/qquicktextarea/data/mouseselection_default.qml6
-rw-r--r--tests/auto/quickcontrols2/qquicktextarea/data/mouseselection_old_default.qml6
-rw-r--r--tests/auto/quickcontrols2/qquicktextarea/data/mouseselection_old_overridden.qml7
-rw-r--r--tests/auto/quickcontrols2/qquicktextarea/data/twoInAColumn.qml35
-rw-r--r--tests/auto/quickcontrols2/qquicktextarea/tst_qquicktextarea.cpp166
6 files changed, 266 insertions, 0 deletions
diff --git a/tests/auto/quickcontrols2/qquicktextarea/CMakeLists.txt b/tests/auto/quickcontrols2/qquicktextarea/CMakeLists.txt
new file mode 100644
index 0000000000..553a1588ae
--- /dev/null
+++ b/tests/auto/quickcontrols2/qquicktextarea/CMakeLists.txt
@@ -0,0 +1,46 @@
+# Copyright (C) 2022 The Qt Company Ltd.
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+
+#####################################################################
+## tst_qquicktextarea Test:
+#####################################################################
+
+# Collect test data
+file(GLOB_RECURSE test_data_glob
+ RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
+ data/*)
+list(APPEND test_data ${test_data_glob})
+
+qt_internal_add_test(tst_qquicktextarea
+ SOURCES
+ tst_qquicktextarea.cpp
+ DEFINES
+ QQC2_IMPORT_PATH=\\\"${CMAKE_CURRENT_SOURCE_DIR}/../../../../src/quickcontrols2\\\"
+ PUBLIC_LIBRARIES
+ Qt::CorePrivate
+ Qt::Gui
+ Qt::GuiPrivate
+ Qt::QmlPrivate
+ Qt::QuickControls2
+ Qt::QuickControls2Private
+ Qt::QuickControlsTestUtilsPrivate
+ Qt::QuickPrivate
+ Qt::QuickTemplates2Private
+ Qt::QuickTest
+ Qt::QuickTestUtilsPrivate
+ Qt::TestPrivate
+ TESTDATA ${test_data}
+)
+
+## Scopes:
+#####################################################################
+
+qt_internal_extend_target(tst_qquicktextarea CONDITION ANDROID OR IOS
+ DEFINES
+ QT_QMLTEST_DATADIR=\\\":/data\\\"
+)
+
+qt_internal_extend_target(tst_qquicktextarea CONDITION NOT ANDROID AND NOT IOS
+ DEFINES
+ QT_QMLTEST_DATADIR=\\\"${CMAKE_CURRENT_SOURCE_DIR}/data\\\"
+)
diff --git a/tests/auto/quickcontrols2/qquicktextarea/data/mouseselection_default.qml b/tests/auto/quickcontrols2/qquicktextarea/data/mouseselection_default.qml
new file mode 100644
index 0000000000..cb51b80545
--- /dev/null
+++ b/tests/auto/quickcontrols2/qquicktextarea/data/mouseselection_default.qml
@@ -0,0 +1,6 @@
+import QtQuick.Controls
+
+TextArea {
+ text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+}
+
diff --git a/tests/auto/quickcontrols2/qquicktextarea/data/mouseselection_old_default.qml b/tests/auto/quickcontrols2/qquicktextarea/data/mouseselection_old_default.qml
new file mode 100644
index 0000000000..1401be36c1
--- /dev/null
+++ b/tests/auto/quickcontrols2/qquicktextarea/data/mouseselection_old_default.qml
@@ -0,0 +1,6 @@
+import QtQuick
+import QtQuick.Controls 6.3
+
+TextArea {
+ text: "0123456789 ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+}
diff --git a/tests/auto/quickcontrols2/qquicktextarea/data/mouseselection_old_overridden.qml b/tests/auto/quickcontrols2/qquicktextarea/data/mouseselection_old_overridden.qml
new file mode 100644
index 0000000000..c0e6fb60a8
--- /dev/null
+++ b/tests/auto/quickcontrols2/qquicktextarea/data/mouseselection_old_overridden.qml
@@ -0,0 +1,7 @@
+import QtQuick
+import QtQuick.Controls 6.3
+
+TextArea {
+ selectByMouse: true
+ text: "0123456789 ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+}
diff --git a/tests/auto/quickcontrols2/qquicktextarea/data/twoInAColumn.qml b/tests/auto/quickcontrols2/qquicktextarea/data/twoInAColumn.qml
new file mode 100644
index 0000000000..944f5598ac
--- /dev/null
+++ b/tests/auto/quickcontrols2/qquicktextarea/data/twoInAColumn.qml
@@ -0,0 +1,35 @@
+import QtQuick
+import QtQuick.Controls
+import QtQuick.Layouts
+
+ColumnLayout {
+ height: 200
+ width: 400
+ spacing: -6
+ Rectangle {
+ border.color: top.activeFocus ? "steelblue" : "lightgrey"
+ Layout.fillHeight: true
+ Layout.fillWidth: true
+ Layout.margins: 6
+ TextArea {
+ id: top
+ objectName: "top"
+ text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+ anchors.fill: parent
+ verticalAlignment: TextArea.AlignTop
+ }
+ }
+ Rectangle {
+ border.color: bottom.activeFocus ? "steelblue" : "lightgrey"
+ Layout.fillHeight: true
+ Layout.fillWidth: true
+ Layout.margins: 6
+ TextArea {
+ id: bottom
+ objectName: "bottom"
+ text: "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+ anchors.fill: parent
+ verticalAlignment: TextArea.AlignTop
+ }
+ }
+}
diff --git a/tests/auto/quickcontrols2/qquicktextarea/tst_qquicktextarea.cpp b/tests/auto/quickcontrols2/qquicktextarea/tst_qquicktextarea.cpp
new file mode 100644
index 0000000000..1c40b078f7
--- /dev/null
+++ b/tests/auto/quickcontrols2/qquicktextarea/tst_qquicktextarea.cpp
@@ -0,0 +1,166 @@
+// Copyright (C) 2022 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+
+#include <QtTest/qtest.h>
+#include <QtTest/qsignalspy.h>
+#include <QtTest/qtesttouch.h>
+
+#include <QtGui/qfontmetrics.h>
+#include <QtGui/private/qguiapplication_p.h>
+#include <QtGui/qpa/qplatformintegration.h>
+#include <QtGui/qtestsupport_gui.h>
+#include <QtQuick/qquickview.h>
+#include <QtQuickTestUtils/private/qmlutils_p.h>
+#include <QtQuickTestUtils/private/viewtestutils_p.h>
+#include <QtQuickTemplates2/private/qquicktextarea_p.h>
+#include <QtQuickControlsTestUtils/private/qtest_quickcontrols_p.h>
+
+class tst_QQuickTextArea : public QQmlDataTest
+{
+ Q_OBJECT
+
+public:
+ tst_QQuickTextArea();
+
+private slots:
+ void initTestCase() override;
+ void touchscreenDoesNotSelect_data();
+ void touchscreenDoesNotSelect();
+ void touchscreenSetsFocusAndMovesCursor();
+
+private:
+ static bool hasWindowActivation();
+ QScopedPointer<QPointingDevice> touchDevice = QScopedPointer<QPointingDevice>(QTest::createTouchDevice());
+};
+
+tst_QQuickTextArea::tst_QQuickTextArea()
+ : QQmlDataTest(QT_QMLTEST_DATADIR)
+{
+}
+
+void tst_QQuickTextArea::initTestCase()
+{
+#ifdef Q_OS_ANDROID
+ if (QNativeInterface::QAndroidApplication::sdkVersion() > 23)
+ QSKIP("Crashes on Android 7+, figure out why (QTBUG-107028)");
+#endif
+ QQmlDataTest::initTestCase();
+ qputenv("QML_NO_TOUCH_COMPRESSION", "1");
+}
+
+void tst_QQuickTextArea::touchscreenDoesNotSelect_data()
+{
+ QTest::addColumn<QUrl>("src");
+ QTest::addColumn<bool>("setEnv");
+ QTest::addColumn<bool>("selectByMouse");
+ QTest::addColumn<bool>("selectByTouch");
+ QTest::newRow("new default") << testFileUrl("mouseselection_default.qml") << false << true << false;
+#if QT_VERSION < QT_VERSION_CHECK(7, 0, 0)
+ QTest::newRow("putenv") << testFileUrl("mouseselection_default.qml") << true << false << false;
+ QTest::newRow("old_import") << testFileUrl("mouseselection_old_default.qml") << false << true << false;
+ QTest::newRow("old+putenv") << testFileUrl("mouseselection_old_default.qml") << true << false << false;
+ QTest::newRow("old+putenv+selectByMouse") << testFileUrl("mouseselection_old_overridden.qml") << true << true << true;
+#endif
+}
+
+void tst_QQuickTextArea::touchscreenDoesNotSelect()
+{
+ QFETCH(QUrl, src);
+ QFETCH(bool, setEnv);
+ QFETCH(bool, selectByMouse);
+ QFETCH(bool, selectByTouch);
+
+ if (setEnv)
+ qputenv("QT_QUICK_CONTROLS_TEXT_SELECTION_BEHAVIOR", "old");
+ else
+ qunsetenv("QT_QUICK_CONTROLS_TEXT_SELECTION_BEHAVIOR");
+
+ QQuickView window;
+ QVERIFY(QQuickTest::showView(window, src));
+
+ QQuickTextEdit *textEditObject = qobject_cast<QQuickTextEdit *>(window.rootObject());
+ QVERIFY(textEditObject != nullptr);
+ QCOMPARE(textEditObject->selectByMouse(), selectByMouse);
+ textEditObject->setSelectByMouse(true); // enable selection with pre-6.4 import version
+ QVERIFY(textEditObject->selectedText().isEmpty());
+
+ if (selectByMouse) {
+ // press-drag-and-release from x1 to x2
+ int x1 = 10;
+ int x2 = 70;
+ int y = QFontMetrics(textEditObject->font()).height() / 2;
+ QTest::touchEvent(&window, touchDevice.data()).press(0, QPoint(x1,y), &window);
+ QTest::touchEvent(&window, touchDevice.data()).move(0, QPoint(x2,y), &window);
+ QTest::touchEvent(&window, touchDevice.data()).release(0, QPoint(x2,y), &window);
+ QQuickTouchUtils::flush(&window);
+ // if the import version is old enough, fall back to old behavior: touch swipe _does_ select text if selectByMouse is true
+ QCOMPARE(textEditObject->selectedText().isEmpty(), !selectByTouch);
+ }
+}
+
+void tst_QQuickTextArea::touchscreenSetsFocusAndMovesCursor()
+{
+ if (!hasWindowActivation())
+ QSKIP("Window activation is not supported");
+ qunsetenv("QT_QUICK_CONTROLS_TEXT_SELECTION_BEHAVIOR");
+
+ QQuickView window;
+ QVERIFY(QQuickTest::showView(window, testFileUrl("twoInAColumn.qml")));
+ window.requestActivate();
+ QVERIFY(QTest::qWaitForWindowActive(&window));
+
+ QQuickTextEdit *top = window.rootObject()->findChild<QQuickTextEdit*>("top");
+ QVERIFY(top);
+ QQuickTextEdit *bottom = window.rootObject()->findChild<QQuickTextEdit*>("bottom");
+ QVERIFY(bottom);
+ const auto len = bottom->text().size();
+
+ // tap the bottom field
+ const qreal yOffset = bottom->topPadding() + 6; // where to tap or drag to hit the text
+ QPoint p1 = bottom->mapToScene({60, yOffset}).toPoint();
+ QTest::touchEvent(&window, touchDevice.data()).press(0, p1, &window);
+ QQuickTouchUtils::flush(&window);
+ // text cursor is at 0 by default, on press
+ QCOMPARE(bottom->cursorPosition(), 0);
+ // the focus changes and the cursor moves after release (not after press, as in TextEdit)
+ QTest::touchEvent(&window, touchDevice.data()).release(0, p1, &window);
+ QQuickTouchUtils::flush(&window);
+ QCOMPARE(qApp->focusObject(), bottom);
+ QTRY_COMPARE_GT(bottom->cursorPosition(), 0);
+
+ // typing a character inserts it at the cursor position
+ QVERIFY(!bottom->text().contains('q'));
+ QTest::keyClick(&window, Qt::Key_Q);
+ QCOMPARE(bottom->text().size(), len + 1);
+ QCOMPARE_GT(bottom->text().indexOf('q'), 0);
+
+ // press-drag-and-release from p1 to p2 on the top field
+ p1 = top->mapToScene({0, yOffset}).toPoint();
+ QPoint p2 = top->mapToScene({76, yOffset}).toPoint();
+ QTest::touchEvent(&window, touchDevice.data()).press(0, p1, &window);
+ QQuickTouchUtils::flush(&window);
+ QTest::touchEvent(&window, touchDevice.data()).move(0, p2, &window);
+ QQuickTouchUtils::flush(&window);
+ QTest::touchEvent(&window, touchDevice.data()).release(0, p2, &window);
+ QQuickTouchUtils::flush(&window);
+ QCOMPARE(qApp->focusObject(), top);
+ QVERIFY(top->selectedText().isEmpty());
+ QCOMPARE_GT(top->cursorPosition(), 0);
+
+ // touch-drag did not select text, but mouse-drag from p2 back to p1
+ // does select the first part of the text, and leave the cursor at the beginning
+ QTest::mousePress(&window, Qt::LeftButton, {}, p2);
+ QTest::mouseMove(&window, p1);
+ QTest::mouseRelease(&window, Qt::LeftButton, {}, p1);
+ QCOMPARE(top->cursorPosition(), 0);
+ QCOMPARE_GT(top->selectedText().size(), 0);
+}
+
+bool tst_QQuickTextArea::hasWindowActivation()
+{
+ return (QGuiApplicationPrivate::platformIntegration()->hasCapability(QPlatformIntegration::WindowActivation));
+}
+
+QTEST_QUICKCONTROLS_MAIN(tst_QQuickTextArea)
+
+#include "tst_qquicktextarea.moc"