2010-11-09 18:24:00 -05:00
|
|
|
/*
|
|
|
|
* catch_capture.hpp
|
|
|
|
* Catch
|
|
|
|
*
|
|
|
|
* Created by Phil on 18/10/2010.
|
|
|
|
* Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_CAPTURE_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_CAPTURE_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include "catch_resultinfo.hpp"
|
2011-01-11 04:13:31 -05:00
|
|
|
#include "catch_result_type.h"
|
|
|
|
#include "catch_interfaces_capture.h"
|
2010-12-27 15:49:19 -05:00
|
|
|
#include "catch_debugger.hpp"
|
2011-03-09 14:45:05 -05:00
|
|
|
#include "catch_evaluate.hpp"
|
2011-04-28 03:03:28 -04:00
|
|
|
#include "catch_hub.h"
|
|
|
|
#include "catch_common.h"
|
2010-11-09 18:24:00 -05:00
|
|
|
#include <sstream>
|
|
|
|
|
|
|
|
namespace Catch
|
|
|
|
{
|
2010-11-16 14:30:41 -05:00
|
|
|
namespace Detail
|
|
|
|
{
|
|
|
|
// The following code, contributed by Sam Partington, allows us to choose an implementation
|
|
|
|
// of toString() depending on whether a << overload is available
|
|
|
|
|
|
|
|
struct NonStreamable
|
|
|
|
{
|
|
|
|
// allow construction from anything...
|
|
|
|
template<typename Anything>
|
|
|
|
NonStreamable(Anything)
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
// a local operator<< which may be called if there isn't a better one elsewhere...
|
|
|
|
inline NonStreamable operator << ( std::ostream&, const NonStreamable& ns )
|
|
|
|
{
|
|
|
|
return ns;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
struct IsStreamable
|
|
|
|
{
|
|
|
|
static NoType Deduce( const NonStreamable& );
|
|
|
|
static YesType Deduce( std::ostream& );
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
value = sizeof( Deduce( Synth<std::ostream&>() << Synth<const T&>() ) )
|
|
|
|
== sizeof( YesType )
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
// << is available, so use it with ostringstream to make the string
|
|
|
|
template<typename T, bool streamable>
|
|
|
|
struct StringMaker
|
|
|
|
{
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
static std::string apply
|
|
|
|
(
|
|
|
|
const T& value
|
|
|
|
)
|
2010-11-16 14:30:41 -05:00
|
|
|
{
|
|
|
|
std::ostringstream oss;
|
|
|
|
oss << value;
|
|
|
|
return oss.str();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// << not available - use a default string
|
|
|
|
template<typename T>
|
|
|
|
struct StringMaker<T, false>
|
|
|
|
{
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
|
|
static std::string apply
|
|
|
|
(
|
|
|
|
const T&
|
|
|
|
)
|
2010-11-16 14:30:41 -05:00
|
|
|
{
|
|
|
|
return "{?}";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
}// end namespace Detail
|
2010-11-09 18:24:00 -05:00
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2010-11-09 18:24:00 -05:00
|
|
|
template<typename T>
|
2011-02-03 15:00:46 -05:00
|
|
|
std::string toString
|
|
|
|
(
|
|
|
|
const T& value
|
|
|
|
)
|
2010-11-09 18:24:00 -05:00
|
|
|
{
|
2010-11-16 14:30:41 -05:00
|
|
|
return Detail::StringMaker<T, Detail::IsStreamable<T>::value>::apply( value );
|
2010-11-09 18:24:00 -05:00
|
|
|
}
|
2011-01-11 14:48:48 -05:00
|
|
|
|
|
|
|
// Shortcut overloads
|
2011-02-03 15:00:46 -05:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
inline std::string toString
|
|
|
|
(
|
|
|
|
const std::string& value
|
|
|
|
)
|
2011-01-11 04:21:23 -05:00
|
|
|
{
|
2011-03-25 15:39:11 -04:00
|
|
|
return "\"" + value + "\"";
|
2011-01-11 04:21:23 -05:00
|
|
|
}
|
2011-03-25 15:39:11 -04:00
|
|
|
|
2011-04-06 17:26:16 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
inline std::string toString
|
|
|
|
(
|
2011-02-23 15:02:18 -05:00
|
|
|
const char* const value
|
2011-02-03 15:00:46 -05:00
|
|
|
)
|
2011-01-11 14:48:48 -05:00
|
|
|
{
|
2011-04-20 17:33:23 -04:00
|
|
|
return value ? Catch::toString( std::string( value ) ) : std::string( "{null string}" );
|
2011-03-25 15:39:11 -04:00
|
|
|
}
|
2011-02-03 15:00:46 -05:00
|
|
|
|
2011-02-23 15:02:18 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
inline std::string toString
|
|
|
|
(
|
|
|
|
char* const value
|
|
|
|
)
|
|
|
|
{
|
2011-04-20 17:33:23 -04:00
|
|
|
return Catch::toString( static_cast<const char* const>( value ) );
|
2011-02-23 15:02:18 -05:00
|
|
|
}
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
inline std::string toString
|
|
|
|
(
|
|
|
|
int value
|
|
|
|
)
|
2011-01-11 04:21:23 -05:00
|
|
|
{
|
|
|
|
std::ostringstream oss;
|
|
|
|
oss << value;
|
|
|
|
return oss.str();
|
|
|
|
}
|
2011-02-03 15:00:46 -05:00
|
|
|
|
2011-04-06 17:26:16 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
inline std::string toString
|
|
|
|
(
|
|
|
|
unsigned int value
|
|
|
|
)
|
|
|
|
{
|
|
|
|
std::ostringstream oss;
|
|
|
|
if( value > 8192 )
|
|
|
|
oss << "0x" << std::hex << value;
|
|
|
|
else
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
inline std::string toString
|
|
|
|
(
|
|
|
|
const double value
|
|
|
|
)
|
2011-01-11 04:21:23 -05:00
|
|
|
{
|
|
|
|
std::ostringstream oss;
|
|
|
|
oss << value;
|
|
|
|
return oss.str();
|
|
|
|
}
|
2011-03-10 09:09:32 -05:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
inline std::string toString
|
|
|
|
(
|
|
|
|
bool value
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return value ? "true" : "false";
|
|
|
|
}
|
2011-03-18 10:39:58 -04:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
inline std::string toString
|
|
|
|
(
|
|
|
|
void* p
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if( !p )
|
|
|
|
return INTERNAL_CATCH_STRINGIFY( NULL );
|
|
|
|
std::ostringstream oss;
|
|
|
|
oss << p;
|
|
|
|
return oss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
template<typename T>
|
|
|
|
inline std::string toString
|
|
|
|
(
|
|
|
|
T* p
|
|
|
|
)
|
|
|
|
{
|
2011-04-20 17:33:23 -04:00
|
|
|
return Catch::toString( static_cast<void*>( p ) );
|
2011-03-18 10:39:58 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
template<typename T>
|
|
|
|
inline std::string toString
|
|
|
|
(
|
|
|
|
const T* p
|
|
|
|
)
|
|
|
|
{
|
2011-04-20 17:33:23 -04:00
|
|
|
return Catch::toString( static_cast<void*>( const_cast<T*>( p ) ) );
|
2011-03-18 10:39:58 -04:00
|
|
|
}
|
2011-01-11 04:21:23 -05:00
|
|
|
|
2011-03-10 14:18:14 -05:00
|
|
|
struct TestFailureException
|
2010-11-09 18:24:00 -05:00
|
|
|
{
|
|
|
|
};
|
2011-03-10 14:18:14 -05:00
|
|
|
struct DummyExceptionType_DontUse
|
2010-11-09 18:24:00 -05:00
|
|
|
{
|
|
|
|
};
|
2011-03-10 14:18:14 -05:00
|
|
|
struct STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison;
|
2010-11-09 18:24:00 -05:00
|
|
|
|
|
|
|
class MutableResultInfo : public ResultInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
MutableResultInfo
|
|
|
|
()
|
2010-11-09 18:24:00 -05:00
|
|
|
{}
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
MutableResultInfo
|
|
|
|
(
|
|
|
|
const char* expr,
|
|
|
|
bool isNot,
|
|
|
|
const char* filename,
|
|
|
|
std::size_t line,
|
2011-03-10 09:09:32 -05:00
|
|
|
const char* macroName,
|
|
|
|
const char* message = ""
|
2011-02-03 15:00:46 -05:00
|
|
|
)
|
2011-03-10 09:09:32 -05:00
|
|
|
: ResultInfo( expr, ResultWas::Unknown, isNot, filename, line, macroName, message )
|
2010-11-09 18:24:00 -05:00
|
|
|
{
|
|
|
|
}
|
2011-02-03 15:00:46 -05:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
void setResultType
|
|
|
|
(
|
|
|
|
ResultWas::OfType result
|
|
|
|
)
|
2010-11-09 18:24:00 -05:00
|
|
|
{
|
|
|
|
// 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;
|
|
|
|
}
|
2011-02-03 15:00:46 -05:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
void setMessage
|
|
|
|
(
|
|
|
|
const std::string& message
|
|
|
|
)
|
2010-11-09 18:24:00 -05:00
|
|
|
{
|
|
|
|
m_message = message;
|
|
|
|
}
|
2011-03-10 14:18:14 -05:00
|
|
|
|
2011-04-21 03:59:42 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
void setFileAndLine
|
|
|
|
(
|
|
|
|
const std::string& filename,
|
|
|
|
std::size_t line
|
|
|
|
)
|
|
|
|
{
|
|
|
|
m_filename = filename;
|
|
|
|
m_line = line;
|
|
|
|
}
|
|
|
|
|
2011-03-10 14:18:14 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
template<typename RhsT>
|
|
|
|
STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator ||
|
|
|
|
(
|
|
|
|
const RhsT&
|
|
|
|
);
|
2010-11-10 14:18:46 -05:00
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2010-11-10 14:18:46 -05:00
|
|
|
template<typename RhsT>
|
2011-03-10 14:18:14 -05:00
|
|
|
STATIC_ASSERT_Expression_Too_Complex_Please_Rewrite_As_Binary_Comparison& operator &&
|
2011-02-03 15:00:46 -05:00
|
|
|
(
|
|
|
|
const RhsT&
|
2011-03-10 14:18:14 -05:00
|
|
|
);
|
|
|
|
|
2010-11-09 18:24:00 -05:00
|
|
|
private:
|
|
|
|
friend class ResultBuilder;
|
2011-03-18 10:39:58 -04:00
|
|
|
template<typename T> friend class Expression;
|
|
|
|
|
|
|
|
template<typename T> friend class PtrExpression;
|
2011-02-03 15:00:46 -05:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2011-03-10 09:09:32 -05:00
|
|
|
MutableResultInfo& captureBoolExpression
|
2011-02-03 15:00:46 -05:00
|
|
|
(
|
2011-03-10 09:09:32 -05:00
|
|
|
bool result
|
2011-02-03 15:00:46 -05:00
|
|
|
)
|
2010-11-09 18:24:00 -05:00
|
|
|
{
|
2011-04-20 17:33:23 -04:00
|
|
|
m_lhs = Catch::toString( result );
|
2011-03-10 09:09:32 -05:00
|
|
|
m_op = m_isNot ? "!" : "";
|
|
|
|
setResultType( result ? ResultWas::Ok : ResultWas::ExpressionFailed );
|
2010-11-09 18:24:00 -05:00
|
|
|
return *this;
|
|
|
|
}
|
2011-03-09 14:45:05 -05:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2011-03-15 18:22:19 -04:00
|
|
|
template<Internal::Operator Op, typename T1, typename T2>
|
2011-03-10 09:09:32 -05:00
|
|
|
MutableResultInfo& captureExpression
|
2011-03-09 14:45:05 -05:00
|
|
|
(
|
|
|
|
const T1& lhs,
|
|
|
|
const T2& rhs
|
|
|
|
)
|
|
|
|
{
|
2011-03-15 18:22:19 -04:00
|
|
|
setResultType( Internal::compare<Op>( lhs, rhs ) ? ResultWas::Ok : ResultWas::ExpressionFailed );
|
2011-04-20 17:33:23 -04:00
|
|
|
m_lhs = Catch::toString( lhs );
|
|
|
|
m_rhs = Catch::toString( rhs );
|
2011-03-15 18:22:19 -04:00
|
|
|
m_op = Internal::OperatorTraits<Op>::getName();
|
2011-03-09 14:45:05 -05:00
|
|
|
return *this;
|
2011-03-10 14:18:14 -05:00
|
|
|
}
|
2011-07-15 03:07:44 -04:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
template<Internal::Operator Op, typename T>
|
|
|
|
MutableResultInfo& captureExpression
|
|
|
|
(
|
|
|
|
const T* lhs,
|
|
|
|
int rhs
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return captureExpression<Op>( lhs, reinterpret_cast<const T*>( rhs ) );
|
|
|
|
}
|
2010-11-09 18:24:00 -05:00
|
|
|
};
|
2011-03-09 14:45:05 -05:00
|
|
|
|
2011-03-10 09:09:32 -05:00
|
|
|
template<typename T>
|
|
|
|
class Expression
|
2010-11-09 18:24:00 -05:00
|
|
|
{
|
2011-03-15 14:43:13 -04:00
|
|
|
void operator = ( const Expression& );
|
|
|
|
|
2010-11-09 18:24:00 -05:00
|
|
|
public:
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2011-03-10 09:09:32 -05:00
|
|
|
Expression
|
2011-02-03 15:00:46 -05:00
|
|
|
(
|
2011-03-10 09:09:32 -05:00
|
|
|
MutableResultInfo& result,
|
|
|
|
const T& lhs
|
2011-02-03 15:00:46 -05:00
|
|
|
)
|
2011-03-10 09:09:32 -05:00
|
|
|
: m_result( result ),
|
|
|
|
m_lhs( lhs )
|
|
|
|
{
|
|
|
|
}
|
2010-11-09 18:24:00 -05:00
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2011-03-10 09:09:32 -05:00
|
|
|
template<typename RhsT>
|
|
|
|
MutableResultInfo& operator ==
|
2011-02-03 15:00:46 -05:00
|
|
|
(
|
2011-03-10 09:09:32 -05:00
|
|
|
const RhsT& rhs
|
2011-02-03 15:00:46 -05:00
|
|
|
)
|
2011-03-09 14:45:05 -05:00
|
|
|
{
|
2011-03-15 18:22:19 -04:00
|
|
|
return m_result.captureExpression<Internal::IsEqualTo>( m_lhs, rhs );
|
2011-03-09 14:45:05 -05:00
|
|
|
}
|
2011-03-10 09:09:32 -05:00
|
|
|
|
2011-03-09 14:45:05 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2011-03-10 09:09:32 -05:00
|
|
|
template<typename RhsT>
|
|
|
|
MutableResultInfo& operator !=
|
2011-03-09 14:45:05 -05:00
|
|
|
(
|
2011-03-10 09:09:32 -05:00
|
|
|
const RhsT& rhs
|
|
|
|
)
|
2010-11-09 18:24:00 -05:00
|
|
|
{
|
2011-03-15 18:22:19 -04:00
|
|
|
return m_result.captureExpression<Internal::IsNotEqualTo>( m_lhs, rhs );
|
2010-11-09 18:24:00 -05:00
|
|
|
}
|
2011-03-10 09:09:32 -05:00
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2010-11-09 18:24:00 -05:00
|
|
|
template<typename RhsT>
|
2011-03-10 09:09:32 -05:00
|
|
|
MutableResultInfo& operator <
|
2011-02-03 15:00:46 -05:00
|
|
|
(
|
|
|
|
const RhsT& rhs
|
|
|
|
)
|
2010-11-09 18:24:00 -05:00
|
|
|
{
|
2011-03-15 18:22:19 -04:00
|
|
|
return m_result.captureExpression<Internal::IsLessThan>( m_lhs, rhs );
|
2011-03-10 09:09:32 -05:00
|
|
|
}
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2010-11-09 18:24:00 -05:00
|
|
|
template<typename RhsT>
|
2011-03-10 09:09:32 -05:00
|
|
|
MutableResultInfo& operator >
|
2011-02-03 15:00:46 -05:00
|
|
|
(
|
|
|
|
const RhsT& rhs
|
|
|
|
)
|
2010-11-09 18:24:00 -05:00
|
|
|
{
|
2011-03-15 18:22:19 -04:00
|
|
|
return m_result.captureExpression<Internal::IsGreaterThan>( m_lhs, rhs );
|
2011-03-10 09:09:32 -05:00
|
|
|
}
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2010-11-09 18:24:00 -05:00
|
|
|
template<typename RhsT>
|
2011-03-10 09:09:32 -05:00
|
|
|
MutableResultInfo& operator <=
|
2011-02-03 15:00:46 -05:00
|
|
|
(
|
|
|
|
const RhsT& rhs
|
|
|
|
)
|
2010-11-09 18:24:00 -05:00
|
|
|
{
|
2011-03-15 18:22:19 -04:00
|
|
|
return m_result.captureExpression<Internal::IsLessThanOrEqualTo>( m_lhs, rhs );
|
2011-03-10 09:09:32 -05:00
|
|
|
}
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2010-11-09 18:24:00 -05:00
|
|
|
template<typename RhsT>
|
2011-03-10 09:09:32 -05:00
|
|
|
MutableResultInfo& operator >=
|
2011-02-03 15:00:46 -05:00
|
|
|
(
|
2011-03-10 09:09:32 -05:00
|
|
|
const RhsT& rhs
|
2011-02-03 15:00:46 -05:00
|
|
|
)
|
2010-11-09 18:24:00 -05:00
|
|
|
{
|
2011-03-15 18:22:19 -04:00
|
|
|
return m_result.captureExpression<Internal::IsGreaterThanOrEqualTo>( m_lhs, rhs );
|
2011-03-10 09:09:32 -05:00
|
|
|
}
|
2011-02-03 15:00:46 -05:00
|
|
|
|
2011-08-09 03:18:27 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
MutableResultInfo& operator ==
|
|
|
|
(
|
|
|
|
bool rhs
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return m_result.captureExpression<Internal::IsEqualTo>( m_lhs, rhs );
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
MutableResultInfo& operator !=
|
|
|
|
(
|
|
|
|
bool rhs
|
|
|
|
)
|
|
|
|
{
|
|
|
|
return m_result.captureExpression<Internal::IsNotEqualTo>( m_lhs, rhs );
|
|
|
|
}
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2011-03-10 09:09:32 -05:00
|
|
|
operator MutableResultInfo&
|
|
|
|
()
|
|
|
|
{
|
|
|
|
return m_result.captureBoolExpression( m_lhs );
|
|
|
|
}
|
|
|
|
|
2011-03-10 14:18:14 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
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&
|
|
|
|
);
|
|
|
|
|
2011-03-10 09:09:32 -05:00
|
|
|
private:
|
|
|
|
MutableResultInfo& m_result;
|
|
|
|
const T& m_lhs;
|
|
|
|
};
|
|
|
|
|
2011-03-18 15:08:33 -04:00
|
|
|
template<typename LhsT>
|
|
|
|
class PtrExpression
|
|
|
|
{
|
|
|
|
public:
|
2011-03-18 10:39:58 -04:00
|
|
|
|
2011-03-18 15:08:33 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
PtrExpression
|
|
|
|
(
|
|
|
|
MutableResultInfo& result,
|
|
|
|
const LhsT* lhs
|
|
|
|
)
|
2011-03-21 14:00:19 -04:00
|
|
|
: m_result( &result ),
|
2011-03-18 15:08:33 -04:00
|
|
|
m_lhs( lhs )
|
|
|
|
{}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
template<typename RhsT>
|
|
|
|
MutableResultInfo& operator ==
|
|
|
|
(
|
|
|
|
const RhsT* rhs
|
|
|
|
)
|
|
|
|
{
|
2011-03-21 14:00:19 -04:00
|
|
|
return m_result->captureExpression<Internal::IsEqualTo>( m_lhs, rhs );
|
2011-03-18 15:08:33 -04:00
|
|
|
}
|
2011-03-18 10:39:58 -04:00
|
|
|
|
2011-03-18 15:08:33 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// This catches NULL
|
|
|
|
MutableResultInfo& operator ==
|
|
|
|
(
|
|
|
|
LhsT* rhs
|
|
|
|
)
|
|
|
|
{
|
2011-03-21 14:00:19 -04:00
|
|
|
return m_result->captureExpression<Internal::IsEqualTo>( m_lhs, rhs );
|
2011-03-18 15:08:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
template<typename RhsT>
|
|
|
|
MutableResultInfo& operator !=
|
|
|
|
(
|
|
|
|
const RhsT* rhs
|
|
|
|
)
|
|
|
|
{
|
2011-03-21 14:00:19 -04:00
|
|
|
return m_result->captureExpression<Internal::IsNotEqualTo>( m_lhs, rhs );
|
2011-03-18 15:08:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// This catches NULL
|
|
|
|
MutableResultInfo& operator !=
|
|
|
|
(
|
|
|
|
LhsT* rhs
|
|
|
|
)
|
|
|
|
{
|
2011-03-21 14:00:19 -04:00
|
|
|
return m_result->captureExpression<Internal::IsNotEqualTo>( m_lhs, rhs );
|
2011-03-18 15:08:33 -04:00
|
|
|
}
|
2011-04-08 14:38:50 -04:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
operator MutableResultInfo&
|
|
|
|
()
|
|
|
|
{
|
2011-04-26 03:35:52 -04:00
|
|
|
return m_result->captureBoolExpression( m_lhs );
|
2011-04-08 14:38:50 -04:00
|
|
|
}
|
|
|
|
|
2011-03-18 15:08:33 -04:00
|
|
|
|
|
|
|
private:
|
2011-03-21 14:00:19 -04:00
|
|
|
MutableResultInfo* m_result;
|
2011-03-18 15:08:33 -04:00
|
|
|
const LhsT* m_lhs;
|
|
|
|
};
|
2011-03-18 10:39:58 -04:00
|
|
|
|
2011-03-10 09:09:32 -05:00
|
|
|
class ResultBuilder
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
ResultBuilder
|
2011-02-03 15:00:46 -05:00
|
|
|
(
|
2011-03-10 09:09:32 -05:00
|
|
|
const char* filename,
|
|
|
|
std::size_t line,
|
|
|
|
const char* macroName,
|
|
|
|
const char* expr = "",
|
|
|
|
bool isNot = false
|
|
|
|
)
|
|
|
|
: m_result( expr, isNot, filename, line, macroName )
|
|
|
|
{}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
template<typename T>
|
|
|
|
Expression<T> operator->*
|
|
|
|
(
|
|
|
|
const T & operand
|
2011-02-03 15:00:46 -05:00
|
|
|
)
|
2010-11-09 18:24:00 -05:00
|
|
|
{
|
2011-03-10 09:09:32 -05:00
|
|
|
Expression<T> expr( m_result, operand );
|
|
|
|
|
|
|
|
return expr;
|
|
|
|
}
|
2011-02-03 15:00:46 -05:00
|
|
|
|
2011-06-29 14:22:56 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
Expression<const char*> operator->*
|
|
|
|
(
|
2011-07-15 03:07:44 -04:00
|
|
|
const char* const& operand
|
2011-06-29 14:22:56 -04:00
|
|
|
)
|
|
|
|
{
|
|
|
|
Expression<const char*> expr( m_result, operand );
|
|
|
|
|
|
|
|
return expr;
|
|
|
|
}
|
|
|
|
|
2011-03-18 10:39:58 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
template<typename T>
|
|
|
|
PtrExpression<T> operator->*
|
|
|
|
(
|
|
|
|
const T* operand
|
|
|
|
)
|
|
|
|
{
|
|
|
|
PtrExpression<T> expr( m_result, operand );
|
|
|
|
|
|
|
|
return expr;
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
template<typename T>
|
|
|
|
PtrExpression<T> operator->*
|
|
|
|
(
|
|
|
|
T* operand
|
|
|
|
)
|
|
|
|
{
|
|
|
|
PtrExpression<T> expr( m_result, operand );
|
|
|
|
|
|
|
|
return expr;
|
|
|
|
}
|
|
|
|
|
2011-08-09 03:18:27 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
Expression<bool> operator->*
|
|
|
|
(
|
|
|
|
bool value
|
|
|
|
)
|
|
|
|
{
|
|
|
|
Expression<bool> expr( m_result, value );
|
|
|
|
return expr;
|
|
|
|
}
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2011-03-10 09:09:32 -05:00
|
|
|
template<typename T>
|
|
|
|
ResultBuilder& operator <<
|
2011-02-03 15:00:46 -05:00
|
|
|
(
|
2011-03-10 09:09:32 -05:00
|
|
|
const T & value
|
2011-02-03 15:00:46 -05:00
|
|
|
)
|
2010-11-09 18:24:00 -05:00
|
|
|
{
|
2011-05-11 05:06:28 -04:00
|
|
|
m_messageStream << Catch::toString( value );
|
2011-03-10 09:09:32 -05:00
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
ResultBuilder& setResultType
|
|
|
|
(
|
|
|
|
ResultWas::OfType resultType
|
|
|
|
)
|
|
|
|
{
|
|
|
|
m_result.setResultType( resultType );
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
operator MutableResultInfo&
|
|
|
|
()
|
2010-11-09 18:24:00 -05:00
|
|
|
{
|
2011-03-10 09:09:32 -05:00
|
|
|
m_result.setMessage( m_messageStream.str() );
|
2010-11-09 18:24:00 -05:00
|
|
|
return m_result;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2011-03-10 09:09:32 -05:00
|
|
|
MutableResultInfo m_result;
|
|
|
|
std::ostringstream m_messageStream;
|
2010-11-09 18:24:00 -05:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2010-12-27 06:09:34 -05:00
|
|
|
class ScopedInfo
|
|
|
|
{
|
|
|
|
public:
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
ScopedInfo
|
|
|
|
()
|
2010-12-27 06:09:34 -05:00
|
|
|
{
|
2011-01-11 04:13:31 -05:00
|
|
|
Hub::getResultCapture().pushScopedInfo( this );
|
2010-12-27 06:09:34 -05:00
|
|
|
}
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
~ScopedInfo
|
|
|
|
()
|
2010-12-27 06:09:34 -05:00
|
|
|
{
|
2011-01-11 04:13:31 -05:00
|
|
|
Hub::getResultCapture().popScopedInfo( this );
|
2010-12-27 06:09:34 -05:00
|
|
|
}
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
ScopedInfo& operator <<
|
|
|
|
(
|
|
|
|
const char* str
|
|
|
|
)
|
2010-12-27 06:09:34 -05:00
|
|
|
{
|
|
|
|
m_oss << str;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
std::string getInfo
|
|
|
|
()
|
|
|
|
const
|
2010-12-27 06:09:34 -05:00
|
|
|
{
|
|
|
|
return m_oss.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::ostringstream m_oss;
|
|
|
|
};
|
2011-04-04 02:56:44 -04:00
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2010-12-29 18:13:22 -05:00
|
|
|
// This is just here to avoid compiler warnings with macro constants
|
2011-02-03 15:00:46 -05:00
|
|
|
inline bool isTrue
|
|
|
|
(
|
|
|
|
bool value
|
|
|
|
)
|
2010-12-29 18:13:22 -05:00
|
|
|
{
|
|
|
|
return value;
|
|
|
|
}
|
2010-11-09 18:24:00 -05:00
|
|
|
|
|
|
|
} // end namespace Catch
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2011-03-14 15:21:35 -04:00
|
|
|
#define INTERNAL_CATCH_ACCEPT_EXPR( expr, stopOnFailure ) \
|
2011-06-23 03:13:25 -04:00
|
|
|
if( Catch::ResultAction::Value internal_catch_action = Catch::Hub::getResultCapture().acceptExpression( expr ) ) \
|
2010-12-27 15:49:19 -05:00
|
|
|
{ \
|
2011-06-23 03:13:25 -04:00
|
|
|
if( internal_catch_action == Catch::ResultAction::DebugFailed ) BreakIntoDebugger(); \
|
2010-12-29 18:13:22 -05:00
|
|
|
if( Catch::isTrue( stopOnFailure ) ) throw Catch::TestFailureException(); \
|
2010-12-27 15:49:19 -05:00
|
|
|
}
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2010-11-10 02:42:15 -05:00
|
|
|
#define INTERNAL_CATCH_TEST( expr, isNot, stopOnFailure, macroName ) \
|
2011-04-01 03:14:32 -04:00
|
|
|
INTERNAL_CATCH_ACCEPT_EXPR( ( Catch::ResultBuilder( __FILE__, __LINE__, macroName, #expr, isNot )->*expr ), stopOnFailure ); \
|
2011-06-23 03:13:25 -04:00
|
|
|
if( Catch::isTrue( false ) ){ bool internal_catch_dummyResult = ( expr ); Catch::isTrue( internal_catch_dummyResult ); }
|
2010-11-09 18:24:00 -05:00
|
|
|
|
2011-03-14 04:45:55 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#define INTERNAL_CATCH_NO_THROW( expr, stopOnFailure, macroName ) \
|
|
|
|
try \
|
|
|
|
{ \
|
|
|
|
expr; \
|
2011-03-14 15:21:35 -04:00
|
|
|
INTERNAL_CATCH_ACCEPT_EXPR( Catch::ResultBuilder( __FILE__, __LINE__, macroName, #expr ).setResultType( Catch::ResultWas::Ok ), stopOnFailure ); \
|
2011-03-14 04:45:55 -04:00
|
|
|
} \
|
2011-06-23 03:13:25 -04:00
|
|
|
catch( std::exception& internal_catch_exception ) \
|
2011-04-08 14:44:22 -04:00
|
|
|
{ \
|
2011-06-23 03:13:25 -04:00
|
|
|
INTERNAL_CATCH_ACCEPT_EXPR( ( Catch::ResultBuilder( __FILE__, __LINE__, macroName, #expr ) << internal_catch_exception.what() ).setResultType( Catch::ResultWas::ThrewException ), stopOnFailure ); \
|
2011-04-08 14:44:22 -04:00
|
|
|
} \
|
2011-03-14 04:45:55 -04:00
|
|
|
catch( ... ) \
|
|
|
|
{ \
|
2011-04-20 14:09:41 -04:00
|
|
|
INTERNAL_CATCH_ACCEPT_EXPR( ( Catch::ResultBuilder( __FILE__, __LINE__, macroName, #expr ) << Catch::Hub::getExceptionTranslatorRegistry().translateActiveException() ).setResultType( Catch::ResultWas::ThrewException ), stopOnFailure ); \
|
2011-03-14 04:45:55 -04:00
|
|
|
}
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2011-03-14 04:49:42 -04:00
|
|
|
#define INTERNAL_CATCH_THROWS( expr, exceptionType, stopOnFailure, macroName ) \
|
2010-11-09 18:24:00 -05:00
|
|
|
try \
|
|
|
|
{ \
|
|
|
|
expr; \
|
2011-03-14 15:21:35 -04:00
|
|
|
INTERNAL_CATCH_ACCEPT_EXPR( Catch::ResultBuilder( __FILE__, __LINE__, macroName, #expr ).setResultType( Catch::ResultWas::DidntThrowException ), stopOnFailure ); \
|
|
|
|
} \
|
|
|
|
catch( Catch::TestFailureException& ) \
|
|
|
|
{ \
|
|
|
|
throw; \
|
2010-11-09 18:24:00 -05:00
|
|
|
} \
|
|
|
|
catch( exceptionType ) \
|
|
|
|
{ \
|
2011-03-14 15:21:35 -04:00
|
|
|
INTERNAL_CATCH_ACCEPT_EXPR( Catch::ResultBuilder( __FILE__, __LINE__, macroName, #expr ).setResultType( Catch::ResultWas::Ok ), stopOnFailure ); \
|
2010-11-09 18:24:00 -05:00
|
|
|
}
|
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2011-03-14 04:49:42 -04:00
|
|
|
#define INTERNAL_CATCH_THROWS_AS( expr, exceptionType, stopOnFailure, macroName ) \
|
|
|
|
INTERNAL_CATCH_THROWS( expr, exceptionType, stopOnFailure, macroName ) \
|
2011-03-14 04:45:55 -04:00
|
|
|
catch( ... ) \
|
|
|
|
{ \
|
2011-04-20 14:09:41 -04:00
|
|
|
INTERNAL_CATCH_ACCEPT_EXPR( ( Catch::ResultBuilder( __FILE__, __LINE__, macroName, #expr ) << Catch::Hub::getExceptionTranslatorRegistry().translateActiveException() ).setResultType( Catch::ResultWas::ThrewException ), stopOnFailure ); \
|
2011-03-14 04:45:55 -04:00
|
|
|
}
|
2010-11-09 18:24:00 -05:00
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2010-11-10 02:42:15 -05:00
|
|
|
#define INTERNAL_CATCH_MSG( reason, resultType, stopOnFailure, macroName ) \
|
2011-03-10 09:09:32 -05:00
|
|
|
Catch::Hub::getResultCapture().acceptExpression( ( Catch::ResultBuilder( __FILE__, __LINE__, macroName ) << reason ).setResultType( resultType ) );
|
2010-11-09 18:24:00 -05:00
|
|
|
|
2011-02-03 15:00:46 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2011-03-10 09:09:32 -05:00
|
|
|
#define INTERNAL_CATCH_SCOPED_INFO( log ) \
|
|
|
|
Catch::ScopedInfo INTERNAL_CATCH_UNIQUE_NAME( info ); \
|
|
|
|
INTERNAL_CATCH_UNIQUE_NAME( info ) << log
|
2010-11-09 18:24:00 -05:00
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_CAPTURE_HPP_INCLUDED
|