qtest.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:7k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtTest module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QTEST_H
  38. #define QTEST_H
  39. #include <QtTest/qtest_global.h>
  40. #include <QtTest/qtestcase.h>
  41. #include <QtTest/qtestdata.h>
  42. #include <QtCore/qbytearray.h>
  43. #include <QtCore/qstring.h>
  44. #include <QtCore/qstringlist.h>
  45. #include <QtCore/qdatetime.h>
  46. #include <QtCore/qobject.h>
  47. #include <QtCore/qurl.h>
  48. #include <QtCore/qpoint.h>
  49. #include <QtCore/qsize.h>
  50. #include <QtCore/qrect.h>
  51. QT_BEGIN_HEADER
  52. QT_BEGIN_NAMESPACE
  53. QT_MODULE(Test)
  54. namespace QTest
  55. {
  56. template<> inline char *toString(const QLatin1String &str)
  57. {
  58.     return qstrdup(str.latin1());
  59. }
  60. template<> inline char *toString(const QString &str)
  61. {
  62.     return qstrdup(str.toLatin1().constData());
  63. }
  64. template<> inline char *toString(const QByteArray &ba)
  65. {
  66.     return QTest::toHexRepresentation(ba.constData(), ba.length());
  67. }
  68. template<> inline char *toString(const QTime &time)
  69. {
  70.     return time.isValid()
  71.         ? qstrdup(time.toString(QLatin1String("hh:mm:ss.zzz")).toLatin1())
  72.         : qstrdup("Invalid QTime");
  73. }
  74. template<> inline char *toString(const QDate &date)
  75. {
  76.     return date.isValid()
  77.         ? qstrdup(date.toString(QLatin1String("yyyy/MM/dd")).toLatin1())
  78.         : qstrdup("Invalid QDate");
  79. }
  80. template<> inline char *toString(const QDateTime &dateTime)
  81. {
  82.     return dateTime.isValid()
  83.         ? qstrdup((dateTime.toString(QLatin1String("yyyy/MM/dd hh:mm:ss.zzz")) +
  84.                   (dateTime.timeSpec() == Qt::LocalTime ? QLatin1String("[local time]") : QLatin1String("[UTC]"))).toLatin1())
  85.         : qstrdup("Invalid QDateTime");
  86. }
  87. template<> inline char *toString(const QChar &c)
  88. {
  89.     return qstrdup(QString::fromLatin1("QChar: '%1' (0x%2)").arg(c).arg(QString::number(c.unicode(), 16)).toLatin1().constData());
  90. }
  91. template<> inline char *toString(const QPoint &p)
  92. {
  93.     return qstrdup(QString::fromLatin1("QPoint(%1,%2)").arg(p.x()).arg(p.y()).toLatin1().constData());
  94. }
  95. template<> inline char *toString(const QSize &s)
  96. {
  97.     return qstrdup(QString::fromLatin1("QSize(%1x%2)").arg(s.width()).arg(s.height()).toLatin1().constData());
  98. }
  99. template<> inline char *toString(const QRect &s)
  100. {
  101.     return qstrdup(QString::fromLatin1("QRect(%1,%2 %5x%6) (bottomright %3,%4)").arg(s.left()).arg(s.top()).arg(s.right()).arg(s.bottom()).arg(s.width()).arg(s.height()).toLatin1().constData());
  102. }
  103. template<> inline char *toString(const QPointF &p)
  104. {
  105.     return qstrdup(QString::fromLatin1("QPointF(%1,%2)").arg(p.x()).arg(p.y()).toLatin1().constData());
  106. }
  107. template<> inline char *toString(const QSizeF &s)
  108. {
  109.     return qstrdup(QString::fromLatin1("QSizeF(%1x%2)").arg(s.width()).arg(s.height()).toLatin1().constData());
  110. }
  111. template<> inline char *toString(const QRectF &s)
  112. {
  113.     return qstrdup(QString::fromLatin1("QRectF(%1,%2 %5x%6) (bottomright %3,%4)").arg(s.left()).arg(s.top()).arg(s.right()).arg(s.bottom()).arg(s.width()).arg(s.height()).toLatin1().constData());
  114. }
  115. template<> inline char *toString(const QUrl &uri)
  116. {
  117.     return qstrdup(uri.toEncoded().constData());
  118. }
  119. #ifndef QTEST_NO_SPECIALIZATIONS
  120. template<>
  121. #endif
  122. inline bool qCompare(QString const &t1, QLatin1String const &t2, const char *actual,
  123.                     const char *expected, const char *file, int line)
  124. {
  125.     return qCompare<QString>(t1, QString(t2), actual, expected, file, line);
  126. }
  127. #ifndef QTEST_NO_SPECIALIZATIONS
  128. template<>
  129. #endif
  130. inline bool qCompare(QLatin1String const &t1, QString const &t2, const char *actual,
  131.                     const char *expected, const char *file, int line)
  132. {
  133.     return qCompare<QString>(QString(t1), t2, actual, expected, file, line);
  134. }
  135. template<>
  136. inline bool qCompare(QStringList const &t1, QStringList const &t2,
  137.                     const char *actual, const char *expected, const char *file, int line)
  138. {
  139.     char msg[1024];
  140.     msg[0] = '';
  141.     bool isOk = true;
  142.     if (t1.count() != t2.count()) {
  143.         qt_snprintf(msg, 1024, "Compared QStringLists have different sizes.n"
  144.                     "   Actual (%s) size  : '%d'n"
  145.                     "   Expected (%s) size: '%d'", actual, t1.count(), expected, t2.count());
  146.         isOk = false;
  147.     }
  148.     const int min = qMin(t1.count(), t2.count());
  149.     for (int i = 0; i < min; ++i) {
  150.         if (t1.at(i) != t2.at(i)) {
  151.             qt_snprintf(msg, 1024, "Compared QStringLists differ at index %d.n"
  152.                         "   Actual (%s) : '%s'n"
  153.                         "   Expected (%s) : '%s'", i, actual, t1.at(i).toLatin1().constData(),
  154.                         expected, t2.at(i).toLatin1().constData());
  155.             isOk = false;
  156.         }
  157.     }
  158.     return compare_helper(isOk, msg, file, line);
  159. }
  160. template <typename T>
  161. inline bool qCompare(QFlags<T> const &t1, T const &t2, const char *actual, const char *expected,
  162.                     const char *file, int line)
  163. {
  164.     return qCompare(int(t1), int(t2), actual, expected, file, line);
  165. }
  166. template <typename T>
  167. inline bool qCompare(QFlags<T> const &t1, int const &t2, const char *actual, const char *expected,
  168.                     const char *file, int line)
  169. {
  170.     return qCompare(int(t1), t2, actual, expected, file, line);
  171. }
  172. }
  173. QT_END_NAMESPACE
  174. #define QTEST_APPLESS_MAIN(TestObject) 
  175. int main(int argc, char *argv[]) 
  176.     TestObject tc; 
  177.     return QTest::qExec(&tc, argc, argv); 
  178. }
  179. #define QTEST_NOOP_MAIN 
  180. int main(int argc, char *argv[]) 
  181.     QObject tc; 
  182.     return QTest::qExec(&tc, argc, argv); 
  183. }
  184. #include <QtTest/qtestsystem.h>
  185. #ifdef QT_GUI_LIB
  186. #include <QtTest/qtest_gui.h>
  187. #define QTEST_MAIN(TestObject) 
  188. int main(int argc, char *argv[]) 
  189.     QApplication app(argc, argv); 
  190.     TestObject tc; 
  191.     return QTest::qExec(&tc, argc, argv); 
  192. }
  193. #else
  194. #define QTEST_MAIN(TestObject) 
  195. int main(int argc, char *argv[]) 
  196.     QCoreApplication app(argc, argv); 
  197.     TestObject tc; 
  198.     return QTest::qExec(&tc, argc, argv); 
  199. }
  200. #endif // QT_GUI_LIB
  201. QT_END_HEADER
  202. #endif