summaryrefslogtreecommitdiffstats
path: root/src/quicktestlib/qdeclarativetestreport.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/quicktestlib/qdeclarativetestreport.cpp')
-rw-r--r--src/quicktestlib/qdeclarativetestreport.cpp168
1 files changed, 0 insertions, 168 deletions
diff --git a/src/quicktestlib/qdeclarativetestreport.cpp b/src/quicktestlib/qdeclarativetestreport.cpp
deleted file mode 100644
index df9605b..0000000
--- a/src/quicktestlib/qdeclarativetestreport.cpp
+++ /dev/null
@@ -1,168 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** No Commercial Usage
-** This file contains pre-release code and may not be distributed.
-** You may use this file in accordance with the terms and conditions
-** contained in the Technology Preview License Agreement accompanying
-** this package.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Nokia gives you certain additional
-** rights. These rights are described in the Nokia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** If you have questions regarding the use of this file, please contact
-** Nokia at qt-info@nokia.com.
-**
-**
-**
-**
-**
-**
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#include "qdeclarativetestreport_p.h"
-#include <QtGui/qtextdocument.h>
-#include <stdio.h>
-
-QT_BEGIN_NAMESPACE
-
-bool qtest_quick_xmlOutput = false;
-int qtest_quick_passed = 0;
-int qtest_quick_failed = 0;
-int qtest_quick_skipped = 0;
-FILE *qtest_quick_stream = 0;
-
-void QDeclarativeTestReport::report(int pass, int fail, int skip)
-{
- qtest_quick_passed += pass;
- qtest_quick_failed += fail;
- qtest_quick_skipped += skip;
-}
-
-void QDeclarativeTestReport::log_fail(const QString &testCase, const QString &message)
-{
- if (!qtest_quick_stream)
- qtest_quick_stream = stdout;
- if (qtest_quick_xmlOutput) {
- log_incident("fail", testCase, message);
- } else if (!message.isEmpty()) {
- fprintf(qtest_quick_stream, "FAIL! : %s %s\n",
- testCase.toLatin1().constData(),
- message.toLatin1().constData());
- } else {
- fprintf(qtest_quick_stream, "FAIL! : %s\n", testCase.toLatin1().constData());
- }
-}
-
-void QDeclarativeTestReport::log_expect_fail
- (const QString &testCase, const QString &message)
-{
- if (!qtest_quick_stream)
- qtest_quick_stream = stdout;
- if (qtest_quick_xmlOutput) {
- log_incident("xfail", testCase, message);
- } else if (!message.isEmpty()) {
- fprintf(qtest_quick_stream, "XFAIL : %s %s\n",
- testCase.toLatin1().constData(),
- message.toLatin1().constData());
- } else {
- fprintf(qtest_quick_stream, "XFAIL : %s\n", testCase.toLatin1().constData());
- }
-}
-
-void QDeclarativeTestReport::log_expect_fail_pass(const QString &testCase)
-{
- if (!qtest_quick_stream)
- qtest_quick_stream = stdout;
- if (qtest_quick_xmlOutput)
- log_incident("xpass", testCase, QString());
- else
- fprintf(qtest_quick_stream, "XPASS : %s\n", testCase.toLatin1().constData());
-}
-
-void QDeclarativeTestReport::log_skip(const QString &testCase, const QString &message)
-{
- if (!qtest_quick_stream)
- qtest_quick_stream = stdout;
- if (qtest_quick_xmlOutput) {
- log_incident("skip", testCase, message);
- } else if (!message.isEmpty()) {
- fprintf(qtest_quick_stream, "SKIP : %s %s\n",
- testCase.toLatin1().constData(),
- message.toLatin1().constData());
- } else {
- fprintf(qtest_quick_stream, "SKIP : %s\n", testCase.toLatin1().constData());
- }
-}
-
-void QDeclarativeTestReport::log_pass(const QString &testCase)
-{
- if (!qtest_quick_stream)
- qtest_quick_stream = stdout;
- if (qtest_quick_xmlOutput)
- log_incident("pass", testCase, QString());
- else
- fprintf(qtest_quick_stream, "PASS : %s\n", testCase.toLatin1().constData());
-}
-
-void QDeclarativeTestReport::log_message(const QString &message)
-{
- if (!qtest_quick_stream)
- qtest_quick_stream = stdout;
- if (!qtest_quick_xmlOutput)
- fprintf(qtest_quick_stream, "%s\n", message.toLatin1().constData());
-}
-
-void QDeclarativeTestReport::log_incident
- (const char *type, const QString &testCase, const QString &message)
-{
- QString name(testCase);
- QString tag;
- name.replace(QLatin1String("()"), QLatin1String(""));
- name.replace(QLatin1String("::"), QLatin1String("__"));
- int tagIndex = name.indexOf(QLatin1String(" ["));
- if (tagIndex >= 0) {
- tag = name.mid(tagIndex + 2);
- if (tag.endsWith(QLatin1String("]")))
- tag = tag.left(tag.length() - 1);
- name = name.left(tagIndex);
- }
- fprintf(qtest_quick_stream, "<TestFunction name=\"%s\">\n",
- Qt::escape(name).toLatin1().constData());
- if (message.isEmpty() && tag.isEmpty()) {
- fprintf(qtest_quick_stream, "<Incident type=\"%s\" file=\"\" line=\"0\" />\n", type);
- } else {
- fprintf(qtest_quick_stream, "<Incident type=\"%s\" file=\"\" line=\"0\">\n", type);
- if (!tag.isEmpty()) {
- fprintf(qtest_quick_stream, " <DataTag>%s</DataTag>\n",
- Qt::escape(tag).toLatin1().constData());
- }
- if (!message.isEmpty()) {
- fprintf(qtest_quick_stream, " <Description>%s</Description>\n",
- Qt::escape(message).toLatin1().constData());
- }
- fprintf(qtest_quick_stream, "</Incident>\n");
- }
- fprintf(qtest_quick_stream, "</TestFunction>\n");
-}
-
-QT_END_NAMESPACE