mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
179 lines
6.4 KiB
C++
179 lines
6.4 KiB
C++
/*
|
|
* catch_reporter_xml.hpp
|
|
* Catch
|
|
*
|
|
* 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
|
|
|
|
#include "internal/catch_capture.hpp"
|
|
#include "internal/catch_interfaces_reporter.h"
|
|
#include "internal/catch_reporter_registrars.hpp"
|
|
#include "internal/catch_xmlwriter.hpp"
|
|
|
|
namespace Catch
|
|
{
|
|
class XmlReporter : public Catch::IReporter
|
|
{
|
|
public:
|
|
///////////////////////////////////////////////////////////////////////////
|
|
XmlReporter
|
|
(
|
|
const IReporterConfig& config
|
|
)
|
|
: m_config( config )
|
|
{
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
static std::string getDescription
|
|
()
|
|
{
|
|
return "Reports test results as an XML document";
|
|
}
|
|
|
|
private: // IReporter
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
virtual void StartTesting
|
|
()
|
|
{
|
|
m_xml = XmlWriter( m_config.stream() );
|
|
m_xml.startElement( "Catch" );
|
|
if( !m_config.getName().empty() )
|
|
m_xml.writeAttribute( "name", m_config.getName() );
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
virtual void EndTesting
|
|
(
|
|
std::size_t succeeded,
|
|
std::size_t failed
|
|
)
|
|
{
|
|
m_xml.scopedElement( "OverallResults" )
|
|
.writeAttribute( "successes", succeeded )
|
|
.writeAttribute( "failures", failed );
|
|
m_xml.endElement();
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
virtual void StartGroup
|
|
(
|
|
const std::string& groupName
|
|
)
|
|
{
|
|
m_xml.startElement( "Group" )
|
|
.writeAttribute( "name", groupName );
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
virtual void EndGroup
|
|
(
|
|
const std::string& /*groupName*/,
|
|
std::size_t succeeded,
|
|
std::size_t failed
|
|
)
|
|
{
|
|
m_xml.scopedElement( "OverallResults" )
|
|
.writeAttribute( "successes", succeeded )
|
|
.writeAttribute( "failures", failed );
|
|
m_xml.endElement();
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
virtual void StartSection( const std::string& sectionName, const std::string description )
|
|
{
|
|
m_xml.startElement( "Section" )
|
|
.writeAttribute( "name", sectionName )
|
|
.writeAttribute( "description", description );
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
virtual void EndSection( const std::string& /*sectionName*/, std::size_t succeeded, std::size_t failed )
|
|
{
|
|
m_xml.scopedElement( "OverallResults" )
|
|
.writeAttribute( "successes", succeeded )
|
|
.writeAttribute( "failures", failed );
|
|
m_xml.endElement();
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
virtual void StartTestCase( const Catch::TestCaseInfo& testInfo )
|
|
{
|
|
m_xml.startElement( "TestCase" ).writeAttribute( "name", testInfo.getName() );
|
|
m_currentTestSuccess = true;
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
virtual void Result( const Catch::ResultInfo& resultInfo )
|
|
{
|
|
if( !m_config.includeSuccessfulResults() && resultInfo.getResultType() == ResultWas::Ok )
|
|
return;
|
|
|
|
if( resultInfo.hasExpression() )
|
|
{
|
|
m_xml.startElement( "Expression" )
|
|
.writeAttribute( "success", resultInfo.ok() )
|
|
.writeAttribute( "filename", resultInfo.getFilename() )
|
|
.writeAttribute( "line", resultInfo.getLine() );
|
|
|
|
m_xml.scopedElement( "Original" )
|
|
.writeText( resultInfo.getExpression() );
|
|
m_xml.scopedElement( "Expanded" )
|
|
.writeText( resultInfo.getExpandedExpression() );
|
|
m_currentTestSuccess &= resultInfo.ok();
|
|
}
|
|
|
|
switch( resultInfo.getResultType() )
|
|
{
|
|
case ResultWas::ThrewException:
|
|
m_xml.scopedElement( "Exception" )
|
|
.writeText( resultInfo.getMessage() );
|
|
m_currentTestSuccess = false;
|
|
break;
|
|
case ResultWas::Info:
|
|
m_xml.scopedElement( "Info" )
|
|
.writeText( resultInfo.getMessage() );
|
|
break;
|
|
case ResultWas::Warning:
|
|
m_xml.scopedElement( "Warning" )
|
|
.writeText( resultInfo.getMessage() );
|
|
break;
|
|
case ResultWas::ExplicitFailure:
|
|
m_xml.scopedElement( "Failure" )
|
|
.writeText( resultInfo.getMessage() );
|
|
m_currentTestSuccess = false;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
if( resultInfo.hasExpression() )
|
|
m_xml.endElement();
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
virtual void EndTestCase( const Catch::TestCaseInfo&, std::size_t /* succeeded */, std::size_t /* failed */, const std::string& /*stdOut*/, const std::string& /*stdErr*/ )
|
|
{
|
|
m_xml.scopedElement( "OverallResult" ).writeAttribute( "success", m_currentTestSuccess );
|
|
m_xml.endElement();
|
|
}
|
|
|
|
private:
|
|
const IReporterConfig& m_config;
|
|
bool m_currentTestSuccess;
|
|
XmlWriter m_xml;
|
|
};
|
|
|
|
INTERNAL_CATCH_REGISTER_REPORTER( "xml", XmlReporter )
|
|
|
|
} // end namespace Catch
|
|
|
|
#endif // TWOBLUECUBES_CATCH_REPORTER_XML_HPP_INCLUDED
|