source: trunk/src/testlib/qtestlogger.cpp@ 1022

Last change on this file since 1022 was 846, checked in by Dmitry A. Kuminov, 15 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

  • Property svn:eol-style set to native
File size: 12.4 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 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 "qtestlogger_p.h"
43#include "qtestelement.h"
44#include "qtestxunitstreamer.h"
45#include "qtestxmlstreamer.h"
46#include "qtestlightxmlstreamer.h"
47#include "qtestfilelogger.h"
48
49#include "QtTest/qtestcase.h"
50#include "QtTest/private/qtestresult_p.h"
51#include "QtTest/private/qbenchmark_p.h"
52
53#include <string.h>
54
55QT_BEGIN_NAMESPACE
56
57QTestLogger::QTestLogger(int fm)
58 :listOfTestcases(0), currentLogElement(0), errorLogElement(0),
59 logFormatter(0), format( (TestLoggerFormat)fm ), filelogger(new QTestFileLogger),
60 testCounter(0), passCounter(0),
61 failureCounter(0), errorCounter(0),
62 warningCounter(0), skipCounter(0),
63 systemCounter(0), qdebugCounter(0),
64 qwarnCounter(0), qfatalCounter(0),
65 infoCounter(0)
66{
67}
68
69QTestLogger::~QTestLogger()
70{
71 if(format == TLF_XunitXml)
72 delete currentLogElement;
73 else
74 delete listOfTestcases;
75
76 delete logFormatter;
77 delete filelogger;
78}
79
80void QTestLogger::startLogging()
81{
82 switch(format){
83 case TLF_LightXml:{
84 logFormatter = new QTestLightXmlStreamer;
85 filelogger->init();
86 break;
87 }case TLF_XML:{
88 logFormatter = new QTestXmlStreamer;
89 filelogger->init();
90 break;
91 }case TLF_XunitXml:{
92 logFormatter = new QTestXunitStreamer;
93 delete errorLogElement;
94 errorLogElement = new QTestElement(QTest::LET_SystemError);
95 filelogger->init();
96 break;
97 }
98 }
99
100 logFormatter->setLogger(this);
101 logFormatter->startStreaming();
102}
103
104void QTestLogger::stopLogging()
105{
106 QTestElement *iterator = listOfTestcases;
107
108 if(format == TLF_XunitXml ){
109 char buf[10];
110
111 currentLogElement = new QTestElement(QTest::LET_TestSuite);
112 currentLogElement->addAttribute(QTest::AI_Name, QTestResult::currentTestObjectName());
113
114 QTest::qt_snprintf(buf, sizeof(buf), "%i", testCounter);
115 currentLogElement->addAttribute(QTest::AI_Tests, buf);
116
117 QTest::qt_snprintf(buf, sizeof(buf), "%i", failureCounter);
118 currentLogElement->addAttribute(QTest::AI_Failures, buf);
119
120 QTest::qt_snprintf(buf, sizeof(buf), "%i", errorCounter);
121 currentLogElement->addAttribute(QTest::AI_Errors, buf);
122
123 QTestElement *property;
124 QTestElement *properties = new QTestElement(QTest::LET_Properties);
125
126 property = new QTestElement(QTest::LET_Property);
127 property->addAttribute(QTest::AI_Name, "QTestVersion");
128 property->addAttribute(QTest::AI_PropertyValue, QTEST_VERSION_STR);
129 properties->addLogElement(property);
130
131 property = new QTestElement(QTest::LET_Property);
132 property->addAttribute(QTest::AI_Name, "QtVersion");
133 property->addAttribute(QTest::AI_PropertyValue, qVersion());
134 properties->addLogElement(property);
135
136 currentLogElement->addLogElement(properties);
137
138 currentLogElement->addLogElement(iterator);
139
140 /* For correct indenting, make sure every testcase knows its parent */
141 QTestElement* testcase = iterator;
142 while (testcase) {
143 testcase->setParent(currentLogElement);
144 testcase = testcase->nextElement();