/**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https://www.qt.io/licensing/ ** ** This file is part of the test suite of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:GPL-EXCEPT$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms ** and conditions see https://www.qt.io/terms-conditions. For further ** information use the contact form at https://www.qt.io/contact-us. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 as published by the Free Software ** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT ** included in the packaging of this file. Please review the following ** information to ensure the GNU General Public License requirements will ** be met: https://www.gnu.org/licenses/gpl-3.0.html. ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include #include "Global.h" #include "XMLWriter.h" #include "TestSuiteResult.h" using namespace QPatternistSDK; TestSuiteResult::TestSuiteResult(const QString &testSuiteVersion, const QDate &runDate, const TestResult::List &results) : m_testSuiteVersion(testSuiteVersion), m_runDate(runDate), m_results(results) { } TestSuiteResult::~TestSuiteResult() { qDeleteAll(m_results); } void TestSuiteResult::toXML(XMLWriter &receiver) const { /* If this data needs to be configurable in someway(say, another * XML format is supported), then break out the info into getters(alternatively, combined * with setters, or that the class is subclassed), and access the getters instead. */ const QString organizationName (QLatin1String("K Desktop Environment(KDE)")); const QString organizationWebsite (QLatin1String("http://www.kde.org/")); const QString submittorName (QLatin1String("Frans Englich")); const QString submittorEmail (QLatin1String("frans.englich@nokia.com")); const QString implementationVersion (QLatin1String("0.1")); const QString implementationName (QLatin1String("Patternist")); const QString implementationDescription (QLatin1String( "Patternist is an implementation written in C++ " "and with the Qt/KDE libraries. " "It is licensed under GNU LGPL and part of KDE, " "the K Desktop Environment.")); /* Not currently serialized: * - * - * - */ receiver.startDocument(); /* */ receiver.startPrefixMapping(QString(), Global::xqtsResultNS); receiver.startElement(QLatin1String("test-suite-result")); /* */ QXmlStreamAttributes implementationAtts; implementationAtts.append(QLatin1String("name"), implementationName); implementationAtts.append(QLatin1String("version"), implementationVersion); receiver.startElement(QLatin1String("implementation"), implementationAtts); /* */ QXmlStreamAttributes organizationAtts; organizationAtts.append(QLatin1String("name"), organizationName); organizationAtts.append(QLatin1String("website"), organizationWebsite); receiver.startElement(QLatin1String("organization"), organizationAtts); /* */ receiver.endElement(QLatin1String("organization")); /* */ QXmlStreamAttributes submittorAtts; submittorAtts.append(QLatin1String("name"), submittorName); submittorAtts.append(QLatin1String("email"), submittorEmail); receiver.startElement(QLatin1String("submittor"), submittorAtts); /* */ receiver.endElement(QLatin1String("submittor")); /* */ receiver.startElement(QLatin1String("description")); /*

*/ receiver.startElement(QLatin1String("p")); receiver.characters(implementationDescription); /*

*/ receiver.endElement(QLatin1String("p")); /*
*/ receiver.endElement(QLatin1String("description")); /*
*/ receiver.endElement(QLatin1String("implementation")); /* */ receiver.startElement(QLatin1String("syntax")); receiver.characters(QLatin1String(QLatin1String("XQuery"))); /* */ receiver.endElement(QLatin1String("syntax")); /* */ QXmlStreamAttributes test_runAtts; test_runAtts.append(QLatin1String("dateRun"), m_runDate.toString(Qt::ISODate)); receiver.startElement(QLatin1String("test-run"), test_runAtts); /* */ QXmlStreamAttributes test_suiteAtts; test_suiteAtts.append(QLatin1String("version"), m_testSuiteVersion); receiver.startElement(QLatin1String("test-suite"), test_suiteAtts); /* */ receiver.endElement(QLatin1String("test-suite")); /* */ receiver.endElement(QLatin1String("test-run")); /* Serialize the TestResults: tons of test-case elements. */ const TestResult::List::const_iterator end(m_results.constEnd()); TestResult::List::const_iterator it(m_results.constBegin()); for(; it != end; ++it) (*it)->toXML(receiver); /*
*/ receiver.endElement(QLatin1String("test-suite-result")); receiver.endDocument(); } // vim: et:ts=4:sw=4:sts=4