catch2/single_include/catch.hpp

4840 lines
155 KiB
C++
Raw Normal View History

/*
* Generated: 2012-07-20 18:46:50.092936
* ----------------------------------------------------------
* This file has been merged from multiple headers. Please don't edit it directly
* Copyright (c) 2012 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_SINGLE_INCLUDE_CATCH_HPP_INCLUDED
#define TWOBLUECUBES_SINGLE_INCLUDE_CATCH_HPP_INCLUDED
// #included from: internal/catch_context.h
// #included from: catch_interfaces_reporter.h
// #included from: catch_common.h
#define INTERNAL_CATCH_UNIQUE_NAME_LINE2( name, line ) name##line
#define INTERNAL_CATCH_UNIQUE_NAME_LINE( name, line ) INTERNAL_CATCH_UNIQUE_NAME_LINE2( name, line )
#define INTERNAL_CATCH_UNIQUE_NAME( name ) INTERNAL_CATCH_UNIQUE_NAME_LINE( name, __LINE__ )
#define INTERNAL_CATCH_STRINGIFY2( expr ) #expr
#define INTERNAL_CATCH_STRINGIFY( expr ) INTERNAL_CATCH_STRINGIFY2( expr )
#ifdef __GNUC__
#define ATTRIBUTE_NORETURN __attribute__ ((noreturn))
#else
#define ATTRIBUTE_NORETURN
#endif
#include <sstream>
#include <stdexcept>
#include <algorithm>
2012-05-16 16:09:17 +02:00
namespace Catch {
2012-05-09 20:04:00 +02:00
class NonCopyable {
NonCopyable( const NonCopyable& );
void operator = ( const NonCopyable& );
protected:
2012-05-09 20:04:00 +02:00
NonCopyable() {}
virtual ~NonCopyable() {}
};
class SafeBool {
public:
typedef void (SafeBool::*type)() const;
static type makeSafe( bool value ) {
return value ? &SafeBool::trueValue : 0;
}
private:
void trueValue() const {}
};
template<typename ContainerT>
2012-05-09 20:04:00 +02:00
inline void deleteAll( ContainerT& container ) {
typename ContainerT::const_iterator it = container.begin();
typename ContainerT::const_iterator itEnd = container.end();
for(; it != itEnd; ++it )
{
delete *it;
}
}
template<typename AssociativeContainerT>
2012-05-09 20:04:00 +02:00
inline void deleteAllValues( AssociativeContainerT& container ) {
typename AssociativeContainerT::const_iterator it = container.begin();
typename AssociativeContainerT::const_iterator itEnd = container.end();
for(; it != itEnd; ++it )
{
delete it->second;
}
}
template<typename ContainerT, typename Function>
2012-05-09 20:04:00 +02:00
inline void forEach( ContainerT& container, Function function ) {
std::for_each( container.begin(), container.end(), function );
}
template<typename ContainerT, typename Function>
2012-05-09 20:04:00 +02:00
inline void forEach( const ContainerT& container, Function function ) {
std::for_each( container.begin(), container.end(), function );
}
2012-05-16 16:09:17 +02:00
struct SourceLineInfo {
2012-05-09 20:04:00 +02:00
SourceLineInfo() : line( 0 ){}
2012-05-11 20:06:43 +02:00
SourceLineInfo( const std::string& _file, std::size_t _line )
: file( _file ),
line( _line )
2012-02-15 19:37:21 +01:00
{}
2012-07-05 19:37:58 +02:00
SourceLineInfo( const std::string& _function, const std::string& _file, std::size_t _line )
: function( _function ),
file( _file ),
line( _line )
{}
2012-05-09 20:04:00 +02:00
SourceLineInfo( const SourceLineInfo& other )
: file( other.file ),
line( other.line )
{}
void swap( SourceLineInfo& other ){
file.swap( other.file );
std::swap( line, other.line );
}
2012-02-15 19:37:21 +01:00
2012-07-05 19:37:58 +02:00
std::string function;
2012-02-15 19:37:21 +01:00
std::string file;
std::size_t line;
};
2012-05-09 20:04:00 +02:00
inline std::ostream& operator << ( std::ostream& os, const SourceLineInfo& info ) {
2012-02-15 19:37:21 +01:00
#ifndef __GNUG__
os << info.file << "(" << info.line << "): ";
#else
os << info.file << ":" << info.line << ": ";
#endif
return os;
}
ATTRIBUTE_NORETURN
2012-05-09 20:04:00 +02:00
inline void throwLogicError( const std::string& message, const std::string& file, std::size_t line ) {
std::ostringstream oss;
2012-02-15 19:37:21 +01:00
oss << "Internal Catch error: '" << message << "' at: " << SourceLineInfo( file, line );
throw std::logic_error( oss.str() );
}
}
#define CATCH_INTERNAL_ERROR( msg ) throwLogicError( msg, __FILE__, __LINE__ );
2012-07-05 19:37:58 +02:00
2012-07-06 00:12:22 +02:00
//#ifdef __FUNCTION__
//#define CATCH_INTERNAL_LINEINFO ::Catch::SourceLineInfo( __FUNCTION__, __FILE__, __LINE__ )
//#else
2012-05-09 20:04:00 +02:00
#define CATCH_INTERNAL_LINEINFO ::Catch::SourceLineInfo( __FILE__, __LINE__ )
2012-07-06 00:12:22 +02:00
//#endif
2012-02-25 10:39:45 +01:00
// #included from: catch_totals.hpp
2012-05-16 16:09:17 +02:00
namespace Catch {
struct Counts {
2012-05-11 09:17:16 +02:00
Counts() : passed( 0 ), failed( 0 ) {}
2012-02-25 10:39:45 +01:00
2012-05-11 09:17:16 +02:00
Counts operator - ( const Counts& other ) const {
2012-02-25 10:39:45 +01:00
Counts diff;
diff.passed = passed - other.passed;
diff.failed = failed - other.failed;
return diff;
}
2012-05-22 09:56:59 +02:00
Counts& operator += ( const Counts& other ) {
passed += other.passed;
failed += other.failed;
return *this;
}
2012-02-25 10:39:45 +01:00
2012-05-11 09:17:16 +02:00
std::size_t total() const {
2012-02-25 10:39:45 +01:00
return passed + failed;
}
2012-05-11 09:17:16 +02:00
2012-02-25 10:39:45 +01:00
std::size_t passed;
std::size_t failed;
};
2012-05-16 16:09:17 +02:00
struct Totals {
2012-05-11 09:17:16 +02:00
Totals operator - ( const Totals& other ) const {
2012-02-25 10:39:45 +01:00
Totals diff;
diff.assertions = assertions - other.assertions;
diff.testCases = testCases - other.testCases;
return diff;
}
2012-05-22 09:56:59 +02:00
Totals delta( const Totals& prevTotals ) const {
Totals diff = *this - prevTotals;
if( diff.assertions.failed > 0 )
++diff.testCases.failed;
else
++diff.testCases.passed;
return diff;
}
2012-02-25 10:39:45 +01:00
Counts assertions;
Counts testCases;
};
}
// #included from: catch_ptr.hpp
2012-05-16 16:09:17 +02:00
namespace Catch {
// An intrusive reference counting smart pointer.
// T must implement addRef() and release() methods
// typically implementing the IShared interface
template<typename T>
2012-05-16 16:09:17 +02:00
class Ptr {
public:
Ptr() : m_p( NULL ){}
Ptr( T* p ) : m_p( p ){
m_p->addRef();
}
Ptr( const Ptr& other ) : m_p( other.m_p ){
m_p->addRef();
}
~Ptr(){
if( m_p )
m_p->release();
}
Ptr& operator = ( T* p ){
Ptr temp( p );
swap( temp );
return *this;
}
Ptr& operator = ( Ptr& other ){
Ptr temp( other );
swap( temp );
return *this;
}
void swap( Ptr& other ){
std::swap( m_p, other.m_p );
}
T* get(){
return m_p;
}
const T* get() const{
return m_p;
}
T& operator*(){
return *m_p;
}
const T& operator*() const{
return *m_p;
}
T* operator->(){
return m_p;
}
const T* operator->() const{
return m_p;
}
private:
T* m_p;
};
struct IShared : NonCopyable {
virtual ~IShared(){}
virtual void addRef() = 0;
virtual void release() = 0;
};
template<typename T>
struct SharedImpl : T {
SharedImpl() : m_rc( 0 ){}
virtual void addRef(){
++m_rc;
}
virtual void release(){
if( --m_rc == 0 )
delete this;
}
int m_rc;
};
} // end namespace Catch
#include <string>
#include <ostream>
#include <map>
namespace Catch
{
2012-05-09 20:04:00 +02:00
struct IReporterConfig {
virtual ~IReporterConfig() {}
virtual std::ostream& stream () const = 0;
virtual bool includeSuccessfulResults () const = 0;
virtual std::string getName () const = 0;
};
class TestCaseInfo;
class ResultInfo;
2012-05-09 20:04:00 +02:00
struct IReporter : IShared {
virtual ~IReporter() {}
virtual bool shouldRedirectStdout() const = 0;
virtual void StartTesting() = 0;
virtual void EndTesting( const Totals& totals ) = 0;
virtual void StartGroup( const std::string& groupName ) = 0;
virtual void EndGroup( const std::string& groupName, const Totals& totals ) = 0;
2012-05-16 16:09:17 +02:00
virtual void StartSection( const std::string& sectionName, const std::string& description ) = 0;
2012-05-09 20:04:00 +02:00
virtual void EndSection( const std::string& sectionName, const Counts& assertions ) = 0;
virtual void StartTestCase( const TestCaseInfo& testInfo ) = 0;
virtual void Aborted() = 0;
2012-05-09 20:04:00 +02:00
virtual void EndTestCase( const TestCaseInfo& testInfo, const Totals& totals, const std::string& stdOut, const std::string& stdErr ) = 0;
virtual void Result( const ResultInfo& result ) = 0;
};
2012-05-09 20:04:00 +02:00
struct IReporterFactory {
virtual ~IReporterFactory() {}
virtual IReporter* create( const IReporterConfig& config ) const = 0;
virtual std::string getDescription() const = 0;
};
2012-05-09 20:04:00 +02:00
struct IReporterRegistry {
typedef std::map<std::string, IReporterFactory*> FactoryMap;
2012-05-09 20:04:00 +02:00
virtual ~IReporterRegistry() {}
virtual IReporter* create( const std::string& name, const IReporterConfig& config ) const = 0;
virtual void registerReporter( const std::string& name, IReporterFactory* factory ) = 0;
virtual const FactoryMap& getFactories() const = 0;
};
2012-05-16 16:09:17 +02:00
inline std::string trim( const std::string& str ) {
std::string::size_type start = str.find_first_not_of( "\n\r\t " );
std::string::size_type end = str.find_last_not_of( "\n\r\t " );
return start != std::string::npos ? str.substr( start, 1+end-start ) : "";
}
}
2012-06-05 21:51:05 +02:00
// #included from: catch_interfaces_config.h
namespace Catch {
struct IConfig {
virtual ~IConfig(){}
virtual bool allowThrows() const = 0;
};
}
#include <memory>
#include <vector>
#include <stdlib.h>
2012-05-16 16:09:17 +02:00
namespace Catch {
class TestCaseInfo;
struct IResultCapture;
struct ITestCaseRegistry;
struct IRunner;
struct IExceptionTranslatorRegistry;
class GeneratorsForTest;
2012-05-11 09:17:16 +02:00
class StreamBufBase : public std::streambuf{};
struct IContext
{
virtual ~IContext(){}
virtual IResultCapture& getResultCapture() = 0;
virtual IRunner& getRunner() = 0;
virtual IReporterRegistry& getReporterRegistry() = 0;
virtual ITestCaseRegistry& getTestCaseRegistry() = 0;
virtual IExceptionTranslatorRegistry& getExceptionTranslatorRegistry() = 0;
virtual size_t getGeneratorIndex( const std::string& fileInfo, size_t totalSize ) = 0;
virtual bool advanceGeneratorsForCurrentTest() = 0;
2012-06-05 21:51:05 +02:00
virtual const IConfig* getConfig() const = 0;
};
struct IMutableContext : IContext
{
virtual void setResultCapture( IResultCapture* resultCapture ) = 0;
virtual void setRunner( IRunner* runner ) = 0;
2012-06-05 21:51:05 +02:00
virtual void setConfig( const IConfig* config ) = 0;
};
IContext& getCurrentContext();
IMutableContext& getCurrentMutableContext();
class Context : public IMutableContext {
2012-05-16 16:09:17 +02:00
2012-05-11 09:17:16 +02:00
Context();
Context( const Context& );
void operator=( const Context& );
public: // IContext
virtual IResultCapture& getResultCapture();
virtual IRunner& getRunner();
virtual IReporterRegistry& getReporterRegistry();
virtual ITestCaseRegistry& getTestCaseRegistry();
virtual IExceptionTranslatorRegistry& getExceptionTranslatorRegistry();
virtual size_t getGeneratorIndex( const std::string& fileInfo, size_t totalSize );
virtual bool advanceGeneratorsForCurrentTest();
2012-06-05 21:51:05 +02:00
virtual const IConfig* getConfig() const;
public: // IMutableContext
virtual void setResultCapture( IResultCapture* resultCapture );
virtual void setRunner( IRunner* runner );
2012-06-05 21:51:05 +02:00
virtual void setConfig( const IConfig* config );
public: // Statics
2012-05-11 09:17:16 +02:00
static std::streambuf* createStreamBuf( const std::string& streamName );
static void cleanUp();
2012-05-22 09:56:59 +02:00
friend IMutableContext& getCurrentMutableContext();
private:
2012-05-11 09:17:16 +02:00
GeneratorsForTest* findGeneratorsForCurrentTest();
GeneratorsForTest& getGeneratorsForCurrentTest();
2012-05-11 09:17:16 +02:00
private:
std::auto_ptr<IReporterRegistry> m_reporterRegistry;
std::auto_ptr<ITestCaseRegistry> m_testCaseRegistry;
std::auto_ptr<IExceptionTranslatorRegistry> m_exceptionTranslatorRegistry;
IRunner* m_runner;
IResultCapture* m_resultCapture;
2012-06-05 21:51:05 +02:00
const IConfig* m_config;
std::map<std::string, GeneratorsForTest*> m_generatorsByTestName;
};
}
// #included from: internal/catch_test_registry.hpp
// #included from: catch_interfaces_testcase.h
#include <vector>
namespace Catch {
struct ITestCase {
virtual ~ITestCase(){}
virtual void invoke () const = 0;
virtual ITestCase* clone() const = 0;
virtual bool operator == ( const ITestCase& other ) const = 0;
virtual bool operator < ( const ITestCase& other ) const = 0;
};
class TestCaseInfo;
struct ITestCaseRegistry {
virtual ~ITestCaseRegistry(){}
virtual void registerTest( const TestCaseInfo& testInfo ) = 0;
virtual const std::vector<TestCaseInfo>& getAllTests() const = 0;
virtual std::vector<TestCaseInfo> getMatchingTestCases( const std::string& rawTestSpec ) = 0;
};
}
2012-05-16 16:09:17 +02:00
namespace Catch {
template<typename C>
2012-05-16 16:09:17 +02:00
class MethodTestCase : public ITestCase {
2012-05-11 09:17:16 +02:00
public:
MethodTestCase( void (C::*method)() ) : m_method( method ) {}
2012-05-11 09:17:16 +02:00
virtual void invoke() const {
C obj;
(obj.*m_method)();
}
2012-05-11 09:17:16 +02:00
virtual ITestCase* clone() const {
return new MethodTestCase<C>( m_method );
}
2012-05-11 09:17:16 +02:00
virtual bool operator == ( const ITestCase& other ) const {
const MethodTestCase* mtOther = dynamic_cast<const MethodTestCase*>( &other );
return mtOther && m_method == mtOther->m_method;
}
2012-05-11 09:17:16 +02:00
virtual bool operator < ( const ITestCase& other ) const {
const MethodTestCase* mtOther = dynamic_cast<const MethodTestCase*>( &other );
return mtOther && &m_method < &mtOther->m_method;
}
private:
void (C::*m_method)();
};
typedef void(*TestFunction)();
2012-05-16 16:09:17 +02:00
struct AutoReg {
2012-05-11 09:17:16 +02:00
AutoReg( TestFunction function,
const char* name,
const char* description,
const SourceLineInfo& lineInfo );
template<typename C>
2012-05-11 09:17:16 +02:00
AutoReg( void (C::*method)(),
const char* name,
const char* description,
const SourceLineInfo& lineInfo ) {
2012-05-09 20:04:00 +02:00
registerTestCase( new MethodTestCase<C>( method ), name, description, lineInfo );
}
2012-05-11 09:17:16 +02:00
void registerTestCase( ITestCase* testCase,
const char* name,
const char* description,
const SourceLineInfo& lineInfo );
2012-05-11 09:17:16 +02:00
~AutoReg();
private:
2012-05-11 09:17:16 +02:00
AutoReg( const AutoReg& );
void operator= ( const AutoReg& );
};
} // end namespace Catch
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_TESTCASE( Name, Desc ) \
2012-05-09 20:04:00 +02:00
static void INTERNAL_CATCH_UNIQUE_NAME( TestCaseFunction_catch_internal_ )(); \
namespace{ Catch::AutoReg INTERNAL_CATCH_UNIQUE_NAME( autoRegistrar )( &INTERNAL_CATCH_UNIQUE_NAME( TestCaseFunction_catch_internal_ ), Name, Desc, CATCH_INTERNAL_LINEINFO ); }\
static void INTERNAL_CATCH_UNIQUE_NAME( TestCaseFunction_catch_internal_ )()
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_TESTCASE_NORETURN( Name, Desc ) \
2012-05-09 20:04:00 +02:00
static void INTERNAL_CATCH_UNIQUE_NAME( TestCaseFunction_catch_internal_ )() ATTRIBUTE_NORETURN; \
namespace{ Catch::AutoReg INTERNAL_CATCH_UNIQUE_NAME( autoRegistrar )( &INTERNAL_CATCH_UNIQUE_NAME( TestCaseFunction_catch_internal_ ), Name, Desc, CATCH_INTERNAL_LINEINFO ); }\
static void INTERNAL_CATCH_UNIQUE_NAME( TestCaseFunction_catch_internal_ )()
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_METHOD_AS_TEST_CASE( QualifiedMethod, Name, Desc ) \
2012-05-09 20:04:00 +02:00
namespace{ Catch::AutoReg INTERNAL_CATCH_UNIQUE_NAME( autoRegistrar )( &QualifiedMethod, Name, Desc, CATCH_INTERNAL_LINEINFO ); }
///////////////////////////////////////////////////////////////////////////////
#define TEST_CASE_METHOD( ClassName, TestName, Desc )\
namespace{ \
2012-05-09 20:04:00 +02:00
struct INTERNAL_CATCH_UNIQUE_NAME( TestCaseMethod_catch_internal_ ) : ClassName{ \
void test(); \
}; \
2012-05-09 20:04:00 +02:00
Catch::AutoReg INTERNAL_CATCH_UNIQUE_NAME( autoRegistrar ) ( &INTERNAL_CATCH_UNIQUE_NAME( TestCaseMethod_catch_internal_ )::test, TestName, Desc, CATCH_INTERNAL_LINEINFO ); \
} \
2012-05-09 20:04:00 +02:00
void INTERNAL_CATCH_UNIQUE_NAME( TestCaseMethod_catch_internal_ )::test()
// #included from: internal/catch_capture.hpp
2012-05-16 16:09:17 +02:00
// #included from: catch_expression_builder.hpp
2012-05-11 09:17:16 +02:00
// #included from: catch_expression.hpp
2012-05-09 20:04:00 +02:00
// #included from: catch_resultinfo_builder.hpp
// #included from: catch_tostring.hpp
#include <sstream>
2012-05-16 16:09:17 +02:00
namespace Catch {
namespace Detail {
2012-05-09 20:04:00 +02:00
struct NonStreamable {
template<typename T> NonStreamable( const T& ){}
};
// If the type does not have its own << overload for ostream then
// this one will be used instead
inline std::ostream& operator << ( std::ostream& ss, NonStreamable ){
return ss << "{?}";
}
template<typename T>
inline std::string makeString( const T& value ) {
std::ostringstream oss;
oss << value;
return oss.str();
}
template<typename T>
inline std::string makeString( T* p ) {
if( !p )
return INTERNAL_CATCH_STRINGIFY( NULL );
std::ostringstream oss;
oss << p;
return oss.str();
}
template<typename T>
inline std::string makeString( const T* p ) {
if( !p )
return INTERNAL_CATCH_STRINGIFY( NULL );
std::ostringstream oss;
oss << p;
return oss.str();
}
} // end namespace Detail
/// \brief converts any type to a string
///
/// The default template forwards on to ostringstream - except when an
/// ostringstream overload does not exist - in which case it attempts to detect
/// that and writes {?}.
/// Overload (not specialise) this template for custom typs that you don't want
/// to provide an ostream overload for.
template<typename T>
std::string toString( const T& value ) {
return Detail::makeString( value );
}
// Built in overloads
inline std::string toString( const std::string& value ) {
return "\"" + value + "\"";
}
inline std::string toString( const std::wstring& value ) {
std::ostringstream oss;
oss << "\"";
for(size_t i = 0; i < value.size(); ++i )
oss << static_cast<char>( value[i] <= 0xff ? value[i] : '?');
oss << "\"";
return oss.str();
}
inline std::string toString( const char* const value ) {
return value ? Catch::toString( std::string( value ) ) : std::string( "{null string}" );
}
inline std::string toString( char* const value ) {
return Catch::toString( static_cast<const char*>( value ) );
}
inline std::string toString( int value ) {
std::ostringstream oss;
oss << value;
return oss.str();
}
inline std::string toString( unsigned long value ) {
std::ostringstream oss;
if( value > 8192 )
oss << "0x" << std::hex << value;
else
oss << value;
return oss.str();
}
inline std::string toString( unsigned int value ) {
2012-05-11 20:06:43 +02:00
return toString( static_cast<unsigned long>( value ) );
2012-05-09 20:04:00 +02:00
}
inline std::string toString( const double value ) {
std::ostringstream oss;
oss << value;
return oss.str();
}
inline std::string toString( bool value ) {
return value ? "true" : "false";
}
inline std::string toString( char value ) {
return value < ' '
? toString( (unsigned int)value )
: Detail::makeString( value );
}
inline std::string toString( signed char value ) {
return toString( static_cast<char>( value ) );
}
2012-05-11 09:17:16 +02:00
#ifdef CATCH_CONFIG_CPP11_NULLPTR
inline std::string toString( std::nullptr_t ) {
2012-05-11 09:17:16 +02:00
return "nullptr";
}
#endif
2012-05-09 20:04:00 +02:00
} // end namespace Catch
// #included from: catch_resultinfo.hpp
#include <string>
// #included from: catch_result_type.h
2012-05-16 16:09:17 +02:00
namespace Catch {
2012-05-16 16:09:17 +02:00
struct ResultWas { enum OfType {
Unknown = -1,
Ok = 0,
Info = 1,
Warning = 2,
2012-05-16 16:09:17 +02:00
FailureBit = 0x10,
2012-05-16 16:09:17 +02:00
ExpressionFailed = FailureBit | 1,
ExplicitFailure = FailureBit | 2,
2012-05-16 16:09:17 +02:00
Exception = 0x100 | FailureBit,
2012-05-16 16:09:17 +02:00
ThrewException = Exception | 1,
DidntThrowException = Exception | 2
2012-05-16 16:09:17 +02:00
}; };
2012-05-16 16:09:17 +02:00
struct ResultAction { enum Value {
None,
Failed = 1, // Failure - but no debug break if Debug bit not set
Debug = 2, // If this bit is set, invoke the debugger
Abort = 4 // Test run should abort
2012-05-16 16:09:17 +02:00
}; };
}
2012-05-16 16:09:17 +02:00
namespace Catch {
2012-05-16 16:09:17 +02:00
class ResultInfo {
public:
ResultInfo()
: m_macroName(),
m_expr(),
m_lhs(),
m_rhs(),
m_op(),
m_message(),
m_result( ResultWas::Unknown ),
m_isNot( false )
{}
2012-05-16 16:09:17 +02:00
ResultInfo( const char* expr,
ResultWas::OfType result,
bool isNot,
const SourceLineInfo& lineInfo,
const char* macroName,
const char* message )
: m_macroName( macroName ),
2012-05-09 20:04:00 +02:00
m_lineInfo( lineInfo ),
m_expr( expr ),
2012-03-04 22:22:36 +01:00
m_lhs(),
m_rhs(),
m_op( isNotExpression( expr ) ? "!" : "" ),
m_message( message ),
m_result( result ),
m_isNot( isNot )
{
if( isNot )
m_expr = "!" + m_expr;
}
2012-05-16 16:09:17 +02:00
virtual ~ResultInfo() {}
2012-02-10 09:30:13 +01:00
2012-05-16 16:09:17 +02:00
bool ok() const {
return ( m_result & ResultWas::FailureBit ) != ResultWas::FailureBit;
}
2012-05-16 16:09:17 +02:00
ResultWas::OfType getResultType() const {
return m_result;
}
2012-05-16 16:09:17 +02:00
bool hasExpression() const {
return !m_expr.empty();
}
2012-05-16 16:09:17 +02:00
bool hasMessage() const {
return !m_message.empty();
}
2012-05-16 16:09:17 +02:00
std::string getExpression() const {
return m_expr;
}
2012-05-16 16:09:17 +02:00
bool hasExpandedExpression() const {
return hasExpression() && getExpandedExpressionInternal() != m_expr;
}
2012-05-16 16:09:17 +02:00
std::string getExpandedExpression() const {
return hasExpression() ? getExpandedExpressionInternal() : "";
}
2012-05-16 16:09:17 +02:00
std::string getMessage() const {
return m_message;
}
2012-05-16 16:09:17 +02:00
std::string getFilename() const {
2012-05-09 20:04:00 +02:00
return m_lineInfo.file;
}
2012-05-16 16:09:17 +02:00
std::size_t getLine() const {
2012-05-09 20:04:00 +02:00
return m_lineInfo.line;
}
2012-05-16 16:09:17 +02:00
std::string getTestMacroName() const {
return m_macroName;
}
protected:
2012-05-16 16:09:17 +02:00
std::string getExpandedExpressionInternal() const {
if( m_op == "" || m_isNot )
return m_lhs.empty() ? m_expr : m_op + m_lhs;
2012-03-04 22:22:36 +01:00
else if( m_op == "matches" )
return m_lhs + " " + m_rhs;
else if( m_op != "!" )
2012-05-07 20:46:19 +02:00
{
if( m_lhs.size() + m_rhs.size() < 30 )
return m_lhs + " " + m_op + " " + m_rhs;
else if( m_lhs.size() < 70 && m_rhs.size() < 70 )
return "\n\t" + m_lhs + "\n\t" + m_op + "\n\t" + m_rhs;
else
return "\n" + m_lhs + "\n" + m_op + "\n" + m_rhs + "\n\n";
}
else
return "{can't expand - use " + m_macroName + "_FALSE( " + m_expr.substr(1) + " ) instead of " + m_macroName + "( " + m_expr + " ) for better diagnostics}";
}
2012-05-16 16:09:17 +02:00
bool isNotExpression( const char* expr ) {
return expr && expr[0] == '!';
}
protected:
std::string m_macroName;
2012-05-09 20:04:00 +02:00
SourceLineInfo m_lineInfo;
std::string m_expr, m_lhs, m_rhs, m_op;
std::string m_message;
ResultWas::OfType m_result;
bool m_isNot;
};
} // end namespace Catch
// #included from: catch_evaluate.hpp
2012-05-16 16:09:17 +02:00
namespace Catch {
namespace Internal {
enum Operator {
IsEqualTo,
IsNotEqualTo,
IsLessThan,
IsGreaterThan,
IsLessThanOrEqualTo,
IsGreaterThanOrEqualTo
};
template<Operator Op> struct OperatorTraits { static const char* getName(){ return "*error*"; } };
template<> struct OperatorTraits<IsEqualTo> { static const char* getName(){ return "=="; } };
template<> struct OperatorTraits<IsNotEqualTo> { static const char* getName(){ return "!="; } };
template<> struct OperatorTraits<IsLessThan> { static const char* getName(){ return "<"; } };
template<> struct OperatorTraits<IsGreaterThan> { static const char* getName(){ return ">"; } };
template<> struct OperatorTraits<IsLessThanOrEqualTo> { static const char* getName(){ return "<="; } };
template<> struct OperatorTraits<IsGreaterThanOrEqualTo>{ static const char* getName(){ return ">="; } };
// So the compare overloads can be operator agnostic we convey the operator as a template
// enum, which is used to specialise an Evaluator for doing the comparison.
template<typename T1, typename T2, Operator Op>
class Evaluator{};
template<typename T1, typename T2>
2012-05-16 16:09:17 +02:00
struct Evaluator<T1, T2, IsEqualTo> {
static bool evaluate( const T1& lhs, const T2& rhs) {
2012-05-09 20:04:00 +02:00
return const_cast<T1&>( lhs ) == const_cast<T2&>( rhs );
}
};
template<typename T1, typename T2>
2012-05-16 16:09:17 +02:00
struct Evaluator<T1, T2, IsNotEqualTo> {
static bool evaluate( const T1& lhs, const T2& rhs ) {
return const_cast<T1&>( lhs ) != const_cast<T2&>( rhs );
}
};
template<typename T1, typename T2>
2012-05-16 16:09:17 +02:00
struct Evaluator<T1, T2, IsLessThan> {
static bool evaluate( const T1& lhs, const T2& rhs ) {
return const_cast<T1&>( lhs ) < const_cast<T2&>( rhs );
}
};
template<typename T1, typename T2>
2012-05-16 16:09:17 +02:00
struct Evaluator<T1, T2, IsGreaterThan> {
static bool evaluate( const T1& lhs, const T2& rhs ) {
return const_cast<T1&>( lhs ) > const_cast<T2&>( rhs );
}
};
template<typename T1, typename T2>
2012-05-16 16:09:17 +02:00
struct Evaluator<T1, T2, IsGreaterThanOrEqualTo> {
static bool evaluate( const T1& lhs, const T2& rhs ) {
return const_cast<T1&>( lhs ) >= const_cast<T2&>( rhs );
}
};
template<typename T1, typename T2>
2012-05-16 16:09:17 +02:00
struct Evaluator<T1, T2, IsLessThanOrEqualTo> {
static bool evaluate( const T1& lhs, const T2& rhs ) {
return const_cast<T1&>( lhs ) <= const_cast<T2&>( rhs );
}
};
template<Operator Op, typename T1, typename T2>
2012-05-16 16:09:17 +02:00
bool applyEvaluator( const T1& lhs, const T2& rhs ) {
return Evaluator<T1, T2, Op>::evaluate( lhs, rhs );
}
// "base" overload
template<Operator Op, typename T1, typename T2>
2012-05-16 16:09:17 +02:00
bool compare( const T1& lhs, const T2& rhs ) {
return Evaluator<T1, T2, Op>::evaluate( lhs, rhs );
}
// unsigned X to int
2012-05-16 16:09:17 +02:00
template<Operator Op> bool compare( unsigned int lhs, int rhs ) {
return applyEvaluator<Op>( lhs, static_cast<unsigned int>( rhs ) );
}
2012-05-16 16:09:17 +02:00
template<Operator Op> bool compare( unsigned long lhs, int rhs ) {
return applyEvaluator<Op>( lhs, static_cast<unsigned int>( rhs ) );
}
2012-05-16 16:09:17 +02:00
template<Operator Op> bool compare( unsigned char lhs, int rhs ) {
return applyEvaluator<Op>( lhs, static_cast<unsigned int>( rhs ) );
}
// unsigned X to long
2012-05-16 16:09:17 +02:00
template<Operator Op> bool compare( unsigned int lhs, long rhs ) {
return applyEvaluator<Op>( lhs, static_cast<unsigned long>( rhs ) );
}
2012-05-16 16:09:17 +02:00
template<Operator Op> bool compare( unsigned long lhs, long rhs ) {
return applyEvaluator<Op>( lhs, static_cast<unsigned long>( rhs ) );
}
2012-05-16 16:09:17 +02:00
template<Operator Op> bool compare( unsigned char lhs, long rhs ) {
return applyEvaluator<Op>( lhs, static_cast<unsigned long>( rhs ) );
}
// int to unsigned X
2012-05-16 16:09:17 +02:00
template<Operator Op> bool compare( int lhs, unsigned int rhs ) {
return applyEvaluator<Op>( static_cast<unsigned int>( lhs ), rhs );
}
2012-05-16 16:09:17 +02:00
template<Operator Op> bool compare( int lhs, unsigned long rhs ) {
return applyEvaluator<Op>( static_cast<unsigned int>( lhs ), rhs );
}
2012-05-16 16:09:17 +02:00
template<Operator Op> bool compare( int lhs, unsigned char rhs ) {
return applyEvaluator<Op>( static_cast<unsigned int>( lhs ), rhs );
}
// long to unsigned X
2012-05-16 16:09:17 +02:00
template<Operator Op> bool compare( long lhs, unsigned int rhs ) {
return applyEvaluator<Op>( static_cast<unsigned long>( lhs ), rhs );
}
2012-05-16 16:09:17 +02:00
template<Operator Op> bool compare( long lhs, unsigned long rhs ) {
return applyEvaluator<Op>( static_cast<unsigned long>( lhs ), rhs );
}
2012-05-16 16:09:17 +02:00
template<Operator Op> bool compare( long lhs, unsigned char rhs ) {
return applyEvaluator<Op>( static_cast<unsigned long>( lhs ), rhs );
}
// pointer to long (when comparing against NULL)
template<Operator Op, typename T>
2012-05-16 16:09:17 +02:00
bool compare( long lhs, const T* rhs ) {
2012-05-07 20:46:19 +02:00
return Evaluator<const T*, const T*, Op>::evaluate( reinterpret_cast<const T*>( lhs ), rhs );
}
template<Operator Op, typename T>
2012-05-16 16:09:17 +02:00
bool compare( long lhs, T* rhs ) {
return Evaluator<T*, T*, Op>::evaluate( reinterpret_cast<T*>( lhs ), rhs );
2012-05-07 20:46:19 +02:00
}
2012-05-07 20:46:19 +02:00
template<Operator Op, typename T>
2012-05-16 16:09:17 +02:00
bool compare( const T* lhs, long rhs ) {
2012-05-07 20:46:19 +02:00
return Evaluator<const T*, const T*, Op>::evaluate( lhs, reinterpret_cast<const T*>( rhs ) );
}
template<Operator Op, typename T>
2012-05-16 16:09:17 +02:00
bool compare( T* lhs, long rhs ) {
2012-05-07 20:46:19 +02:00
return Evaluator<T*, T*, Op>::evaluate( lhs, reinterpret_cast<T*>( rhs ) );
}
// pointer to int (when comparing against NULL)
template<Operator Op, typename T>
bool compare( int lhs, const T* rhs ) {
return Evaluator<const T*, const T*, Op>::evaluate( reinterpret_cast<const T*>( lhs ), rhs );
}
template<Operator Op, typename T>
bool compare( int lhs, T* rhs ) {
return Evaluator<T*, T*, Op>::evaluate( reinterpret_cast<T*>( lhs ), rhs );
}
template<Operator Op, typename T>
bool compare( const T* lhs, int rhs ) {
return Evaluator<const T*, const T*, Op>::evaluate( lhs, reinterpret_cast<const T*>( rhs ) );
}
template<Operator Op, typename T>
bool compare( T* lhs, int rhs ) {
return Evaluator<T*, T*, Op>::evaluate( lhs, reinterpret_cast<T*>( rhs ) );
}
} // end of namespace Internal
} // end of namespace Catch
2012-05-16 16:09:17 +02:00
namespace Catch {
struct STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison;
2012-05-16 16:09:17 +02:00
class ResultInfoBuilder : public ResultInfo {
public:
2012-05-09 20:04:00 +02:00
ResultInfoBuilder() {}
2012-05-09 20:04:00 +02:00
ResultInfoBuilder( const char* expr,
bool isNot,
const SourceLineInfo& lineInfo,
const char* macroName,
const char* message = "" )
: ResultInfo( expr, ResultWas::Unknown, isNot, lineInfo, macroName, message )
{}
2012-05-09 20:04:00 +02:00
void setResultType( ResultWas::OfType result ) {
// Flip bool results if isNot is set
if( m_isNot && result == ResultWas::Ok )
m_result = ResultWas::ExpressionFailed;
else if( m_isNot && result == ResultWas::ExpressionFailed )
m_result = ResultWas::Ok;
else
m_result = result;
}
2012-05-09 20:04:00 +02:00
void setMessage( const std::string& message ) {
m_message = message;
}
2012-05-09 20:04:00 +02:00
void setLineInfo( const SourceLineInfo& lineInfo ) {
m_lineInfo = lineInfo;
}
2012-05-09 20:04:00 +02:00
void setLhs( const std::string& lhs ) {
2012-03-04 22:22:36 +01:00
m_lhs = lhs;
}
2012-05-09 20:04:00 +02:00
void setRhs( const std::string& rhs ) {
2012-03-04 22:22:36 +01:00
m_rhs = rhs;
}
2012-05-09 20:04:00 +02:00
void setOp( const std::string& op ) {
2012-03-04 22:22:36 +01:00
m_op = op;
}
template<typename RhsT>
STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator ||
(
const RhsT&
);
template<typename RhsT>
STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator &&
(
const RhsT&
);
private:
2012-05-16 16:09:17 +02:00
friend class ExpressionBuilder;
template<typename T> friend class Expression;
template<typename T> friend class PtrExpression;
2012-05-09 20:04:00 +02:00
ResultInfoBuilder& captureBoolExpression( bool result ) {
m_lhs = Catch::toString( result );
m_op = m_isNot ? "!" : "";
setResultType( result ? ResultWas::Ok : ResultWas::ExpressionFailed );
return *this;
}
template<Internal::Operator Op, typename T1, typename T2>
2012-05-09 20:04:00 +02:00
ResultInfoBuilder& captureExpression( const T1& lhs, const T2& rhs ) {
setResultType( Internal::compare<Op>( lhs, rhs ) ? ResultWas::Ok : ResultWas::ExpressionFailed );
m_lhs = Catch::toString( lhs );
m_rhs = Catch::toString( rhs );
m_op = Internal::OperatorTraits<Op>::getName();
return *this;
}
2011-07-15 09:12:10 +02:00
template<Internal::Operator Op, typename T>
2012-05-09 20:04:00 +02:00
ResultInfoBuilder& captureExpression( const T* lhs, int rhs ) {
2011-07-15 09:12:10 +02:00
return captureExpression<Op>( lhs, reinterpret_cast<const T*>( rhs ) );
}
};
2012-05-09 20:04:00 +02:00
} // end namespace Catch
2012-05-16 16:09:17 +02:00
namespace Catch {
2012-05-11 09:17:16 +02:00
template<typename T>
2012-05-16 16:09:17 +02:00
class Expression {
2012-05-11 09:17:16 +02:00
void operator = ( const Expression& );
public:
Expression( ResultInfoBuilder& result, T lhs )
: m_result( result ),
m_lhs( lhs )
{}
template<typename RhsT>
ResultInfoBuilder& operator == ( const RhsT& rhs ) {
return m_result.captureExpression<Internal::IsEqualTo>( m_lhs, rhs );
}
template<typename RhsT>
ResultInfoBuilder& operator != ( const RhsT& rhs ) {
return m_result.captureExpression<Internal::IsNotEqualTo>( m_lhs, rhs );
}
template<typename RhsT>
ResultInfoBuilder& operator < ( const RhsT& rhs ) {
return m_result.captureExpression<Internal::IsLessThan>( m_lhs, rhs );
}
template<typename RhsT>
ResultInfoBuilder& operator > ( const RhsT& rhs ) {
return m_result.captureExpression<Internal::IsGreaterThan>( m_lhs, rhs );
}
template<typename RhsT>
ResultInfoBuilder& operator <= ( const RhsT& rhs ) {
return m_result.captureExpression<Internal::IsLessThanOrEqualTo>( m_lhs, rhs );
}
template<typename RhsT>
ResultInfoBuilder& operator >= ( const RhsT& rhs ) {
return m_result.captureExpression<Internal::IsGreaterThanOrEqualTo>( m_lhs, rhs );
}
ResultInfoBuilder& operator == ( bool rhs ) {
return m_result.captureExpression<Internal::IsEqualTo>( m_lhs, rhs );
}
ResultInfoBuilder& operator != ( bool rhs ) {
return m_result.captureExpression<Internal::IsNotEqualTo>( m_lhs, rhs );
}
operator ResultInfoBuilder& () {
return m_result.captureBoolExpression( m_lhs );
}
template<typename RhsT>
STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator + ( const RhsT& );
template<typename RhsT>
STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator - ( const RhsT& );
private:
ResultInfoBuilder& m_result;
T m_lhs;
};
} // end namespace Catch
2012-05-16 16:09:17 +02:00
#include <sstream>
namespace Catch {
class ExpressionBuilder {
public:
ExpressionBuilder( const SourceLineInfo& lineInfo,
const char* macroName,
const char* expr = "",
bool isNot = false )
: m_result( expr, isNot, lineInfo, macroName ),
m_messageStream()
{}
template<typename T>
Expression<const T&> operator->* ( const T & operand ) {
Expression<const T&> expr( m_result, operand );
return expr;
}
Expression<bool> operator->* ( bool value ) {
Expression<bool> expr( m_result, value );
return expr;
}
template<typename T>
ExpressionBuilder& operator << ( const T & value ) {
m_messageStream << Catch::toString( value );
return *this;
}
template<typename MatcherT, typename ArgT>
ExpressionBuilder& acceptMatcher( const MatcherT& matcher,
const ArgT& arg,
const std::string& matcherCallAsString ) {
std::string matcherAsString = Catch::toString( matcher );
if( matcherAsString == "{?}" )
matcherAsString = matcherCallAsString;
m_result.setLhs( Catch::toString( arg ) );
m_result.setRhs( matcherAsString );
m_result.setOp( "matches" );
m_result.setResultType( matcher( arg ) ? ResultWas::Ok : ResultWas::ExpressionFailed );
return *this;
}
template<typename MatcherT, typename ArgT>
ExpressionBuilder& acceptMatcher( const MatcherT& matcher,
ArgT* arg,
const std::string& matcherCallAsString ) {
std::string matcherAsString = Catch::toString( matcher );
if( matcherAsString == "{?}" )
matcherAsString = matcherCallAsString;
m_result.setLhs( Catch::toString( arg ) );
m_result.setRhs( matcherAsString );
m_result.setOp( "matches" );
m_result.setResultType( matcher( arg ) ? ResultWas::Ok : ResultWas::ExpressionFailed );
return *this;
}
ExpressionBuilder& setResultType( ResultWas::OfType resultType ) {
m_result.setResultType( resultType );
return *this;
}
operator ResultInfoBuilder&() {
m_result.setMessage( m_messageStream.str() );
return m_result;
}
private:
ResultInfoBuilder m_result;
std::ostringstream m_messageStream;
};
} // end namespace Catch
2012-05-09 20:04:00 +02:00
// #included from: catch_interfaces_capture.h
#include <string>
2012-05-16 16:09:17 +02:00
namespace Catch {
2012-05-09 20:04:00 +02:00
class TestCaseInfo;
class ScopedInfo;
class ResultInfoBuilder;
class ResultInfo;
2012-05-16 16:09:17 +02:00
struct IResultCapture {
2012-05-09 20:04:00 +02:00
2012-05-16 16:09:17 +02:00
virtual ~IResultCapture(){}
2012-05-09 20:04:00 +02:00
2012-05-16 16:09:17 +02:00
virtual void testEnded( const ResultInfo& result ) = 0;
virtual bool sectionStarted( const std::string& name,
const std::string& description,
const SourceLineInfo& lineInfo,
Counts& assertions ) = 0;
virtual void sectionEnded( const std::string& name, const Counts& assertions ) = 0;
virtual void pushScopedInfo( ScopedInfo* scopedInfo ) = 0;
virtual void popScopedInfo( ScopedInfo* scopedInfo ) = 0;
virtual bool shouldDebugBreak() const = 0;
virtual ResultAction::Value acceptResult( bool result ) = 0;
virtual ResultAction::Value acceptResult( ResultWas::OfType result ) = 0;
virtual ResultAction::Value acceptExpression( const ResultInfoBuilder& resultInfo ) = 0;
virtual void acceptMessage( const std::string& msg ) = 0;
virtual std::string getCurrentTestName() const = 0;
virtual const ResultInfo* getLastResult() const = 0;
2012-05-09 20:04:00 +02:00
};
}
// #included from: catch_debugger.hpp
#include <iostream>
#if defined(__MAC_OS_X_VERSION_MIN_REQUIRED)
#define CATCH_PLATFORM_MAC
#elif defined(__IPHONE_OS_VERSION_MIN_REQUIRED)
#define CATCH_PLATFORM_IPHONE
#elif defined(__WIN32__) || defined(_WIN32) || defined(_MSC_VER)
#define CATCH_PLATFORM_WINDOWS
#endif
#ifdef CATCH_PLATFORM_MAC
#include <assert.h>
#include <stdbool.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/sysctl.h>
2012-05-16 16:09:17 +02:00
namespace Catch{
2012-05-09 20:04:00 +02:00
// The following function is taken directly from the following technical note:
// http://developer.apple.com/library/mac/#qa/qa2004/qa1361.html
// Returns true if the current process is being debugged (either
// running under the debugger or has a debugger attached post facto).
2012-05-16 16:09:17 +02:00
inline bool isDebuggerActive(){
2012-05-09 20:04:00 +02:00
int junk;
int mib[4];
struct kinfo_proc info;
size_t size;
// Initialize the flags so that, if sysctl fails for some bizarre
// reason, we get a predictable result.
info.kp_proc.p_flag = 0;
// Initialize mib, which tells sysctl the info we want, in this case
// we're looking for information about a specific process ID.
mib[0] = CTL_KERN;
mib[1] = KERN_PROC;
mib[2] = KERN_PROC_PID;
mib[3] = getpid();
// Call sysctl.
size = sizeof(info);
junk = sysctl(mib, sizeof(mib) / sizeof(*mib), &info, &size, NULL, 0);
assert(junk == 0);
// We're being debugged if the P_TRACED flag is set.
return ( (info.kp_proc.p_flag & P_TRACED) != 0 );
}
}
// The following code snippet taken from:
// http://cocoawithlove.com/2008/03/break-into-debugger.html
#ifdef DEBUG
#if defined(__ppc64__) || defined(__ppc__)
#define BreakIntoDebugger() \
2012-05-16 16:09:17 +02:00
if( Catch::isDebuggerActive() ) { \
2012-05-09 20:04:00 +02:00
__asm__("li r0, 20\nsc\nnop\nli r0, 37\nli r4, 2\nsc\nnop\n" \
: : : "memory","r0","r3","r4" ); \
}
#else
#define BreakIntoDebugger() if( Catch::isDebuggerActive() ) {__asm__("int $3\n" : : );}
#endif
#else
inline void BreakIntoDebugger(){}
#endif
#elif defined(_MSC_VER)
extern "C" __declspec(dllimport) int __stdcall IsDebuggerPresent();
#define BreakIntoDebugger() if (IsDebuggerPresent() ) { __debugbreak(); }
2012-05-16 16:09:17 +02:00
inline bool isDebuggerActive() {
2012-05-09 20:04:00 +02:00
return IsDebuggerPresent() != 0;
}
2012-05-11 09:17:16 +02:00
#elif defined(__MINGW32__)
extern "C" __declspec(dllimport) int __stdcall IsDebuggerPresent();
extern "C" __declspec(dllimport) void __stdcall DebugBreak();
#define BreakIntoDebugger() if (IsDebuggerPresent() ) { DebugBreak(); }
2012-05-16 16:09:17 +02:00
inline bool isDebuggerActive() {
2012-05-11 09:17:16 +02:00
return IsDebuggerPresent() != 0;
}
2012-05-09 20:04:00 +02:00
#else
inline void BreakIntoDebugger(){}
inline bool isDebuggerActive() { return false; }
#endif
#ifdef CATCH_PLATFORM_WINDOWS
extern "C" __declspec(dllimport) void __stdcall OutputDebugStringA( const char* );
2012-05-16 16:09:17 +02:00
inline void writeToDebugConsole( const std::string& text ) {
2012-05-09 20:04:00 +02:00
::OutputDebugStringA( text.c_str() );
}
#else
2012-05-16 16:09:17 +02:00
inline void writeToDebugConsole( const std::string& text ) {
2012-05-09 20:04:00 +02:00
// !TBD: Need a version for Mac/ XCode and other IDEs
std::cout << text;
}
#endif // CATCH_PLATFORM_WINDOWS
2012-05-16 16:09:17 +02:00
#include <ostream>
2012-05-09 20:04:00 +02:00
2012-05-16 16:09:17 +02:00
namespace Catch {
2012-05-09 20:04:00 +02:00
struct TestFailureException{};
2012-07-05 19:37:58 +02:00
class NotImplementedException : public std::exception
{
public:
NotImplementedException( const SourceLineInfo& lineInfo )
: m_lineInfo( lineInfo ) {
std::ostringstream oss;
oss << lineInfo << "function ";
if( !lineInfo.function.empty() )
oss << lineInfo.function << " ";
oss << "not implemented";
m_what = oss.str();
}
virtual ~NotImplementedException() throw() {}
virtual const char* what() const throw() {
return m_what.c_str();
}
private:
std::string m_what;
SourceLineInfo m_lineInfo;
};
2012-05-16 16:09:17 +02:00
class ScopedInfo {
public:
2012-05-16 16:09:17 +02:00
ScopedInfo() : m_oss() {
getCurrentContext().getResultCapture().pushScopedInfo( this );
2012-05-16 16:09:17 +02:00
}
2012-05-16 16:09:17 +02:00
~ScopedInfo() {
getCurrentContext().getResultCapture().popScopedInfo( this );
2012-05-16 16:09:17 +02:00
}
template<typename T>
2012-05-16 16:09:17 +02:00
ScopedInfo& operator << ( const T& value ) {
m_oss << value;
return *this;
}
2012-05-16 16:09:17 +02:00
std::string getInfo () const {
return m_oss.str();
}
2012-05-16 16:09:17 +02:00
private:
std::ostringstream m_oss;
};
2012-05-16 16:09:17 +02:00
// This is just here to avoid compiler warnings with macro constants
inline bool isTrue( bool value ){ return value; }
} // end namespace Catch
///////////////////////////////////////////////////////////////////////////////
2012-05-09 20:04:00 +02:00
#define INTERNAL_CATCH_ACCEPT_EXPR( expr, stopOnFailure, originalExpr ) \
2012-06-05 21:51:05 +02:00
if( Catch::ResultAction::Value internal_catch_action = Catch::getCurrentContext().getResultCapture().acceptExpression( expr ) ) { \
if( internal_catch_action & Catch::ResultAction::Debug ) BreakIntoDebugger(); \
if( internal_catch_action & Catch::ResultAction::Abort ) throw Catch::TestFailureException(); \
if( Catch::isTrue( stopOnFailure ) ) throw Catch::TestFailureException(); \
2012-05-09 20:04:00 +02:00
if( Catch::isTrue( false ) ){ bool this_is_here_to_invoke_warnings = ( originalExpr ); Catch::isTrue( this_is_here_to_invoke_warnings ); } \
}
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_TEST( expr, isNot, stopOnFailure, macroName ) \
2012-06-05 21:51:05 +02:00
do { try { \
2012-05-16 16:09:17 +02:00
INTERNAL_CATCH_ACCEPT_EXPR( ( Catch::ExpressionBuilder( CATCH_INTERNAL_LINEINFO, macroName, #expr, isNot )->*expr ), stopOnFailure, expr ); \
2012-06-05 21:51:05 +02:00
} catch( Catch::TestFailureException& ) { \
throw; \
2012-06-05 21:51:05 +02:00
} catch( ... ) { \
INTERNAL_CATCH_ACCEPT_EXPR( ( Catch::ExpressionBuilder( CATCH_INTERNAL_LINEINFO, macroName, #expr ) << Catch::getCurrentContext().getExceptionTranslatorRegistry().translateActiveException() ).setResultType( Catch::ResultWas::ThrewException ), false, expr ); \
throw; \
2012-06-05 21:51:05 +02:00
} } while( Catch::isTrue( false ) )
2012-02-10 09:30:13 +01:00
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_IF( expr, isNot, stopOnFailure, macroName ) \
INTERNAL_CATCH_TEST( expr, isNot, stopOnFailure, macroName ); \
if( Catch::getCurrentContext().getResultCapture().getLastResult()->ok() )
2012-02-10 09:30:13 +01:00
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_ELSE( expr, isNot, stopOnFailure, macroName ) \
INTERNAL_CATCH_TEST( expr, isNot, stopOnFailure, macroName ); \
if( !Catch::getCurrentContext().getResultCapture().getLastResult()->ok() )
2012-02-10 09:30:13 +01:00
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_NO_THROW( expr, stopOnFailure, macroName ) \
2012-06-05 21:51:05 +02:00
try { \
expr; \
2012-05-16 16:09:17 +02:00
INTERNAL_CATCH_ACCEPT_EXPR( Catch::ExpressionBuilder( CATCH_INTERNAL_LINEINFO, macroName, #expr ).setResultType( Catch::ResultWas::Ok ), stopOnFailure, false ); \
} \
2012-06-05 21:51:05 +02:00
catch( ... ) { \
INTERNAL_CATCH_ACCEPT_EXPR( ( Catch::ExpressionBuilder( CATCH_INTERNAL_LINEINFO, macroName, #expr ) << Catch::getCurrentContext().getExceptionTranslatorRegistry().translateActiveException() ).setResultType( Catch::ResultWas::ThrewException ), stopOnFailure, false ); \
}
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_THROWS( expr, exceptionType, stopOnFailure, macroName ) \
2012-06-05 21:51:05 +02:00
try { \
if( Catch::getCurrentContext().getConfig()->allowThrows() ) { \
expr; \
INTERNAL_CATCH_ACCEPT_EXPR( Catch::ExpressionBuilder( CATCH_INTERNAL_LINEINFO, macroName, #expr ).setResultType( Catch::ResultWas::DidntThrowException ), stopOnFailure, false ); \
} \
} \
2012-06-05 21:51:05 +02:00
catch( Catch::TestFailureException& ) { \
throw; \
} \
2012-06-05 21:51:05 +02:00
catch( exceptionType ) { \
2012-05-16 16:09:17 +02:00
INTERNAL_CATCH_ACCEPT_EXPR( Catch::ExpressionBuilder( CATCH_INTERNAL_LINEINFO, macroName, #expr ).setResultType( Catch::ResultWas::Ok ), stopOnFailure, false ); \
}
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_THROWS_AS( expr, exceptionType, stopOnFailure, macroName ) \
INTERNAL_CATCH_THROWS( expr, exceptionType, stopOnFailure, macroName ) \
2012-06-05 21:51:05 +02:00
catch( ... ) { \
INTERNAL_CATCH_ACCEPT_EXPR( ( Catch::ExpressionBuilder( CATCH_INTERNAL_LINEINFO, macroName, #expr ) << Catch::getCurrentContext().getExceptionTranslatorRegistry().translateActiveException() ).setResultType( Catch::ResultWas::ThrewException ), stopOnFailure, false ); \
}
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_MSG( reason, resultType, stopOnFailure, macroName ) \
Catch::getCurrentContext().getResultCapture().acceptExpression( ( Catch::ExpressionBuilder( CATCH_INTERNAL_LINEINFO, macroName ) << reason ).setResultType( resultType ) );
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_SCOPED_INFO( log ) \
Catch::ScopedInfo INTERNAL_CATCH_UNIQUE_NAME( info ); \
INTERNAL_CATCH_UNIQUE_NAME( info ) << log
2012-03-04 22:22:36 +01:00
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CHECK_THAT( arg, matcher, stopOnFailure, macroName ) \
2012-06-05 21:51:05 +02:00
do { try { \
2012-05-24 09:29:41 +02:00
INTERNAL_CATCH_ACCEPT_EXPR( ( Catch::ExpressionBuilder( CATCH_INTERNAL_LINEINFO, macroName, #arg " " #matcher, false ).acceptMatcher( ::Catch::Matchers::matcher, arg, #matcher ) ), stopOnFailure, false ); \
2012-06-05 21:51:05 +02:00
} catch( Catch::TestFailureException& ) { \
2012-03-04 22:22:36 +01:00
throw; \
2012-06-05 21:51:05 +02:00
} catch( ... ) { \
INTERNAL_CATCH_ACCEPT_EXPR( ( Catch::ExpressionBuilder( CATCH_INTERNAL_LINEINFO, macroName, #arg " " #matcher ) << Catch::getCurrentContext().getExceptionTranslatorRegistry().translateActiveException() ).setResultType( Catch::ResultWas::ThrewException ), false, false ); \
2012-03-04 22:22:36 +01:00
throw; \
}}while( Catch::isTrue( false ) )
2012-07-05 19:37:58 +02:00
///////////////////////////////////////////////////////////////////////////////
#define CATCH_NOT_IMPLEMENTED throw Catch::NotImplementedException( CATCH_INTERNAL_LINEINFO )
// #included from: internal/catch_section.hpp
#include <string>
2012-05-16 16:09:17 +02:00
namespace Catch {
class Section {
public:
2012-05-16 16:09:17 +02:00
Section( const std::string& name,
const std::string& description,
const SourceLineInfo& lineInfo )
: m_name( name ),
m_sectionIncluded( getCurrentContext().getResultCapture().sectionStarted( name, description, lineInfo, m_assertions ) )
2012-05-16 16:09:17 +02:00
{}
2012-05-16 16:09:17 +02:00
~Section() {
if( m_sectionIncluded )
getCurrentContext().getResultCapture().sectionEnded( m_name, m_assertions );
}
// This indicates whether the section should be executed or not
2012-05-16 16:09:17 +02:00
operator bool() {
return m_sectionIncluded;
}
private:
std::string m_name;
2012-02-25 10:39:45 +01:00
Counts m_assertions;
bool m_sectionIncluded;
};
} // end namespace Catch
#define INTERNAL_CATCH_SECTION( name, desc ) \
2012-05-09 20:04:00 +02:00
if( Catch::Section INTERNAL_CATCH_UNIQUE_NAME( catch_internal_Section ) = Catch::Section( name, desc, CATCH_INTERNAL_LINEINFO ) )
// #included from: internal/catch_generators.hpp
#include <iterator>
#include <vector>
#include <string>
#include <stdlib.h>
2012-05-16 16:09:17 +02:00
namespace Catch {
template<typename T>
2012-05-16 16:09:17 +02:00
struct IGenerator {
virtual ~IGenerator() {}
virtual T getValue( std::size_t index ) const = 0;
virtual std::size_t size () const = 0;
};
template<typename T>
2012-05-16 16:09:17 +02:00
class BetweenGenerator : public IGenerator<T> {
public:
2012-05-16 16:09:17 +02:00
BetweenGenerator( T from, T to ) : m_from( from ), m_to( to ){}
2012-05-16 16:09:17 +02:00
virtual T getValue( std::size_t index ) const {
return m_from+static_cast<T>( index );
}
2012-05-16 16:09:17 +02:00
virtual std::size_t size() const {
2012-05-09 20:04:00 +02:00
return static_cast<std::size_t>( 1+m_to-m_from );
}
private:
T m_from;
T m_to;
};
template<typename T>
2012-05-16 16:09:17 +02:00
class ValuesGenerator : public IGenerator<T> {
public:
2012-05-16 16:09:17 +02:00
ValuesGenerator(){}
2012-05-16 16:09:17 +02:00
void add( T value ) {
m_values.push_back( value );
}
2012-05-16 16:09:17 +02:00
virtual T getValue( std::size_t index ) const {
return m_values[index];
}
2012-05-16 16:09:17 +02:00
virtual std::size_t size() const {
return m_values.size();
}
private:
std::vector<T> m_values;
};
template<typename T>
2012-05-16 16:09:17 +02:00
class CompositeGenerator {
public:
2012-05-16 16:09:17 +02:00
CompositeGenerator() : m_totalSize( 0 ) {}
// *** Move semantics, similar to auto_ptr ***
CompositeGenerator( CompositeGenerator& other )
2012-05-16 16:09:17 +02:00
: m_fileInfo( other.m_fileInfo ),
m_totalSize( 0 )
{
move( other );
}
2012-05-16 16:09:17 +02:00
CompositeGenerator& setFileInfo( const char* fileInfo ) {
m_fileInfo = fileInfo;
return *this;
}
2012-05-16 16:09:17 +02:00
~CompositeGenerator() {
deleteAll( m_composed );
}
2012-05-16 16:09:17 +02:00
operator T () const {
size_t overallIndex = getCurrentContext().getGeneratorIndex( m_fileInfo, m_totalSize );
typename std::vector<const IGenerator<T>*>::const_iterator it = m_composed.begin();
typename std::vector<const IGenerator<T>*>::const_iterator itEnd = m_composed.end();
for( size_t index = 0; it != itEnd; ++it )
{
const IGenerator<T>* generator = *it;
if( overallIndex >= index && overallIndex < index + generator->size() )
{
return generator->getValue( overallIndex-index );
}
index += generator->size();
}
CATCH_INTERNAL_ERROR( "Indexed past end of generated range" );
return T(); // Suppress spurious "not all control paths return a value" warning in Visual Studio - if you know how to fix this please do so
}
2012-05-16 16:09:17 +02:00
void add( const IGenerator<T>* generator ) {
m_totalSize += generator->size();
m_composed.push_back( generator );
}
2012-05-16 16:09:17 +02:00
CompositeGenerator& then( CompositeGenerator& other ) {
move( other );
return *this;
}
2012-05-16 16:09:17 +02:00
CompositeGenerator& then( T value ) {
ValuesGenerator<T>* valuesGen = new ValuesGenerator<T>();
valuesGen->add( value );
add( valuesGen );
return *this;
}
private:
2012-05-16 16:09:17 +02:00
void move( CompositeGenerator& other ) {
std::copy( other.m_composed.begin(), other.m_composed.end(), std::back_inserter( m_composed ) );
m_totalSize += other.m_totalSize;
other.m_composed.clear();
}
std::vector<const IGenerator<T>*> m_composed;
std::string m_fileInfo;
size_t m_totalSize;
};
namespace Generators
{
template<typename T>
2012-05-16 16:09:17 +02:00
CompositeGenerator<T> between( T from, T to ) {
CompositeGenerator<T> generators;
generators.add( new BetweenGenerator<T>( from, to ) );
return generators;
}
template<typename T>
2012-05-16 16:09:17 +02:00
CompositeGenerator<T> values( T val1, T val2 ) {
CompositeGenerator<T> generators;
ValuesGenerator<T>* valuesGen = new ValuesGenerator<T>();
valuesGen->add( val1 );
valuesGen->add( val2 );
generators.add( valuesGen );
return generators;
}
template<typename T>
2012-05-16 16:09:17 +02:00
CompositeGenerator<T> values( T val1, T val2, T val3 ){
CompositeGenerator<T> generators;
ValuesGenerator<T>* valuesGen = new ValuesGenerator<T>();
valuesGen->add( val1 );
valuesGen->add( val2 );
valuesGen->add( val3 );
generators.add( valuesGen );
return generators;
}
template<typename T>
2012-05-16 16:09:17 +02:00
CompositeGenerator<T> values( T val1, T val2, T val3, T val4 ) {
CompositeGenerator<T> generators;
ValuesGenerator<T>* valuesGen = new ValuesGenerator<T>();
valuesGen->add( val1 );
valuesGen->add( val2 );
valuesGen->add( val3 );
valuesGen->add( val4 );
generators.add( valuesGen );
return generators;
}
} // end namespace Generators
using namespace Generators;
} // end namespace Catch
#define INTERNAL_CATCH_LINESTR2( line ) #line
#define INTERNAL_CATCH_LINESTR( line ) INTERNAL_CATCH_LINESTR2( line )
#define INTERNAL_CATCH_GENERATE( expr ) expr.setFileInfo( __FILE__ "(" INTERNAL_CATCH_LINESTR( __LINE__ ) ")" )
// #included from: internal/catch_interfaces_exception.h
#include <string>
2012-05-16 16:09:17 +02:00
namespace Catch {
typedef std::string(*exceptionTranslateFunction)();
2012-05-16 16:09:17 +02:00
struct IExceptionTranslator {
virtual ~IExceptionTranslator(){}
virtual std::string translate() const = 0;
};
2012-05-16 16:09:17 +02:00
struct IExceptionTranslatorRegistry {
virtual ~IExceptionTranslatorRegistry(){}
2012-05-16 16:09:17 +02:00
virtual void registerTranslator( IExceptionTranslator* translator ) = 0;
virtual std::string translateActiveException() const = 0;
};
2012-05-16 16:09:17 +02:00
class ExceptionTranslatorRegistrar {
template<typename T>
2012-05-16 16:09:17 +02:00
class ExceptionTranslator : public IExceptionTranslator {
public:
2012-05-16 16:09:17 +02:00
ExceptionTranslator( std::string(*translateFunction)( T& ) )
: m_translateFunction( translateFunction )
{}
2012-05-16 16:09:17 +02:00
virtual std::string translate() const {
try {
throw;
}
2012-05-16 16:09:17 +02:00
catch( T& ex ) {
return m_translateFunction( ex );
}
}
protected:
std::string(*m_translateFunction)( T& );
};
public:
template<typename T>
2012-05-16 16:09:17 +02:00
ExceptionTranslatorRegistrar( std::string(*translateFunction)( T& ) ) {
getCurrentContext().getExceptionTranslatorRegistry().registerTranslator
( new ExceptionTranslator<T>( translateFunction ) );
}
};
}
///////////////////////////////////////////////////////////////////////////////
#define INTERNAL_CATCH_TRANSLATE_EXCEPTION( signature ) \
static std::string INTERNAL_CATCH_UNIQUE_NAME( catch_internal_ExceptionTranslator )( signature ); \
namespace{ Catch::ExceptionTranslatorRegistrar INTERNAL_CATCH_UNIQUE_NAME( catch_internal_ExceptionRegistrar )( &INTERNAL_CATCH_UNIQUE_NAME( catch_internal_ExceptionTranslator ) ); }\
static std::string INTERNAL_CATCH_UNIQUE_NAME( catch_internal_ExceptionTranslator )( signature )
// #included from: internal/catch_approx.hpp
#include <cmath>
#include <limits>
2012-05-16 16:09:17 +02:00
namespace Catch {
namespace Detail {
2012-05-16 16:09:17 +02:00
class Approx {
public:
explicit Approx ( double value )
: m_epsilon( std::numeric_limits<float>::epsilon()*100 ),
m_scale( 1.0 ),
m_value( value )
{}
2011-06-07 15:13:57 +02:00
2012-05-16 16:09:17 +02:00
Approx( const Approx& other )
: m_epsilon( other.m_epsilon ),
m_scale( other.m_scale ),
m_value( other.m_value )
{}
2011-06-07 15:13:57 +02:00
2012-05-16 16:09:17 +02:00
static Approx custom() {
return Approx( 0 );
}
2011-06-07 15:13:57 +02:00
2012-05-16 16:09:17 +02:00
Approx operator()( double value ) {
Approx approx( value );
approx.epsilon( m_epsilon );
approx.scale( m_scale );
return approx;
}
2012-05-16 16:09:17 +02:00
friend bool operator == ( double lhs, const Approx& rhs ) {
// Thanks to Richard Harris for his help refining this formula
return fabs( lhs - rhs.m_value ) < rhs.m_epsilon * (rhs.m_scale + (std::max)( fabs(lhs), fabs(rhs.m_value) ) );
}
2012-05-16 16:09:17 +02:00
friend bool operator == ( const Approx& lhs, double rhs ) {
return operator==( rhs, lhs );
}
2012-05-16 16:09:17 +02:00
friend bool operator != ( double lhs, const Approx& rhs ) {
return !operator==( lhs, rhs );
}
2012-05-16 16:09:17 +02:00
friend bool operator != ( const Approx& lhs, double rhs ) {
return !operator==( rhs, lhs );
}
2012-05-16 16:09:17 +02:00
Approx& epsilon( double newEpsilon ) {
m_epsilon = newEpsilon;
return *this;
}
2012-05-16 16:09:17 +02:00
Approx& scale( double newScale ) {
m_scale = newScale;
return *this;
}
2012-05-16 16:09:17 +02:00
std::string toString() const {
std::ostringstream oss;
oss << "Approx( " << m_value << ")";
return oss.str();
}
2012-05-16 16:09:17 +02:00
private:
double m_epsilon;
double m_scale;
double m_value;
};
}
template<>
inline std::string toString<Detail::Approx>( const Detail::Approx& value ) {
return value.toString();
}
} // end namespace Catch
// #included from: internal/catch_matchers.hpp
namespace Catch {
namespace Matchers {
namespace Impl {
namespace StdString {
2012-05-24 09:29:41 +02:00
struct Equals {
Equals( const std::string& str ) : m_str( str ){}
bool operator()( const std::string& str ) const
{
return str == m_str;
}
friend std::ostream& operator<<( std::ostream& os, const Equals& matcher )
{
os << "equals: \"" << matcher.m_str << "\"";
return os;
}
std::string m_str;
};
struct Contains {
Contains( const std::string& substr ) : m_substr( substr ){}
bool operator()( const std::string& str ) const
{
return str.find( m_substr ) != std::string::npos;
}
friend std::ostream& operator<<( std::ostream& os, const Contains& matcher )
{
os << "contains: \"" << matcher.m_substr << "\"";
return os;
}
std::string m_substr;
};
struct StartsWith {
StartsWith( const std::string& substr ) : m_substr( substr ){}
bool operator()( const std::string& str ) const
{
return str.find( m_substr ) == 0;
}
friend std::ostream& operator<<( std::ostream& os, const StartsWith& matcher )
{
os << "starts with: \"" << matcher.m_substr << "\"";
return os;
}
std::string m_substr;
};
struct EndsWith {
EndsWith( const std::string& substr ) : m_substr( substr ){}
bool operator()( const std::string& str ) const
{
return str.find( m_substr ) == str.size() - m_substr.size();
}
friend std::ostream& operator<<( std::ostream& os, const EndsWith& matcher )
{
os << "ends with: \"" << matcher.m_substr << "\"";
return os;
}
std::string m_substr;
};
} // namespace StdString
} // namespace Impl
2012-05-24 09:29:41 +02:00
inline Impl::StdString::Equals Equals( const std::string& str ){ return Impl::StdString::Equals( str ); }
inline Impl::StdString::Contains Contains( const std::string& substr ){ return Impl::StdString::Contains( substr ); }
inline Impl::StdString::StartsWith StartsWith( const std::string& substr ){ return Impl::StdString::StartsWith( substr ); }
inline Impl::StdString::EndsWith EndsWith( const std::string& substr ){ return Impl::StdString::EndsWith( substr ); }
} // namespace Matchers
using namespace Matchers;
} // namespace Catch
// These files are included here so the single_include script doesn't put them
// in the conditionally compiled sections
// #included from: internal/catch_test_case_info.hpp
#include <map>
#include <string>
namespace Catch {
class TestCaseInfo {
public:
TestCaseInfo( ITestCase* testCase,
const char* name,
const char* description,
const SourceLineInfo& lineInfo )
: m_test( testCase ),
m_name( name ),
m_description( description ),
m_lineInfo( lineInfo )
{}
TestCaseInfo()
: m_test( NULL ),
m_name(),
m_description()
{}
TestCaseInfo( const TestCaseInfo& other )
: m_test( other.m_test->clone() ),
m_name( other.m_name ),
m_description( other.m_description ),
m_lineInfo( other.m_lineInfo )
{}
TestCaseInfo( const TestCaseInfo& other, const std::string& name )
: m_test( other.m_test->clone() ),
m_name( name ),
m_description( other.m_description ),
m_lineInfo( other.m_lineInfo )
{}
TestCaseInfo& operator = ( const TestCaseInfo& other ) {
TestCaseInfo temp( other );
swap( temp );
return *this;
}
~TestCaseInfo() {
delete m_test;
}
void invoke() const {
m_test->invoke();
}
const std::string& getName() const {
return m_name;
}
const std::string& getDescription() const {
return m_description;
}
const SourceLineInfo& getLineInfo() const {
return m_lineInfo;
}
bool isHidden() const {
return m_name.size() >= 2 && m_name[0] == '.' && m_name[1] == '/';
}
void swap( TestCaseInfo& other ) {
std::swap( m_test, other.m_test );
m_name.swap( other.m_name );
m_description.swap( other.m_description );
m_lineInfo.swap( other.m_lineInfo );
}
bool operator == ( const TestCaseInfo& other ) const {
return *m_test == *other.m_test && m_name == other.m_name;
}
bool operator < ( const TestCaseInfo& other ) const {
return m_name < other.m_name;
}
private:
ITestCase* m_test;
std::string m_name;
std::string m_description;
SourceLineInfo m_lineInfo;
};
///////////////////////////////////////////////////////////////////////////
class TestSpec {
public:
TestSpec( const std::string& rawSpec )
: m_rawSpec( rawSpec ),
m_isWildcarded( false ) {
if( m_rawSpec[m_rawSpec.size()-1] == '*' ) {
m_rawSpec = m_rawSpec.substr( 0, m_rawSpec.size()-1 );
m_isWildcarded = true;
}
}
bool matches ( const std::string& testName ) const {
if( !m_isWildcarded )
return m_rawSpec == testName;
else
return testName.size() >= m_rawSpec.size() && testName.substr( 0, m_rawSpec.size() ) == m_rawSpec;
}
private:
std::string m_rawSpec;
bool m_isWildcarded;
};
}
// #included from: internal/catch_interfaces_runner.h
#include <string>
namespace Catch {
class TestCaseInfo;
struct IRunner {
virtual ~IRunner() {}
virtual void runAll( bool runHiddenTests = false ) = 0;
virtual std::size_t runMatching( const std::string& rawTestSpec ) = 0;
virtual Totals getTotals() const = 0;
};
}
#ifdef __OBJC__
// #included from: internal/catch_objc.hpp
#import <Foundation/Foundation.h>
#import <objc/runtime.h>
#include <string>
// NB. Any general catch headers included here must be included
// in catch.hpp first to make sure they are included by the single
// header for non obj-usage
2011-08-15 10:06:31 +02:00
2012-03-17 19:20:06 +01:00
#ifdef __has_feature
#define CATCH_ARC_ENABLED __has_feature(objc_arc)
#else
#define CATCH_ARC_ENABLED 0
#endif
void arcSafeRelease( NSObject* obj );
id performOptionalSelector( id obj, SEL sel );
#if !CATCH_ARC_ENABLED
2012-05-16 16:09:17 +02:00
inline void arcSafeRelease( NSObject* obj ) {
[obj release];
}
2012-05-16 16:09:17 +02:00
inline id performOptionalSelector( id obj, SEL sel ) {
if( [obj respondsToSelector: sel] )
return [obj performSelector: sel];
return nil;
}
#define CATCH_UNSAFE_UNRETAINED
2012-03-17 19:20:06 +01:00
#else
inline void arcSafeRelease( NSObject* ){}
2012-05-16 16:09:17 +02:00
inline id performOptionalSelector( id obj, SEL sel ) {
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
if( [obj respondsToSelector: sel] )
return [obj performSelector: sel];
#pragma clang diagnostic pop
return nil;
}
#define CATCH_UNSAFE_UNRETAINED __unsafe_unretained
2012-03-17 19:20:06 +01:00
#endif
2011-08-12 19:53:28 +02:00
///////////////////////////////////////////////////////////////////////////////
// This protocol is really only here for (self) documenting purposes, since
// all its methods are optional.
@protocol OcFixture
@optional
-(void) setUp;
-(void) tearDown;
@end
2012-05-16 16:09:17 +02:00
namespace Catch {
class OcMethod : public ITestCase {
2011-08-12 19:53:28 +02:00
public:
2012-05-16 16:09:17 +02:00
OcMethod( Class cls, SEL sel ) : m_cls( cls ), m_sel( sel ) {}
2011-08-12 19:53:28 +02:00
2012-05-16 16:09:17 +02:00
virtual void invoke() const {
2012-03-17 19:20:06 +01:00
id obj = [[m_cls alloc] init];
2011-08-12 19:53:28 +02:00
2012-03-17 19:20:06 +01:00
performOptionalSelector( obj, @selector(setUp) );
performOptionalSelector( obj, m_sel );
performOptionalSelector( obj, @selector(tearDown) );
2011-08-12 19:53:28 +02:00
2012-03-17 19:20:06 +01:00
arcSafeRelease( obj );
2011-08-12 19:53:28 +02:00
}
2012-05-16 16:09:17 +02:00
virtual ITestCase* clone() const {
2011-08-12 19:53:28 +02:00
return new OcMethod( m_cls, m_sel );
}
2012-05-16 16:09:17 +02:00
virtual bool operator == ( const ITestCase& other ) const {
2011-08-12 19:53:28 +02:00
const OcMethod* ocmOther = dynamic_cast<const OcMethod*> ( &other );
return ocmOther && ocmOther->m_sel == m_sel;
}
2012-05-16 16:09:17 +02:00
virtual bool operator < ( const ITestCase& other ) const {
2011-08-12 19:53:28 +02:00
const OcMethod* ocmOther = dynamic_cast<const OcMethod*> ( &other );
return ocmOther && ocmOther->m_sel < m_sel;
}
private:
Class m_cls;
SEL m_sel;
};
2012-05-16 16:09:17 +02:00
namespace Detail{
2011-08-12 19:53:28 +02:00
2012-05-16 16:09:17 +02:00
inline bool startsWith( const std::string& str, const std::string& sub ) {
2011-08-12 19:53:28 +02:00
return str.length() > sub.length() && str.substr( 0, sub.length() ) == sub;
}
2012-05-16 16:09:17 +02:00
inline std::string getAnnotation( Class cls,
const std::string& annotationName,
const std::string& testCaseName ) {
2011-08-12 19:53:28 +02:00
NSString* selStr = [[NSString alloc] initWithFormat:@"Catch_%s_%s", annotationName.c_str(), testCaseName.c_str()];
SEL sel = NSSelectorFromString( selStr );
2012-03-17 19:20:06 +01:00
arcSafeRelease( selStr );
id value = performOptionalSelector( cls, sel );
if( value )
return [(NSString*)value UTF8String];
2011-08-12 19:53:28 +02:00
return "";
}
}
2012-05-16 16:09:17 +02:00
inline size_t registerTestMethods() {
2011-08-12 19:53:28 +02:00
size_t noTestMethods = 0;
int noClasses = objc_getClassList( NULL, 0 );
Class* classes = (CATCH_UNSAFE_UNRETAINED Class *)malloc( sizeof(Class) * noClasses);
2012-03-17 19:20:06 +01:00
objc_getClassList( classes, noClasses );
2011-08-12 19:53:28 +02:00
2012-05-16 16:09:17 +02:00
for( int c = 0; c < noClasses; c++ ) {
2011-08-12 19:53:28 +02:00
Class cls = classes[c];
{
u_int count;
Method* methods = class_copyMethodList( cls, &count );
2012-05-22 09:56:59 +02:00
for( u_int m = 0; m < count ; m++ ) {
2011-08-12 19:53:28 +02:00
SEL selector = method_getName(methods[m]);
std::string methodName = sel_getName(selector);
2012-05-16 16:09:17 +02:00
if( Detail::startsWith( methodName, "Catch_TestCase_" ) ) {
2011-08-12 19:53:28 +02:00
std::string testCaseName = methodName.substr( 15 );
2012-03-17 19:20:06 +01:00
std::string name = Detail::getAnnotation( cls, "Name", testCaseName );
std::string desc = Detail::getAnnotation( cls, "Description", testCaseName );
2011-08-12 19:53:28 +02:00
getCurrentContext().getTestCaseRegistry().registerTest( TestCaseInfo( new OcMethod( cls, selector ), name.c_str(), desc.c_str(), SourceLineInfo() ) );
2011-08-12 19:53:28 +02:00
noTestMethods++;
}
}
free(methods);
}
}
return noTestMethods;
}
2012-03-04 22:22:36 +01:00
2012-05-16 16:09:17 +02:00
inline std::string toString( NSString* const& nsstring ) {
2012-03-04 22:22:36 +01:00
return std::string( "@\"" ) + [nsstring UTF8String] + "\"";
}
2012-07-05 19:37:58 +02:00
inline std::string toString( NSObject* const& nsObject ) {
return toString( [nsObject description] );
}
2012-03-04 22:22:36 +01:00
2012-05-16 16:09:17 +02:00
namespace Matchers {
namespace Impl {
namespace NSStringMatchers {
struct StringHolder {
2012-03-04 22:22:36 +01:00
StringHolder( NSString* substr ) : m_substr( [substr copy] ){}
2012-05-16 16:09:17 +02:00
StringHolder() {
2012-03-17 19:20:06 +01:00
arcSafeRelease( m_substr );
2012-03-04 22:22:36 +01:00
}
NSString* m_substr;
};
2012-05-16 16:09:17 +02:00
struct Equals : StringHolder {
2012-03-14 21:06:14 +01:00
Equals( NSString* substr ) : StringHolder( substr ){}
2012-05-16 16:09:17 +02:00
bool operator()( NSString* str ) const {
2012-03-14 21:06:14 +01:00
return [str isEqualToString:m_substr];
}
2012-05-16 16:09:17 +02:00
friend std::ostream& operator<<( std::ostream& os, const Equals& matcher ) {
2012-03-14 21:06:14 +01:00
os << "equals string: " << Catch::toString( matcher.m_substr );
return os;
}
};
2012-05-16 16:09:17 +02:00
struct Contains : StringHolder {
2012-03-04 22:22:36 +01:00
Contains( NSString* substr ) : StringHolder( substr ){}
2012-05-16 16:09:17 +02:00
bool operator()( NSString* str ) const {
2012-03-04 22:22:36 +01:00
return [str rangeOfString:m_substr].location != NSNotFound;
}
2012-05-16 16:09:17 +02:00
friend std::ostream& operator<<( std::ostream& os, const Contains& matcher ) {
2012-03-04 22:22:36 +01:00
os << "contains: " << Catch::toString( matcher.m_substr );
return os;
}
};
2012-05-16 16:09:17 +02:00
struct StartsWith : StringHolder {
2012-03-04 22:22:36 +01:00
StartsWith( NSString* substr ) : StringHolder( substr ){}
2012-05-16 16:09:17 +02:00
bool operator()( NSString* str ) const {
2012-03-04 22:22:36 +01:00
return [str rangeOfString:m_substr].location == 0;
}
2012-05-16 16:09:17 +02:00
friend std::ostream& operator<<( std::ostream& os, const StartsWith& matcher ) {
2012-03-04 22:22:36 +01:00
os << "starts with: " << Catch::toString( matcher.m_substr );
return os;
}
};
2012-05-16 16:09:17 +02:00
struct EndsWith : StringHolder {
2012-03-04 22:22:36 +01:00
EndsWith( NSString* substr ) : StringHolder( substr ){}
2012-05-16 16:09:17 +02:00
bool operator()( NSString* str ) const {
2012-03-04 22:22:36 +01:00
return [str rangeOfString:m_substr].location == [str length] - [m_substr length];
}
2012-05-16 16:09:17 +02:00
friend std::ostream& operator<<( std::ostream& os, const EndsWith& matcher ) {
2012-03-04 22:22:36 +01:00
os << "ends with: " << Catch::toString( matcher.m_substr );
return os;
}
};
} // namespace NSStringMatchers
} // namespace Impl
2012-03-14 21:06:14 +01:00
inline Impl::NSStringMatchers::Equals
Equals( NSString* substr ){ return Impl::NSStringMatchers::Equals( substr ); }
2012-03-04 22:22:36 +01:00
inline Impl::NSStringMatchers::Contains
Contains( NSString* substr ){ return Impl::NSStringMatchers::Contains( substr ); }
2012-03-14 21:06:14 +01:00
2012-03-04 22:22:36 +01:00
inline Impl::NSStringMatchers::StartsWith
StartsWith( NSString* substr ){ return Impl::NSStringMatchers::StartsWith( substr ); }
2012-03-14 21:06:14 +01:00
2012-03-04 22:22:36 +01:00
inline Impl::NSStringMatchers::EndsWith
EndsWith( NSString* substr ){ return Impl::NSStringMatchers::EndsWith( substr ); }
} // namespace Matchers
using namespace Matchers;
} // namespace Catch
2011-08-12 19:53:28 +02:00
///////////////////////////////////////////////////////////////////////////////
#define OC_TEST_CASE( name, desc )\
2012-03-17 19:20:06 +01:00
+(NSString*) INTERNAL_CATCH_UNIQUE_NAME( Catch_Name_test ) \
2011-08-12 19:53:28 +02:00
{\
2012-03-17 19:20:06 +01:00
return @ name; \
2011-08-12 19:53:28 +02:00
}\
2012-03-17 19:20:06 +01:00
+(NSString*) INTERNAL_CATCH_UNIQUE_NAME( Catch_Description_test ) \
2011-08-12 19:53:28 +02:00
{ \
2012-03-17 19:20:06 +01:00
return @ desc; \
2011-08-12 19:53:28 +02:00
} \
-(void) INTERNAL_CATCH_UNIQUE_NAME( Catch_TestCase_test )
#endif
#if defined( CATCH_CONFIG_MAIN ) || defined( CATCH_CONFIG_RUNNER )
// #included from: catch_runner.hpp
2012-05-11 09:17:16 +02:00
// #included from: internal/catch_context_impl.hpp
2011-08-12 19:53:28 +02:00
// #included from: catch_test_case_registry_impl.hpp
#include <vector>
#include <set>
#include <sstream>
2012-05-11 20:06:43 +02:00
#include <iostream>
2012-05-16 16:09:17 +02:00
namespace Catch {
2012-05-11 09:17:16 +02:00
class TestRegistry : public ITestCaseRegistry {
public:
2012-05-11 09:17:16 +02:00
TestRegistry() : m_unnamedCount( 0 ) {}
2012-05-11 09:17:16 +02:00
virtual void registerTest( const TestCaseInfo& testInfo ) {
if( testInfo.getName() == "" ) {
std::ostringstream oss;
oss << testInfo.getName() << "unnamed/" << ++m_unnamedCount;
return registerTest( TestCaseInfo( testInfo, oss.str() ) );
}
2012-05-11 09:17:16 +02:00
if( m_functions.find( testInfo ) == m_functions.end() ) {
m_functions.insert( testInfo );
m_functionsInOrder.push_back( testInfo );
}
2012-05-11 09:17:16 +02:00
else {
2012-02-09 09:37:02 +01:00
const TestCaseInfo& prev = *m_functions.find( testInfo );
std::cerr << "error: TEST_CASE( \"" << testInfo.getName() << "\" ) already defined.\n"
2012-05-09 20:04:00 +02:00
<< "\tFirst seen at " << SourceLineInfo( prev.getLineInfo() ) << "\n"
<< "\tRedefined at " << SourceLineInfo( testInfo.getLineInfo() ) << std::endl;
2012-02-09 09:37:02 +01:00
exit(1);
}
}
2012-05-11 09:17:16 +02:00
virtual const std::vector<TestCaseInfo>& getAllTests() const {
return m_functionsInOrder;
}
2012-05-11 09:17:16 +02:00
virtual std::vector<TestCaseInfo> getMatchingTestCases( const std::string& rawTestSpec ) {
TestSpec testSpec( rawTestSpec );
std::vector<TestCaseInfo> testList;
std::vector<TestCaseInfo>::const_iterator it = m_functionsInOrder.begin();
std::vector<TestCaseInfo>::const_iterator itEnd = m_functionsInOrder.end();
2012-05-11 09:17:16 +02:00
for(; it != itEnd; ++it ) {
if( testSpec.matches( it->getName() ) ) {
testList.push_back( *it );
}
}
return testList;
}
private:
std::set<TestCaseInfo> m_functions;
std::vector<TestCaseInfo> m_functionsInOrder;
size_t m_unnamedCount;
};
///////////////////////////////////////////////////////////////////////////
2012-05-11 09:17:16 +02:00
class FreeFunctionTestCase : public ITestCase {
public:
2012-02-18 20:16:30 +01:00
2012-05-11 09:17:16 +02:00
FreeFunctionTestCase( TestFunction fun ) : m_fun( fun ) {}
virtual void invoke() const {
m_fun();
}
2012-05-11 09:17:16 +02:00
virtual ITestCase* clone() const {
return new FreeFunctionTestCase( m_fun );
}
2012-05-11 09:17:16 +02:00
virtual bool operator == ( const ITestCase& other ) const {
const FreeFunctionTestCase* ffOther = dynamic_cast<const FreeFunctionTestCase*> ( &other );
return ffOther && m_fun == ffOther->m_fun;
}
2012-05-11 09:17:16 +02:00
virtual bool operator < ( const ITestCase& other ) const {
const FreeFunctionTestCase* ffOther = dynamic_cast<const FreeFunctionTestCase*> ( &other );
return ffOther && m_fun < ffOther->m_fun;
}
private:
2012-05-11 09:17:16 +02:00
TestFunction m_fun;
};
2012-05-11 09:17:16 +02:00
///////////////////////////////////////////////////////////////////////////
AutoReg::AutoReg( TestFunction function,
const char* name,
const char* description,
const SourceLineInfo& lineInfo ) {
registerTestCase( new FreeFunctionTestCase( function ), name, description, lineInfo );
}
AutoReg::~AutoReg() {}
void AutoReg::registerTestCase( ITestCase* testCase,
const char* name,
const char* description,
const SourceLineInfo& lineInfo ) {
getCurrentContext().getTestCaseRegistry().registerTest( TestCaseInfo( testCase, name, description, lineInfo ) );
2012-05-11 09:17:16 +02:00
}
} // end namespace Catch
// #included from: catch_runner_impl.hpp
// #included from: catch_config.hpp
#include <memory>
#include <vector>
#include <string>
#include <iostream>
2012-05-16 16:09:17 +02:00
namespace Catch {
struct Include { enum WhichResults {
FailedOnly,
SuccessfulResults
}; };
struct List{ enum What {
None = 0,
Reports = 1,
Tests = 2,
All = 3,
WhatMask = 0xf,
AsText = 0x10,
AsXml = 0x11,
AsMask = 0xf0
}; };
2012-07-05 19:37:58 +02:00
struct ConfigData {
ConfigData()
: listSpec( List::None ),
shouldDebugBreak( false ),
includeWhichResults( Include::FailedOnly ),
cutoff( -1 ),
allowThrows( true )
{}
std::string reporter;
std::string outputFilename;
List::What listSpec;
std::vector<std::string> testSpecs;
bool shouldDebugBreak;
std::string stream;
Include::WhichResults includeWhichResults;
std::string name;
int cutoff;
bool allowThrows;
};
2012-06-05 21:51:05 +02:00
class Config : public IReporterConfig, public IConfig {
private:
Config( const Config& other );
Config& operator = ( const Config& other );
public:
Config()
2012-07-05 19:37:58 +02:00
: m_streambuf( NULL ),
m_os( std::cout.rdbuf() )
{}
Config( const ConfigData& data )
: m_data( data ),
m_streambuf( NULL ),
2012-07-05 19:37:58 +02:00
m_os( std::cout.rdbuf() )
{}
2012-05-16 16:09:17 +02:00
~Config() {
m_os.rdbuf( std::cout.rdbuf() );
delete m_streambuf;
}
2012-07-05 19:37:58 +02:00
void setFilename( const std::string& filename ) {
m_data.outputFilename = filename;
}
2012-05-16 16:09:17 +02:00
bool testsSpecified() const {
2012-07-05 19:37:58 +02:00
return !m_data.testSpecs.empty();
}
2012-05-16 16:09:17 +02:00
const std::vector<std::string>& getTestSpecs() const {
2012-07-05 19:37:58 +02:00
return m_data.testSpecs;
}
2012-05-16 16:09:17 +02:00
List::What getListSpec( void ) const {
2012-07-05 19:37:58 +02:00
return m_data.listSpec;
}
2012-05-16 16:09:17 +02:00
const std::string& getFilename() const {
2012-07-05 19:37:58 +02:00
return m_data.outputFilename ;
}
2012-05-16 16:09:17 +02:00
List::What listWhat() const {
2012-07-05 19:37:58 +02:00
return static_cast<List::What>( m_data.listSpec & List::WhatMask );
}
2012-05-16 16:09:17 +02:00
List::What listAs() const {
2012-07-05 19:37:58 +02:00
return static_cast<List::What>( m_data.listSpec & List::AsMask );
}
2012-05-16 16:09:17 +02:00
std::string getName() const {
2012-07-05 19:37:58 +02:00
return m_data.name;
}
2012-05-16 16:09:17 +02:00
bool shouldDebugBreak() const {
2012-07-05 19:37:58 +02:00
return m_data.shouldDebugBreak;
}
2012-05-16 16:09:17 +02:00
virtual std::ostream& stream() const {
return m_os;
}
2012-05-16 16:09:17 +02:00
void setStreamBuf( std::streambuf* buf ) {
m_os.rdbuf( buf ? buf : std::cout.rdbuf() );
}
2012-05-16 16:09:17 +02:00
void useStream( const std::string& streamName ) {
2012-05-11 09:17:16 +02:00
std::streambuf* newBuf = Context::createStreamBuf( streamName );
setStreamBuf( newBuf );
delete m_streambuf;
m_streambuf = newBuf;
}
2012-05-16 16:09:17 +02:00
virtual bool includeSuccessfulResults() const {
2012-07-05 19:37:58 +02:00
return m_data.includeWhichResults == Include::SuccessfulResults;
}
int getCutoff() const {
2012-07-05 19:37:58 +02:00
return m_data.cutoff;
}
2012-07-05 19:37:58 +02:00
virtual bool allowThrows() const {
return m_data.allowThrows;
2012-06-05 21:51:05 +02:00
}
2012-07-05 19:37:58 +02:00
ConfigData& data() {
return m_data;
2012-06-05 21:51:05 +02:00
}
private:
2012-07-05 19:37:58 +02:00
ConfigData m_data;
// !TBD Move these out of here
std::streambuf* m_streambuf;
mutable std::ostream m_os;
};
} // end namespace Catch
// #included from: catch_running_test.hpp
// #included from: catch_section_info.hpp
#include <map>
#include <string>
2012-05-16 16:09:17 +02:00
namespace Catch {
class SectionInfo {
public:
2012-05-16 16:09:17 +02:00
enum Status {
Root,
Unknown,
Branch,
TestedBranch,
TestedLeaf
};
2012-05-16 16:09:17 +02:00
SectionInfo( SectionInfo* parent )
: m_status( Unknown ),
m_parent( parent )
2012-05-16 16:09:17 +02:00
{}
2012-05-16 16:09:17 +02:00
SectionInfo()
: m_status( Root ),
m_parent( NULL )
2012-05-16 16:09:17 +02:00
{}
2012-05-16 16:09:17 +02:00
~SectionInfo() {
deleteAllValues( m_subSections );
}
2012-05-16 16:09:17 +02:00
bool shouldRun() const {
return m_status < TestedBranch;
}
2012-05-16 16:09:17 +02:00
bool ran() {
if( m_status < Branch ) {
m_status = TestedLeaf;
return true;
}
return false;
}
2012-05-16 16:09:17 +02:00
void ranToCompletion() {
if( m_status == Branch && !hasUntestedSections() )
m_status = TestedBranch;
}
2012-05-16 16:09:17 +02:00
SectionInfo* findSubSection( const std::string& name ) {
std::map<std::string, SectionInfo*>::const_iterator it = m_subSections.find( name );
2011-06-23 09:23:33 +02:00
return it != m_subSections.end()
? it->second
: NULL;
2011-06-23 09:23:33 +02:00
}
2012-05-16 16:09:17 +02:00
SectionInfo* addSubSection( const std::string& name ) {
SectionInfo* subSection = new SectionInfo( this );
m_subSections.insert( std::make_pair( name, subSection ) );
m_status = Branch;
return subSection;
}
2012-05-16 16:09:17 +02:00
SectionInfo* getParent() {
return m_parent;
}
2012-05-16 16:09:17 +02:00
bool hasUntestedSections() const {
2011-06-23 09:23:33 +02:00
if( m_status == Unknown )
return true;
std::map<std::string, SectionInfo*>::const_iterator it = m_subSections.begin();
std::map<std::string, SectionInfo*>::const_iterator itEnd = m_subSections.end();
2012-05-16 16:09:17 +02:00
for(; it != itEnd; ++it ) {
if( it->second->hasUntestedSections() )
return true;
}
return false;
}
private:
Status m_status;
std::map<std::string, SectionInfo*> m_subSections;
SectionInfo* m_parent;
};
}
2012-05-16 16:09:17 +02:00
namespace Catch {
class RunningTest {
enum RunStatus {
NothingRun,
EncounteredASection,
RanAtLeastOneSection,
RanToCompletionWithSections,
RanToCompletionWithNoSections
};
public:
2012-05-16 16:09:17 +02:00
explicit RunningTest( const TestCaseInfo* info = NULL )
: m_info( info ),
m_runStatus( RanAtLeastOneSection ),
2011-06-23 09:23:33 +02:00
m_currentSection( &m_rootSection ),
m_changed( false )
2012-05-16 16:09:17 +02:00
{}
2012-05-16 16:09:17 +02:00
bool wasSectionSeen() const {
return m_runStatus == RanAtLeastOneSection ||
m_runStatus == RanToCompletionWithSections;
}
2012-05-16 16:09:17 +02:00
void reset() {
m_runStatus = NothingRun;
2011-06-23 09:23:33 +02:00
m_changed = false;
m_lastSectionToRun = NULL;
}
2012-05-16 16:09:17 +02:00
void ranToCompletion() {
if( m_runStatus == RanAtLeastOneSection ||
2012-05-16 16:09:17 +02:00
m_runStatus == EncounteredASection ) {
m_runStatus = RanToCompletionWithSections;
2012-05-16 16:09:17 +02:00
if( m_lastSectionToRun ) {
m_lastSectionToRun->ranToCompletion();
m_changed = true;
}
}
2012-05-16 16:09:17 +02:00
else {
m_runStatus = RanToCompletionWithNoSections;
}
}
2012-05-16 16:09:17 +02:00
bool addSection( const std::string& name ) {
if( m_runStatus == NothingRun )
m_runStatus = EncounteredASection;
2011-06-23 09:23:33 +02:00
SectionInfo* thisSection = m_currentSection->findSubSection( name );
2012-05-16 16:09:17 +02:00
if( !thisSection ) {
2011-06-23 09:23:33 +02:00
thisSection = m_currentSection->addSubSection( name );
m_changed = true;
}
2012-05-16 16:09:17 +02:00
if( !wasSectionSeen() && thisSection->shouldRun() ) {
m_currentSection = thisSection;
m_lastSectionToRun = NULL;
return true;
}
return false;
}
2012-05-16 16:09:17 +02:00
void endSection( const std::string& ) {
if( m_currentSection->ran() ) {
m_runStatus = RanAtLeastOneSection;
2011-06-23 09:23:33 +02:00
m_changed = true;
}
2012-05-16 16:09:17 +02:00
else if( m_runStatus == EncounteredASection ) {
m_runStatus = RanAtLeastOneSection;
m_lastSectionToRun = m_currentSection;
}
m_currentSection = m_currentSection->getParent();
}
2012-05-16 16:09:17 +02:00
const TestCaseInfo& getTestCaseInfo() const {
return *m_info;
}
2012-05-16 16:09:17 +02:00
bool hasUntestedSections() const {
2011-06-23 09:23:33 +02:00
return m_runStatus == RanAtLeastOneSection ||
( m_rootSection.hasUntestedSections() && m_changed );
}
private:
const TestCaseInfo* m_info;
RunStatus m_runStatus;
SectionInfo m_rootSection;
SectionInfo* m_currentSection;
SectionInfo* m_lastSectionToRun;
2011-06-23 09:23:33 +02:00
bool m_changed;
};
}
#include <set>
#include <string>
2012-05-16 16:09:17 +02:00
namespace Catch {
class StreamRedirect {
public:
2012-05-16 16:09:17 +02:00
StreamRedirect( std::ostream& stream, std::string& targetString )
: m_stream( stream ),
m_prevBuf( stream.rdbuf() ),
m_targetString( targetString )
{
stream.rdbuf( m_oss.rdbuf() );
}
2012-05-16 16:09:17 +02:00
~StreamRedirect() {
m_targetString += m_oss.str();
m_stream.rdbuf( m_prevBuf );
}
private:
std::ostream& m_stream;
std::streambuf* m_prevBuf;
std::ostringstream m_oss;
std::string& m_targetString;
};
///////////////////////////////////////////////////////////////////////////
2012-05-16 16:09:17 +02:00
class Runner : public IResultCapture, public IRunner {
Runner( const Runner& );
void operator =( const Runner& );
public:
explicit Runner( Config& config, const Ptr<IReporter>& reporter )
: m_context( getCurrentMutableContext() ),
m_runningTest( NULL ),
m_config( config ),
m_reporter( reporter ),
m_prevRunner( &m_context.getRunner() ),
2012-07-05 19:37:58 +02:00
m_prevResultCapture( &m_context.getResultCapture() ),
m_prevConfig( m_context.getConfig() )
{
m_context.setRunner( this );
2012-06-05 21:51:05 +02:00
m_context.setConfig( &m_config );
m_context.setResultCapture( this );
m_reporter->StartTesting();
}
2012-05-16 16:09:17 +02:00
~Runner() {
2012-02-25 10:39:45 +01:00
m_reporter->EndTesting( m_totals );
m_context.setRunner( m_prevRunner );
2012-06-05 21:51:05 +02:00
m_context.setConfig( NULL );
m_context.setResultCapture( m_prevResultCapture );
2012-07-05 19:37:58 +02:00
m_context.setConfig( m_prevConfig );
}
2012-05-16 16:09:17 +02:00
virtual void runAll( bool runHiddenTests = false ) {
m_reporter->StartGroup( "" );
const std::vector<TestCaseInfo>& allTests = getCurrentContext().getTestCaseRegistry().getAllTests();
2012-05-16 16:09:17 +02:00
for( std::size_t i=0; i < allTests.size(); ++i ) {
2012-07-05 19:37:58 +02:00
if( runHiddenTests || !allTests[i].isHidden() ) {
if( aborting() ) {
m_reporter->Aborted();
break;
}
runTest( allTests[i] );
}
}
m_reporter->EndGroup( "", getTotals() );
}
2012-05-16 16:09:17 +02:00
virtual std::size_t runMatching( const std::string& rawTestSpec ) {
Totals prevTotals = getTotals();
m_reporter->StartGroup( rawTestSpec );
TestSpec testSpec( rawTestSpec );
const std::vector<TestCaseInfo>& allTests = getCurrentContext().getTestCaseRegistry().getAllTests();
std::size_t testsRun = 0;
2012-05-16 16:09:17 +02:00
for( std::size_t i=0; i < allTests.size(); ++i ) {
if( testSpec.matches( allTests[i].getName() ) ) {
if( aborting() ) {
m_reporter->Aborted();
break;
}
runTest( allTests[i] );
testsRun++;
}
}
m_reporter->EndGroup( rawTestSpec, getTotals() - prevTotals );
return testsRun;
}
2012-05-16 16:09:17 +02:00
void runTest( const TestCaseInfo& testInfo ) {
2012-02-25 10:39:45 +01:00
Totals prevTotals = m_totals;
std::string redirectedCout;
std::string redirectedCerr;
m_reporter->StartTestCase( testInfo );
m_runningTest = new RunningTest( &testInfo );
2012-05-16 16:09:17 +02:00
do {
do {
// m_reporter->StartGroup( "test case run" );
2012-05-09 20:04:00 +02:00
m_currentResult.setLineInfo( m_runningTest->getTestCaseInfo().getLineInfo() );
runCurrentTest( redirectedCout, redirectedCerr );
// m_reporter->EndGroup( "test case run", m_totals.delta( prevTotals ) );
}
while( m_runningTest->hasUntestedSections() && !aborting() );
}
while( getCurrentContext().advanceGeneratorsForCurrentTest() && !aborting() );
delete m_runningTest;
m_runningTest = NULL;
2012-05-22 09:56:59 +02:00
Totals deltaTotals = m_totals.delta( prevTotals );
m_totals.testCases += deltaTotals.testCases;
m_reporter->EndTestCase( testInfo, deltaTotals, redirectedCout, redirectedCerr );
}
2012-05-16 16:09:17 +02:00
virtual Totals getTotals() const {
2012-02-25 10:39:45 +01:00
return m_totals;
}
2012-06-05 21:51:05 +02:00
const Config& config() const {
return m_config;
}
private: // IResultCapture
2012-05-16 16:09:17 +02:00
virtual ResultAction::Value acceptResult( bool result ) {
return acceptResult( result ? ResultWas::Ok : ResultWas::ExpressionFailed );
}
2012-05-16 16:09:17 +02:00
virtual ResultAction::Value acceptResult( ResultWas::OfType result ) {
m_currentResult.setResultType( result );
return actOnCurrentResult();
}
2012-05-16 16:09:17 +02:00
virtual ResultAction::Value acceptExpression( const ResultInfoBuilder& resultInfo ) {
m_currentResult = resultInfo;
return actOnCurrentResult();
}
2012-05-16 16:09:17 +02:00
virtual void acceptMessage( const std::string& msg ) {
m_currentResult.setMessage( msg );
}
2012-05-16 16:09:17 +02:00
virtual void testEnded( const ResultInfo& result ) {
if( result.getResultType() == ResultWas::Ok ) {
2012-02-25 10:39:45 +01:00
m_totals.assertions.passed++;
}
2012-05-16 16:09:17 +02:00
else if( !result.ok() ) {
2012-02-25 10:39:45 +01:00
m_totals.assertions.failed++;
std::vector<ResultInfo>::const_iterator it = m_info.begin();
std::vector<ResultInfo>::const_iterator itEnd = m_info.end();
for(; it != itEnd; ++it )
m_reporter->Result( *it );
m_info.clear();
}
if( result.getResultType() == ResultWas::Info )
m_info.push_back( result );
else
m_reporter->Result( result );
}
2012-05-16 16:09:17 +02:00
virtual bool sectionStarted (
const std::string& name,
const std::string& description,
2012-05-09 20:04:00 +02:00
const SourceLineInfo& lineInfo,
2012-02-25 10:39:45 +01:00
Counts& assertions
)
{
std::ostringstream oss;
2012-05-09 20:04:00 +02:00
oss << name << "@" << lineInfo;
if( !m_runningTest->addSection( oss.str() ) )
return false;
2012-05-09 20:04:00 +02:00
m_currentResult.setLineInfo( lineInfo );
m_reporter->StartSection( name, description );
2012-02-25 10:39:45 +01:00
assertions = m_totals.assertions;
return true;
}
2012-05-16 16:09:17 +02:00
virtual void sectionEnded( const std::string& name, const Counts& prevAssertions ) {
m_runningTest->endSection( name );
2012-02-25 10:39:45 +01:00
m_reporter->EndSection( name, m_totals.assertions - prevAssertions );
}
2012-05-16 16:09:17 +02:00
virtual void pushScopedInfo( ScopedInfo* scopedInfo ) {
m_scopedInfos.push_back( scopedInfo );
}
2012-05-16 16:09:17 +02:00
virtual void popScopedInfo( ScopedInfo* scopedInfo ) {
if( m_scopedInfos.back() == scopedInfo )
m_scopedInfos.pop_back();
}
2012-05-16 16:09:17 +02:00
virtual bool shouldDebugBreak() const {
return m_config.shouldDebugBreak();
}
2012-05-16 16:09:17 +02:00
virtual std::string getCurrentTestName() const {
return m_runningTest
? m_runningTest->getTestCaseInfo().getName()
: "";
}
2012-05-16 16:09:17 +02:00
virtual const ResultInfo* getLastResult() const {
2012-02-10 09:30:13 +01:00
return &m_lastResult;
}
private:
bool aborting() const {
return m_totals.assertions.failed == static_cast<std::size_t>( m_config.getCutoff() );
}
2012-05-16 16:09:17 +02:00
ResultAction::Value actOnCurrentResult() {
testEnded( m_currentResult );
2012-02-10 09:30:13 +01:00
m_lastResult = m_currentResult;
2012-05-09 20:04:00 +02:00
m_currentResult = ResultInfoBuilder();
ResultAction::Value action = ResultAction::None;
if( !m_lastResult.ok() ) {
action = ResultAction::Failed;
if( shouldDebugBreak() )
action = (ResultAction::Value)( action | ResultAction::Debug );
if( aborting() )
action = (ResultAction::Value)( action | ResultAction::Abort );
}
return action;
}
2012-05-16 16:09:17 +02:00
void runCurrentTest( std::string& redirectedCout, std::string& redirectedCerr ) {
try {
m_runningTest->reset();
2012-05-16 16:09:17 +02:00
if( m_reporter->shouldRedirectStdout() ) {
StreamRedirect coutRedir( std::cout, redirectedCout );
StreamRedirect cerrRedir( std::cerr, redirectedCerr );
m_runningTest->getTestCaseInfo().invoke();
}
2012-05-16 16:09:17 +02:00
else {
m_runningTest->getTestCaseInfo().invoke();
}
m_runningTest->ranToCompletion();
}
2012-05-16 16:09:17 +02:00
catch( TestFailureException& ) {
// This just means the test was aborted due to failure
}
2012-05-16 16:09:17 +02:00
catch(...) {
acceptMessage( getCurrentContext().getExceptionTranslatorRegistry().translateActiveException() );
acceptResult( ResultWas::ThrewException );
}
m_info.clear();
}
private:
IMutableContext& m_context;
RunningTest* m_runningTest;
2012-05-09 20:04:00 +02:00
ResultInfoBuilder m_currentResult;
2012-02-10 09:30:13 +01:00
ResultInfo m_lastResult;
const Config& m_config;
2012-02-25 10:39:45 +01:00
Totals m_totals;
Ptr<IReporter> m_reporter;
std::vector<ScopedInfo*> m_scopedInfos;
std::vector<ResultInfo> m_info;
IRunner* m_prevRunner;
IResultCapture* m_prevResultCapture;
2012-07-05 19:37:58 +02:00
const IConfig* m_prevConfig;
};
} // end namespace Catch
// #included from: catch_generators_impl.hpp
#include <vector>
#include <string>
#include <map>
2012-05-16 16:09:17 +02:00
namespace Catch {
struct GeneratorInfo {
GeneratorInfo( std::size_t size )
: m_size( size ),
m_currentIndex( 0 )
2012-05-16 16:09:17 +02:00
{}
2012-05-16 16:09:17 +02:00
bool moveNext() {
if( ++m_currentIndex == m_size ) {
m_currentIndex = 0;
return false;
}
return true;
}
2012-05-16 16:09:17 +02:00
std::size_t getCurrentIndex() const {
return m_currentIndex;
}
std::size_t m_size;
std::size_t m_currentIndex;
};
///////////////////////////////////////////////////////////////////////////
2012-05-16 16:09:17 +02:00
class GeneratorsForTest {
public:
2012-05-16 16:09:17 +02:00
~GeneratorsForTest() {
deleteAll( m_generatorsInOrder );
}
2012-05-16 16:09:17 +02:00
GeneratorInfo& getGeneratorInfo( const std::string& fileInfo, std::size_t size ) {
std::map<std::string, GeneratorInfo*>::const_iterator it = m_generatorsByName.find( fileInfo );
2012-05-16 16:09:17 +02:00
if( it == m_generatorsByName.end() ) {
GeneratorInfo* info = new GeneratorInfo( size );
m_generatorsByName.insert( std::make_pair( fileInfo, info ) );
m_generatorsInOrder.push_back( info );
return *info;
}
return *it->second;
}
2012-05-16 16:09:17 +02:00
bool moveNext() {
std::vector<GeneratorInfo*>::const_iterator it = m_generatorsInOrder.begin();
std::vector<GeneratorInfo*>::const_iterator itEnd = m_generatorsInOrder.end();
2012-05-16 16:09:17 +02:00
for(; it != itEnd; ++it ) {
if( (*it)->moveNext() )
return true;
}
return false;
}
private:
std::map<std::string, GeneratorInfo*> m_generatorsByName;
std::vector<GeneratorInfo*> m_generatorsInOrder;
};
} // end namespace Catch
#define INTERNAL_CATCH_LINESTR2( line ) #line
#define INTERNAL_CATCH_LINESTR( line ) INTERNAL_CATCH_LINESTR2( line )
#define INTERNAL_CATCH_GENERATE( expr ) expr.setFileInfo( __FILE__ "(" INTERNAL_CATCH_LINESTR( __LINE__ ) ")" )
// #included from: catch_console_colour_impl.hpp
// #included from: catch_console_colour.hpp
2012-05-16 16:09:17 +02:00
namespace Catch {
struct ConsoleColourImpl;
2012-05-16 16:09:17 +02:00
class TextColour : NonCopyable {
public:
2012-05-16 16:09:17 +02:00
enum Colours {
None,
FileName,
ResultError,
ResultSuccess,
Error,
Success,
OriginalExpression,
ReconstructedExpression
};
TextColour( Colours colour = None );
void set( Colours colour );
~TextColour();
private:
ConsoleColourImpl* m_impl;
};
} // end namespace Catch
#ifdef CATCH_PLATFORM_WINDOWS
#include <windows.h>
2012-05-16 16:09:17 +02:00
namespace Catch {
namespace {
WORD mapConsoleColour( TextColour::Colours colour ) {
switch( colour ) {
case TextColour::FileName:
return FOREGROUND_INTENSITY; // greyed out
case TextColour::ResultError:
return FOREGROUND_RED | FOREGROUND_INTENSITY; // bright red
case TextColour::ResultSuccess:
return FOREGROUND_GREEN | FOREGROUND_INTENSITY; // bright green
case TextColour::Error:
return FOREGROUND_RED; // dark red
case TextColour::Success:
return FOREGROUND_GREEN; // dark green
case TextColour::OriginalExpression:
return FOREGROUND_BLUE | FOREGROUND_GREEN; // turquoise
case TextColour::ReconstructedExpression:
return FOREGROUND_RED | FOREGROUND_GREEN; // greeny-yellow
default: return 0;
}
}
}
2012-05-16 16:09:17 +02:00
struct ConsoleColourImpl {
ConsoleColourImpl()
: hStdout( GetStdHandle(STD_OUTPUT_HANDLE) ),
wOldColorAttrs( 0 )
{
GetConsoleScreenBufferInfo( hStdout, &csbiInfo );
wOldColorAttrs = csbiInfo.wAttributes;
}
2012-05-16 16:09:17 +02:00
~ConsoleColourImpl() {
SetConsoleTextAttribute( hStdout, wOldColorAttrs );
}
2012-05-16 16:09:17 +02:00
void set( TextColour::Colours colour ) {
WORD consoleColour = mapConsoleColour( colour );
if( consoleColour > 0 )
SetConsoleTextAttribute( hStdout, consoleColour );
}
HANDLE hStdout;
CONSOLE_SCREEN_BUFFER_INFO csbiInfo;
WORD wOldColorAttrs;
};
TextColour::TextColour( Colours colour )
: m_impl( new ConsoleColourImpl() )
{
if( colour )
m_impl->set( colour );
}
2012-05-16 16:09:17 +02:00
TextColour::~TextColour() {
delete m_impl;
}
2012-05-16 16:09:17 +02:00
void TextColour::set( Colours colour ) {
m_impl->set( colour );
}
} // end namespace Catch
#else
2012-05-16 16:09:17 +02:00
namespace Catch {
TextColour::TextColour( Colours ){}
TextColour::~TextColour(){}
void TextColour::set( Colours ){}
} // end namespace Catch
#endif
2012-05-11 09:17:16 +02:00
// #included from: catch_exception_translator_registry.hpp
#ifdef __OBJC__
#import "Foundation/Foundation.h"
#endif
2012-05-16 16:09:17 +02:00
namespace Catch {
class ExceptionTranslatorRegistry : public IExceptionTranslatorRegistry {
~ExceptionTranslatorRegistry() {
2012-05-11 09:17:16 +02:00
deleteAll( m_translators );
}
2012-05-16 16:09:17 +02:00
virtual void registerTranslator( IExceptionTranslator* translator ) {
2012-05-11 09:17:16 +02:00
m_translators.push_back( translator );
}
2012-05-16 16:09:17 +02:00
virtual std::string translateActiveException() const {
try {
#ifdef __OBJC__
// In Objective-C try objective-c exceptions first
@try {
throw;
}
@catch (NSException *exception) {
return toString( [exception description] );
}
#else
2012-05-11 09:17:16 +02:00
throw;
#endif
2012-05-11 09:17:16 +02:00
}
2012-05-16 16:09:17 +02:00
catch( std::exception& ex ) {
2012-05-11 09:17:16 +02:00
return ex.what();
}
2012-05-16 16:09:17 +02:00
catch( std::string& msg ) {
2012-05-11 09:17:16 +02:00
return msg;
}
2012-05-16 16:09:17 +02:00
catch( const char* msg ) {
2012-05-11 09:17:16 +02:00
return msg;
}
2012-05-16 16:09:17 +02:00
catch(...) {
2012-05-11 09:17:16 +02:00
return tryTranslators( m_translators.begin() );
}
}
2012-05-16 16:09:17 +02:00
std::string tryTranslators( std::vector<IExceptionTranslator*>::const_iterator it ) const {
2012-05-11 09:17:16 +02:00
if( it == m_translators.end() )
return "Unknown exception";
2012-05-16 16:09:17 +02:00
try {
2012-05-11 09:17:16 +02:00
return (*it)->translate();
}
2012-05-16 16:09:17 +02:00
catch(...) {
2012-05-11 09:17:16 +02:00
return tryTranslators( it+1 );
}
}
private:
std::vector<IExceptionTranslator*> m_translators;
};
}
// #included from: catch_reporter_registry.hpp
#include <map>
2012-05-16 16:09:17 +02:00
namespace Catch {
class ReporterRegistry : public IReporterRegistry {
2012-05-11 09:17:16 +02:00
public:
2012-05-16 16:09:17 +02:00
~ReporterRegistry() {
2012-05-11 09:17:16 +02:00
deleteAllValues( m_factories );
}
2012-05-16 16:09:17 +02:00
virtual IReporter* create( const std::string& name, const IReporterConfig& config ) const {
2012-05-11 09:17:16 +02:00
FactoryMap::const_iterator it = m_factories.find( name );
if( it == m_factories.end() )
return NULL;
return it->second->create( config );
}
2012-05-16 16:09:17 +02:00
void registerReporter( const std::string& name, IReporterFactory* factory ) {
2012-05-11 09:17:16 +02:00
m_factories.insert( std::make_pair( name, factory ) );
}
2012-05-16 16:09:17 +02:00
const FactoryMap& getFactories() const {
2012-05-11 09:17:16 +02:00
return m_factories;
}
private:
FactoryMap m_factories;
};
}
// #included from: catch_stream.hpp
#include <stdexcept>
#include <cstdio>
2012-05-16 16:09:17 +02:00
namespace Catch {
template<typename WriterF, size_t bufferSize=256>
2012-05-16 16:09:17 +02:00
class StreamBufImpl : public StreamBufBase {
char data[bufferSize];
WriterF m_writer;
public:
2012-05-16 16:09:17 +02:00
StreamBufImpl() {
setp( data, data + sizeof(data) );
}
2012-05-16 16:09:17 +02:00
~StreamBufImpl() {
sync();
}
private:
2012-05-16 16:09:17 +02:00
int overflow( int c ) {
sync();
2012-05-16 16:09:17 +02:00
if( c != EOF ) {
if( pbase() == epptr() )
m_writer( std::string( 1, static_cast<char>( c ) ) );
else
sputc( static_cast<char>( c ) );
}
return 0;
}
2012-05-16 16:09:17 +02:00
int sync() {
if( pbase() != pptr() ) {
2012-05-09 20:04:00 +02:00
m_writer( std::string( pbase(), static_cast<std::string::size_type>( pptr() - pbase() ) ) );
setp( pbase(), epptr() );
}
return 0;
}
};
///////////////////////////////////////////////////////////////////////////
2012-05-16 16:09:17 +02:00
struct OutputDebugWriter {
void operator()( const std::string &str ) {
writeToDebugConsole( str );
}
};
}
2012-05-16 16:09:17 +02:00
namespace Catch {
2012-05-22 09:56:59 +02:00
namespace {
2012-06-05 21:16:58 +02:00
Context* currentContext = NULL;
2012-05-22 09:56:59 +02:00
}
IMutableContext& getCurrentMutableContext() {
2012-06-05 21:16:58 +02:00
if( !currentContext )
currentContext = new Context();
return *currentContext;
2012-05-22 09:56:59 +02:00
}
IContext& getCurrentContext() {
return getCurrentMutableContext();
}
2012-05-11 09:17:16 +02:00
Context::Context()
: m_reporterRegistry( new ReporterRegistry ),
m_testCaseRegistry( new TestRegistry ),
2012-06-05 21:51:05 +02:00
m_exceptionTranslatorRegistry( new ExceptionTranslatorRegistry ),
m_config( NULL )
2012-05-11 09:17:16 +02:00
{}
2012-05-11 09:17:16 +02:00
void Context::cleanUp() {
2012-06-05 21:16:58 +02:00
delete currentContext;
currentContext = NULL;
}
2012-05-11 09:17:16 +02:00
void Context::setRunner( IRunner* runner ) {
m_runner = runner;
}
2012-05-11 09:17:16 +02:00
void Context::setResultCapture( IResultCapture* resultCapture ) {
m_resultCapture = resultCapture;
}
2012-06-05 21:51:05 +02:00
const IConfig* Context::getConfig() const {
return m_config;
}
void Context::setConfig( const IConfig* config ) {
m_config = config;
}
2012-05-11 09:17:16 +02:00
IResultCapture& Context::getResultCapture() {
return *m_resultCapture;
}
2012-05-11 09:17:16 +02:00
IRunner& Context::getRunner() {
return *m_runner;
}
2012-05-11 09:17:16 +02:00
IReporterRegistry& Context::getReporterRegistry() {
return *m_reporterRegistry.get();
}
2012-05-11 09:17:16 +02:00
ITestCaseRegistry& Context::getTestCaseRegistry() {
return *m_testCaseRegistry.get();
}
2012-05-11 09:17:16 +02:00
IExceptionTranslatorRegistry& Context::getExceptionTranslatorRegistry() {
return *m_exceptionTranslatorRegistry.get();
}
2012-05-11 09:17:16 +02:00
std::streambuf* Context::createStreamBuf( const std::string& streamName ) {
if( streamName == "stdout" ) return std::cout.rdbuf();
if( streamName == "stderr" ) return std::cerr.rdbuf();
if( streamName == "debug" ) return new StreamBufImpl<OutputDebugWriter>;
throw std::domain_error( "Unknown stream: " + streamName );
}
2012-05-11 09:17:16 +02:00
GeneratorsForTest* Context::findGeneratorsForCurrentTest() {
2012-05-22 09:56:59 +02:00
std::string testName = getResultCapture().getCurrentTestName();
std::map<std::string, GeneratorsForTest*>::const_iterator it =
m_generatorsByTestName.find( testName );
return it != m_generatorsByTestName.end()
? it->second
: NULL;
}
2012-05-11 09:17:16 +02:00
GeneratorsForTest& Context::getGeneratorsForCurrentTest() {
GeneratorsForTest* generators = findGeneratorsForCurrentTest();
2012-05-16 16:09:17 +02:00
if( !generators ) {
2012-05-22 09:56:59 +02:00
std::string testName = getResultCapture().getCurrentTestName();
generators = new GeneratorsForTest();
m_generatorsByTestName.insert( std::make_pair( testName, generators ) );
}
return *generators;
}
2012-05-16 16:09:17 +02:00
size_t Context::getGeneratorIndex( const std::string& fileInfo, size_t totalSize ) {
return getGeneratorsForCurrentTest()
.getGeneratorInfo( fileInfo, totalSize )
.getCurrentIndex();
}
2012-05-11 09:17:16 +02:00
bool Context::advanceGeneratorsForCurrentTest() {
GeneratorsForTest* generators = findGeneratorsForCurrentTest();
return generators && generators->moveNext();
}
}
// #included from: internal/catch_commandline.hpp
2012-05-16 16:09:17 +02:00
namespace Catch {
class Command {
public:
Command(){}
explicit Command( const std::string& name ) : m_name( name ) {}
Command& operator += ( const std::string& arg ) {
m_args.push_back( arg );
return *this;
}
Command& operator += ( const Command& other ) {
std::copy( other.m_args.begin(), other.m_args.end(), std::back_inserter( m_args ) );
if( m_name.empty() )
m_name = other.m_name;
return *this;
}
Command operator + ( const Command& other ) {
Command newCommand( *this );
newCommand += other;
return newCommand;
}
operator SafeBool::type() const {
return SafeBool::makeSafe( !m_name.empty() );
}
std::string name() const { return m_name; }
std::string operator[]( std::size_t i ) const { return m_args[i]; }
std::size_t argsCount() const { return m_args.size(); }
void raiseError( const std::string& message ) const {
std::ostringstream oss;
oss << "Error while parsing " << m_name << ". " << message << ".";
if( m_args.size() > 0 )
oss << " Arguments where:";
for( std::size_t i = 0; i < m_args.size(); ++i )
oss << " " << m_args[i];
throw std::domain_error( oss.str() );
}
private:
std::string m_name;
std::vector<std::string> m_args;
};
class CommandParser {
public:
CommandParser( int argc, char const * const * argv ) : m_argc( static_cast<std::size_t>( argc ) ), m_argv( argv ) {}
Command find( const std::string& arg1, const std::string& arg2, const std::string& arg3 ) const {
return find( arg1 ) + find( arg2 ) + find( arg3 );
}
Command find( const std::string& shortArg, const std::string& longArg ) const {
return find( shortArg ) + find( longArg );
}
Command find( const std::string& arg ) const {
for( std::size_t i = 0; i < m_argc; ++i )
if( m_argv[i] == arg )
return getArgs( i );
return Command();
}
private:
Command getArgs( std::size_t from ) const {
Command command( m_argv[from] );
for( std::size_t i = from+1; i < m_argc && m_argv[i][0] != '-'; ++i )
command += m_argv[i];
return command;
}
std::size_t m_argc;
char const * const * m_argv;
};
2012-07-05 19:37:58 +02:00
inline void parseIntoConfig( const CommandParser& parser, ConfigData& config ) {
2012-07-05 19:37:58 +02:00
if( Command cmd = parser.find( "-l", "--list" ) ) {
if( cmd.argsCount() > 2 )
cmd.raiseError( "Expected upto 2 arguments" );
2012-07-05 19:37:58 +02:00
List::What listSpec = List::All;
if( cmd.argsCount() >= 1 ) {
if( cmd[0] == "tests" )
config.listSpec = List::Tests;
else if( cmd[0] == "reporters" )
config.listSpec = List::Reports;
else
cmd.raiseError( "Expected [tests] or [reporters]" );
}
2012-07-05 19:37:58 +02:00
if( cmd.argsCount() >= 2 ) {
if( cmd[1] == "xml" )
config.listSpec = static_cast<List::What>( listSpec | List::AsXml );
else if( cmd[1] == "text" )
config.listSpec = static_cast<List::What>( listSpec | List::AsText );
else
2012-07-05 19:37:58 +02:00
cmd.raiseError( "Expected [xml] or [text]" );
}
2012-07-05 19:37:58 +02:00
}
2012-07-05 19:37:58 +02:00
if( Command cmd = parser.find( "-t", "--test" ) ) {
if( cmd.argsCount() == 0 )
cmd.raiseError( "Expected at least one argument" );
for( std::size_t i = 0; i < cmd.argsCount(); ++i )
config.testSpecs.push_back( cmd[i] );
}
2012-07-05 19:37:58 +02:00
if( Command cmd = parser.find( "-r", "--reporter" ) ) {
if( cmd.argsCount() != 1 )
cmd.raiseError( "Expected one argument" );
config.reporter = cmd[0];
}
2012-07-05 19:37:58 +02:00
if( Command cmd = parser.find( "-o", "--out" ) ) {
if( cmd.argsCount() == 0 )
cmd.raiseError( "Expected filename" );
if( cmd[0][0] == '%' )
config.stream = cmd[0].substr( 1 );
else
config.outputFilename = cmd[0];
}
2012-07-05 19:37:58 +02:00
if( Command cmd = parser.find( "-s", "--success" ) ) {
if( cmd.argsCount() != 0 )
cmd.raiseError( "Does not accept arguments" );
config.includeWhichResults = Include::SuccessfulResults;
}
2012-07-05 19:37:58 +02:00
if( Command cmd = parser.find( "-b", "--break" ) ) {
if( cmd.argsCount() != 0 )
cmd.raiseError( "Does not accept arguments" );
config.shouldDebugBreak = true;
}
2012-06-05 21:51:05 +02:00
2012-07-05 19:37:58 +02:00
if( Command cmd = parser.find( "-n", "--name" ) ) {
if( cmd.argsCount() != 1 )
cmd.raiseError( "Expected a name" );
config.name = cmd[0];
}
2012-06-05 21:51:05 +02:00
2012-07-05 19:37:58 +02:00
if( Command cmd = parser.find( "-a", "--abort" ) ) {
if( cmd.argsCount() > 1 )
cmd.raiseError( "Only accepts 0-1 arguments" );
int threshold = 1;
if( cmd.argsCount() == 1 ) {
std::stringstream ss;
ss << cmd[0];
ss >> threshold;
}
config.cutoff = threshold;
}
2012-07-05 19:37:58 +02:00
if( Command cmd = parser.find( "-nt", "--nothrow" ) ) {
if( cmd.argsCount() != 0 )
cmd.raiseError( "Does not accept arguments" );
config.allowThrows = false;
}
2012-07-05 19:37:58 +02:00
}
} // end namespace Catch
// #included from: internal/catch_list.hpp
#include <limits>
2012-05-16 16:09:17 +02:00
namespace Catch {
inline int List( Config& config ) {
IContext& context = getCurrentContext();
if( config.listWhat() & List::Reports ) {
std::cout << "Available reports:\n";
IReporterRegistry::FactoryMap::const_iterator it = context.getReporterRegistry().getFactories().begin();
IReporterRegistry::FactoryMap::const_iterator itEnd = context.getReporterRegistry().getFactories().end();
2012-05-16 16:09:17 +02:00
for(; it != itEnd; ++it ) {
// !TBD: consider listAs()
std::cout << "\t" << it->first << "\n\t\t'" << it->second->getDescription() << "'\n";
}
std::cout << std::endl;
}
2012-05-16 16:09:17 +02:00
if( config.listWhat() & List::Tests ) {
std::cout << "Available tests:\n";
std::vector<TestCaseInfo>::const_iterator it = context.getTestCaseRegistry().getAllTests().begin();
std::vector<TestCaseInfo>::const_iterator itEnd = context.getTestCaseRegistry().getAllTests().end();
2012-05-16 16:09:17 +02:00
for(; it != itEnd; ++it ) {
// !TBD: consider listAs()
std::cout << "\t" << it->getName() << "\n\t\t '" << it->getDescription() << "'\n";
}
std::cout << std::endl;
}
2012-05-16 16:09:17 +02:00
if( ( config.listWhat() & List::All ) == 0 ) {
std::cerr << "Unknown list type" << std::endl;
return (std::numeric_limits<int>::max)();
}
return 0;
}
} // end namespace Catch
// #included from: reporters/catch_reporter_basic.hpp
2011-06-07 15:13:57 +02:00
// #included from: ../internal/catch_reporter_registrars.hpp
2012-05-16 16:09:17 +02:00
namespace Catch {
template<typename T>
2012-05-16 16:09:17 +02:00
class ReporterRegistrar {
class ReporterFactory : public IReporterFactory {
virtual IReporter* create( const IReporterConfig& config ) const {
return new T( config );
}
2012-05-16 16:09:17 +02:00
virtual std::string getDescription() const {
return T::getDescription();
}
};
public:
2012-05-16 16:09:17 +02:00
ReporterRegistrar( const std::string& name ) {
getCurrentContext().getReporterRegistry().registerReporter( name, new ReporterFactory() );
}
};
}
#define INTERNAL_CATCH_REGISTER_REPORTER( name, reporterType ) \
Catch::ReporterRegistrar<reporterType> catch_internal_RegistrarFor##reporterType( name );
2012-05-16 16:09:17 +02:00
namespace Catch {
struct pluralise {
2012-02-25 10:39:45 +01:00
pluralise( std::size_t count, const std::string& label )
: m_count( count ),
m_label( label )
{}
2012-05-16 16:09:17 +02:00
friend std::ostream& operator << ( std::ostream& os, const pluralise& pluraliser ) {
2012-02-25 10:39:45 +01:00
os << pluraliser.m_count << " " << pluraliser.m_label;
if( pluraliser.m_count != 1 )
os << "s";
return os;
}
std::size_t m_count;
std::string m_label;
};
2012-05-16 16:09:17 +02:00
class BasicReporter : public SharedImpl<IReporter> {
struct SpanInfo {
SpanInfo()
: emitted( false )
{}
SpanInfo( const std::string& spanName )
: name( spanName ),
emitted( false )
{}
SpanInfo( const SpanInfo& other )
: name( other.name ),
emitted( other.emitted )
{}
std::string name;
bool emitted;
};
public:
2012-05-16 16:09:17 +02:00
BasicReporter( const IReporterConfig& config )
: m_config( config ),
m_firstSectionInTestCase( true ),
m_aborted( false )
2012-05-16 16:09:17 +02:00
{}
2012-05-16 16:09:17 +02:00
static std::string getDescription() {
return "Reports test results as lines of text";
}
private:
void ReportCounts( const std::string& label, const Counts& counts, const std::string& allPrefix = "All " ) {
if( counts.passed )
m_config.stream() << counts.failed << " of " << counts.total() << " " << label << "s failed";
2012-02-25 10:39:45 +01:00
else
m_config.stream() << ( counts.failed > 1 ? allPrefix : "" ) << pluralise( counts.failed, label ) << " failed";
2012-02-25 10:39:45 +01:00
}
void ReportCounts( const Totals& totals, const std::string& allPrefix = "All " ) {
2012-05-16 16:09:17 +02:00
if( totals.assertions.total() == 0 ) {
2012-02-25 10:39:45 +01:00
m_config.stream() << "No tests ran";
}
2012-05-16 16:09:17 +02:00
else if( totals.assertions.failed ) {
TextColour colour( TextColour::ResultError );
ReportCounts( "test case", totals.testCases, allPrefix );
2012-05-16 16:09:17 +02:00
if( totals.testCases.failed > 0 ) {
m_config.stream() << " (";
ReportCounts( "assertion", totals.assertions, allPrefix );
m_config.stream() << ")";
}
}
2012-05-16 16:09:17 +02:00
else {
TextColour colour( TextColour::ResultSuccess );
m_config.stream() << allPrefix << "tests passed ("
2012-03-04 22:22:36 +01:00
<< pluralise( totals.assertions.passed, "assertion" ) << " in "
<< pluralise( totals.testCases.passed, "test case" ) << ")";
2012-02-22 10:44:06 +01:00
}
}
private: // IReporter
2012-05-16 16:09:17 +02:00
virtual bool shouldRedirectStdout() const {
return false;
}
2012-05-16 16:09:17 +02:00
virtual void StartTesting() {
m_testingSpan = SpanInfo();
}
virtual void Aborted() {
m_aborted = true;
}
2012-05-16 16:09:17 +02:00
virtual void EndTesting( const Totals& totals ) {
// Output the overall test results even if "Started Testing" was not emitted
if( m_aborted ) {
m_config.stream() << "\n[Testing aborted. ";
ReportCounts( totals, "The first " );
}
else {
m_config.stream() << "\n[Testing completed. ";
ReportCounts( totals );
}
m_config.stream() << "]\n" << std::endl;
}
2012-05-16 16:09:17 +02:00
virtual void StartGroup( const std::string& groupName ) {
m_groupSpan = groupName;
}
2012-05-16 16:09:17 +02:00
virtual void EndGroup( const std::string& groupName, const Totals& totals ) {
if( m_groupSpan.emitted && !groupName.empty() ) {
m_config.stream() << "[End of group: '" << groupName << "'. ";
2012-02-25 10:39:45 +01:00
ReportCounts( totals );
m_config.stream() << "]\n" << std::endl;
m_groupSpan = SpanInfo();
}
}
2012-05-16 16:09:17 +02:00
virtual void StartTestCase( const TestCaseInfo& testInfo ) {
m_testSpan = testInfo.getName();
}
2012-05-16 16:09:17 +02:00
virtual void StartSection( const std::string& sectionName, const std::string& ) {
m_sectionSpans.push_back( SpanInfo( sectionName ) );
}
2012-05-16 16:09:17 +02:00
virtual void EndSection( const std::string& sectionName, const Counts& assertions ) {
SpanInfo& sectionSpan = m_sectionSpans.back();
2012-05-16 16:09:17 +02:00
if( sectionSpan.emitted && !sectionSpan.name.empty() ) {
2012-03-04 22:22:36 +01:00
m_config.stream() << "[End of section: '" << sectionName << "' ";
2012-05-16 16:09:17 +02:00
if( assertions.failed ) {
TextColour colour( TextColour::ResultError );
ReportCounts( "assertion", assertions);
}
2012-05-16 16:09:17 +02:00
else {
TextColour colour( TextColour::ResultSuccess );
m_config.stream() << ( assertions.passed > 1 ? "All " : "" )
<< pluralise( assertions.passed, "assertion" ) << " passed" ;
}
m_config.stream() << "]\n" << std::endl;
}
m_sectionSpans.pop_back();
}
2012-05-16 16:09:17 +02:00
virtual void Result( const ResultInfo& resultInfo ) {
if( !m_config.includeSuccessfulResults() && resultInfo.getResultType() == ResultWas::Ok )
return;
StartSpansLazily();
2012-05-16 16:09:17 +02:00
if( !resultInfo.getFilename().empty() ) {
TextColour colour( TextColour::FileName );
2012-02-15 19:37:21 +01:00
m_config.stream() << SourceLineInfo( resultInfo.getFilename(), resultInfo.getLine() );
}
2012-05-16 16:09:17 +02:00
if( resultInfo.hasExpression() ) {
TextColour colour( TextColour::OriginalExpression );
m_config.stream() << resultInfo.getExpression();
2012-05-16 16:09:17 +02:00
if( resultInfo.ok() ) {
2012-05-11 20:06:43 +02:00
TextColour successColour( TextColour::Success );
m_config.stream() << " succeeded";
}
2012-05-16 16:09:17 +02:00
else {
2012-05-11 20:06:43 +02:00
TextColour errorColour( TextColour::Error );
m_config.stream() << " failed";
}
}
2012-05-16 16:09:17 +02:00
switch( resultInfo.getResultType() ) {
case ResultWas::ThrewException:
{
TextColour colour( TextColour::Error );
if( resultInfo.hasExpression() )
m_config.stream() << " with unexpected";
else
m_config.stream() << "Unexpected";
m_config.stream() << " exception with message: '" << resultInfo.getMessage() << "'";
}
break;
case ResultWas::DidntThrowException:
{
TextColour colour( TextColour::Error );
if( resultInfo.hasExpression() )
m_config.stream() << " because no exception was thrown where one was expected";
else
m_config.stream() << "No exception thrown where one was expected";
}
break;
case ResultWas::Info:
streamVariableLengthText( "info", resultInfo.getMessage() );
break;
case ResultWas::Warning:
m_config.stream() << "warning:\n'" << resultInfo.getMessage() << "'";
break;
case ResultWas::ExplicitFailure:
{
TextColour colour( TextColour::Error );
m_config.stream() << "failed with message: '" << resultInfo.getMessage() << "'";
}
break;
case ResultWas::Unknown: // These cases are here to prevent compiler warnings
case ResultWas::Ok:
case ResultWas::FailureBit:
case ResultWas::ExpressionFailed:
case ResultWas::Exception:
default:
2012-05-16 16:09:17 +02:00
if( !resultInfo.hasExpression() ) {
if( resultInfo.ok() ) {
TextColour colour( TextColour::Success );
m_config.stream() << " succeeded";
}
2012-05-16 16:09:17 +02:00
else {
TextColour colour( TextColour::Error );
m_config.stream() << " failed";
}
}
break;
}
2012-05-16 16:09:17 +02:00
if( resultInfo.hasExpandedExpression() ) {
m_config.stream() << " for: ";
TextColour colour( TextColour::ReconstructedExpression );
m_config.stream() << resultInfo.getExpandedExpression();
}
m_config.stream() << std::endl;
}
2012-05-16 16:09:17 +02:00
virtual void EndTestCase( const TestCaseInfo& testInfo,
const Totals& totals,
const std::string& stdOut,
const std::string& stdErr ) {
if( !stdOut.empty() ) {
StartSpansLazily();
streamVariableLengthText( "stdout", stdOut );
}
2012-05-16 16:09:17 +02:00
if( !stdErr.empty() ) {
StartSpansLazily();
streamVariableLengthText( "stderr", stdErr );
}
2012-05-16 16:09:17 +02:00
if( m_testSpan.emitted ) {
m_config.stream() << "[Finished: '" << testInfo.getName() << "' ";
2012-02-25 10:39:45 +01:00
ReportCounts( totals );
m_config.stream() << "]" << std::endl;
}
}
private: // helpers
2012-05-16 16:09:17 +02:00
void StartSpansLazily() {
if( !m_testingSpan.emitted ) {
if( m_config.getName().empty() )
m_config.stream() << "[Started testing]" << std::endl;
else
m_config.stream() << "[Started testing: " << m_config.getName() << "]" << std::endl;
m_testingSpan.emitted = true;
}
2012-05-16 16:09:17 +02:00
if( !m_groupSpan.emitted && !m_groupSpan.name.empty() ) {
m_config.stream() << "[Started group: '" << m_groupSpan.name << "']" << std::endl;
m_groupSpan.emitted = true;
}
2012-05-16 16:09:17 +02:00
if( !m_testSpan.emitted ) {
m_config.stream() << std::endl << "[Running: " << m_testSpan.name << "]" << std::endl;
m_testSpan.emitted = true;
}
2012-05-16 16:09:17 +02:00
if( !m_sectionSpans.empty() ) {
SpanInfo& sectionSpan = m_sectionSpans.back();
2012-05-16 16:09:17 +02:00
if( !sectionSpan.emitted && !sectionSpan.name.empty() ) {
if( m_firstSectionInTestCase ) {
m_config.stream() << "\n";
m_firstSectionInTestCase = false;
}
std::vector<SpanInfo>::iterator it = m_sectionSpans.begin();
std::vector<SpanInfo>::iterator itEnd = m_sectionSpans.end();
2012-05-16 16:09:17 +02:00
for(; it != itEnd; ++it ) {
SpanInfo& prevSpan = *it;
2012-05-16 16:09:17 +02:00
if( !prevSpan.emitted && !prevSpan.name.empty() ) {
m_config.stream() << "[Started section: '" << prevSpan.name << "']" << std::endl;
prevSpan.emitted = true;
}
}
}
}
}
2012-05-16 16:09:17 +02:00
void streamVariableLengthText( const std::string& prefix, const std::string& text ) {
std::string trimmed = trim( text );
2012-05-16 16:09:17 +02:00
if( trimmed.find_first_of( "\r\n" ) == std::string::npos ) {
m_config.stream() << "[" << prefix << ": " << trimmed << "]\n";
}
2012-05-16 16:09:17 +02:00
else {
m_config.stream() << "\n[" << prefix << "] >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n" << trimmed
<< "\n[end of " << prefix << "] <<<<<<<<<<<<<<<<<<<<<<<<\n";
}
}
private:
const IReporterConfig& m_config;
bool m_firstSectionInTestCase;
SpanInfo m_testingSpan;
SpanInfo m_groupSpan;
SpanInfo m_testSpan;
std::vector<SpanInfo> m_sectionSpans;
bool m_aborted;
};
} // end namespace Catch
// #included from: reporters/catch_reporter_xml.hpp
2011-06-07 15:13:57 +02:00
// #included from: ../internal/catch_xmlwriter.hpp
#include <sstream>
#include <string>
#include <vector>
2012-05-16 16:09:17 +02:00
namespace Catch {
class XmlWriter {
public:
2012-05-16 16:09:17 +02:00
class ScopedElement {
public:
2012-05-16 16:09:17 +02:00
ScopedElement( XmlWriter* writer )
: m_writer( writer )
2012-05-16 16:09:17 +02:00
{}
2012-05-16 16:09:17 +02:00
ScopedElement( const ScopedElement& other )
: m_writer( other.m_writer ){
other.m_writer = NULL;
}
2012-05-16 16:09:17 +02:00
~ScopedElement() {
if( m_writer )
m_writer->endElement();
}
2012-05-16 16:09:17 +02:00
ScopedElement& writeText( const std::string& text ) {
m_writer->writeText( text );
return *this;
}
template<typename T>
2012-05-16 16:09:17 +02:00
ScopedElement& writeAttribute( const std::string& name, const T& attribute ) {
m_writer->writeAttribute( name, attribute );
return *this;
}
private:
mutable XmlWriter* m_writer;
};
2012-05-16 16:09:17 +02:00
XmlWriter()
: m_tagIsOpen( false ),
m_needsNewline( false ),
m_os( &std::cout )
2012-05-16 16:09:17 +02:00
{}
2012-05-16 16:09:17 +02:00
XmlWriter( std::ostream& os )
: m_tagIsOpen( false ),
m_needsNewline( false ),
m_os( &os )
2012-05-16 16:09:17 +02:00
{}
2012-05-16 16:09:17 +02:00
~XmlWriter() {
while( !m_tags.empty() )
endElement();
}
2012-05-16 16:09:17 +02:00
XmlWriter& operator = ( const XmlWriter& other ) {
XmlWriter temp( other );
swap( temp );
return *this;
}
2012-05-16 16:09:17 +02:00
void swap( XmlWriter& other ) {
std::swap( m_tagIsOpen, other.m_tagIsOpen );
std::swap( m_needsNewline, other.m_needsNewline );
std::swap( m_tags, other.m_tags );
std::swap( m_indent, other.m_indent );
std::swap( m_os, other.m_os );
}
2012-05-16 16:09:17 +02:00
XmlWriter& startElement( const std::string& name ) {
ensureTagClosed();
newlineIfNecessary();
stream() << m_indent << "<" << name;
m_tags.push_back( name );
m_indent += " ";
m_tagIsOpen = true;
return *this;
}
2012-05-16 16:09:17 +02:00
ScopedElement scopedElement( const std::string& name ) {
ScopedElement scoped( this );
startElement( name );
return scoped;
}
2012-05-16 16:09:17 +02:00
XmlWriter& endElement() {
newlineIfNecessary();
m_indent = m_indent.substr( 0, m_indent.size()-2 );
2012-05-16 16:09:17 +02:00
if( m_tagIsOpen ) {
stream() << "/>\n";
m_tagIsOpen = false;
}
2012-05-16 16:09:17 +02:00
else {
stream() << m_indent << "</" << m_tags.back() << ">\n";
}
m_tags.pop_back();
return *this;
}
2012-05-16 16:09:17 +02:00
XmlWriter& writeAttribute( const std::string& name, const std::string& attribute ) {
if( !name.empty() && !attribute.empty() ) {
stream() << " " << name << "=\"";
writeEncodedText( attribute );
stream() << "\"";
}
return *this;
}
2012-05-16 16:09:17 +02:00
XmlWriter& writeAttribute( const std::string& name, bool attribute ) {
stream() << " " << name << "=\"" << ( attribute ? "true" : "false" ) << "\"";
return *this;
}
template<typename T>
2012-05-16 16:09:17 +02:00
XmlWriter& writeAttribute( const std::string& name, const T& attribute ) {
if( !name.empty() )
stream() << " " << name << "=\"" << attribute << "\"";
return *this;
}
2012-05-16 16:09:17 +02:00
XmlWriter& writeText( const std::string& text ) {
if( !text.empty() ){
bool tagWasOpen = m_tagIsOpen;
ensureTagClosed();
if( tagWasOpen )
stream() << m_indent;
writeEncodedText( text );
m_needsNewline = true;
}
return *this;
}
2012-05-16 16:09:17 +02:00
XmlWriter& writeComment( const std::string& text ) {
ensureTagClosed();
stream() << m_indent << "<!--" << text << "-->";
m_needsNewline = true;
return *this;
}
2012-05-16 16:09:17 +02:00
XmlWriter& writeBlankLine() {
ensureTagClosed();
stream() << "\n";
return *this;
}
private:
2012-05-16 16:09:17 +02:00
std::ostream& stream() {
return *m_os;
}
2012-05-16 16:09:17 +02:00
void ensureTagClosed() {
if( m_tagIsOpen ) {
stream() << ">\n";
m_tagIsOpen = false;
}
}
2012-05-16 16:09:17 +02:00
void newlineIfNecessary() {
if( m_needsNewline ) {
stream() << "\n";
m_needsNewline = false;
}
}
2012-05-16 16:09:17 +02:00
void writeEncodedText( const std::string& text ) {
2012-02-15 19:37:21 +01:00
static const char* charsToEncode = "<&\"";
std::string mtext = text;
std::string::size_type pos = mtext.find_first_of( charsToEncode );
2012-05-16 16:09:17 +02:00
while( pos != std::string::npos ) {
2012-02-15 19:37:21 +01:00
stream() << mtext.substr( 0, pos );
2012-05-16 16:09:17 +02:00
switch( mtext[pos] ) {
2012-02-15 19:37:21 +01:00
case '<':
stream() << "&lt;";
break;
case '&':
stream() << "&amp;";
break;
case '\"':
stream() << "&quot;";
break;
}
mtext = mtext.substr( pos+1 );
pos = mtext.find_first_of( charsToEncode );
}
2012-02-15 19:37:21 +01:00
stream() << mtext;
}
bool m_tagIsOpen;
bool m_needsNewline;
std::vector<std::string> m_tags;
std::string m_indent;
std::ostream* m_os;
};
}
2012-05-16 16:09:17 +02:00
namespace Catch {
class XmlReporter : public SharedImpl<IReporter> {
public:
2012-05-16 16:09:17 +02:00
XmlReporter( const IReporterConfig& config ) : m_config( config ) {}
2012-05-16 16:09:17 +02:00
static std::string getDescription() {
return "Reports test results as an XML document";
}
private: // IReporter
2012-05-16 16:09:17 +02:00
virtual bool shouldRedirectStdout() const {
return true;
}
2012-05-16 16:09:17 +02:00
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() );
}
2012-05-16 16:09:17 +02:00
virtual void EndTesting( const Totals& totals ) {
m_xml.scopedElement( "OverallResults" )
2012-02-25 10:39:45 +01:00
.writeAttribute( "successes", totals.assertions.passed )
.writeAttribute( "failures", totals.assertions.failed );
m_xml.endElement();
}
2012-05-16 16:09:17 +02:00
virtual void StartGroup( const std::string& groupName ) {
m_xml.startElement( "Group" )
.writeAttribute( "name", groupName );
}
2012-05-16 16:09:17 +02:00
virtual void EndGroup( const std::string&, const Totals& totals ) {
m_xml.scopedElement( "OverallResults" )
2012-02-25 10:39:45 +01:00
.writeAttribute( "successes", totals.assertions.passed )
.writeAttribute( "failures", totals.assertions.failed );
m_xml.endElement();
}
2012-05-16 16:09:17 +02:00
virtual void StartSection( const std::string& sectionName, const std::string& description ) {
m_xml.startElement( "Section" )
.writeAttribute( "name", sectionName )
.writeAttribute( "description", description );
}
2012-05-16 16:09:17 +02:00
virtual void EndSection( const std::string& /*sectionName*/, const Counts& assertions ) {
m_xml.scopedElement( "OverallResults" )
2012-02-25 10:39:45 +01:00
.writeAttribute( "successes", assertions.passed )
.writeAttribute( "failures", assertions.failed );
m_xml.endElement();
}
2012-05-16 16:09:17 +02:00
virtual void StartTestCase( const Catch::TestCaseInfo& testInfo ) {
m_xml.startElement( "TestCase" ).writeAttribute( "name", testInfo.getName() );
m_currentTestSuccess = true;
}
2012-05-16 16:09:17 +02:00
virtual void Result( const Catch::ResultInfo& resultInfo ) {
if( !m_config.includeSuccessfulResults() && resultInfo.getResultType() == ResultWas::Ok )
return;
2012-05-16 16:09:17 +02:00
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();
}
2012-05-16 16:09:17 +02:00
switch( resultInfo.getResultType() ) {
case ResultWas::ThrewException:
m_xml.scopedElement( "Exception" )
.writeAttribute( "filename", resultInfo.getFilename() )
.writeAttribute( "line", resultInfo.getLine() )
.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;
case ResultWas::Unknown:
case ResultWas::Ok:
case ResultWas::FailureBit:
case ResultWas::ExpressionFailed:
case ResultWas::Exception:
case ResultWas::DidntThrowException:
default:
break;
}
if( resultInfo.hasExpression() )
m_xml.endElement();
}
virtual void Aborted() {
// !TBD
}
2012-05-16 16:09:17 +02:00
virtual void EndTestCase( const Catch::TestCaseInfo&, const Totals&, const std::string&, const std::string& ) {
m_xml.scopedElement( "OverallResult" ).writeAttribute( "success", m_currentTestSuccess );
m_xml.endElement();
}
private:
const IReporterConfig& m_config;
bool m_currentTestSuccess;
XmlWriter m_xml;
};
} // end namespace Catch
// #included from: reporters/catch_reporter_junit.hpp
2012-05-16 16:09:17 +02:00
namespace Catch {
class JunitReporter : public SharedImpl<IReporter> {
struct TestStats {
std::string m_element;
std::string m_resultType;
std::string m_message;
std::string m_content;
};
2012-05-16 16:09:17 +02:00
struct TestCaseStats {
TestCaseStats( const std::string& name = std::string() ) :m_name( name ){}
double m_timeInSeconds;
std::string m_status;
std::string m_className;
std::string m_name;
std::vector<TestStats> m_testStats;
};
2012-05-16 16:09:17 +02:00
struct Stats {
Stats( const std::string& name = std::string() )
: m_testsCount( 0 ),
m_failuresCount( 0 ),
m_disabledCount( 0 ),
m_errorsCount( 0 ),
m_timeInSeconds( 0 ),
m_name( name )
2012-05-16 16:09:17 +02:00
{}
std::size_t m_testsCount;
std::size_t m_failuresCount;
std::size_t m_disabledCount;
std::size_t m_errorsCount;
double m_timeInSeconds;
std::string m_name;
std::vector<TestCaseStats> m_testCaseStats;
};
public:
JunitReporter( const IReporterConfig& config )
: m_config( config ),
m_testSuiteStats( "AllTests" ),
m_currentStats( &m_testSuiteStats )
2012-05-16 16:09:17 +02:00
{}
2012-05-16 16:09:17 +02:00
static std::string getDescription() {
return "Reports test results in an XML format that looks like Ant's junitreport target";
}
private: // IReporter
2012-05-16 16:09:17 +02:00
virtual bool shouldRedirectStdout() const {
return true;
}
2012-05-16 16:09:17 +02:00
virtual void StartTesting(){}
2012-05-16 16:09:17 +02:00
virtual void StartGroup( const std::string& groupName ) {
m_statsForSuites.push_back( Stats( groupName ) );
m_currentStats = &m_statsForSuites.back();
}
2012-05-16 16:09:17 +02:00
virtual void EndGroup( const std::string&, const Totals& totals ) {
2012-02-25 10:39:45 +01:00
m_currentStats->m_testsCount = totals.assertions.total();
m_currentStats = &m_testSuiteStats;
}
2012-05-16 16:09:17 +02:00
virtual void StartSection( const std::string&, const std::string& ){}
2012-05-16 16:09:17 +02:00
virtual void EndSection( const std::string&, const Counts& ){}
2012-05-16 16:09:17 +02:00
virtual void StartTestCase( const Catch::TestCaseInfo& testInfo ) {
m_currentStats->m_testCaseStats.push_back( TestCaseStats( testInfo.getName() ) );
}
2012-05-16 16:09:17 +02:00
virtual void Result( const Catch::ResultInfo& resultInfo ) {
if( resultInfo.getResultType() != ResultWas::Ok || m_config.includeSuccessfulResults() ) {
TestCaseStats& testCaseStats = m_currentStats->m_testCaseStats.back();
TestStats stats;
std::ostringstream oss;
if( !resultInfo.getMessage().empty() )
oss << resultInfo.getMessage() << " at ";
2012-02-15 19:37:21 +01:00
oss << SourceLineInfo( resultInfo.getFilename(), resultInfo.getLine() );
stats.m_content = oss.str();
stats.m_message = resultInfo.getExpandedExpression();
stats.m_resultType = resultInfo.getTestMacroName();
2012-05-16 16:09:17 +02:00
switch( resultInfo.getResultType() ) {
case ResultWas::ThrewException:
stats.m_element = "error";
m_currentStats->m_errorsCount++;
break;
case ResultWas::Info:
stats.m_element = "info"; // !TBD ?
break;
case ResultWas::Warning:
stats.m_element = "warning"; // !TBD ?
break;
case ResultWas::ExplicitFailure:
stats.m_element = "failure";
m_currentStats->m_failuresCount++;
break;
case ResultWas::ExpressionFailed:
stats.m_element = "failure";
m_currentStats->m_failuresCount++;
break;
case ResultWas::Ok:
stats.m_element = "success";
break;
case ResultWas::Unknown:
case ResultWas::FailureBit:
case ResultWas::Exception:
case ResultWas::DidntThrowException:
default:
stats.m_element = "unknown";
break;
}
testCaseStats.m_testStats.push_back( stats );
}
}
2012-05-16 16:09:17 +02:00
virtual void EndTestCase( const Catch::TestCaseInfo&, const Totals&, const std::string& stdOut, const std::string& stdErr ) {
if( !stdOut.empty() )
m_stdOut << stdOut << "\n";
if( !stdErr.empty() )
m_stdErr << stdErr << "\n";
}
virtual void Aborted() {
// !TBD
}
2012-05-16 16:09:17 +02:00
virtual void EndTesting( const Totals& ) {
std::ostream& str = m_config.stream();
{
XmlWriter xml( str );
if( m_statsForSuites.size() > 0 )
xml.startElement( "testsuites" );
std::vector<Stats>::const_iterator it = m_statsForSuites.begin();
std::vector<Stats>::const_iterator itEnd = m_statsForSuites.end();
2012-05-16 16:09:17 +02:00
for(; it != itEnd; ++it ) {
XmlWriter::ScopedElement e = xml.scopedElement( "testsuite" );
xml.writeAttribute( "name", it->m_name );
xml.writeAttribute( "errors", it->m_errorsCount );
xml.writeAttribute( "failures", it->m_failuresCount );
xml.writeAttribute( "tests", it->m_testsCount );
xml.writeAttribute( "hostname", "tbd" );
xml.writeAttribute( "time", "tbd" );
xml.writeAttribute( "timestamp", "tbd" );
OutputTestCases( xml, *it );
}
xml.scopedElement( "system-out" ).writeText( trim( m_stdOut.str() ) );
2012-05-24 09:29:41 +02:00
xml.scopedElement( "system-err" ).writeText( trim( m_stdErr.str() ) );
}
}
2012-05-16 16:09:17 +02:00
void OutputTestCases( XmlWriter& xml, const Stats& stats ) {
std::vector<TestCaseStats>::const_iterator it = stats.m_testCaseStats.begin();
std::vector<TestCaseStats>::const_iterator itEnd = stats.m_testCaseStats.end();
2012-05-16 16:09:17 +02:00
for(; it != itEnd; ++it ) {
xml.writeBlankLine();
xml.writeComment( "Test case" );
XmlWriter::ScopedElement e = xml.scopedElement( "testcase" );
xml.writeAttribute( "classname", it->m_className );
xml.writeAttribute( "name", it->m_name );
xml.writeAttribute( "time", "tbd" );
OutputTestResult( xml, *it );
}
}
2012-05-16 16:09:17 +02:00
void OutputTestResult( XmlWriter& xml, const TestCaseStats& stats ) {
std::vector<TestStats>::const_iterator it = stats.m_testStats.begin();
std::vector<TestStats>::const_iterator itEnd = stats.m_testStats.end();
2012-05-16 16:09:17 +02:00
for(; it != itEnd; ++it ) {
if( it->m_element != "success" ) {
XmlWriter::ScopedElement e = xml.scopedElement( it->m_element );
xml.writeAttribute( "message", it->m_message );
xml.writeAttribute( "type", it->m_resultType );
if( !it->m_content.empty() )
xml.writeText( it->m_content );
}
}
}
private:
const IReporterConfig& m_config;
bool m_currentTestSuccess;
Stats m_testSuiteStats;
Stats* m_currentStats;
std::vector<Stats> m_statsForSuites;
std::ostringstream m_stdOut;
std::ostringstream m_stdErr;
};
} // end namespace Catch
#include <fstream>
#include <stdlib.h>
#include <limits>
2012-05-16 16:09:17 +02:00
namespace Catch {
INTERNAL_CATCH_REGISTER_REPORTER( "basic", BasicReporter )
INTERNAL_CATCH_REGISTER_REPORTER( "xml", XmlReporter )
INTERNAL_CATCH_REGISTER_REPORTER( "junit", JunitReporter )
2012-05-16 16:09:17 +02:00
inline int Main( Config& config ) {
std::string reporterName = config.data().reporter.empty()
? "basic"
: config.data().reporter;
Ptr<IReporter> reporter = getCurrentContext().getReporterRegistry().create( reporterName, config );
if( !config.data().stream.empty() ) {
if( config.data().stream[0] == '%' )
config.useStream( config.data().stream.substr( 1 ) );
else
config.setFilename( config.data().stream );
}
// Handle list request
if( config.listWhat() != List::None )
return List( config );
// Open output file, if specified
std::ofstream ofs;
2012-05-16 16:09:17 +02:00
if( !config.getFilename().empty() ) {
ofs.open( config.getFilename().c_str() );
2012-05-16 16:09:17 +02:00
if( ofs.fail() ) {
std::cerr << "Unable to open file: '" << config.getFilename() << "'" << std::endl;
return (std::numeric_limits<int>::max)();
}
config.setStreamBuf( ofs.rdbuf() );
}
int result = 0;
// Scope here for the Runner so it can use the context before it is cleaned-up
{
Runner runner( config, reporter );
// Run test specs specified on the command line - or default to all
if( !config.testsSpecified() ) {
runner.runAll();
}
else {
// !TBD We should get all the testcases upfront, report any missing,
// then just run them
std::vector<std::string>::const_iterator it = config.getTestSpecs().begin();
std::vector<std::string>::const_iterator itEnd = config.getTestSpecs().end();
for(; it != itEnd; ++it ) {
if( runner.runMatching( *it ) == 0 ) {
std::cerr << "\n[No test cases matched with: " << *it << "]" << std::endl;
}
}
}
result = static_cast<int>( runner.getTotals().assertions.failed );
}
Catch::Context::cleanUp();
return result;
}
inline void showUsage( std::ostream& os ) {
2012-07-05 19:37:58 +02:00
os << "\t-?, -h, --help\n"
<< "\t-l, --list <tests | reporters> [xml]\n"
<< "\t-t, --test <testspec> [<testspec>...]\n"
<< "\t-r, --reporter <reporter name>\n"
<< "\t-o, --out <file name>|<%stream name>\n"
<< "\t-s, --success\n"
<< "\t-b, --break\n"
<< "\t-n, --name <name>\n"
<< "\t-a, --abort [#]\n"
2012-07-05 19:37:58 +02:00
<< "\t-nt, --nothrow\n\n"
<< "For more detail usage please see: https://github.com/philsquared/Catch/wiki/Command-line" << std::endl;
}
2012-05-16 16:09:17 +02:00
inline void showHelp( std::string exeName ) {
std::string::size_type pos = exeName.find_last_of( "/\\" );
2012-05-16 16:09:17 +02:00
if( pos != std::string::npos ) {
exeName = exeName.substr( pos+1 );
}
std::cout << exeName << " is a CATCH host application. Options are as follows:\n\n";
showUsage( std::cout );
}
2012-05-16 16:09:17 +02:00
inline int Main( int argc, char* const argv[], Config& config ) {
2012-07-05 19:37:58 +02:00
try {
CommandParser parser( argc, argv );
2012-07-05 19:37:58 +02:00
if( Command cmd = parser.find( "-h", "-?", "--help" ) ) {
if( cmd.argsCount() != 0 )
cmd.raiseError( "Does not accept arguments" );
showHelp( argv[0] );
Catch::Context::cleanUp();
return 0;
}
parseIntoConfig( parser, config.data() );
}
catch( std::exception& ex ) {
std::cerr << ex.what() << + "\n\nUsage: ...\n\n";
showUsage( std::cerr );
Catch::Context::cleanUp();
return (std::numeric_limits<int>::max)();
}
return Main( config );
}
2012-05-16 16:09:17 +02:00
inline int Main( int argc, char* const argv[] ) {
Config config;
// !TBD: This doesn't always work, for some reason
// if( isDebuggerActive() )
// config.useStream( "debug" );
return Main( argc, argv, config );
}
} // end namespace Catch
#endif
#ifdef CATCH_CONFIG_MAIN
// #included from: internal/catch_default_main.hpp
2012-05-11 09:17:16 +02:00
#ifndef __OBJC__
// Standard C/C++ main entry point
int main (int argc, char * const argv[]) {
return Catch::Main( argc, argv );
}
#else // __OBJC__
2012-05-11 09:17:16 +02:00
// Objective-C entry point
int main (int argc, char * const argv[]) {
2012-03-17 19:20:06 +01:00
#if !CATCH_ARC_ENABLED
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
2012-03-17 19:20:06 +01:00
#endif
Catch::registerTestMethods();
int result = Catch::Main( argc, (char* const*)argv );
2012-03-17 19:20:06 +01:00
#if !CATCH_ARC_ENABLED
[pool drain];
2012-03-17 19:20:06 +01:00
#endif
return result;
}
2012-05-11 09:17:16 +02:00
#endif // __OBJC__
#endif
//////
// If this config identifier is defined then all CATCH macros are prefixed with CATCH_
#ifdef CATCH_CONFIG_PREFIX_ALL
#define CATCH_REQUIRE( expr ) INTERNAL_CATCH_TEST( expr, false, true, "CATCH_REQUIRE" )
#define CATCH_REQUIRE_FALSE( expr ) INTERNAL_CATCH_TEST( expr, true, true, "CATCH_REQUIRE_FALSE" )
#define CATCH_REQUIRE_THROWS( expr ) INTERNAL_CATCH_THROWS( expr, ..., true, "CATCH_REQUIRE_THROWS" )
#define CATCH_REQUIRE_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( expr, exceptionType, true, "CATCH_REQUIRE_THROWS_AS" )
#define CATCH_REQUIRE_NOTHROW( expr ) INTERNAL_CATCH_NO_THROW( expr, true, "CATCH_REQUIRE_NOTHROW" )
#define CATCH_CHECK( expr ) INTERNAL_CATCH_TEST( expr, false, false, "CATCH_CHECK" )
#define CATCH_CHECK_FALSE( expr ) INTERNAL_CATCH_TEST( expr, true, false, "CATCH_CHECK_FALSE" )
#define CATCH_CHECKED_IF( expr ) INTERNAL_CATCH_IF( expr, false, false, "CATCH_CHECKED_IF" )
#define CATCH_CHECKED_ELSE( expr ) INTERNAL_CATCH_ELSE( expr, false, false, "CATCH_CHECKED_ELSE" )
#define CATCH_CHECK_THROWS( expr ) INTERNAL_CATCH_THROWS( expr, ..., false, "CATCH_CHECK_THROWS" )
#define CATCH_CHECK_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( expr, exceptionType, false, "CATCH_CHECK_THROWS_AS" )
#define CATCH_CHECK_NOTHROW( expr ) INTERNAL_CATCH_NO_THROW( expr, false, "CATCH_CHECK_NOTHROW" )
#define CHECK_THAT( arg, matcher ) INTERNAL_CHECK_THAT( arg, matcher, false, "CATCH_CHECK_THAT" )
#define CATCH_REQUIRE_THAT( arg, matcher ) INTERNAL_CHECK_THAT( arg, matcher, true, "CATCH_REQUIRE_THAT" )
#define CATCH_INFO( msg ) INTERNAL_CATCH_MSG( msg, Catch::ResultWas::Info, false, "CATCH_INFO" )
#define CATCH_WARN( msg ) INTERNAL_CATCH_MSG( msg, Catch::ResultWas::Warning, false, "CATCH_WARN" )
#define CATCH_FAIL( msg ) INTERNAL_CATCH_MSG( msg, Catch::ResultWas::ExplicitFailure, true, "CATCH_FAIL" )
#define CATCH_SCOPED_INFO( msg ) INTERNAL_CATCH_SCOPED_INFO( msg )
#define CATCH_CAPTURE( msg ) INTERNAL_CATCH_MSG( #msg " := " << msg, Catch::ResultWas::Info, false, "CATCH_CAPTURE" )
#define CATCH_SECTION( name, description ) INTERNAL_CATCH_SECTION( name, description )
#define CATCH_TEST_CASE( name, description ) INTERNAL_CATCH_TESTCASE( name, description )
#define CATCH_TEST_CASE_NORETURN( name, description ) INTERNAL_CATCH_TESTCASE_NORETURN( name, description )
#define CATCH_ANON_TEST_CASE() INTERNAL_CATCH_TESTCASE( "", "Anonymous test case" )
#define CATCH_METHOD_AS_TEST_CASE( method, name, description ) INTERNAL_CATCH_METHOD_AS_TEST_CASE( method, name, description )
#define CATCH_REGISTER_REPORTER( name, reporterType ) INTERNAL_CATCH_REGISTER_REPORTER( name, reporterType )
#define CATCH_GENERATE( expr) INTERNAL_CATCH_GENERATE( expr )
///////////////
// Still to be implemented
//#define CHECK_NOFAIL( expr ) // !TBD - reports violation, but doesn't fail Test
// If CATCH_CONFIG_PREFIX_ALL is not defined then the CATCH_ prefix is not required
#else
#define REQUIRE( expr ) INTERNAL_CATCH_TEST( expr, false, true, "REQUIRE" )
#define REQUIRE_FALSE( expr ) INTERNAL_CATCH_TEST( expr, true, true, "REQUIRE_FALSE" )
#define REQUIRE_THROWS( expr ) INTERNAL_CATCH_THROWS( expr, ..., true, "REQUIRE_THROWS" )
#define REQUIRE_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( expr, exceptionType, true, "REQUIRE_THROWS_AS" )
#define REQUIRE_NOTHROW( expr ) INTERNAL_CATCH_NO_THROW( expr, true, "REQUIRE_NOTHROW" )
#define CHECK( expr ) INTERNAL_CATCH_TEST( expr, false, false, "CHECK" )
#define CHECK_FALSE( expr ) INTERNAL_CATCH_TEST( expr, true, false, "CHECK_FALSE" )
2012-02-10 09:30:13 +01:00
#define CHECKED_IF( expr ) INTERNAL_CATCH_IF( expr, false, false, "CHECKED_IF" )
#define CHECKED_ELSE( expr ) INTERNAL_CATCH_ELSE( expr, false, false, "CHECKED_ELSE" )
#define CHECK_THROWS( expr ) INTERNAL_CATCH_THROWS( expr, ..., false, "CHECK_THROWS" )
#define CHECK_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( expr, exceptionType, false, "CHECK_THROWS_AS" )
#define CHECK_NOTHROW( expr ) INTERNAL_CATCH_NO_THROW( expr, false, "CHECK_NOTHROW" )
2012-03-04 22:22:36 +01:00
#define CHECK_THAT( arg, matcher ) INTERNAL_CHECK_THAT( arg, matcher, false, "CHECK_THAT" )
#define REQUIRE_THAT( arg, matcher ) INTERNAL_CHECK_THAT( arg, matcher, true, "REQUIRE_THAT" )
#define INFO( msg ) INTERNAL_CATCH_MSG( msg, Catch::ResultWas::Info, false, "INFO" )
#define WARN( msg ) INTERNAL_CATCH_MSG( msg, Catch::ResultWas::Warning, false, "WARN" )
#define FAIL( msg ) INTERNAL_CATCH_MSG( msg, Catch::ResultWas::ExplicitFailure, true, "FAIL" )
#define SCOPED_INFO( msg ) INTERNAL_CATCH_SCOPED_INFO( msg )
#define CAPTURE( msg ) INTERNAL_CATCH_MSG( #msg " := " << msg, Catch::ResultWas::Info, false, "CAPTURE" )
#define SECTION( name, description ) INTERNAL_CATCH_SECTION( name, description )
#define TEST_CASE( name, description ) INTERNAL_CATCH_TESTCASE( name, description )
#define TEST_CASE_NORETURN( name, description ) INTERNAL_CATCH_TESTCASE_NORETURN( name, description )
#define ANON_TEST_CASE() INTERNAL_CATCH_TESTCASE( "", "Anonymous test case" )
#define METHOD_AS_TEST_CASE( method, name, description ) INTERNAL_CATCH_METHOD_AS_TEST_CASE( method, name, description )
#define REGISTER_REPORTER( name, reporterType ) INTERNAL_CATCH_REGISTER_REPORTER( name, reporterType )
#define GENERATE( expr) INTERNAL_CATCH_GENERATE( expr )
#endif
#define CATCH_TRANSLATE_EXCEPTION( signature ) INTERNAL_CATCH_TRANSLATE_EXCEPTION( signature )
using Catch::Detail::Approx;
#endif // TWOBLUECUBES_SINGLE_INCLUDE_CATCH_HPP_INCLUDED