// Copyright (C) 2022 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #include #include #include #include #include #include #include #include #include #include #include #include #include class tst_QQuickTextField : public QQmlDataTest { Q_OBJECT public: tst_QQuickTextField(); private slots: void initTestCase() override; void touchscreenDoesNotSelect_data(); void touchscreenDoesNotSelect(); void releaseAfterPressAndHold(); private: QScopedPointer touchDevice = QScopedPointer(QTest::createTouchDevice()); }; tst_QQuickTextField::tst_QQuickTextField() : QQmlDataTest(QT_QMLTEST_DATADIR) { } void tst_QQuickTextField::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_QQuickTextField::touchscreenDoesNotSelect_data() { QTest::addColumn("src"); QTest::addColumn("setEnv"); QTest::addColumn("selectByMouse"); QTest::addColumn("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_QQuickTextField::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)); QQuickTextField *textField = qobject_cast(window.rootObject()); QVERIFY(textField != nullptr); QCOMPARE(textField->selectByMouse(), selectByMouse); textField->setSelectByMouse(true); // enable selection with pre-6.4 import version QVERIFY(textField->selectedText().isEmpty()); if (selectByMouse) { // press-drag-and-release from x1 to x2 const int x1 = textField->leftPadding(); const int x2 = textField->width() / 2; const int y = textField->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 env var is set, fall back to old behavior: touch swipe _does_ select text if selectByMouse is true QCOMPARE(textField->selectedText().isEmpty(), !selectByTouch); } } void tst_QQuickTextField::releaseAfterPressAndHold() { QQuickView window; QVERIFY(QQuickTest::showView(window, testFileUrl("mouseselection_default.qml"))); QQuickTextField *textField = qobject_cast(window.rootObject()); QVERIFY(textField != nullptr); QSignalSpy releasedSpy(textField, &QQuickTextField::released); QSignalSpy pressAndHoldSpy(textField, &QQuickTextField::pressAndHold); const QPoint clickPosition(textField->width() / 2, textField->height() / 2); QTest::mousePress(&window, Qt::LeftButton, Qt::NoModifier, clickPosition); QTest::qWait(QGuiApplication::styleHints()->mousePressAndHoldInterval() + 100); QCOMPARE(pressAndHoldSpy.count(), 1); QTest::mouseRelease(&window, Qt::LeftButton, Qt::NoModifier, clickPosition); QCOMPARE(releasedSpy.count(), 1); } QTEST_QUICKCONTROLS_MAIN(tst_QQuickTextField) #include "tst_qquicktextfield.moc"