qtest.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Copyright (C) 2016 Intel Corporation.
  5. ** Contact: https://www.qt.io/licensing/
  6. **
  7. ** This file is part of the QtTest module of the Qt Toolkit.
  8. **
  9. ** $QT_BEGIN_LICENSE:LGPL$
  10. ** Commercial License Usage
  11. ** Licensees holding valid commercial Qt licenses may use this file in
  12. ** accordance with the commercial license agreement provided with the
  13. ** Software or, alternatively, in accordance with the terms contained in
  14. ** a written agreement between you and The Qt Company. For licensing terms
  15. ** and conditions see https://www.qt.io/terms-conditions. For further
  16. ** information use the contact form at https://www.qt.io/contact-us.
  17. **
  18. ** GNU Lesser General Public License Usage
  19. ** Alternatively, this file may be used under the terms of the GNU Lesser
  20. ** General Public License version 3 as published by the Free Software
  21. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  22. ** packaging of this file. Please review the following information to
  23. ** ensure the GNU Lesser General Public License version 3 requirements
  24. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  25. **
  26. ** GNU General Public License Usage
  27. ** Alternatively, this file may be used under the terms of the GNU
  28. ** General Public License version 2.0 or (at your option) the GNU General
  29. ** Public license version 3 or any later version approved by the KDE Free
  30. ** Qt Foundation. The licenses are as published by the Free Software
  31. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  32. ** included in the packaging of this file. Please review the following
  33. ** information to ensure the GNU General Public License requirements will
  34. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  35. ** https://www.gnu.org/licenses/gpl-3.0.html.
  36. **
  37. ** $QT_END_LICENSE$
  38. **
  39. ****************************************************************************/
  40. #ifndef QTEST_H
  41. #define QTEST_H
  42. #include <QtTest/qtest_global.h>
  43. #include <QtTest/qtestcase.h>
  44. #include <QtTest/qtestdata.h>
  45. #include <QtTest/qbenchmark.h>
  46. #include <QtCore/qbytearray.h>
  47. #include <QtCore/qstring.h>
  48. #include <QtCore/qstringlist.h>
  49. #include <QtCore/qdatetime.h>
  50. #include <QtCore/qobject.h>
  51. #include <QtCore/qvariant.h>
  52. #include <QtCore/qurl.h>
  53. #include <QtCore/qpoint.h>
  54. #include <QtCore/qsize.h>
  55. #include <QtCore/qrect.h>
  56. #ifdef QT_NETWORK_LIB
  57. # include <QtNetwork/qhostaddress.h>
  58. #endif
  59. QT_BEGIN_NAMESPACE
  60. namespace QTest
  61. {
  62. template<> inline char *toString(const QString &str)
  63. {
  64. return QTest::toPrettyUnicode(reinterpret_cast<const ushort *>(str.constData()), str.length());
  65. }
  66. template<> inline char *toString(const QLatin1String &str)
  67. {
  68. return toString(QString(str));
  69. }
  70. template<> inline char *toString(const QByteArray &ba)
  71. {
  72. return QTest::toPrettyCString(ba.constData(), ba.length());
  73. }
  74. #ifndef QT_NO_DATESTRING
  75. template<> inline char *toString(const QTime &time)
  76. {
  77. return time.isValid()
  78. ? qstrdup(qPrintable(time.toString(QLatin1String("hh:mm:ss.zzz"))))
  79. : qstrdup("Invalid QTime");
  80. }
  81. template<> inline char *toString(const QDate &date)
  82. {
  83. return date.isValid()
  84. ? qstrdup(qPrintable(date.toString(QLatin1String("yyyy/MM/dd"))))
  85. : qstrdup("Invalid QDate");
  86. }
  87. template<> inline char *toString(const QDateTime &dateTime)
  88. {
  89. return dateTime.isValid()
  90. ? qstrdup(qPrintable(dateTime.toString(QLatin1String("yyyy/MM/dd hh:mm:ss.zzz[t]"))))
  91. : qstrdup("Invalid QDateTime");
  92. }
  93. #endif // QT_NO_DATESTRING
  94. template<> inline char *toString(const QChar &c)
  95. {
  96. const ushort uc = c.unicode();
  97. if (uc < 128) {
  98. char msg[32] = {'\0'};
  99. qsnprintf(msg, sizeof(msg), "QChar: '%c' (0x%x)", char(uc), unsigned(uc));
  100. return qstrdup(msg);
  101. }
  102. return qstrdup(qPrintable(QString::fromLatin1("QChar: '%1' (0x%2)").arg(c).arg(QString::number(static_cast<int>(c.unicode()), 16))));
  103. }
  104. template<> inline char *toString(const QPoint &p)
  105. {
  106. char msg[128] = {'\0'};
  107. qsnprintf(msg, sizeof(msg), "QPoint(%d,%d)", p.x(), p.y());
  108. return qstrdup(msg);
  109. }
  110. template<> inline char *toString(const QSize &s)
  111. {
  112. char msg[128] = {'\0'};
  113. qsnprintf(msg, sizeof(msg), "QSize(%dx%d)", s.width(), s.height());
  114. return qstrdup(msg);
  115. }
  116. template<> inline char *toString(const QRect &s)
  117. {
  118. char msg[256] = {'\0'};
  119. qsnprintf(msg, sizeof(msg), "QRect(%d,%d %dx%d) (bottomright %d,%d)",
  120. s.left(), s.top(), s.width(), s.height(), s.right(), s.bottom());
  121. return qstrdup(msg);
  122. }
  123. template<> inline char *toString(const QPointF &p)
  124. {
  125. char msg[64] = {'\0'};
  126. qsnprintf(msg, sizeof(msg), "QPointF(%g,%g)", p.x(), p.y());
  127. return qstrdup(msg);
  128. }
  129. template<> inline char *toString(const QSizeF &s)
  130. {
  131. char msg[64] = {'\0'};
  132. qsnprintf(msg, sizeof(msg), "QSizeF(%gx%g)", s.width(), s.height());
  133. return qstrdup(msg);
  134. }
  135. template<> inline char *toString(const QRectF &s)
  136. {
  137. char msg[256] = {'\0'};
  138. qsnprintf(msg, sizeof(msg), "QRectF(%g,%g %gx%g) (bottomright %g,%g)",
  139. s.left(), s.top(), s.width(), s.height(), s.right(), s.bottom());
  140. return qstrdup(msg);
  141. }
  142. template<> inline char *toString(const QUrl &uri)
  143. {
  144. if (!uri.isValid())
  145. return qstrdup(qPrintable(QLatin1String("Invalid URL: ") + uri.errorString()));
  146. return qstrdup(uri.toEncoded().constData());
  147. }
  148. template<> inline char *toString(const QVariant &v)
  149. {
  150. QByteArray vstring("QVariant(");
  151. if (v.isValid()) {
  152. QByteArray type(v.typeName());
  153. if (type.isEmpty()) {
  154. type = QByteArray::number(v.userType());
  155. }
  156. vstring.append(type);
  157. if (!v.isNull()) {
  158. vstring.append(',');
  159. if (v.canConvert(QVariant::String)) {
  160. vstring.append(v.toString().toLocal8Bit());
  161. }
  162. else {
  163. vstring.append("<value not representable as string>");
  164. }
  165. }
  166. }
  167. vstring.append(')');
  168. return qstrdup(vstring.constData());
  169. }
  170. #ifdef QT_NETWORK_LIB
  171. /*!
  172. \internal
  173. */
  174. template<> inline char *toString(const QHostAddress &addr)
  175. {
  176. switch (addr.protocol()) {
  177. case QAbstractSocket::UnknownNetworkLayerProtocol:
  178. return qstrdup("<unknown address (parse error)>");
  179. case QAbstractSocket::AnyIPProtocol:
  180. return qstrdup("QHostAddress::Any");
  181. case QAbstractSocket::IPv4Protocol:
  182. case QAbstractSocket::IPv6Protocol:
  183. break;
  184. }
  185. return qstrdup(addr.toString().toLatin1().constData());
  186. }
  187. #endif
  188. template<>
  189. inline bool qCompare(QString const &t1, QLatin1String const &t2, const char *actual,
  190. const char *expected, const char *file, int line)
  191. {
  192. return qCompare(t1, QString(t2), actual, expected, file, line);
  193. }
  194. template<>
  195. inline bool qCompare(QLatin1String const &t1, QString const &t2, const char *actual,
  196. const char *expected, const char *file, int line)
  197. {
  198. return qCompare(QString(t1), t2, actual, expected, file, line);
  199. }
  200. template <typename T>
  201. inline bool qCompare(QList<T> const &t1, QList<T> const &t2, const char *actual, const char *expected,
  202. const char *file, int line)
  203. {
  204. char msg[1024];
  205. msg[0] = '\0';
  206. bool isOk = true;
  207. const int actualSize = t1.count();
  208. const int expectedSize = t2.count();
  209. if (actualSize != expectedSize) {
  210. qsnprintf(msg, sizeof(msg), "Compared lists have different sizes.\n"
  211. " Actual (%s) size: %d\n"
  212. " Expected (%s) size: %d", actual, actualSize, expected, expectedSize);
  213. isOk = false;
  214. }
  215. for (int i = 0; isOk && i < actualSize; ++i) {
  216. if (!(t1.at(i) == t2.at(i))) {
  217. char *val1 = toString(t1.at(i));
  218. char *val2 = toString(t2.at(i));
  219. qsnprintf(msg, sizeof(msg), "Compared lists differ at index %d.\n"
  220. " Actual (%s): %s\n"
  221. " Expected (%s): %s", i, actual, val1 ? val1 : "<null>",
  222. expected, val2 ? val2 : "<null>");
  223. isOk = false;
  224. delete [] val1;
  225. delete [] val2;
  226. }
  227. }
  228. return compare_helper(isOk, msg, Q_NULLPTR, Q_NULLPTR, actual, expected, file, line);
  229. }
  230. template <>
  231. inline bool qCompare(QStringList const &t1, QStringList const &t2, const char *actual, const char *expected,
  232. const char *file, int line)
  233. {
  234. return qCompare<QString>(t1, t2, actual, expected, file, line);
  235. }
  236. template <typename T>
  237. inline bool qCompare(QFlags<T> const &t1, T const &t2, const char *actual, const char *expected,
  238. const char *file, int line)
  239. {
  240. return qCompare(int(t1), int(t2), actual, expected, file, line);
  241. }
  242. template <typename T>
  243. inline bool qCompare(QFlags<T> const &t1, int const &t2, const char *actual, const char *expected,
  244. const char *file, int line)
  245. {
  246. return qCompare(int(t1), t2, actual, expected, file, line);
  247. }
  248. template<>
  249. inline bool qCompare(qint64 const &t1, qint32 const &t2, const char *actual,
  250. const char *expected, const char *file, int line)
  251. {
  252. return qCompare(t1, static_cast<qint64>(t2), actual, expected, file, line);
  253. }
  254. template<>
  255. inline bool qCompare(qint64 const &t1, quint32 const &t2, const char *actual,
  256. const char *expected, const char *file, int line)
  257. {
  258. return qCompare(t1, static_cast<qint64>(t2), actual, expected, file, line);
  259. }
  260. template<>
  261. inline bool qCompare(quint64 const &t1, quint32 const &t2, const char *actual,
  262. const char *expected, const char *file, int line)
  263. {
  264. return qCompare(t1, static_cast<quint64>(t2), actual, expected, file, line);
  265. }
  266. template<>
  267. inline bool qCompare(qint32 const &t1, qint64 const &t2, const char *actual,
  268. const char *expected, const char *file, int line)
  269. {
  270. return qCompare(static_cast<qint64>(t1), t2, actual, expected, file, line);
  271. }
  272. template<>
  273. inline bool qCompare(quint32 const &t1, qint64 const &t2, const char *actual,
  274. const char *expected, const char *file, int line)
  275. {
  276. return qCompare(static_cast<qint64>(t1), t2, actual, expected, file, line);
  277. }
  278. template<>
  279. inline bool qCompare(quint32 const &t1, quint64 const &t2, const char *actual,
  280. const char *expected, const char *file, int line)
  281. {
  282. return qCompare(static_cast<quint64>(t1), t2, actual, expected, file, line);
  283. }
  284. }
  285. QT_END_NAMESPACE
  286. #ifdef QT_TESTCASE_BUILDDIR
  287. # define QTEST_SET_MAIN_SOURCE_PATH QTest::setMainSourcePath(__FILE__, QT_TESTCASE_BUILDDIR);
  288. #else
  289. # define QTEST_SET_MAIN_SOURCE_PATH QTest::setMainSourcePath(__FILE__);
  290. #endif
  291. #define QTEST_APPLESS_MAIN(TestObject) \
  292. int main(int argc, char *argv[]) \
  293. { \
  294. TestObject tc; \
  295. QTEST_SET_MAIN_SOURCE_PATH \
  296. return QTest::qExec(&tc, argc, argv); \
  297. }
  298. #include <QtTest/qtestsystem.h>
  299. #include <set>
  300. #ifndef QT_NO_OPENGL
  301. # define QTEST_ADD_GPU_BLACKLIST_SUPPORT_DEFS \
  302. extern Q_TESTLIB_EXPORT std::set<QByteArray> *(*qgpu_features_ptr)(const QString &); \
  303. extern Q_GUI_EXPORT std::set<QByteArray> *qgpu_features(const QString &);
  304. # define QTEST_ADD_GPU_BLACKLIST_SUPPORT \
  305. qgpu_features_ptr = qgpu_features;
  306. #else
  307. # define QTEST_ADD_GPU_BLACKLIST_SUPPORT_DEFS
  308. # define QTEST_ADD_GPU_BLACKLIST_SUPPORT
  309. #endif
  310. #if defined(QT_WIDGETS_LIB)
  311. #include <QtTest/qtest_widgets.h>
  312. #ifdef QT_KEYPAD_NAVIGATION
  313. # define QTEST_DISABLE_KEYPAD_NAVIGATION QApplication::setNavigationMode(Qt::NavigationModeNone);
  314. #else
  315. # define QTEST_DISABLE_KEYPAD_NAVIGATION
  316. #endif
  317. #define QTEST_MAIN(TestObject) \
  318. QT_BEGIN_NAMESPACE \
  319. QTEST_ADD_GPU_BLACKLIST_SUPPORT_DEFS \
  320. QT_END_NAMESPACE \
  321. int main(int argc, char *argv[]) \
  322. { \
  323. QApplication app(argc, argv); \
  324. app.setAttribute(Qt::AA_Use96Dpi, true); \
  325. QTEST_DISABLE_KEYPAD_NAVIGATION \
  326. QTEST_ADD_GPU_BLACKLIST_SUPPORT \
  327. TestObject tc; \
  328. QTEST_SET_MAIN_SOURCE_PATH \
  329. return QTest::qExec(&tc, argc, argv); \
  330. }
  331. #elif defined(QT_GUI_LIB)
  332. #include <QtTest/qtest_gui.h>
  333. #define QTEST_MAIN(TestObject) \
  334. QT_BEGIN_NAMESPACE \
  335. QTEST_ADD_GPU_BLACKLIST_SUPPORT_DEFS \
  336. QT_END_NAMESPACE \
  337. int main(int argc, char *argv[]) \
  338. { \
  339. QGuiApplication app(argc, argv); \
  340. app.setAttribute(Qt::AA_Use96Dpi, true); \
  341. QTEST_ADD_GPU_BLACKLIST_SUPPORT \
  342. TestObject tc; \
  343. QTEST_SET_MAIN_SOURCE_PATH \
  344. return QTest::qExec(&tc, argc, argv); \
  345. }
  346. #else
  347. #define QTEST_MAIN(TestObject) \
  348. int main(int argc, char *argv[]) \
  349. { \
  350. QCoreApplication app(argc, argv); \
  351. app.setAttribute(Qt::AA_Use96Dpi, true); \
  352. TestObject tc; \
  353. QTEST_SET_MAIN_SOURCE_PATH \
  354. return QTest::qExec(&tc, argc, argv); \
  355. }
  356. #endif // QT_GUI_LIB
  357. #define QTEST_GUILESS_MAIN(TestObject) \
  358. int main(int argc, char *argv[]) \
  359. { \
  360. QCoreApplication app(argc, argv); \
  361. app.setAttribute(Qt::AA_Use96Dpi, true); \
  362. TestObject tc; \
  363. QTEST_SET_MAIN_SOURCE_PATH \
  364. return QTest::qExec(&tc, argc, argv); \
  365. }
  366. #endif