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>
|
2011-03-15 19:43:13 +01:00
|
|
|
#include <algorithm>
|
2017-05-05 16:42:57 +02:00
|
|
|
#include <exception>
|
2011-02-23 10:06:05 +01:00
|
|
|
|
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 {
|
2014-10-03 09:15:27 +02:00
|
|
|
NonCopyable( NonCopyable const& ) = delete;
|
|
|
|
NonCopyable( NonCopyable && ) = delete;
|
|
|
|
NonCopyable& operator = ( NonCopyable const& ) = delete;
|
|
|
|
NonCopyable& operator = ( NonCopyable && ) = delete;
|
|
|
|
|
2013-03-08 10:26:20 +01:00
|
|
|
protected:
|
|
|
|
NonCopyable() {}
|
|
|
|
virtual ~NonCopyable();
|
|
|
|
};
|
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 );
|
2017-01-15 09:41:33 +01:00
|
|
|
bool startsWith( std::string const& s, char prefix );
|
2013-12-03 19:52:41 +01:00
|
|
|
bool endsWith( std::string const& s, std::string const& suffix );
|
2017-01-15 09:41:33 +01:00
|
|
|
bool endsWith( std::string const& s, char suffix );
|
|
|
|
bool contains( std::string const& s, std::string const& infix );
|
2013-12-03 19:52:41 +01:00
|
|
|
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
|
|
|
|
2017-07-13 09:25:47 +02:00
|
|
|
SourceLineInfo() noexcept;
|
|
|
|
SourceLineInfo( char const* _file, std::size_t _line ) noexcept;
|
2017-04-25 12:41:30 +02:00
|
|
|
|
2017-01-29 22:03:27 +01:00
|
|
|
SourceLineInfo(SourceLineInfo const& other) = default;
|
2014-03-20 12:48:19 +01:00
|
|
|
SourceLineInfo( SourceLineInfo && ) = default;
|
|
|
|
SourceLineInfo& operator = ( SourceLineInfo const& ) = default;
|
|
|
|
SourceLineInfo& operator = ( SourceLineInfo && ) = default;
|
2017-04-25 12:41:30 +02:00
|
|
|
|
2017-07-13 09:25:47 +02:00
|
|
|
bool empty() const noexcept;
|
|
|
|
bool operator == ( SourceLineInfo const& other ) const noexcept;
|
|
|
|
bool operator < ( SourceLineInfo const& other ) const noexcept;
|
2013-12-03 19:52:41 +01:00
|
|
|
|
2017-01-29 22:03:27 +01:00
|
|
|
char const* 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
|
2017-07-12 16:16:55 +02:00
|
|
|
bool isTrue( bool value );
|
|
|
|
bool alwaysTrue();
|
|
|
|
bool alwaysFalse();
|
2013-07-03 20:14:59 +02: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
|
|
|
|
2017-05-05 19:39:49 +02:00
|
|
|
#define CATCH_INTERNAL_LINEINFO \
|
|
|
|
::Catch::SourceLineInfo( __FILE__, static_cast<std::size_t>( __LINE__ ) )
|
2017-06-04 21:39:27 +02:00
|
|
|
#define CATCH_PREPARE_EXCEPTION( type, msg ) \
|
|
|
|
type( static_cast<std::ostringstream&&>( std::ostringstream() << msg ).str() )
|
2017-05-05 19:39:49 +02:00
|
|
|
#define CATCH_INTERNAL_ERROR( msg ) \
|
2017-06-04 21:39:27 +02:00
|
|
|
throw CATCH_PREPARE_EXCEPTION( std::logic_error, CATCH_INTERNAL_LINEINFO << ": Internal Catch error: " << msg);
|
2017-05-05 19:39:49 +02:00
|
|
|
#define CATCH_ERROR( msg ) \
|
2017-06-04 21:39:27 +02:00
|
|
|
throw CATCH_PREPARE_EXCEPTION( std::domain_error, msg )
|
2017-05-05 19:39:49 +02:00
|
|
|
#define CATCH_ENFORCE( condition, msg ) \
|
|
|
|
do{ if( !(condition) ) CATCH_ERROR( msg ); } while(false)
|
2010-11-12 20:32:13 +01:00
|
|
|
|
2011-02-16 20:02:09 +01:00
|
|
|
#endif // TWOBLUECUBES_CATCH_COMMON_H_INCLUDED
|
|
|
|
|