2010-11-10 00:24:00 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 29/10/2010.
|
|
|
|
* Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_COMMON_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_COMMON_H_INCLUDED
|
|
|
|
|
2010-11-10 08:42:15 +01:00
|
|
|
#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__ )
|
2010-11-10 00:24:00 +01:00
|
|
|
|
2011-03-18 15:39:58 +01:00
|
|
|
#define INTERNAL_CATCH_STRINGIFY2( expr ) #expr
|
|
|
|
#define INTERNAL_CATCH_STRINGIFY( expr ) INTERNAL_CATCH_STRINGIFY2( expr )
|
|
|
|
|
2011-02-23 10:06:05 +01:00
|
|
|
#ifdef __GNUC__
|
2012-08-13 08:46:10 +02:00
|
|
|
#define CATCH_ATTRIBUTE_NORETURN __attribute__ ((noreturn))
|
2011-02-23 10:06:05 +01:00
|
|
|
#else
|
2012-08-13 08:46:10 +02:00
|
|
|
#define CATCH_ATTRIBUTE_NORETURN
|
2011-02-23 10:06:05 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sstream>
|
|
|
|
#include <stdexcept>
|
2011-03-15 19:43:13 +01:00
|
|
|
#include <algorithm>
|
2011-02-23 10:06:05 +01:00
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
namespace Catch {
|
|
|
|
|
2013-03-08 10:26:20 +01:00
|
|
|
class NonCopyable {
|
|
|
|
NonCopyable( const NonCopyable& );
|
|
|
|
void operator = ( const NonCopyable& );
|
|
|
|
protected:
|
|
|
|
NonCopyable() {}
|
|
|
|
virtual ~NonCopyable();
|
|
|
|
};
|
2010-11-16 20:30:41 +01:00
|
|
|
|
2012-05-31 20:40:26 +02:00
|
|
|
class SafeBool {
|
|
|
|
public:
|
|
|
|
typedef void (SafeBool::*type)() const;
|
|
|
|
|
|
|
|
static type makeSafe( bool value ) {
|
|
|
|
return value ? &SafeBool::trueValue : 0;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
void trueValue() const {}
|
|
|
|
};
|
|
|
|
|
2011-01-27 00:23:33 +01:00
|
|
|
template<typename ContainerT>
|
2012-05-08 20:16:18 +02:00
|
|
|
inline void deleteAll( ContainerT& container ) {
|
2011-01-27 00:23:33 +01:00
|
|
|
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-08 20:16:18 +02:00
|
|
|
inline void deleteAllValues( AssociativeContainerT& container ) {
|
2011-01-27 00:23:33 +01:00
|
|
|
typename AssociativeContainerT::const_iterator it = container.begin();
|
|
|
|
typename AssociativeContainerT::const_iterator itEnd = container.end();
|
|
|
|
for(; it != itEnd; ++it )
|
|
|
|
delete it->second;
|
|
|
|
}
|
2011-02-23 10:06:05 +01:00
|
|
|
|
2011-03-11 20:44:59 +01:00
|
|
|
template<typename ContainerT, typename Function>
|
2012-05-08 20:16:18 +02:00
|
|
|
inline void forEach( ContainerT& container, Function function ) {
|
2011-03-11 20:44:59 +01:00
|
|
|
std::for_each( container.begin(), container.end(), function );
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename ContainerT, typename Function>
|
2012-05-08 20:16:18 +02:00
|
|
|
inline void forEach( const ContainerT& container, Function function ) {
|
2011-03-11 20:44:59 +01:00
|
|
|
std::for_each( container.begin(), container.end(), function );
|
|
|
|
}
|
2012-08-23 21:08:50 +02:00
|
|
|
|
|
|
|
inline bool startsWith( const std::string& s, const std::string& prefix ) {
|
|
|
|
return s.size() >= prefix.size() && s.substr( 0, prefix.size() ) == prefix;
|
|
|
|
}
|
2012-08-24 09:23:50 +02:00
|
|
|
inline bool endsWith( const std::string& s, const std::string& suffix ) {
|
|
|
|
return s.size() >= suffix.size() && s.substr( s.size()-suffix.size(), suffix.size() ) == suffix;
|
|
|
|
}
|
|
|
|
inline bool contains( const std::string& s, const std::string& infix ) {
|
|
|
|
return s.find( infix ) != std::string::npos;
|
|
|
|
}
|
2013-03-12 19:47:53 +01:00
|
|
|
inline void toLower( std::string& s ) {
|
|
|
|
std::transform( s.begin(), s.end(), s.begin(), ::tolower );
|
|
|
|
}
|
2012-08-24 09:23:50 +02:00
|
|
|
|
|
|
|
struct pluralise {
|
|
|
|
pluralise( std::size_t count, const std::string& label )
|
|
|
|
: m_count( count ),
|
|
|
|
m_label( label )
|
|
|
|
{}
|
|
|
|
|
|
|
|
friend std::ostream& operator << ( std::ostream& os, const pluralise& pluraliser ) {
|
|
|
|
os << pluraliser.m_count << " " << pluraliser.m_label;
|
|
|
|
if( pluraliser.m_count != 1 )
|
2012-11-04 22:09:22 +01:00
|
|
|
os << "s";
|
2012-08-24 09:23:50 +02:00
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::size_t m_count;
|
|
|
|
std::string m_label;
|
|
|
|
};
|
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
struct SourceLineInfo {
|
|
|
|
|
2012-05-08 20:16:18 +02:00
|
|
|
SourceLineInfo() : line( 0 ){}
|
2012-05-11 20:05:53 +02:00
|
|
|
SourceLineInfo( const std::string& _file, std::size_t _line )
|
|
|
|
: file( _file ),
|
|
|
|
line( _line )
|
2012-02-15 09:20:06 +01:00
|
|
|
{}
|
2012-05-08 20:16:18 +02:00
|
|
|
SourceLineInfo( const SourceLineInfo& other )
|
|
|
|
: file( other.file ),
|
|
|
|
line( other.line )
|
|
|
|
{}
|
2012-10-24 22:59:47 +02:00
|
|
|
bool empty() const {
|
|
|
|
return file.empty();
|
|
|
|
}
|
2012-02-15 09:20:06 +01:00
|
|
|
|
|
|
|
std::string file;
|
|
|
|
std::size_t line;
|
|
|
|
};
|
|
|
|
|
2012-05-08 20:16:18 +02:00
|
|
|
inline std::ostream& operator << ( std::ostream& os, const SourceLineInfo& info ) {
|
2012-02-15 09:20:06 +01:00
|
|
|
#ifndef __GNUG__
|
2013-01-18 18:50:21 +01:00
|
|
|
os << info.file << "(" << info.line << "):";
|
2012-02-15 09:20:06 +01:00
|
|
|
#else
|
2013-01-13 22:51:44 +01:00
|
|
|
os << info.file << ":" << info.line;
|
2012-02-15 09:20:06 +01:00
|
|
|
#endif
|
|
|
|
return os;
|
|
|
|
}
|
|
|
|
|
2012-08-13 08:46:10 +02:00
|
|
|
CATCH_ATTRIBUTE_NORETURN
|
|
|
|
inline void throwLogicError( const std::string& message, const SourceLineInfo& locationInfo ) {
|
2011-02-23 10:06:05 +01:00
|
|
|
std::ostringstream oss;
|
2013-01-13 22:51:44 +01:00
|
|
|
oss << locationInfo << ": Internal Catch error: '" << message << "'";
|
2011-02-23 10:06:05 +01:00
|
|
|
throw std::logic_error( oss.str() );
|
|
|
|
}
|
2010-11-12 20:32:13 +01:00
|
|
|
}
|
2011-02-23 10:06:05 +01:00
|
|
|
|
2012-08-13 08:46:10 +02:00
|
|
|
#define CATCH_INTERNAL_LINEINFO ::Catch::SourceLineInfo( __FILE__, static_cast<std::size_t>( __LINE__ ) )
|
|
|
|
#define CATCH_INTERNAL_ERROR( msg ) ::Catch::throwLogicError( msg, CATCH_INTERNAL_LINEINFO );
|
2010-11-12 20:32:13 +01:00
|
|
|
|
2011-02-16 20:02:09 +01:00
|
|
|
#endif // TWOBLUECUBES_CATCH_COMMON_H_INCLUDED
|
|
|
|
|