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 | |
40 | #ifndef QTESTRESULT_P_H |
41 | #define QTESTRESULT_P_H |
42 | |
43 | // |
44 | // W A R N I N G |
45 | // ------------- |
46 | // |
47 | // This file is not part of the Qt API. It exists purely as an |
48 | // implementation detail. This header file may change from version to |
49 | // version without notice, or even be removed. |
50 | // |
51 | // We mean it. |
52 | // |
53 | |
54 | #include <QtTest/qttestglobal.h> |
55 | |
56 | QT_BEGIN_NAMESPACE |
57 | |
58 | class QLatin1String; |
59 | class QStringView; |
60 | |
61 | class QTestResultPrivate; |
62 | class QTestData; |
63 | |
64 | class Q_TESTLIB_EXPORT QTestResult |
65 | { |
66 | public: |
67 | static const char *currentTestObjectName(); |
68 | static bool currentTestFailed(); |
69 | static QTestData *currentTestData(); |
70 | static QTestData *currentGlobalTestData(); |
71 | static const char *currentTestFunction(); |
72 | static const char *currentDataTag(); |
73 | static const char *currentGlobalDataTag(); |
74 | static void finishedCurrentTestData(); |
75 | static void finishedCurrentTestDataCleanup(); |
76 | static void finishedCurrentTestFunction(); |
77 | static void reset(); |
78 | static void setBlacklistCurrentTest(bool b); |
79 | |
80 | static void addFailure(const char *message, const char *file, int line); |
81 | static bool compare(bool success, const char *failureMsg, |
82 | char *val1, char *val2, |
83 | const char *actual, const char *expected, |
84 | const char *file, int line); |
85 | static bool compare(bool success, const char *failureMsg, |
86 | double val1, double val2, |
87 | const char *actual, const char *expected, |
88 | const char *file, int line); |
89 | static bool compare(bool success, const char *failureMsg, |
90 | float val1, float val2, |
91 | const char *actual, const char *expected, |
92 | const char *file, int line); |
93 | static bool compare(bool success, const char *failureMsg, |
94 | int val1, int val2, |
95 | const char *actual, const char *expected, |
96 | const char *file, int line); |
97 | static bool compare(bool success, const char *failureMsg, |
98 | unsigned val1, unsigned val2, |
99 | const char *actual, const char *expected, |
100 | const char *file, int line); |
101 | static bool compare(bool success, const char *failureMsg, |
102 | QStringView val1, QStringView val2, |
103 | const char *actual, const char *expected, |
104 | const char *file, int line); |
105 | static bool compare(bool success, const char *failureMsg, |
106 | const QLatin1String &val1, QStringView val2, |
107 | const char *actual, const char *expected, |
108 | const char *file, int line); |
109 | static bool compare(bool success, const char *failureMsg, |
110 | QStringView val1, const QLatin1String &val2, |
111 | const char *actual, const char *expected, |
112 | const char *file, int line); |
113 | static void setCurrentGlobalTestData(QTestData *data); |
114 | static void setCurrentTestData(QTestData *data); |
115 | static void setCurrentTestFunction(const char *func); |
116 | static void setCurrentTestObject(const char *name); |
117 | static void addSkip(const char *message, const char *file, int line); |
118 | static bool expectFail(const char *dataIndex, const char *, |
119 | QTest::TestFailMode mode, const char *file, int line); |
120 | static bool verify(bool statement, const char *statementStr, const char *, |
121 | const char *file, int line); |
122 | static void setSkipCurrentTest(bool value); |
123 | static bool skipCurrentTest(); |
124 | |
125 | static void setCurrentAppName(const char *appName); |
126 | static const char *currentAppName(); |
127 | |
128 | private: |
129 | Q_DISABLE_COPY(QTestResult) |
130 | }; |
131 | |
132 | QT_END_NAMESPACE |
133 | |
134 | #endif |
135 | |