2010-11-10 00:24:00 +01:00
|
|
|
/*
|
|
|
|
* catch_registry.hpp
|
|
|
|
* Catch
|
|
|
|
*
|
|
|
|
* Created by Phil on 29/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_REGISTRY_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_REPORTER_REGISTRY_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include "catch_testcaseinfo.hpp"
|
|
|
|
#include "catch_resultinfo.hpp"
|
|
|
|
#include "catch_common.h"
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
namespace Catch
|
|
|
|
{
|
|
|
|
class ReporterConfig
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
ReporterConfig( const ReporterConfig& other );
|
|
|
|
ReporterConfig& operator = ( const ReporterConfig& other );
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
struct Include { enum What
|
|
|
|
{
|
|
|
|
FailedOnly,
|
|
|
|
SuccessfulResults
|
|
|
|
}; };
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
explicit ReporterConfig( Include::What includeWhat = Include::FailedOnly )
|
|
|
|
: m_includeWhat( includeWhat ),
|
|
|
|
m_os( std::cout.rdbuf() )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
bool includeSuccessfulResults() const
|
|
|
|
{
|
|
|
|
return m_includeWhat == Include::SuccessfulResults;
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
void setIncludeWhat(Include::What includeWhat )
|
|
|
|
{
|
|
|
|
m_includeWhat = includeWhat;
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
std::ostream& stream() const
|
|
|
|
{
|
|
|
|
return m_os;
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
void setStreamBuf( std::streambuf* buf )
|
|
|
|
{
|
|
|
|
m_os.rdbuf( buf );
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
Include::What m_includeWhat;
|
|
|
|
|
|
|
|
mutable std::ostream m_os;
|
|
|
|
};
|
|
|
|
|
2010-11-12 20:32:13 +01:00
|
|
|
struct ITestReporter : NonCopyable
|
2010-11-10 00:24:00 +01:00
|
|
|
{
|
|
|
|
virtual ~ITestReporter(){}
|
|
|
|
|
2010-11-29 20:40:44 +01:00
|
|
|
virtual void StartTesting() = 0;
|
|
|
|
virtual void EndTesting( std::size_t succeeded, std::size_t failed ) = 0;
|
|
|
|
|
|
|
|
virtual void StartGroup( const std::string& groupName ) = 0;
|
|
|
|
virtual void EndGroup( const std::string& groupName, std::size_t succeeded, std::size_t failed ) = 0;
|
|
|
|
|
|
|
|
virtual void StartSection( const std::string& sectionName, const std::string description ) = 0;
|
|
|
|
virtual void EndSection( const std::string& sectionName, std::size_t succeeded, std::size_t failed ) = 0;
|
|
|
|
|
2010-11-10 00:24:00 +01:00
|
|
|
virtual void StartTestCase( const TestCaseInfo& testInfo ) = 0;
|
|
|
|
virtual void EndTestCase( const TestCaseInfo& testInfo ) = 0;
|
2010-11-29 20:40:44 +01:00
|
|
|
|
|
|
|
virtual void Result( const ResultInfo& result ) = 0;
|
2010-11-10 00:24:00 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct IReporterFactory
|
|
|
|
{
|
|
|
|
virtual ~IReporterFactory(){}
|
|
|
|
|
|
|
|
virtual ITestReporter* create( const ReporterConfig& config ) = 0;
|
|
|
|
virtual std::string getDescription() const = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
class ReporterFactory : public IReporterFactory
|
|
|
|
{
|
|
|
|
virtual ITestReporter* create( const ReporterConfig& config )
|
|
|
|
{
|
|
|
|
return new T( config );
|
|
|
|
}
|
|
|
|
virtual std::string getDescription() const
|
|
|
|
{
|
|
|
|
return T::getDescription();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class ReporterRegistry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
static ReporterRegistry& instance()
|
|
|
|
{
|
|
|
|
static ReporterRegistry instance;
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
~ReporterRegistry()
|
|
|
|
{
|
|
|
|
FactoryMap::const_iterator it = m_factories.begin();
|
|
|
|
FactoryMap::const_iterator itEnd = m_factories.end();
|
|
|
|
for(; it != itEnd; ++it )
|
|
|
|
{
|
|
|
|
delete it->second;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ITestReporter* create( const std::string& name, const ReporterConfig& config )
|
|
|
|
{
|
|
|
|
FactoryMap::const_iterator it = m_factories.find( name );
|
|
|
|
if( it == m_factories.end() )
|
|
|
|
return NULL;
|
|
|
|
return it->second->create( config );
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
void registerReporter( const std::string& name )
|
|
|
|
{
|
|
|
|
m_factories.insert( std::make_pair( name, new ReporterFactory<T>() ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef std::map<std::string, IReporterFactory*> FactoryMap;
|
2010-11-10 09:43:48 +01:00
|
|
|
|
|
|
|
const FactoryMap& getFactories() const
|
|
|
|
{
|
|
|
|
return m_factories;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2010-11-10 00:24:00 +01:00
|
|
|
FactoryMap m_factories;
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct ReporterRegistrar
|
|
|
|
{
|
|
|
|
ReporterRegistrar( const std::string& name )
|
|
|
|
{
|
|
|
|
ReporterRegistry::instance().registerReporter<T>( name );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2010-11-10 08:42:15 +01:00
|
|
|
#define CATCH_REGISTER_REPORTER( name, reporterType ) Catch::ReporterRegistrar<reporterType> INTERNAL_CATCH_UNIQUE_NAME( catch_internal_ReporterReg )( name );
|
2010-11-10 00:24:00 +01:00
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_REPORTER_REGISTRY_HPP_INCLUDED
|