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)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_REPORTER_XML_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_REPORTER_XML_HPP_INCLUDED
|
|
|
|
|
2011-06-02 09:49:47 +02:00
|
|
|
#include "../internal/catch_capture.hpp"
|
|
|
|
#include "../internal/catch_interfaces_reporter.h"
|
|
|
|
#include "../internal/catch_reporter_registrars.hpp"
|
|
|
|
#include "../internal/catch_xmlwriter.hpp"
|
2010-11-10 00:24:00 +01:00
|
|
|
|
2012-05-16 15:53:59 +02:00
|
|
|
namespace Catch {
|
|
|
|
class XmlReporter : public SharedImpl<IReporter> {
|
2010-11-10 00:24:00 +01:00
|
|
|
public:
|
2012-07-20 20:07:42 +02:00
|
|
|
XmlReporter( const ReporterConfig& config ) : m_config( config ) {}
|
2010-11-10 00:24:00 +01:00
|
|
|
|
2012-05-16 15:53:59 +02:00
|
|
|
static std::string getDescription() {
|
2010-11-10 00:24:00 +01:00
|
|
|
return "Reports test results as an XML document";
|
|
|
|
}
|
2012-08-13 08:46:10 +02:00
|
|
|
virtual ~XmlReporter();
|
2010-11-10 00:24:00 +01:00
|
|
|
|
2010-12-31 23:07:47 +01:00
|
|
|
private: // IReporter
|
2010-11-10 00:24:00 +01:00
|
|
|
|
2012-05-16 15:53:59 +02:00
|
|
|
virtual bool shouldRedirectStdout() const {
|
2012-02-17 10:28:21 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-05-16 15:53:59 +02:00
|
|
|
virtual void StartTesting() {
|
2012-07-20 20:07:42 +02:00
|
|
|
m_xml = XmlWriter( m_config.stream );
|
2011-04-12 08:39:45 +02:00
|
|
|
m_xml.startElement( "Catch" );
|
2012-07-20 20:07:42 +02:00
|
|
|
if( !m_config.name.empty() )
|
|
|
|
m_xml.writeAttribute( "name", m_config.name );
|
2010-12-10 21:01:40 +01:00
|
|
|
}
|
|
|
|
|
2012-05-16 15:53:59 +02:00
|
|
|
virtual void EndTesting( const Totals& totals ) {
|
2010-12-10 21:01:40 +01:00
|
|
|
m_xml.scopedElement( "OverallResults" )
|
2012-02-24 09:59:35 +01:00
|
|
|
.writeAttribute( "successes", totals.assertions.passed )
|
|
|
|
.writeAttribute( "failures", totals.assertions.failed );
|
2011-04-12 08:38:23 +02:00
|
|
|
m_xml.endElement();
|
2010-12-10 21:01:40 +01:00
|
|
|
}
|
2010-11-29 20:40:44 +01:00
|
|
|
|
2012-05-16 15:53:59 +02:00
|
|
|
virtual void StartGroup( const std::string& groupName ) {
|
2010-12-10 21:01:40 +01:00
|
|
|
m_xml.startElement( "Group" )
|
|
|
|
.writeAttribute( "name", groupName );
|
|
|
|
}
|
|
|
|
|
2012-05-16 15:53:59 +02:00
|
|
|
virtual void EndGroup( const std::string&, const Totals& totals ) {
|
2010-12-10 21:01:40 +01:00
|
|
|
m_xml.scopedElement( "OverallResults" )
|
2012-02-24 09:59:35 +01:00
|
|
|
.writeAttribute( "successes", totals.assertions.passed )
|
|
|
|
.writeAttribute( "failures", totals.assertions.failed );
|
2010-12-10 21:01:40 +01:00
|
|
|
m_xml.endElement();
|
|
|
|
}
|
2010-11-29 20:40:44 +01:00
|
|
|
|
2012-05-16 15:53:59 +02:00
|
|
|
virtual void StartSection( const std::string& sectionName, const std::string& description ) {
|
2010-12-10 21:01:40 +01:00
|
|
|
m_xml.startElement( "Section" )
|
|
|
|
.writeAttribute( "name", sectionName )
|
|
|
|
.writeAttribute( "description", description );
|
|
|
|
}
|
2012-08-31 09:10:36 +02:00
|
|
|
virtual void NoAssertionsInSection( const std::string& ) {}
|
|
|
|
virtual void NoAssertionsInTestCase( const std::string& ) {}
|
2010-12-10 21:01:40 +01:00
|
|
|
|
2012-05-16 15:53:59 +02:00
|
|
|
virtual void EndSection( const std::string& /*sectionName*/, const Counts& assertions ) {
|
2010-12-10 21:01:40 +01:00
|
|
|
m_xml.scopedElement( "OverallResults" )
|
2012-02-24 09:59:35 +01:00
|
|
|
.writeAttribute( "successes", assertions.passed )
|
|
|
|
.writeAttribute( "failures", assertions.failed );
|
2010-12-10 21:01:40 +01:00
|
|
|
m_xml.endElement();
|
|
|
|
}
|
2010-11-29 20:40:44 +01:00
|
|
|
|
2012-05-16 15:53:59 +02:00
|
|
|
virtual void StartTestCase( const Catch::TestCaseInfo& testInfo ) {
|
2010-12-10 21:01:40 +01:00
|
|
|
m_xml.startElement( "TestCase" ).writeAttribute( "name", testInfo.getName() );
|
2010-11-10 00:24:00 +01:00
|
|
|
m_currentTestSuccess = true;
|
|
|
|
}
|
|
|
|
|
2012-10-16 09:31:05 +02:00
|
|
|
virtual void Result( const Catch::AssertionResult& assertionResult ) {
|
|
|
|
if( !m_config.includeSuccessfulResults && assertionResult.getResultType() == ResultWas::Ok )
|
2010-11-10 00:24:00 +01:00
|
|
|
return;
|
|
|
|
|
2012-10-16 09:31:05 +02:00
|
|
|
if( assertionResult.hasExpression() ) {
|
2010-12-10 21:01:40 +01:00
|
|
|
m_xml.startElement( "Expression" )
|
2012-10-16 09:31:05 +02:00
|
|
|
.writeAttribute( "success", assertionResult.ok() )
|
2012-10-24 22:59:47 +02:00
|
|
|
.writeAttribute( "filename", assertionResult.getSourceInfo().file )
|
|
|
|
.writeAttribute( "line", assertionResult.getSourceInfo().line );
|
2010-12-10 21:01:40 +01:00
|
|
|
|
|
|
|
m_xml.scopedElement( "Original" )
|
2012-10-16 09:31:05 +02:00
|
|
|
.writeText( assertionResult.getExpression() );
|
2010-12-10 21:01:40 +01:00
|
|
|
m_xml.scopedElement( "Expanded" )
|
2012-10-16 09:31:05 +02:00
|
|
|
.writeText( assertionResult.getExpandedExpression() );
|
|
|
|
m_currentTestSuccess &= assertionResult.ok();
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
2010-12-10 21:01:40 +01:00
|
|
|
|
2012-10-16 09:31:05 +02:00
|
|
|
switch( assertionResult.getResultType() ) {
|
2010-11-10 00:24:00 +01:00
|
|
|
case ResultWas::ThrewException:
|
2010-12-10 21:01:40 +01:00
|
|
|
m_xml.scopedElement( "Exception" )
|
2012-10-24 22:59:47 +02:00
|
|
|
.writeAttribute( "filename", assertionResult.getSourceInfo().file )
|
|
|
|
.writeAttribute( "line", assertionResult.getSourceInfo().line )
|
2012-10-16 09:31:05 +02:00
|
|
|
.writeText( assertionResult.getMessage() );
|
2010-11-10 00:24:00 +01:00
|
|
|
m_currentTestSuccess = false;
|
|
|
|
break;
|
|
|
|
case ResultWas::Info:
|
2010-12-10 21:01:40 +01:00
|
|
|
m_xml.scopedElement( "Info" )
|
2012-10-16 09:31:05 +02:00
|
|
|
.writeText( assertionResult.getMessage() );
|
2010-11-10 00:24:00 +01:00
|
|
|
break;
|
|
|
|
case ResultWas::Warning:
|
2010-12-10 21:01:40 +01:00
|
|
|
m_xml.scopedElement( "Warning" )
|
2012-10-16 09:31:05 +02:00
|
|
|
.writeText( assertionResult.getMessage() );
|
2010-11-10 00:24:00 +01:00
|
|
|
break;
|
|
|
|
case ResultWas::ExplicitFailure:
|
2010-12-10 21:01:40 +01:00
|
|
|
m_xml.scopedElement( "Failure" )
|
2012-10-16 09:31:05 +02:00
|
|
|
.writeText( assertionResult.getMessage() );
|
2010-11-10 00:24:00 +01:00
|
|
|
m_currentTestSuccess = false;
|
|
|
|
break;
|
2011-09-29 09:58:40 +02:00
|
|
|
case ResultWas::Unknown:
|
|
|
|
case ResultWas::Ok:
|
|
|
|
case ResultWas::FailureBit:
|
|
|
|
case ResultWas::ExpressionFailed:
|
|
|
|
case ResultWas::Exception:
|
|
|
|
case ResultWas::DidntThrowException:
|
2010-12-28 15:42:46 +01:00
|
|
|
break;
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
2012-10-16 09:31:05 +02:00
|
|
|
if( assertionResult.hasExpression() )
|
2010-12-10 21:01:40 +01:00
|
|
|
m_xml.endElement();
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
2012-06-01 20:40:27 +02:00
|
|
|
|
|
|
|
virtual void Aborted() {
|
|
|
|
// !TBD
|
|
|
|
}
|
2010-11-10 00:24:00 +01:00
|
|
|
|
2012-05-16 15:53:59 +02:00
|
|
|
virtual void EndTestCase( const Catch::TestCaseInfo&, const Totals&, const std::string&, const std::string& ) {
|
2010-12-10 21:01:40 +01:00
|
|
|
m_xml.scopedElement( "OverallResult" ).writeAttribute( "success", m_currentTestSuccess );
|
|
|
|
m_xml.endElement();
|
2010-11-10 00:24:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2012-07-20 20:07:42 +02:00
|
|
|
ReporterConfig m_config;
|
2010-11-10 00:24:00 +01:00
|
|
|
bool m_currentTestSuccess;
|
2010-12-10 21:01:40 +01:00
|
|
|
XmlWriter m_xml;
|
2010-11-10 00:24:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace Catch
|
|
|
|
|
2010-12-28 15:42:46 +01:00
|
|
|
#endif // TWOBLUECUBES_CATCH_REPORTER_XML_HPP_INCLUDED
|