1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** All rights reserved.
|
---|
5 | ** Contact: Nokia Corporation ([email protected])
|
---|
6 | **
|
---|
7 | ** This file is part of the QtTest module of the Qt Toolkit.
|
---|
8 | **
|
---|
9 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
10 | ** Commercial Usage
|
---|
11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
13 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
14 | ** a written agreement between you and Nokia.
|
---|
15 | **
|
---|
16 | ** GNU Lesser General Public License Usage
|
---|
17 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
18 | ** General Public License version 2.1 as published by the Free Software
|
---|
19 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
20 | ** packaging of this file. Please review the following information to
|
---|
21 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
22 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
23 | **
|
---|
24 | ** In addition, as a special exception, Nokia gives you certain additional
|
---|
25 | ** rights. These rights are described in the Nokia Qt LGPL Exception
|
---|
26 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
---|
27 | **
|
---|
28 | ** GNU General Public License Usage
|
---|
29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
30 | ** General Public License version 3.0 as published by the Free Software
|
---|
31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
32 | ** packaging of this file. Please review the following information to
|
---|
33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
35 | **
|
---|
36 | ** If you have questions regarding the use of this file, please contact
|
---|
37 | ** Nokia at [email protected].
|
---|
38 | ** $QT_END_LICENSE$
|
---|
39 | **
|
---|
40 | ****************************************************************************/
|
---|
41 |
|
---|
42 | #include <stdio.h>
|
---|
43 | #include <string.h>
|
---|
44 | #include <QtCore/qglobal.h>
|
---|
45 |
|
---|
46 | #include "QtTest/private/qxmltestlogger_p.h"
|
---|
47 | #include "QtTest/private/qtestresult_p.h"
|
---|
48 | #include "QtTest/private/qbenchmark_p.h"
|
---|
49 | #include "QtTest/qtestcase.h"
|
---|
50 |
|
---|
51 | QT_BEGIN_NAMESPACE
|
---|
52 |
|
---|
53 | namespace QTest {
|
---|
54 |
|
---|
55 | static const char* xmlMessageType2String(QAbstractTestLogger::MessageTypes type)
|
---|
56 | {
|
---|
57 | switch (type) {
|
---|
58 | case QAbstractTestLogger::Warn:
|
---|
59 | return "warn";
|
---|
60 | case QAbstractTestLogger::QSystem:
|
---|
61 | return "system";
|
---|
62 | case QAbstractTestLogger::QDebug:
|
---|
63 | return "qdebug";
|
---|
64 | case QAbstractTestLogger::QWarning:
|
---|
65 | return "qwarn";
|
---|
66 | case QAbstractTestLogger::QFatal:
|
---|
67 | return "qfatal";
|
---|
68 | case QAbstractTestLogger::Skip:
|
---|
69 | return "skip";
|
---|
70 | case QAbstractTestLogger::Info:
|
---|
71 | return "info";
|
---|
72 | }
|
---|
73 | return "??????";
|
---|
74 | }
|
---|
75 |
|
---|
76 | static const char* xmlIncidentType2String(QAbstractTestLogger::IncidentTypes type)
|
---|
77 | {
|
---|
78 | switch (type) {
|
---|
79 | case QAbstractTestLogger::Pass:
|
---|
80 | return "pass";
|
---|
81 | case QAbstractTestLogger::XFail:
|
---|
82 | return "xfail";
|
---|
83 | case QAbstractTestLogger::Fail:
|
---|
84 | return "fail";
|
---|
85 | case QAbstractTestLogger::XPass:
|
---|
86 | return "xpass";
|
---|
87 | }
|
---|
88 | return "??????";
|
---|
89 | }
|
---|
90 |
|
---|
91 | }
|
---|
92 |
|
---|
93 |
|
---|
94 | QXmlTestLogger::QXmlTestLogger(XmlMode mode )
|
---|
95 | :xmlmode(mode)
|
---|
96 | {
|
---|
97 |
|
---|
98 | }
|
---|
99 |
|
---|
100 | QXmlTestLogger::~QXmlTestLogger()
|
---|
101 | {
|
---|
102 | }
|
---|
103 |
|
---|
104 | void QXmlTestLogger::startLogging()
|
---|
105 | {
|
---|
106 | QAbstractTestLogger::startLogging();
|
---|
107 | QTestCharBuffer buf;
|
---|
108 |
|
---|
109 | if (xmlmode == QXmlTestLogger::Complete) {
|
---|
110 | QTestCharBuffer quotedTc;
|
---|
111 | xmlQuote("edTc, QTestResult::currentTestObjectName());
|
---|
112 | QTest::qt_asprintf(&buf,
|
---|
113 | "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n"
|
---|
114 | "<TestCase name=\"%s\">\n", quotedTc.constData());
|
---|
115 | outputString(buf.constData());
|
---|
116 | }
|
---|
117 |
|
---|
118 | QTest::qt_asprintf(&buf,
|
---|
119 | "<Environment>\n"
|
---|
120 | " <QtVersion>%s</QtVersion>\n"
|
---|
121 | " <QTestVersion>"QTEST_VERSION_STR"</QTestVersion>\n"
|
---|
122 | "</Environment>\n", qVersion());
|
---|
123 | outputString(buf.constData());
|
---|
124 | }
|
---|
125 |
|
---|
126 | void QXmlTestLogger::stopLogging()
|
---|
127 | {
|
---|
128 | if (xmlmode == QXmlTestLogger::Complete) {
|
---|
129 | outputString("</TestCase>\n");
|
---|
130 | }
|
---|
131 |
|
---|
132 | QAbstractTestLogger::stopLogging();
|
---|
133 | }
|
---|
134 |
|
---|
135 | void QXmlTestLogger::enterTestFunction(const char *function)
|
---|
136 | {
|
---|
137 | QTestCharBuffer buf;
|
---|
138 | QTestCharBuffer quotedFunction;
|
---|
139 | xmlQuote("edFunction, function);
|
---|
140 | QTest::qt_asprintf(&buf, "<TestFunction name=\"%s\">\n", quotedFunction.constData());
|
---|
141 | outputString(buf.constData());
|
---|
142 | }
|
---|
143 |
|
---|
144 | void QXmlTestLogger::leaveTestFunction()
|
---|
145 | {
|
---|
146 | outputString("</TestFunction>\n");
|
---|
147 | }
|
---|
148 |
|
---|
149 | namespace QTest
|
---|
150 | {
|
---|
151 |
|
---|
152 | inline static bool isEmpty(const char *str)
|
---|
153 | {
|
---|
154 | return !str || !str[0];
|
---|
155 | }
|
---|
156 |
|
---|
157 | static const char *incidentFormatString(bool noDescription, bool noTag)
|
---|
158 | {
|
---|
159 | if (noDescription) {
|
---|
160 | if (noTag)
|
---|
161 | return "<Incident type=\"%s\" file=\"%s\" line=\"%d\" />\n";
|
---|
162 | else
|
---|
163 | return "<Incident type=\"%s\" file=\"%s\" line=\"%d\">\n"
|
---|
164 | " <DataTag><![CDATA[%s%s%s%s]]></DataTag>\n"
|
---|
165 | "</Incident>\n";
|
---|
166 | } else {
|
---|
167 | if (noTag)
|
---|
168 | return "<Incident type=\"%s\" file=\"%s\" line=\"%d\">\n"
|
---|
169 | " <Description><![CDATA[%s%s%s%s]]></Description>\n"
|
---|
170 | "</Incident>\n";
|
---|
171 | else
|
---|
172 | return "<Incident type=\"%s\" file=\"%s\" line=\"%d\">\n"
|
---|
173 | " <DataTag><![CDATA[%s%s%s]]></DataTag>\n"
|
---|
174 | " <Description><![CDATA[%s]]></Description>\n"
|
---|
175 | "</Incident>\n";
|
---|
176 | }
|
---|
177 | }
|
---|
178 |
|
---|
179 | static const char *benchmarkResultFormatString()
|
---|
180 | {
|
---|
181 | return "<BenchmarkResult metric=\"%s\" tag=\"%s\" value=\"%s\" iterations=\"%d\" />\n";
|
---|
182 | }
|
---|
183 |
|
---|
184 | static const char *messageFormatString(bool noDescription, bool noTag)
|
---|
185 | {
|
---|
186 | if (noDescription) {
|
---|
187 | if (noTag)
|
---|
188 | return "<Message type=\"%s\" file=\"%s\" line=\"%d\" />\n";
|
---|
189 | else
|
---|
190 | return "<Message type=\"%s\" file=\"%s\" line=\"%d\">\n"
|
---|
191 | " <DataTag><![CDATA[%s%s%s%s]]></DataTag>\n"
|
---|
192 | "</Message>\n";
|
---|
193 | } else {
|
---|
194 | if (noTag)
|
---|
195 | return "<Message type=\"%s\" file=\"%s\" line=\"%d\">\n"
|
---|
196 | " <Description><![CDATA[%s%s%s%s]]></Description>\n"
|
---|
197 | "</Message>\n";
|
---|
198 | else
|
---|
199 | return "<Message type=\"%s\" file=\"%s\" line=\"%d\">\n"
|
---|
200 | " <DataTag><![CDATA[%s%s%s]]></DataTag>\n"
|
---|
201 | " <Description><![CDATA[%s]]></Description>\n"
|
---|
202 | "</Message>\n";
|
---|
203 | }
|
---|
204 | }
|
---|
205 |
|
---|
206 | } // namespace
|
---|
207 |
|
---|
208 | void QXmlTestLogger::addIncident(IncidentTypes type, const char *description,
|
---|
209 | const char *file, int line)
|
---|
210 | {
|
---|
211 | QTestCharBuffer buf;
|
---|
212 | const char *tag = QTestResult::currentDataTag();
|
---|
213 | const char *gtag = QTestResult::currentGlobalDataTag();
|
---|
214 | const char *filler = (tag && gtag) ? ":" : "";
|
---|
215 | const bool notag = QTest::isEmpty(tag) && QTest::isEmpty(gtag);
|
---|
216 |
|
---|
217 | QTestCharBuffer quotedFile;
|
---|
218 | QTestCharBuffer cdataGtag;
|
---|
219 | QTestCharBuffer cdataTag;
|
---|
220 | QTestCharBuffer cdataDescription;
|
---|
221 |
|
---|
222 | xmlQuote("edFile, file);
|
---|
223 | xmlCdata(&cdataGtag, gtag);
|
---|
224 | xmlCdata(&cdataTag, tag);
|
---|
225 | xmlCdata(&cdataDescription, description);
|
---|
226 |
|
---|
227 | QTest::qt_asprintf(&buf,
|
---|
228 | QTest::incidentFormatString(QTest::isEmpty(description), notag),
|
---|
229 | QTest::xmlIncidentType2String(type),
|
---|
230 | quotedFile.constData(), line,
|
---|
231 | cdataGtag.constData(),
|
---|
232 | filler,
|
---|
233 | cdataTag.constData(),
|
---|
234 | cdataDescription.constData());
|
---|
235 |
|
---|
236 | outputString(buf.constData());
|
---|
237 | }
|
---|
238 |
|
---|
239 | void QXmlTestLogger::addBenchmarkResult(const QBenchmarkResult &result)
|
---|
240 | {
|
---|
241 | QTestCharBuffer buf;
|
---|
242 | QTestCharBuffer quotedMetric;
|
---|
243 | QTestCharBuffer quotedTag;
|
---|
244 |
|
---|
245 | xmlQuote("edMetric,
|
---|
246 | QBenchmarkGlobalData::current->measurer->metricText().toAscii().constData());
|
---|
247 | xmlQuote("edTag, result.context.tag.toAscii().constData());
|
---|
248 |
|
---|
249 | QTest::qt_asprintf(
|
---|
250 | &buf,
|
---|
251 | QTest::benchmarkResultFormatString(),
|
---|
252 | quotedMetric.constData(),
|
---|
253 | quotedTag.constData(),
|
---|
254 | QByteArray::number(result.value).constData(), //no 64-bit qt_snprintf support
|
---|
255 | result.iterations);
|
---|
256 | outputString(buf.constData());
|
---|
257 | }
|
---|
258 |
|
---|
259 | void QXmlTestLogger::addMessage(MessageTypes type, const char *message,
|
---|
260 | const char *file, int line)
|
---|
261 | {
|
---|
262 | QTestCharBuffer buf;
|
---|
263 | const char *tag = QTestResult::currentDataTag();
|
---|
264 | const char *gtag = QTestResult::currentGlobalDataTag();
|
---|
265 | const char *filler = (tag && gtag) ? ":" : "";
|
---|
|
---|