qtestsystem.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtTest module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QTESTSYSTEM_H
  40. #define QTESTSYSTEM_H
  41. #include <QtTest/qtestcase.h>
  42. #include <QtCore/qcoreapplication.h>
  43. #include <QtCore/qelapsedtimer.h>
  44. #ifdef QT_GUI_LIB
  45. # include <QtGui/QWindow>
  46. #endif
  47. #ifdef QT_WIDGETS_LIB
  48. # include <QtWidgets/QWidget>
  49. #endif
  50. QT_BEGIN_NAMESPACE
  51. namespace QTest
  52. {
  53. Q_DECL_UNUSED inline static void qWait(int ms)
  54. {
  55. Q_ASSERT(QCoreApplication::instance());
  56. QElapsedTimer timer;
  57. timer.start();
  58. do {
  59. QCoreApplication::processEvents(QEventLoop::AllEvents, ms);
  60. QCoreApplication::sendPostedEvents(Q_NULLPTR, QEvent::DeferredDelete);
  61. QTest::qSleep(10);
  62. } while (timer.elapsed() < ms);
  63. }
  64. #ifdef QT_GUI_LIB
  65. inline static bool qWaitForWindowActive(QWindow *window, int timeout = 5000)
  66. {
  67. QElapsedTimer timer;
  68. timer.start();
  69. while (!window->isActive()) {
  70. int remaining = timeout - int(timer.elapsed());
  71. if (remaining <= 0)
  72. break;
  73. QCoreApplication::processEvents(QEventLoop::AllEvents, remaining);
  74. QCoreApplication::sendPostedEvents(Q_NULLPTR, QEvent::DeferredDelete);
  75. QTest::qSleep(10);
  76. }
  77. // Try ensuring the platform window receives the real position.
  78. // (i.e. that window->pos() reflects reality)
  79. // isActive() ( == FocusIn in case of X) does not guarantee this. It seems some WMs randomly
  80. // send the final ConfigureNotify (the one with the non-bogus 0,0 position) after the FocusIn.
  81. // If we just let things go, every mapTo/FromGlobal call the tests perform directly after
  82. // qWaitForWindowShown() will generate bogus results.
  83. if (window->isActive()) {
  84. int waitNo = 0; // 0, 0 might be a valid position after all, so do not wait for ever
  85. while (window->position().isNull()) {
  86. if (waitNo++ > timeout / 10)
  87. break;
  88. qWait(10);
  89. }
  90. }
  91. return window->isActive();
  92. }
  93. inline static bool qWaitForWindowExposed(QWindow *window, int timeout = 5000)
  94. {
  95. QElapsedTimer timer;
  96. timer.start();
  97. while (!window->isExposed()) {
  98. int remaining = timeout - int(timer.elapsed());
  99. if (remaining <= 0)
  100. break;
  101. QCoreApplication::processEvents(QEventLoop::AllEvents, remaining);
  102. QCoreApplication::sendPostedEvents(Q_NULLPTR, QEvent::DeferredDelete);
  103. QTest::qSleep(10);
  104. }
  105. return window->isExposed();
  106. }
  107. #endif
  108. #ifdef QT_WIDGETS_LIB
  109. inline static bool qWaitForWindowActive(QWidget *widget, int timeout = 1000)
  110. {
  111. if (QWindow *window = widget->windowHandle())
  112. return qWaitForWindowActive(window, timeout);
  113. return false;
  114. }
  115. inline static bool qWaitForWindowExposed(QWidget *widget, int timeout = 1000)
  116. {
  117. if (QWindow *window = widget->windowHandle())
  118. return qWaitForWindowExposed(window, timeout);
  119. return false;
  120. }
  121. #endif
  122. #if QT_DEPRECATED_SINCE(5, 0)
  123. # ifdef QT_WIDGETS_LIB
  124. QT_DEPRECATED inline static bool qWaitForWindowShown(QWidget *widget, int timeout = 1000)
  125. {
  126. return qWaitForWindowExposed(widget, timeout);
  127. }
  128. # endif // QT_WIDGETS_LIB
  129. #endif // QT_DEPRECATED_SINCE(5, 0)
  130. }
  131. QT_END_NAMESPACE
  132. #endif