2010-11-10 00:24:00 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 28/10/2010.
|
|
|
|
* Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
|
2017-11-14 17:56:27 +01:00
|
|
|
#include "catch_reporter_xml.h"
|
2013-12-03 19:52:41 +01:00
|
|
|
|
2011-06-02 09:49:47 +02:00
|
|
|
#include "../internal/catch_capture.hpp"
|
|
|
|
#include "../internal/catch_reporter_registrars.hpp"
|
2010-11-10 00:24:00 +01:00
|
|
|
|
2017-10-30 12:14:20 +01:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable:4061) // Not all labels are EXPLICITLY handled in switch
|
|
|
|
// Note that 4062 (not all labels are handled
|
|
|
|
// and default is missing) is enabled
|
|
|
|
#endif
|
|
|
|
|
2012-05-16 15:53:59 +02:00
|
|
|
namespace Catch {
|
2017-11-14 17:56:27 +01:00
|
|
|
XmlReporter::XmlReporter( ReporterConfig const& _config )
|
|
|
|
: StreamingReporterBase( _config ),
|
|
|
|
m_xml(_config.stream())
|
|
|
|
{
|
|
|
|
m_reporterPrefs.shouldRedirectStdOut = true;
|
|
|
|
}
|
|
|
|
|
2017-12-07 01:02:19 +01:00
|
|
|
XmlReporter::~XmlReporter() = default;
|
2017-11-14 17:56:27 +01:00
|
|
|
|
|
|
|
std::string XmlReporter::getDescription() {
|
|
|
|
return "Reports test results as an XML document";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string XmlReporter::getStylesheetRef() const {
|
|
|
|
return std::string();
|
|
|
|
}
|
|
|
|
|
|
|
|
void XmlReporter::writeSourceInfo( SourceLineInfo const& sourceInfo ) {
|
|
|
|
m_xml
|
|
|
|
.writeAttribute( "filename", sourceInfo.file )
|
|
|
|
.writeAttribute( "line", sourceInfo.line );
|
|
|
|
}
|
|
|
|
|
|
|
|
void XmlReporter::noMatchingTestCases( std::string const& s ) {
|
|
|
|
StreamingReporterBase::noMatchingTestCases( s );
|
|
|
|
}
|
|
|
|
|
|
|
|
void XmlReporter::testRunStarting( TestRunInfo const& testInfo ) {
|
|
|
|
StreamingReporterBase::testRunStarting( testInfo );
|
|
|
|
std::string stylesheetRef = getStylesheetRef();
|
|
|
|
if( !stylesheetRef.empty() )
|
|
|
|
m_xml.writeStylesheetRef( stylesheetRef );
|
|
|
|
m_xml.startElement( "Catch" );
|
|
|
|
if( !m_config->name().empty() )
|
|
|
|
m_xml.writeAttribute( "name", m_config->name() );
|
|
|
|
}
|
|
|
|
|
|
|
|
void XmlReporter::testGroupStarting( GroupInfo const& groupInfo ) {
|
|
|
|
StreamingReporterBase::testGroupStarting( groupInfo );
|
|
|
|
m_xml.startElement( "Group" )
|
|
|
|
.writeAttribute( "name", groupInfo.name );
|
|
|
|
}
|
|
|
|
|
|
|
|
void XmlReporter::testCaseStarting( TestCaseInfo const& testInfo ) {
|
|
|
|
StreamingReporterBase::testCaseStarting(testInfo);
|
|
|
|
m_xml.startElement( "TestCase" )
|
|
|
|
.writeAttribute( "name", trim( testInfo.name ) )
|
|
|
|
.writeAttribute( "description", testInfo.description )
|
|
|
|
.writeAttribute( "tags", testInfo.tagsAsString() );
|
|
|
|
|
|
|
|
writeSourceInfo( testInfo.lineInfo );
|
|
|
|
|
|
|
|
if ( m_config->showDurations() == ShowDurations::Always )
|
|
|
|
m_testCaseTimer.start();
|
|
|
|
m_xml.ensureTagClosed();
|
|
|
|
}
|
|
|
|
|
|
|
|
void XmlReporter::sectionStarting( SectionInfo const& sectionInfo ) {
|
|
|
|
StreamingReporterBase::sectionStarting( sectionInfo );
|
|
|
|
if( m_sectionDepth++ > 0 ) {
|
|
|
|
m_xml.startElement( "Section" )
|
|
|
|
.writeAttribute( "name", trim( sectionInfo.name ) )
|
|
|
|
.writeAttribute( "description", sectionInfo.description );
|
|
|
|
writeSourceInfo( sectionInfo.lineInfo );
|
2017-02-13 16:56:25 +01:00
|
|
|
m_xml.ensureTagClosed();
|
2010-12-10 21:01:40 +01:00
|
|
|
}
|
2017-11-14 17:56:27 +01:00
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2017-11-14 17:56:27 +01:00
|
|
|
void XmlReporter::assertionStarting( AssertionInfo const& ) { }
|
2014-10-11 23:20:55 +02:00
|
|
|
|
2017-11-14 17:56:27 +01:00
|
|
|
bool XmlReporter::assertionEnded( AssertionStats const& assertionStats ) {
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2017-11-14 17:56:27 +01:00
|
|
|
AssertionResult const& result = assertionStats.assertionResult;
|
2017-03-03 15:12:47 +01:00
|
|
|
|
2017-11-14 17:56:27 +01:00
|
|
|
bool includeResults = m_config->includeSuccessfulResults() || !result.isOk();
|
2017-03-03 15:12:47 +01:00
|
|
|
|
2017-12-06 15:30:17 +01:00
|
|
|
if( includeResults || result.getResultType() == ResultWas::Warning ) {
|
2017-11-14 17:56:27 +01:00
|
|
|
// Print any info messages in <Info> tags.
|
|
|
|
for( auto const& msg : assertionStats.infoMessages ) {
|
2017-12-06 15:30:17 +01:00
|
|
|
if( msg.type == ResultWas::Info && includeResults ) {
|
2017-11-14 17:56:27 +01:00
|
|
|
m_xml.scopedElement( "Info" )
|
|
|
|
.writeText( msg.message );
|
|
|
|
} else if ( msg.type == ResultWas::Warning ) {
|
|
|
|
m_xml.scopedElement( "Warning" )
|
|
|
|
.writeText( msg.message );
|
2014-10-11 23:20:55 +02:00
|
|
|
}
|
2013-07-24 20:13:08 +02:00
|
|
|
}
|
2017-11-14 17:56:27 +01:00
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2017-11-14 17:56:27 +01:00
|
|
|
// Drop out if result was successful but we're not printing them.
|
|
|
|
if( !includeResults && result.getResultType() != ResultWas::Warning )
|
|
|
|
return true;
|
2013-07-03 20:14:59 +02:00
|
|
|
|
|
|
|
|
2017-11-14 17:56:27 +01:00
|
|
|
// Print the expression if there is one.
|
|
|
|
if( result.hasExpression() ) {
|
|
|
|
m_xml.startElement( "Expression" )
|
|
|
|
.writeAttribute( "success", result.succeeded() )
|
|
|
|
.writeAttribute( "type", result.getTestMacroName() );
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2017-11-14 17:56:27 +01:00
|
|
|
writeSourceInfo( result.getSourceInfo() );
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2017-11-14 17:56:27 +01:00
|
|
|
m_xml.scopedElement( "Original" )
|
|
|
|
.writeText( result.getExpression() );
|
|
|
|
m_xml.scopedElement( "Expanded" )
|
|
|
|
.writeText( result.getExpandedExpression() );
|
2014-10-11 23:20:55 +02:00
|
|
|
}
|
|
|
|
|
2017-11-14 17:56:27 +01:00
|
|
|
// And... Print a result applicable to each result type.
|
|
|
|
switch( result.getResultType() ) {
|
|
|
|
case ResultWas::ThrewException:
|
|
|
|
m_xml.startElement( "Exception" );
|
|
|
|
writeSourceInfo( result.getSourceInfo() );
|
|
|
|
m_xml.writeText( result.getMessage() );
|
2014-10-11 23:20:55 +02:00
|
|
|
m_xml.endElement();
|
2017-11-14 17:56:27 +01:00
|
|
|
break;
|
|
|
|
case ResultWas::FatalErrorCondition:
|
|
|
|
m_xml.startElement( "FatalErrorCondition" );
|
|
|
|
writeSourceInfo( result.getSourceInfo() );
|
|
|
|
m_xml.writeText( result.getMessage() );
|
|
|
|
m_xml.endElement();
|
|
|
|
break;
|
|
|
|
case ResultWas::Info:
|
|
|
|
m_xml.scopedElement( "Info" )
|
|
|
|
.writeText( result.getMessage() );
|
|
|
|
break;
|
|
|
|
case ResultWas::Warning:
|
|
|
|
// Warning will already have been written
|
|
|
|
break;
|
|
|
|
case ResultWas::ExplicitFailure:
|
|
|
|
m_xml.startElement( "Failure" );
|
|
|
|
writeSourceInfo( result.getSourceInfo() );
|
|
|
|
m_xml.writeText( result.getMessage() );
|
|
|
|
m_xml.endElement();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
2012-06-01 20:40:27 +02:00
|
|
|
|
2017-11-14 17:56:27 +01:00
|
|
|
if( result.hasExpression() )
|
|
|
|
m_xml.endElement();
|
2014-10-12 01:57:45 +02:00
|
|
|
|
2017-11-14 17:56:27 +01:00
|
|
|
return true;
|
|
|
|
}
|
2017-02-06 17:14:06 +01:00
|
|
|
|
2017-11-14 17:56:27 +01:00
|
|
|
void XmlReporter::sectionEnded( SectionStats const& sectionStats ) {
|
|
|
|
StreamingReporterBase::sectionEnded( sectionStats );
|
|
|
|
if( --m_sectionDepth > 0 ) {
|
|
|
|
XmlWriter::ScopedElement e = m_xml.scopedElement( "OverallResults" );
|
|
|
|
e.writeAttribute( "successes", sectionStats.assertions.passed );
|
|
|
|
e.writeAttribute( "failures", sectionStats.assertions.failed );
|
|
|
|
e.writeAttribute( "expectedFailures", sectionStats.assertions.failedButOk );
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2017-11-14 17:56:27 +01:00
|
|
|
if ( m_config->showDurations() == ShowDurations::Always )
|
|
|
|
e.writeAttribute( "durationInSeconds", sectionStats.durationInSeconds );
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2010-12-10 21:01:40 +01:00
|
|
|
m_xml.endElement();
|
2013-07-03 20:14:59 +02:00
|
|
|
}
|
2017-11-14 17:56:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void XmlReporter::testCaseEnded( TestCaseStats const& testCaseStats ) {
|
|
|
|
StreamingReporterBase::testCaseEnded( testCaseStats );
|
|
|
|
XmlWriter::ScopedElement e = m_xml.scopedElement( "OverallResult" );
|
|
|
|
e.writeAttribute( "success", testCaseStats.totals.assertions.allOk() );
|
|
|
|
|
|
|
|
if ( m_config->showDurations() == ShowDurations::Always )
|
|
|
|
e.writeAttribute( "durationInSeconds", m_testCaseTimer.getElapsedSeconds() );
|
|
|
|
|
|
|
|
if( !testCaseStats.stdOut.empty() )
|
|
|
|
m_xml.scopedElement( "StdOut" ).writeText( trim( testCaseStats.stdOut ), false );
|
|
|
|
if( !testCaseStats.stdErr.empty() )
|
|
|
|
m_xml.scopedElement( "StdErr" ).writeText( trim( testCaseStats.stdErr ), false );
|
|
|
|
|
|
|
|
m_xml.endElement();
|
|
|
|
}
|
|
|
|
|
|
|
|
void XmlReporter::testGroupEnded( TestGroupStats const& testGroupStats ) {
|
|
|
|
StreamingReporterBase::testGroupEnded( testGroupStats );
|
|
|
|
// TODO: Check testGroupStats.aborting and act accordingly.
|
|
|
|
m_xml.scopedElement( "OverallResults" )
|
|
|
|
.writeAttribute( "successes", testGroupStats.totals.assertions.passed )
|
|
|
|
.writeAttribute( "failures", testGroupStats.totals.assertions.failed )
|
|
|
|
.writeAttribute( "expectedFailures", testGroupStats.totals.assertions.failedButOk );
|
|
|
|
m_xml.endElement();
|
|
|
|
}
|
|
|
|
|
|
|
|
void XmlReporter::testRunEnded( TestRunStats const& testRunStats ) {
|
|
|
|
StreamingReporterBase::testRunEnded( testRunStats );
|
|
|
|
m_xml.scopedElement( "OverallResults" )
|
|
|
|
.writeAttribute( "successes", testRunStats.totals.assertions.passed )
|
|
|
|
.writeAttribute( "failures", testRunStats.totals.assertions.failed )
|
|
|
|
.writeAttribute( "expectedFailures", testRunStats.totals.assertions.failedButOk );
|
|
|
|
m_xml.endElement();
|
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2017-08-17 18:07:24 +02:00
|
|
|
CATCH_REGISTER_REPORTER( "xml", XmlReporter )
|
2014-10-11 23:20:55 +02:00
|
|
|
|
2010-11-10 00:24:00 +01:00
|
|
|
} // end namespace Catch
|
2017-10-30 12:14:20 +01:00
|
|
|
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|