/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing/ ** ** This file is part of the test suite of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL3$ ** 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 http://www.qt.io/terms-conditions. For further ** information use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 3 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPLv3 included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 3 requirements ** will be met: https://www.gnu.org/licenses/lgpl.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 2.0 or later as published by the Free ** Software Foundation and appearing in the file LICENSE.GPL included in ** the packaging of this file. Please review the following information to ** ensure the GNU General Public License version 2.0 requirements will be ** met: http://www.gnu.org/licenses/gpl-2.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include #include #include "../shared/util.h" #include "../shared/visualtestutil.h" #include #include #include #include #include #include using namespace QQuickVisualTestUtil; class tst_Drawer : public QQmlDataTest { Q_OBJECT private slots: void visible_data(); void visible(); void state(); void position_data(); void position(); void dragMargin_data(); void dragMargin(); void reposition(); void hover_data(); void hover(); void multiple(); }; void tst_Drawer::visible_data() { QTest::addColumn("source"); QTest::newRow("Window") << "window.qml"; QTest::newRow("ApplicationWindow") << "applicationwindow.qml"; } void tst_Drawer::visible() { QFETCH(QString, source); QQuickApplicationHelper helper(this, source); QQuickWindow *window = helper.window; window->show(); QVERIFY(QTest::qWaitForWindowExposed(window)); QQuickDrawer *drawer = window->property("drawer").value(); QVERIFY(drawer); QQuickItem *popupItem = drawer->popupItem(); QCOMPARE(drawer->isVisible(), false); QCOMPARE(drawer->position(), qreal(0.0)); QQuickOverlay *overlay = QQuickOverlay::overlay(window); QVERIFY(overlay); QVERIFY(!overlay->childItems().contains(popupItem)); drawer->open(); QVERIFY(drawer->isVisible()); QVERIFY(overlay->childItems().contains(popupItem)); QTRY_COMPARE(drawer->position(), qreal(1.0)); drawer->close(); QTRY_VERIFY(!drawer->isVisible()); QTRY_COMPARE(drawer->position(), qreal(0.0)); QVERIFY(!overlay->childItems().contains(popupItem)); drawer->setVisible(true); QVERIFY(drawer->isVisible()); QVERIFY(overlay->childItems().contains(popupItem)); QTRY_COMPARE(drawer->position(), qreal(1.0)); drawer->setVisible(false); QTRY_VERIFY(!drawer->isVisible()); QTRY_COMPARE(drawer->position(), qreal(0.0)); QTRY_VERIFY(!overlay->childItems().contains(popupItem)); } void tst_Drawer::state() { QQuickApplicationHelper helper(this, "applicationwindow.qml"); QQuickWindow *window = helper.window; window->show(); QVERIFY(QTest::qWaitForWindowExposed(window)); QQuickDrawer *drawer = window->property("drawer").value(); QVERIFY(drawer); QCOMPARE(drawer->isVisible(), false); QSignalSpy visibleChangedSpy(drawer, SIGNAL(visibleChanged())); QSignalSpy aboutToShowSpy(drawer, SIGNAL(aboutToShow())); QSignalSpy aboutToHideSpy(drawer, SIGNAL(aboutToHide())); QSignalSpy openedSpy(drawer, SIGNAL(opened())); QSignalSpy closedSpy(drawer, SIGNAL(closed())); QVERIFY(visibleChangedSpy.isValid()); QVERIFY(aboutToShowSpy.isValid()); QVERIFY(aboutToHideSpy.isValid()); QVERIFY(openedSpy.isValid()); QVERIFY(closedSpy.isValid()); int visibleChangedCount = 0; int aboutToShowCount = 0; int aboutToHideCount = 0; int openedCount = 0; int closedCount = 0; // open programmatically... drawer->open(); QCOMPARE(visibleChangedSpy.count(), ++visibleChangedCount); QCOMPARE(aboutToShowSpy.count(), ++aboutToShowCount); QCOMPARE(aboutToHideSpy.count(), aboutToHideCount); QCOMPARE(openedSpy.count(), openedCount); QCOMPARE(closedSpy.count(), closedCount); // ...and wait until fully open QVERIFY(openedSpy.wait()); QCOMPARE(visibleChangedSpy.count(), visibleChangedCount); QCOMPARE(aboutToShowSpy.count(), aboutToShowCount); QCOMPARE(aboutToHideSpy.count(), aboutToHideCount); QCOMPARE(openedSpy.count(), ++openedCount); QCOMPARE(closedSpy.count(), closedCount); // close programmatically... drawer->close(); QCOMPARE(visibleChangedSpy.count(), visibleChangedCount); QCOMPARE(aboutToShowSpy.count(), aboutToShowCount); QCOMPARE(aboutToHideSpy.count(), ++aboutToHideCount); QCOMPARE(openedSpy.count(), openedCount); QCOMPARE(closedSpy.count(), closedCount); // ...and wait until fully closed QVERIFY(closedSpy.wait()); QCOMPARE(visibleChangedSpy.count(), ++visibleChangedCount); QCOMPARE(aboutToShowSpy.count(), aboutToShowCount); QCOMPARE(aboutToHideSpy.count(), aboutToHideCount); QCOMPARE(openedSpy.count(), openedCount); QCOMPARE(closedSpy.count(), ++closedCount); // open interactively... QTest::mousePress(window, Qt::LeftButton, Qt::NoModifier, QPoint(0, drawer->height() / 2)); QTest::mouseMove(window, QPoint(drawer->width() * 0.2, drawer->height() / 2), 16); QTest::mouseRelease(window, Qt::LeftButton, Qt::NoModifier, QPoint(drawer->width() * 0.8, drawer->height() / 2), 16); QCOMPARE(visibleChangedSpy.count(), ++visibleChangedCount); QCOMPARE(aboutToShowSpy.count(), ++aboutToShowCount); QCOMPARE(aboutToHideSpy.count(), aboutToHideCount); QCOMPARE(openedSpy.count(), openedCount); QCOMPARE(closedSpy.count(), closedCount); // ...and wait until fully open QVERIFY(openedSpy.wait()); QCOMPARE(visibleChangedSpy.count(), visibleChangedCount); QCOMPARE(aboutToShowSpy.count(), aboutToShowCount); QCOMPARE(aboutToHideSpy.count(), aboutToHideCount); QCOMPARE(openedSpy.count(), ++openedCount); QCOMPARE(closedSpy.count(), closedCount); // close interactively... QTest::mousePress(window, Qt::LeftButton, Qt::NoModifier, QPoint(drawer->width(), drawer->height() / 2)); QTest::mouseMove(window, QPoint(drawer->width() * 0.8, drawer->height() / 2), 16); QTest::mouseRelease(window, Qt::LeftButton, Qt::NoModifier, QPoint(drawer->width() * 0.2, drawer->height() / 2), 16); QCOMPARE(visibleChangedSpy.count(), visibleChangedCount); QCOMPARE(aboutToShowSpy.count(), aboutToShowCount); QCOMPARE(aboutToHideSpy.count(), ++aboutToHideCount); QCOMPARE(openedSpy.count(), openedCount); QCOMPARE(closedSpy.count(), closedCount); // ...and wait until fully closed QVERIFY(closedSpy.wait()); QCOMPARE(visibleChangedSpy.count(), ++visibleChangedCount); QCOMPARE(aboutToShowSpy.count(), aboutToShowCount); QCOMPARE(aboutToHideSpy.count(), aboutToHideCount); QCOMPARE(openedSpy.count(), openedCount); QCOMPARE(closedSpy.count(), ++closedCount); } void tst_Drawer::position_data() { QTest::addColumn("edge"); QTest::addColumn("from"); QTest::addColumn("to"); QTest::addColumn("position"); QTest::newRow("top") << Qt::TopEdge << QPoint(100, 0) << QPoint(100, 100) << qreal(0.5); QTest::newRow("left") << Qt::LeftEdge << QPoint(0, 100) << QPoint(100, 100) << qreal(0.5); QTest::newRow("right") << Qt::RightEdge << QPoint(399, 100) << QPoint(300, 100) << qreal(0.5); QTest::newRow("bottom") << Qt::BottomEdge << QPoint(100, 399) << QPoint(100, 300) << qreal(0.5); } void tst_Drawer::position() { QFETCH(Qt::Edge, edge); QFETCH(QPoint, from); QFETCH(QPoint, to); QFETCH(qreal, position); QQuickApplicationHelper helper(this, QStringLiteral("applicationwindow.qml")); QQuickApplicationWindow *window = helper.appWindow; window->show(); window->requestActivate(); QVERIFY(QTest::qWaitForWindowActive(window)); QQuickDrawer *drawer = helper.appWindow->property("drawer").value(); QVERIFY(drawer); drawer->setEdge(edge); QTest::mousePress(window, Qt::LeftButton, Qt::NoModifier, from); QTest::mouseMove(window, to); QCOMPARE(drawer->position(), position); // moved half-way open at almost infinite speed => snap to open QTest::mouseRelease(window, Qt::LeftButton, Qt::NoModifier, to); QTRY_COMPARE(drawer->position(), 1.0); } void tst_Drawer::dragMargin_data() { QTest::addColumn("edge"); QTest::addColumn("dragMargin"); QTest::addColumn("dragFromLeft"); QTest::addColumn("dragFromRight"); QTest::newRow("left:0") << Qt::LeftEdge << qreal(0) << qreal(0) << qreal(0); QTest::newRow("left:-1") << Qt::LeftEdge << qreal(-1) << qreal(0) << qreal(0); QTest::newRow("left:startDragDistance") << Qt::LeftEdge << qreal(QGuiApplication::styleHints()->startDragDistance()) << qreal(0.45) << qreal(0); QTest::newRow("left:startDragDistance*2") << Qt::LeftEdge << qreal(QGuiApplication::styleHints()->startDragDistance() * 2) << qreal(0.45) << qreal(0); QTest::newRow("right:0") << Qt::RightEdge << qreal(0) << qreal(0) << qreal(0); QTest::newRow("right:-1") << Qt::RightEdge << qreal(-1) << qreal(0) << qreal(0); QTest::newRow("right:startDragDistance") << Qt::RightEdge << qreal(QGuiApplication::styleHints()->startDragDistance()) << qreal(0) << qreal(0.75); QTest::newRow("right:startDragDistance*2") << Qt::RightEdge << qreal(QGuiApplication::styleHints()->startDragDistance() * 2) << qreal(0) << qreal(0.75); } void tst_Drawer::dragMargin() { QFETCH(Qt::Edge, edge); QFETCH(qreal, dragMargin); QFETCH(qreal, dragFromLeft); QFETCH(qreal, dragFromRight); QQuickApplicationHelper helper(this, QStringLiteral("applicationwindow.qml")); QQuickApplicationWindow *window = helper.appWindow; window->show(); window->requestActivate(); QVERIFY(QTest::qWaitForWindowActive(window)); QQuickDrawer *drawer = helper.appWindow->property("drawer").value(); QVERIFY(drawer); drawer->setEdge(edge); drawer->setDragMargin(dragMargin); // drag from the left int leftX = qMax(0, dragMargin); int leftDistance = drawer->width() * 0.45; QVERIFY(leftDistance > QGuiApplication::styleHints()->startDragDistance()); QTest::mousePress(window, Qt::LeftButton, Qt::NoModifier, QPoint(leftX, drawer->height() / 2)); QTest::mouseMove(window, QPoint(leftDistance, drawer->height() / 2)); QCOMPARE(drawer->position(), dragFromLeft); QTest::mouseRelease(window, Qt::LeftButton, Qt::NoModifier, QPoint(leftDistance, drawer->height() / 2)); drawer->close(); QTRY_COMPARE(drawer->position(), qreal(0.0)); // drag from the right int rightX = qMin(window->width() - 1, window->width() - dragMargin); int rightDistance = drawer->width() * 0.75; QVERIFY(rightDistance > QGuiApplication::styleHints()->startDragDistance()); QTest::mousePress(window, Qt::LeftButton, Qt::NoModifier, QPoint(rightX, drawer->height() / 2)); QTest::mouseMove(window, QPoint(window->width() - rightDistance, drawer->height() / 2)); QCOMPARE(drawer->position(), dragFromRight); QTest::mouseRelease(window, Qt::LeftButton, Qt::NoModifier, QPoint(window->width() - rightDistance, drawer->height() / 2)); } void tst_Drawer::reposition() { QQuickApplicationHelper helper(this, QStringLiteral("applicationwindow.qml")); QQuickApplicationWindow *window = helper.appWindow; window->show(); window->requestActivate(); QVERIFY(QTest::qWaitForWindowActive(window)); QQuickDrawer *drawer = helper.appWindow->property("drawer").value(); QVERIFY(drawer); drawer->setEdge(Qt::RightEdge); drawer->open(); QTRY_COMPARE(drawer->popupItem()->x(), window->width() - drawer->width()); window->setWidth(window->width() + 100); QTRY_COMPARE(drawer->popupItem()->x(), window->width() - drawer->width()); drawer->close(); QTRY_COMPARE(drawer->popupItem()->x(), static_cast(window->width())); } void tst_Drawer::hover_data() { QTest::addColumn("source"); QTest::addColumn("modal"); QTest::newRow("Window:modal") << "window-hover.qml" << true; QTest::newRow("Window:modeless") << "window-hover.qml" << false; QTest::newRow("ApplicationWindow:modal") << "applicationwindow-hover.qml" << true; QTest::newRow("ApplicationWindow:modeless") << "applicationwindow-hover.qml" << false; } void tst_Drawer::hover() { QFETCH(QString, source); QFETCH(bool, modal); QQuickApplicationHelper helper(this, source); QQuickWindow *window = helper.window; window->show(); window->requestActivate(); QVERIFY(QTest::qWaitForWindowActive(window)); QQuickDrawer *drawer = window->property("drawer").value(); QVERIFY(drawer); drawer->setModal(modal); QQuickButton *backgroundButton = window->property("backgroundButton").value(); QVERIFY(backgroundButton); backgroundButton->setHoverEnabled(true); QQuickButton *drawerButton = window->property("drawerButton").value(); QVERIFY(drawerButton); drawerButton->setHoverEnabled(true); QSignalSpy openedSpy(drawer, SIGNAL(opened())); QVERIFY(openedSpy.isValid()); drawer->open(); QVERIFY(openedSpy.count() == 1 || openedSpy.wait()); // hover the background button outside the drawer QTest::mouseMove(window, QPoint(window->width() - 1, window->height() - 1)); QCOMPARE(backgroundButton->isHovered(), !modal); QVERIFY(!drawerButton->isHovered()); // hover the drawer background QTest::mouseMove(window, QPoint(1, 1)); QVERIFY(!backgroundButton->isHovered()); QVERIFY(!drawerButton->isHovered()); // hover the button in a drawer QTest::mouseMove(window, QPoint(2, 2)); QVERIFY(!backgroundButton->isHovered()); QVERIFY(drawerButton->isHovered()); QSignalSpy closedSpy(drawer, SIGNAL(closed())); QVERIFY(closedSpy.isValid()); drawer->close(); QVERIFY(closedSpy.count() == 1 || closedSpy.wait()); // hover the background button after closing the drawer QTest::mouseMove(window, QPoint(window->width() / 2, window->height() / 2)); QVERIFY(backgroundButton->isHovered()); } void tst_Drawer::multiple() { QQuickApplicationHelper helper(this, QStringLiteral("multiple.qml")); QQuickWindow *window = helper.window; window->show(); QVERIFY(QTest::qWaitForWindowExposed(window)); QQuickDrawer *leftDrawer = window->property("leftDrawer").value(); QVERIFY(leftDrawer); QQuickButton *leftButton = window->property("leftButton").value(); QVERIFY(leftButton); QSignalSpy leftClickSpy(leftButton, SIGNAL(clicked())); QVERIFY(leftClickSpy.isValid()); QQuickDrawer *rightDrawer = window->property("rightDrawer").value(); QVERIFY(rightDrawer); QQuickButton *rightButton = window->property("rightButton").value(); QVERIFY(rightButton); QSignalSpy rightClickSpy(rightButton, SIGNAL(clicked())); QVERIFY(rightClickSpy.isValid()); QQuickButton *contentButton = window->property("contentButton").value(); QVERIFY(contentButton); QSignalSpy contentClickSpy(contentButton, SIGNAL(clicked())); QVERIFY(contentClickSpy.isValid()); // no drawers open, click the content QTest::mouseClick(window, Qt::LeftButton); QCOMPARE(contentClickSpy.count(), 1); QCOMPARE(leftClickSpy.count(), 0); QCOMPARE(rightClickSpy.count(), 0); // drag the left drawer open QTest::mousePress(window, Qt::LeftButton, Qt::NoModifier, QPoint(0, window->height() / 2)); QTest::mouseMove(window, QPoint(leftDrawer->width() / 2, window->height() / 2)); QCOMPARE(leftDrawer->position(), 0.5); QCOMPARE(rightDrawer->position(), 0.0); QTest::mouseRelease(window, Qt::LeftButton, Qt::NoModifier, QPoint(leftDrawer->width() / 2, window->height() / 2)); QTRY_COMPARE(leftDrawer->position(), 1.0); QCOMPARE(rightDrawer->position(), 0.0); // cannot drag the right drawer while the left drawer is open QTest::mousePress(window, Qt::LeftButton, Qt::NoModifier, QPoint(window->width() - 1, window->height() / 2)); QTest::mouseMove(window, QPoint(window->width() - leftDrawer->width() / 2, window->height() / 2)); QCOMPARE(leftDrawer->position(), 1.0); QCOMPARE(rightDrawer->position(), 0.0); QTest::mouseRelease(window, Qt::LeftButton, Qt::NoModifier, QPoint(window->width() - leftDrawer->width() / 2, window->height() / 2)); QCOMPARE(rightDrawer->position(), 0.0); QCOMPARE(leftDrawer->position(), 1.0); // open the right drawer below the left drawer rightDrawer->open(); QTRY_COMPARE(rightDrawer->position(), 1.0); // click the left drawer's button QTest::mouseClick(window, Qt::LeftButton); QCOMPARE(contentClickSpy.count(), 1); QCOMPARE(leftClickSpy.count(), 1); QCOMPARE(rightClickSpy.count(), 0); // click the left drawer's background (button disabled, don't leak through to the right drawer below) leftButton->setEnabled(false); QTest::mouseClick(window, Qt::LeftButton); QCOMPARE(contentClickSpy.count(), 1); QCOMPARE(leftClickSpy.count(), 1); QCOMPARE(rightClickSpy.count(), 0); leftButton->setEnabled(true); // click the overlay of the left drawer (don't leak through to right drawer below) QTest::mouseClick(window, Qt::LeftButton, Qt::NoModifier, QPoint(window->width() - (window->width() - leftDrawer->width()) / 2, window->height() / 2)); QCOMPARE(contentClickSpy.count(), 1); QCOMPARE(leftClickSpy.count(), 1); QCOMPARE(rightClickSpy.count(), 0); QTRY_VERIFY(!leftDrawer->isVisible()); // click the right drawer's button QTest::mouseClick(window, Qt::LeftButton); QCOMPARE(contentClickSpy.count(), 1); QCOMPARE(leftClickSpy.count(), 1); QCOMPARE(rightClickSpy.count(), 1); // cannot drag the left drawer while the right drawer is open QTest::mousePress(window, Qt::LeftButton, Qt::NoModifier, QPoint(0, window->height() / 2)); QTest::mouseMove(window, QPoint(leftDrawer->width() / 2, window->height() / 2)); QCOMPARE(leftDrawer->position(), 0.0); QCOMPARE(rightDrawer->position(), 1.0); QTest::mouseRelease(window, Qt::LeftButton, Qt::NoModifier, QPoint(leftDrawer->width() / 2, window->height() / 2)); QCOMPARE(leftDrawer->position(), 0.0); QCOMPARE(rightDrawer->position(), 1.0); // click the right drawer's background (button disabled, don't leak through to the content below) rightButton->setEnabled(false); QTest::mouseClick(window, Qt::LeftButton); QCOMPARE(contentClickSpy.count(), 1); QCOMPARE(leftClickSpy.count(), 1); QCOMPARE(rightClickSpy.count(), 1); rightButton->setEnabled(true); // click the overlay of the right drawer (don't leak through to the content below) QTest::mouseClick(window, Qt::LeftButton, Qt::NoModifier, QPoint((window->width() - rightDrawer->width()) / 2, window->height() / 2)); QCOMPARE(contentClickSpy.count(), 1); QCOMPARE(leftClickSpy.count(), 1); QCOMPARE(rightClickSpy.count(), 1); QTRY_VERIFY(!rightDrawer->isVisible()); // no drawers open, click the content QTest::mouseClick(window, Qt::LeftButton); QCOMPARE(contentClickSpy.count(), 2); QCOMPARE(leftClickSpy.count(), 1); QCOMPARE(rightClickSpy.count(), 1); // drag the right drawer open QTest::mousePress(window, Qt::LeftButton, Qt::NoModifier, QPoint(window->width() - 1, window->height() / 2)); QTest::mouseMove(window, QPoint(window->width() - rightDrawer->width() / 2, window->height() / 2)); QCOMPARE(rightDrawer->position(), 0.5); QCOMPARE(leftDrawer->position(), 0.0); QTest::mouseRelease(window, Qt::LeftButton, Qt::NoModifier, QPoint(window->width() - rightDrawer->width() / 2, window->height() / 2)); QTRY_COMPARE(rightDrawer->position(), 1.0); QCOMPARE(leftDrawer->position(), 0.0); } QTEST_MAIN(tst_Drawer) #include "tst_drawer.moc"