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
|
|
|
|
|
2017-01-11 17:23:16 +01:00
|
|
|
#include "catch_compiler_capabilities.h"
|
|
|
|
|
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 )
|
2015-12-15 08:50:51 +01:00
|
|
|
#ifdef CATCH_CONFIG_COUNTER
|
|
|
|
# define INTERNAL_CATCH_UNIQUE_NAME( name ) INTERNAL_CATCH_UNIQUE_NAME_LINE( name, __COUNTER__ )
|
|
|
|
#else
|
|
|
|
# define INTERNAL_CATCH_UNIQUE_NAME( name ) INTERNAL_CATCH_UNIQUE_NAME_LINE( name, __LINE__ )
|
|
|
|
#endif
|
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
|
|
|
#include <sstream>
|
|
|
|
#include <stdexcept>
|
2011-03-15 19:43:13 +01:00
|
|
|
#include <algorithm>
|
2011-02-23 10:06:05 +01:00
|
|
|
|
2013-04-23 21:52:49 +02:00
|
|
|
#include "catch_compiler_capabilities.h"
|
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
namespace Catch {
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2015-07-03 00:02:35 +02:00
|
|
|
struct IConfig;
|
2012-05-15 09:02:36 +02:00
|
|
|
|
2015-07-16 00:02:25 +02:00
|
|
|
struct CaseSensitive { enum Choice {
|
|
|
|
Yes,
|
|
|
|
No
|
|
|
|
}; };
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2013-03-08 10:26:20 +01:00
|
|
|
class NonCopyable {
|
2015-05-19 19:37:58 +02:00
|
|
|
#ifdef CATCH_CONFIG_CPP11_GENERATED_METHODS
|
2014-10-03 09:15:27 +02:00
|
|
|
NonCopyable( NonCopyable const& ) = delete;
|
|
|
|
NonCopyable( NonCopyable && ) = delete;
|
|
|
|
NonCopyable& operator = ( NonCopyable const& ) = delete;
|
|
|
|
NonCopyable& operator = ( NonCopyable && ) = delete;
|
|
|
|
#else
|
|
|
|
NonCopyable( NonCopyable const& info );
|
|
|
|
NonCopyable& operator = ( NonCopyable const& );
|
|
|
|
#endif
|
|
|
|
|
2013-03-08 10:26:20 +01:00
|
|
|
protected:
|
|
|
|
NonCopyable() {}
|
|
|
|
virtual ~NonCopyable();
|
|
|
|
};
|
2013-07-03 20:14:59 +02: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 {}
|
|
|
|
};
|
2013-07-03 20:14:59 +02:00
|
|
|
|
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;
|
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-12-03 19:52:41 +01:00
|
|
|
bool startsWith( std::string const& s, std::string const& prefix );
|
|
|
|
bool endsWith( std::string const& s, std::string const& suffix );
|
|
|
|
bool contains( std::string const& s, std::string const& infix );
|
|
|
|
void toLowerInPlace( std::string& s );
|
|
|
|
std::string toLower( std::string const& s );
|
|
|
|
std::string trim( std::string const& str );
|
2014-12-19 19:16:19 +01:00
|
|
|
bool replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis );
|
2012-08-24 09:23:50 +02:00
|
|
|
|
|
|
|
struct pluralise {
|
2013-12-03 19:52:41 +01:00
|
|
|
pluralise( std::size_t count, std::string const& label );
|
|
|
|
|
|
|
|
friend std::ostream& operator << ( std::ostream& os, pluralise const& pluraliser );
|
2012-08-24 09:23:50 +02:00
|
|
|
|
|
|
|
std::size_t m_count;
|
|
|
|
std::string m_label;
|
|
|
|
};
|
|
|
|
|
2012-05-15 09:02:36 +02:00
|
|
|
struct SourceLineInfo {
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-12-03 19:52:41 +01:00
|
|
|
SourceLineInfo();
|
2013-12-04 09:12:30 +01:00
|
|
|
SourceLineInfo( char const* _file, std::size_t _line );
|
2013-12-03 19:52:41 +01:00
|
|
|
SourceLineInfo( SourceLineInfo const& other );
|
2015-05-19 19:37:58 +02:00
|
|
|
# ifdef CATCH_CONFIG_CPP11_GENERATED_METHODS
|
2014-03-20 12:48:19 +01:00
|
|
|
SourceLineInfo( SourceLineInfo && ) = default;
|
|
|
|
SourceLineInfo& operator = ( SourceLineInfo const& ) = default;
|
|
|
|
SourceLineInfo& operator = ( SourceLineInfo && ) = default;
|
|
|
|
# endif
|
2013-12-03 19:52:41 +01:00
|
|
|
bool empty() const;
|
|
|
|
bool operator == ( SourceLineInfo const& other ) const;
|
2015-03-04 08:08:53 +01:00
|
|
|
bool operator < ( SourceLineInfo const& other ) const;
|
2013-12-03 19:52:41 +01:00
|
|
|
|
2012-02-15 09:20:06 +01:00
|
|
|
std::string file;
|
2013-07-03 20:14:59 +02:00
|
|
|
std::size_t line;
|
2012-02-15 09:20:06 +01:00
|
|
|
};
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-12-03 19:52:41 +01:00
|
|
|
std::ostream& operator << ( std::ostream& os, SourceLineInfo const& info );
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-04-23 21:52:49 +02:00
|
|
|
// This is just here to avoid compiler warnings with macro constants and boolean literals
|
|
|
|
inline bool isTrue( bool value ){ return value; }
|
2014-05-28 19:53:01 +02:00
|
|
|
inline bool alwaysTrue() { return true; }
|
|
|
|
inline bool alwaysFalse() { return false; }
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-12-03 19:52:41 +01:00
|
|
|
void throwLogicError( std::string const& message, SourceLineInfo const& locationInfo );
|
2013-12-13 00:02:31 +01:00
|
|
|
|
2015-07-03 00:02:35 +02:00
|
|
|
void seedRng( IConfig const& config );
|
|
|
|
unsigned int rngSeed();
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2013-12-13 00:02:31 +01:00
|
|
|
// Use this in variadic streaming macros to allow
|
|
|
|
// >> +StreamEndStop
|
|
|
|
// as well as
|
|
|
|
// >> stuff +StreamEndStop
|
|
|
|
struct StreamEndStop {
|
|
|
|
std::string operator+() {
|
|
|
|
return std::string();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
template<typename T>
|
|
|
|
T const& operator + ( T const& value, StreamEndStop ) {
|
|
|
|
return value;
|
|
|
|
}
|
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
|
|
|
|
|