qtest_gui.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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 QTEST_GUI_H
  40. #define QTEST_GUI_H
  41. // enable GUI features
  42. #ifndef QT_GUI_LIB
  43. #define QT_GUI_LIB
  44. #endif
  45. #if 0
  46. #pragma qt_class(QtTestGui)
  47. #endif
  48. #include <QtTest/qtestassert.h>
  49. #include <QtTest/qtest.h>
  50. #include <QtTest/qtestevent.h>
  51. #include <QtTest/qtestmouse.h>
  52. #include <QtTest/qtesttouch.h>
  53. #include <QtTest/qtestkeyboard.h>
  54. #include <QtGui/qcolor.h>
  55. #include <QtGui/qpixmap.h>
  56. #include <QtGui/qimage.h>
  57. #include <QtGui/qregion.h>
  58. #ifdef QT_WIDGETS_LIB
  59. #include <QtGui/qicon.h>
  60. #endif
  61. #if 0
  62. // inform syncqt
  63. #pragma qt_no_master_include
  64. #endif
  65. QT_BEGIN_NAMESPACE
  66. namespace QTest
  67. {
  68. /*!
  69. \internal
  70. */
  71. template<> inline char *toString(const QColor &color)
  72. {
  73. return qstrdup(color.name().toLocal8Bit().constData());
  74. }
  75. template<> inline char *toString(const QRegion &region)
  76. {
  77. QByteArray result = "QRegion(";
  78. if (region.isNull()) {
  79. result += "null";
  80. } else if (region.isEmpty()) {
  81. result += "empty";
  82. } else {
  83. const QVector<QRect> &rects = region.rects();
  84. const int rectCount = rects.size();
  85. if (rectCount > 1) {
  86. result += QByteArray::number(rectCount);
  87. result += " rectangles, ";
  88. }
  89. for (int i = 0; i < rectCount; ++i) {
  90. if (i)
  91. result += ", ";
  92. const QRect &r = rects.at(i);
  93. result += QByteArray::number(r.width());
  94. result += 'x';
  95. result += QByteArray::number(r.height());
  96. if (r.x() >= 0)
  97. result += '+';
  98. result += QByteArray::number(r.x());
  99. if (r.y() >= 0)
  100. result += '+';
  101. result += QByteArray::number(r.y());
  102. }
  103. }
  104. result += ')';
  105. return qstrdup(result.constData());
  106. }
  107. inline bool qCompare(QIcon const &t1, QIcon const &t2, const char *actual, const char *expected,
  108. const char *file, int line)
  109. {
  110. QTEST_ASSERT(sizeof(QIcon) == sizeof(void *));
  111. return qCompare(*reinterpret_cast<void * const *>(&t1),
  112. *reinterpret_cast<void * const *>(&t2), actual, expected, file, line);
  113. }
  114. inline bool qCompare(QImage const &t1, QImage const &t2,
  115. const char *actual, const char *expected, const char *file, int line)
  116. {
  117. char msg[1024];
  118. msg[0] = '\0';
  119. const bool t1Null = t1.isNull();
  120. const bool t2Null = t2.isNull();
  121. if (t1Null != t2Null) {
  122. qsnprintf(msg, 1024, "Compared QImages differ.\n"
  123. " Actual (%s).isNull(): %d\n"
  124. " Expected (%s).isNull(): %d", actual, t1Null, expected, t2Null);
  125. return compare_helper(false, msg, Q_NULLPTR, Q_NULLPTR, actual, expected, file, line);
  126. }
  127. if (t1Null && t2Null)
  128. return compare_helper(true, Q_NULLPTR, Q_NULLPTR, Q_NULLPTR, actual, expected, file, line);
  129. if (t1.width() != t2.width() || t1.height() != t2.height()) {
  130. qsnprintf(msg, 1024, "Compared QImages differ in size.\n"
  131. " Actual (%s): %dx%d\n"
  132. " Expected (%s): %dx%d",
  133. actual, t1.width(), t1.height(),
  134. expected, t2.width(), t2.height());
  135. return compare_helper(false, msg, Q_NULLPTR, Q_NULLPTR, actual, expected, file, line);
  136. }
  137. if (t1.format() != t2.format()) {
  138. qsnprintf(msg, 1024, "Compared QImages differ in format.\n"
  139. " Actual (%s): %d\n"
  140. " Expected (%s): %d",
  141. actual, t1.format(), expected, t2.format());
  142. return compare_helper(false, msg, Q_NULLPTR, Q_NULLPTR, actual, expected, file, line);
  143. }
  144. return compare_helper(t1 == t2, "Compared values are not the same",
  145. toString(t1), toString(t2), actual, expected, file, line);
  146. }
  147. inline bool qCompare(QPixmap const &t1, QPixmap const &t2, const char *actual, const char *expected,
  148. const char *file, int line)
  149. {
  150. char msg[1024];
  151. msg[0] = '\0';
  152. const bool t1Null = t1.isNull();
  153. const bool t2Null = t2.isNull();
  154. if (t1Null != t2Null) {
  155. qsnprintf(msg, 1024, "Compared QPixmaps differ.\n"
  156. " Actual (%s).isNull(): %d\n"
  157. " Expected (%s).isNull(): %d", actual, t1Null, expected, t2Null);
  158. return compare_helper(false, msg, Q_NULLPTR, Q_NULLPTR, actual, expected, file, line);
  159. }
  160. if (t1Null && t2Null)
  161. return compare_helper(true, Q_NULLPTR, Q_NULLPTR, Q_NULLPTR, actual, expected, file, line);
  162. if (t1.width() != t2.width() || t1.height() != t2.height()) {
  163. qsnprintf(msg, 1024, "Compared QPixmaps differ in size.\n"
  164. " Actual (%s): %dx%d\n"
  165. " Expected (%s): %dx%d",
  166. actual, t1.width(), t1.height(),
  167. expected, t2.width(), t2.height());
  168. return compare_helper(false, msg, Q_NULLPTR, Q_NULLPTR, actual, expected, file, line);
  169. }
  170. return qCompare(t1.toImage(), t2.toImage(), actual, expected, file, line);
  171. }
  172. }
  173. QT_END_NAMESPACE
  174. #endif