11#ifndef TWOBLUECUBES_SINGLE_INCLUDE_CATCH_HPP_INCLUDED
12#define TWOBLUECUBES_SINGLE_INCLUDE_CATCH_HPP_INCLUDED
16#define CATCH_VERSION_MAJOR 2
17#define CATCH_VERSION_MINOR 12
18#define CATCH_VERSION_PATCH 2
21# pragma clang system_header
23# pragma GCC system_header
31# pragma warning(disable: 161 1682)
33# pragma clang diagnostic push
34# pragma clang diagnostic ignored "-Wpadded"
35# pragma clang diagnostic ignored "-Wswitch-enum"
36# pragma clang diagnostic ignored "-Wcovered-switch-default"
42# pragma GCC diagnostic ignored "-Wparentheses"
44# pragma GCC diagnostic push
45# pragma GCC diagnostic ignored "-Wunused-variable"
46# pragma GCC diagnostic ignored "-Wpadded"
49#if defined(CATCH_CONFIG_MAIN) || defined(CATCH_CONFIG_RUNNER)
51# define CATCH_CONFIG_ALL_PARTS
56#if defined(CATCH_CONFIG_ALL_PARTS)
57# define CATCH_CONFIG_EXTERNAL_INTERFACES
58# if defined(CATCH_CONFIG_DISABLE_MATCHERS)
59# undef CATCH_CONFIG_DISABLE_MATCHERS
61# if !defined(CATCH_CONFIG_ENABLE_CHRONO_STRINGMAKER)
62# define CATCH_CONFIG_ENABLE_CHRONO_STRINGMAKER
66#if !defined(CATCH_CONFIG_IMPL_ONLY)
70# include <TargetConditionals.h>
71# if TARGET_OS_OSX == 1
72# define CATCH_PLATFORM_MAC
73# elif TARGET_OS_IPHONE == 1
74# define CATCH_PLATFORM_IPHONE
77#elif defined(linux) || defined(__linux) || defined(__linux__)
78# define CATCH_PLATFORM_LINUX
80#elif defined(WIN32) || defined(__WIN32__) || defined(_WIN32) || defined(_MSC_VER) || defined(__MINGW32__)
81# define CATCH_PLATFORM_WINDOWS
87# ifndef CLARA_CONFIG_MAIN
88# define CLARA_CONFIG_MAIN_NOT_DEFINED
89# define CLARA_CONFIG_MAIN
96 unsigned int rngSeed();
125# if (__cplusplus >= 201402L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 201402L)
126# define CATCH_CPP14_OR_GREATER
129# if (__cplusplus >= 201703L) || (defined(_MSVC_LANG) && _MSVC_LANG >= 201703L)
130# define CATCH_CPP17_OR_GREATER
135#if defined(__cpp_lib_uncaught_exceptions)
136# define CATCH_INTERNAL_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS
141#if defined(__GNUC__) && !defined(__clang__) && !defined(__ICC)
142# define CATCH_INTERNAL_START_WARNINGS_SUPPRESSION _Pragma( "GCC diagnostic push" )
143# define CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION _Pragma( "GCC diagnostic pop" )
145# define CATCH_INTERNAL_IGNORE_BUT_WARN(...) (void)__builtin_constant_p(__VA_ARGS__)
149#if defined(__clang__)
151# define CATCH_INTERNAL_START_WARNINGS_SUPPRESSION _Pragma( "clang diagnostic push" )
152# define CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION _Pragma( "clang diagnostic pop" )
165# if !defined(__ibmxl__)
166# define CATCH_INTERNAL_IGNORE_BUT_WARN(...) (void)__builtin_constant_p(__VA_ARGS__)
169# define CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
170 _Pragma( "clang diagnostic ignored \"-Wexit-time-destructors\"" ) \
171 _Pragma( "clang diagnostic ignored \"-Wglobal-constructors\"")
173# define CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS \
174 _Pragma( "clang diagnostic ignored \"-Wparentheses\"" )
176# define CATCH_INTERNAL_SUPPRESS_UNUSED_WARNINGS \
177 _Pragma( "clang diagnostic ignored \"-Wunused-variable\"" )
179# define CATCH_INTERNAL_SUPPRESS_ZERO_VARIADIC_WARNINGS \
180 _Pragma( "clang diagnostic ignored \"-Wgnu-zero-variadic-macro-arguments\"" )
182# define CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS \
183 _Pragma( "clang diagnostic ignored \"-Wunused-template\"" )
189#if !defined(CATCH_PLATFORM_WINDOWS)
190 #define CATCH_INTERNAL_CONFIG_POSIX_SIGNALS
195#if defined(__CYGWIN__) || defined(__QNX__) || defined(__EMSCRIPTEN__) || defined(__DJGPP__)
196 #define CATCH_INTERNAL_CONFIG_NO_POSIX_SIGNALS
200# define CATCH_INTERNAL_CONFIG_NO_POSIX_SIGNALS
201# define CATCH_CONFIG_COLOUR_NONE
206#if defined(__ANDROID__)
207# define CATCH_INTERNAL_CONFIG_NO_CPP11_TO_STRING
208# define CATCH_INTERNAL_CONFIG_ANDROID_LOGWRITE
213#if defined(__MINGW32__)
214# define CATCH_INTERNAL_CONFIG_NO_WINDOWS_SEH
219#if defined(__ORBIS__)
220# define CATCH_INTERNAL_CONFIG_NO_NEW_CAPTURE
232# if !((__cplusplus >= 201103L) && defined(_GLIBCXX_USE_C99) \
233 && !defined(_GLIBCXX_HAVE_BROKEN_VSWPRINTF))
235# define CATCH_INTERNAL_CONFIG_NO_CPP11_TO_STRING
244# define CATCH_INTERNAL_START_WARNINGS_SUPPRESSION __pragma( warning(push) )
245# define CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION __pragma( warning(pop) )
248# define CATCH_INTERNAL_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS
253# if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_APP)
254# define CATCH_CONFIG_COLOUR_NONE
256# define CATCH_INTERNAL_CONFIG_WINDOWS_SEH
262# if !defined(__clang__)
263# if !defined(_MSVC_TRADITIONAL) || (defined(_MSVC_TRADITIONAL) && _MSVC_TRADITIONAL)
264# define CATCH_INTERNAL_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
270#if defined(_REENTRANT) || defined(_MSC_VER)
272# define CATCH_INTERNAL_CONFIG_USE_ASYNC
277#if defined(__EXCEPTIONS) || defined(__cpp_exceptions) || defined(_CPPUNWIND)
278# define CATCH_INTERNAL_CONFIG_EXCEPTIONS_ENABLED
284# define CATCH_INTERNAL_CONFIG_NO_WCHAR
289#if defined(__BORLANDC__)
290 #define CATCH_INTERNAL_CONFIG_POLYFILL_ISNAN
300#if ( !defined(__JETBRAINS_IDE__) || __JETBRAINS_IDE__ >= 20170300L )
301 #define CATCH_INTERNAL_CONFIG_COUNTER
309#if defined(UNDER_RTSS) || defined(RTX64_BUILD)
310 #define CATCH_INTERNAL_CONFIG_NO_WINDOWS_SEH
311 #define CATCH_INTERNAL_CONFIG_NO_ASYNC
312 #define CATCH_CONFIG_COLOUR_NONE
315#if !defined(_GLIBCXX_USE_C99_MATH_TR1)
316#define CATCH_INTERNAL_CONFIG_GLOBAL_NEXTAFTER
320#if defined(__has_include)
322 #if __has_include(<string_view>) && defined(CATCH_CPP17_OR_GREATER)
323 # define CATCH_INTERNAL_CONFIG_CPP17_STRING_VIEW
327 # if __has_include(<optional>) && defined(CATCH_CPP17_OR_GREATER)
328 # define CATCH_INTERNAL_CONFIG_CPP17_OPTIONAL
332 # if __has_include(<cstddef>) && defined(CATCH_CPP17_OR_GREATER)
333 # define CATCH_INTERNAL_CONFIG_CPP17_BYTE
337 # if __has_include(<variant>) && defined(CATCH_CPP17_OR_GREATER)
338 # if defined(__clang__) && (__clang_major__ < 8)
342 # if defined(__GLIBCXX__) && defined(_GLIBCXX_RELEASE) && (_GLIBCXX_RELEASE < 9)
343 # define CATCH_CONFIG_NO_CPP17_VARIANT
345 # define CATCH_INTERNAL_CONFIG_CPP17_VARIANT
348 # define CATCH_INTERNAL_CONFIG_CPP17_VARIANT
353#if defined(CATCH_INTERNAL_CONFIG_COUNTER) && !defined(CATCH_CONFIG_NO_COUNTER) && !defined(CATCH_CONFIG_COUNTER)
354# define CATCH_CONFIG_COUNTER
356#if defined(CATCH_INTERNAL_CONFIG_WINDOWS_SEH) && !defined(CATCH_CONFIG_NO_WINDOWS_SEH) && !defined(CATCH_CONFIG_WINDOWS_SEH) && !defined(CATCH_INTERNAL_CONFIG_NO_WINDOWS_SEH)
357# define CATCH_CONFIG_WINDOWS_SEH
360#if defined(CATCH_INTERNAL_CONFIG_POSIX_SIGNALS) && !defined(CATCH_INTERNAL_CONFIG_NO_POSIX_SIGNALS) && !defined(CATCH_CONFIG_NO_POSIX_SIGNALS) && !defined(CATCH_CONFIG_POSIX_SIGNALS)
361# define CATCH_CONFIG_POSIX_SIGNALS
364#if !defined(CATCH_INTERNAL_CONFIG_NO_WCHAR) && !defined(CATCH_CONFIG_NO_WCHAR) && !defined(CATCH_CONFIG_WCHAR)
365# define CATCH_CONFIG_WCHAR
368#if !defined(CATCH_INTERNAL_CONFIG_NO_CPP11_TO_STRING) && !defined(CATCH_CONFIG_NO_CPP11_TO_STRING) && !defined(CATCH_CONFIG_CPP11_TO_STRING)
369# define CATCH_CONFIG_CPP11_TO_STRING
372#if defined(CATCH_INTERNAL_CONFIG_CPP17_OPTIONAL) && !defined(CATCH_CONFIG_NO_CPP17_OPTIONAL) && !defined(CATCH_CONFIG_CPP17_OPTIONAL)
373# define CATCH_CONFIG_CPP17_OPTIONAL
376#if defined(CATCH_INTERNAL_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS) && !defined(CATCH_CONFIG_NO_CPP17_UNCAUGHT_EXCEPTIONS) && !defined(CATCH_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS)
377# define CATCH_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS
380#if defined(CATCH_INTERNAL_CONFIG_CPP17_STRING_VIEW) && !defined(CATCH_CONFIG_NO_CPP17_STRING_VIEW) && !defined(CATCH_CONFIG_CPP17_STRING_VIEW)
381# define CATCH_CONFIG_CPP17_STRING_VIEW
384#if defined(CATCH_INTERNAL_CONFIG_CPP17_VARIANT) && !defined(CATCH_CONFIG_NO_CPP17_VARIANT) && !defined(CATCH_CONFIG_CPP17_VARIANT)
385# define CATCH_CONFIG_CPP17_VARIANT
388#if defined(CATCH_INTERNAL_CONFIG_CPP17_BYTE) && !defined(CATCH_CONFIG_NO_CPP17_BYTE) && !defined(CATCH_CONFIG_CPP17_BYTE)
389# define CATCH_CONFIG_CPP17_BYTE
392#if defined(CATCH_CONFIG_EXPERIMENTAL_REDIRECT)
393# define CATCH_INTERNAL_CONFIG_NEW_CAPTURE
396#if defined(CATCH_INTERNAL_CONFIG_NEW_CAPTURE) && !defined(CATCH_INTERNAL_CONFIG_NO_NEW_CAPTURE) && !defined(CATCH_CONFIG_NO_NEW_CAPTURE) && !defined(CATCH_CONFIG_NEW_CAPTURE)
397# define CATCH_CONFIG_NEW_CAPTURE
400#if !defined(CATCH_INTERNAL_CONFIG_EXCEPTIONS_ENABLED) && !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
401# define CATCH_CONFIG_DISABLE_EXCEPTIONS
404#if defined(CATCH_INTERNAL_CONFIG_POLYFILL_ISNAN) && !defined(CATCH_CONFIG_NO_POLYFILL_ISNAN) && !defined(CATCH_CONFIG_POLYFILL_ISNAN)
405# define CATCH_CONFIG_POLYFILL_ISNAN
408#if defined(CATCH_INTERNAL_CONFIG_USE_ASYNC) && !defined(CATCH_INTERNAL_CONFIG_NO_ASYNC) && !defined(CATCH_CONFIG_NO_USE_ASYNC) && !defined(CATCH_CONFIG_USE_ASYNC)
409# define CATCH_CONFIG_USE_ASYNC
412#if defined(CATCH_INTERNAL_CONFIG_ANDROID_LOGWRITE) && !defined(CATCH_CONFIG_NO_ANDROID_LOGWRITE) && !defined(CATCH_CONFIG_ANDROID_LOGWRITE)
413# define CATCH_CONFIG_ANDROID_LOGWRITE
416#if defined(CATCH_INTERNAL_CONFIG_GLOBAL_NEXTAFTER) && !defined(CATCH_CONFIG_NO_GLOBAL_NEXTAFTER) && !defined(CATCH_CONFIG_GLOBAL_NEXTAFTER)
417# define CATCH_CONFIG_GLOBAL_NEXTAFTER
422#if !defined(CATCH_INTERNAL_START_WARNINGS_SUPPRESSION)
423# define CATCH_INTERNAL_START_WARNINGS_SUPPRESSION
425#if !defined(CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION)
426# define CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION
428#if !defined(CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS)
429# define CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS
431#if !defined(CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS)
432# define CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS
434#if !defined(CATCH_INTERNAL_SUPPRESS_UNUSED_WARNINGS)
435# define CATCH_INTERNAL_SUPPRESS_UNUSED_WARNINGS
437#if !defined(CATCH_INTERNAL_SUPPRESS_ZERO_VARIADIC_WARNINGS)
438# define CATCH_INTERNAL_SUPPRESS_ZERO_VARIADIC_WARNINGS
443#if !defined(CATCH_INTERNAL_IGNORE_BUT_WARN)
444# define CATCH_INTERNAL_IGNORE_BUT_WARN(...)
447#if defined(__APPLE__) && defined(__apple_build_version__) && (__clang_major__ < 10)
448# undef CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS
449#elif defined(__clang__) && (__clang_major__ < 5)
450# undef CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS
453#if !defined(CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS)
454# define CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS
457#if defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
458#define CATCH_TRY if ((true))
459#define CATCH_CATCH_ALL if ((false))
460#define CATCH_CATCH_ANON(type) if ((false))
463#define CATCH_CATCH_ALL catch (...)
464#define CATCH_CATCH_ANON(type) catch (type)
467#if defined(CATCH_INTERNAL_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR) && !defined(CATCH_CONFIG_NO_TRADITIONAL_MSVC_PREPROCESSOR) && !defined(CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR)
468#define CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
472#define INTERNAL_CATCH_UNIQUE_NAME_LINE2( name, line ) name##line
473#define INTERNAL_CATCH_UNIQUE_NAME_LINE( name, line ) INTERNAL_CATCH_UNIQUE_NAME_LINE2( name, line )
474#ifdef CATCH_CONFIG_COUNTER
475# define INTERNAL_CATCH_UNIQUE_NAME( name ) INTERNAL_CATCH_UNIQUE_NAME_LINE( name, __COUNTER__ )
477# define INTERNAL_CATCH_UNIQUE_NAME( name ) INTERNAL_CATCH_UNIQUE_NAME_LINE( name, __LINE__ )
519 bool empty()
const noexcept {
return file[0] ==
'\0'; }
527 std::ostream& operator << ( std::ostream& os,
SourceLineInfo const& info );
539 std::string operator+()
const;
547#define CATCH_INTERNAL_LINEINFO \
548 ::Catch::SourceLineInfo( __FILE__, static_cast<std::size_t>( __LINE__ ) )
559#define CATCH_REGISTER_TAG_ALIAS( alias, spec ) \
560 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
561 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
562 namespace{ Catch::RegistrarForTagAliases INTERNAL_CATCH_UNIQUE_NAME( AutoRegisterTagAlias )( alias, spec, CATCH_INTERNAL_LINEINFO ); } \
563 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION
577 virtual void invoke ()
const = 0;
586 virtual std::vector<TestCase>
const& getAllTests()
const = 0;
587 virtual std::vector<TestCase>
const& getAllTestsSorted(
IConfig const& config )
const = 0;
591 bool matchTest(
TestCase const& testCase, TestSpec
const& testSpec,
IConfig const& config );
592 std::vector<TestCase> filterTests( std::vector<TestCase>
const& testCases, TestSpec
const& testSpec,
IConfig const& config );
593 std::vector<TestCase>
const& getAllTestCasesSorted(
IConfig const& config );
612 using size_type = std::size_t;
613 using const_iterator =
const char*;
616 static constexpr char const*
const s_empty =
"";
618 char const* m_start = s_empty;
619 size_type m_size = 0;
622 constexpr StringRef()
noexcept =
default;
624 StringRef(
char const* rawChars )
noexcept;
626 constexpr StringRef(
char const* rawChars, size_type size ) noexcept
627 : m_start( rawChars ),
631 StringRef( std::string
const& stdString ) noexcept
632 : m_start( stdString.c_str() ),
633 m_size( stdString.size() )
636 explicit operator std::string()
const {
637 return std::string(m_start, m_size);
641 auto operator == (
StringRef const& other )
const noexcept -> bool;
642 auto operator != (
StringRef const& other)
const noexcept ->
bool {
643 return !(*
this == other);
646 auto operator[] ( size_type index )
const noexcept ->
char {
647 assert(index < m_size);
648 return m_start[index];
652 constexpr auto empty()
const noexcept ->
bool {
655 constexpr auto size()
const noexcept -> size_type {
661 auto c_str()
const ->
char const*;
667 auto substr( size_type start, size_type length )
const noexcept ->
StringRef;
670 auto data()
const noexcept ->
char const*;
672 constexpr auto isNullTerminated()
const noexcept ->
bool {
673 return m_start[m_size] ==
'\0';
677 constexpr const_iterator begin()
const {
return m_start; }
678 constexpr const_iterator end()
const {
return m_start + m_size; }
681 auto operator += ( std::string& lhs,
StringRef const& sr ) -> std::string&;
682 auto operator << ( std::ostream& os,
StringRef const& sr ) -> std::ostream&;
684 constexpr auto operator "" _sr(
char const* rawChars, std::size_t size )
noexcept ->
StringRef {
689constexpr auto operator "" _catch_sr(
char const* rawChars, std::size_t size )
noexcept ->
Catch::StringRef {
697#define CATCH_RECURSION_LEVEL0(...) __VA_ARGS__
698#define CATCH_RECURSION_LEVEL1(...) CATCH_RECURSION_LEVEL0(CATCH_RECURSION_LEVEL0(CATCH_RECURSION_LEVEL0(__VA_ARGS__)))
699#define CATCH_RECURSION_LEVEL2(...) CATCH_RECURSION_LEVEL1(CATCH_RECURSION_LEVEL1(CATCH_RECURSION_LEVEL1(__VA_ARGS__)))
700#define CATCH_RECURSION_LEVEL3(...) CATCH_RECURSION_LEVEL2(CATCH_RECURSION_LEVEL2(CATCH_RECURSION_LEVEL2(__VA_ARGS__)))
701#define CATCH_RECURSION_LEVEL4(...) CATCH_RECURSION_LEVEL3(CATCH_RECURSION_LEVEL3(CATCH_RECURSION_LEVEL3(__VA_ARGS__)))
702#define CATCH_RECURSION_LEVEL5(...) CATCH_RECURSION_LEVEL4(CATCH_RECURSION_LEVEL4(CATCH_RECURSION_LEVEL4(__VA_ARGS__)))
704#ifdef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
705#define INTERNAL_CATCH_EXPAND_VARGS(...) __VA_ARGS__
707#define CATCH_RECURSION_LEVEL6(...) CATCH_RECURSION_LEVEL5(CATCH_RECURSION_LEVEL5(CATCH_RECURSION_LEVEL5(__VA_ARGS__)))
708#define CATCH_RECURSE(...) CATCH_RECURSION_LEVEL6(CATCH_RECURSION_LEVEL6(__VA_ARGS__))
710#define CATCH_RECURSE(...) CATCH_RECURSION_LEVEL5(__VA_ARGS__)
713#define CATCH_REC_END(...)
717#define CATCH_DEFER(id) id CATCH_EMPTY()
719#define CATCH_REC_GET_END2() 0, CATCH_REC_END
720#define CATCH_REC_GET_END1(...) CATCH_REC_GET_END2
721#define CATCH_REC_GET_END(...) CATCH_REC_GET_END1
722#define CATCH_REC_NEXT0(test, next, ...) next CATCH_REC_OUT
723#define CATCH_REC_NEXT1(test, next) CATCH_DEFER ( CATCH_REC_NEXT0 ) ( test, next, 0)
724#define CATCH_REC_NEXT(test, next) CATCH_REC_NEXT1(CATCH_REC_GET_END test, next)
726#define CATCH_REC_LIST0(f, x, peek, ...) , f(x) CATCH_DEFER ( CATCH_REC_NEXT(peek, CATCH_REC_LIST1) ) ( f, peek, __VA_ARGS__ )
727#define CATCH_REC_LIST1(f, x, peek, ...) , f(x) CATCH_DEFER ( CATCH_REC_NEXT(peek, CATCH_REC_LIST0) ) ( f, peek, __VA_ARGS__ )
728#define CATCH_REC_LIST2(f, x, peek, ...) f(x) CATCH_DEFER ( CATCH_REC_NEXT(peek, CATCH_REC_LIST1) ) ( f, peek, __VA_ARGS__ )
730#define CATCH_REC_LIST0_UD(f, userdata, x, peek, ...) , f(userdata, x) CATCH_DEFER ( CATCH_REC_NEXT(peek, CATCH_REC_LIST1_UD) ) ( f, userdata, peek, __VA_ARGS__ )
731#define CATCH_REC_LIST1_UD(f, userdata, x, peek, ...) , f(userdata, x) CATCH_DEFER ( CATCH_REC_NEXT(peek, CATCH_REC_LIST0_UD) ) ( f, userdata, peek, __VA_ARGS__ )
732#define CATCH_REC_LIST2_UD(f, userdata, x, peek, ...) f(userdata, x) CATCH_DEFER ( CATCH_REC_NEXT(peek, CATCH_REC_LIST1_UD) ) ( f, userdata, peek, __VA_ARGS__ )
737#define CATCH_REC_LIST_UD(f, userdata, ...) CATCH_RECURSE(CATCH_REC_LIST2_UD(f, userdata, __VA_ARGS__, ()()(), ()()(), ()()(), 0))
739#define CATCH_REC_LIST(f, ...) CATCH_RECURSE(CATCH_REC_LIST2(f, __VA_ARGS__, ()()(), ()()(), ()()(), 0))
741#define INTERNAL_CATCH_EXPAND1(param) INTERNAL_CATCH_EXPAND2(param)
742#define INTERNAL_CATCH_EXPAND2(...) INTERNAL_CATCH_NO## __VA_ARGS__
743#define INTERNAL_CATCH_DEF(...) INTERNAL_CATCH_DEF __VA_ARGS__
744#define INTERNAL_CATCH_NOINTERNAL_CATCH_DEF
745#define INTERNAL_CATCH_STRINGIZE(...) INTERNAL_CATCH_STRINGIZE2(__VA_ARGS__)
746#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
747#define INTERNAL_CATCH_STRINGIZE2(...) #__VA_ARGS__
748#define INTERNAL_CATCH_STRINGIZE_WITHOUT_PARENS(param) INTERNAL_CATCH_STRINGIZE(INTERNAL_CATCH_REMOVE_PARENS(param))
751#define INTERNAL_CATCH_STRINGIZE2(...) INTERNAL_CATCH_STRINGIZE3(__VA_ARGS__)
752#define INTERNAL_CATCH_STRINGIZE3(...) #__VA_ARGS__
753#define INTERNAL_CATCH_STRINGIZE_WITHOUT_PARENS(param) (INTERNAL_CATCH_STRINGIZE(INTERNAL_CATCH_REMOVE_PARENS(param)) + 1)
756#define INTERNAL_CATCH_MAKE_NAMESPACE2(...) ns_##__VA_ARGS__
757#define INTERNAL_CATCH_MAKE_NAMESPACE(name) INTERNAL_CATCH_MAKE_NAMESPACE2(name)
759#define INTERNAL_CATCH_REMOVE_PARENS(...) INTERNAL_CATCH_EXPAND1(INTERNAL_CATCH_DEF __VA_ARGS__)
761#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
762#define INTERNAL_CATCH_MAKE_TYPE_LIST2(...) decltype(get_wrapper<INTERNAL_CATCH_REMOVE_PARENS_GEN(__VA_ARGS__)>())
763#define INTERNAL_CATCH_MAKE_TYPE_LIST(...) INTERNAL_CATCH_MAKE_TYPE_LIST2(INTERNAL_CATCH_REMOVE_PARENS(__VA_ARGS__))
765#define INTERNAL_CATCH_MAKE_TYPE_LIST2(...) INTERNAL_CATCH_EXPAND_VARGS(decltype(get_wrapper<INTERNAL_CATCH_REMOVE_PARENS_GEN(__VA_ARGS__)>()))
766#define INTERNAL_CATCH_MAKE_TYPE_LIST(...) INTERNAL_CATCH_EXPAND_VARGS(INTERNAL_CATCH_MAKE_TYPE_LIST2(INTERNAL_CATCH_REMOVE_PARENS(__VA_ARGS__)))
769#define INTERNAL_CATCH_MAKE_TYPE_LISTS_FROM_TYPES(...)\
770 CATCH_REC_LIST(INTERNAL_CATCH_MAKE_TYPE_LIST,__VA_ARGS__)
772#define INTERNAL_CATCH_REMOVE_PARENS_1_ARG(_0) INTERNAL_CATCH_REMOVE_PARENS(_0)
773#define INTERNAL_CATCH_REMOVE_PARENS_2_ARG(_0, _1) INTERNAL_CATCH_REMOVE_PARENS(_0), INTERNAL_CATCH_REMOVE_PARENS_1_ARG(_1)
774#define INTERNAL_CATCH_REMOVE_PARENS_3_ARG(_0, _1, _2) INTERNAL_CATCH_REMOVE_PARENS(_0), INTERNAL_CATCH_REMOVE_PARENS_2_ARG(_1, _2)
775#define INTERNAL_CATCH_REMOVE_PARENS_4_ARG(_0, _1, _2, _3) INTERNAL_CATCH_REMOVE_PARENS(_0), INTERNAL_CATCH_REMOVE_PARENS_3_ARG(_1, _2, _3)
776#define INTERNAL_CATCH_REMOVE_PARENS_5_ARG(_0, _1, _2, _3, _4) INTERNAL_CATCH_REMOVE_PARENS(_0), INTERNAL_CATCH_REMOVE_PARENS_4_ARG(_1, _2, _3, _4)
777#define INTERNAL_CATCH_REMOVE_PARENS_6_ARG(_0, _1, _2, _3, _4, _5) INTERNAL_CATCH_REMOVE_PARENS(_0), INTERNAL_CATCH_REMOVE_PARENS_5_ARG(_1, _2, _3, _4, _5)
778#define INTERNAL_CATCH_REMOVE_PARENS_7_ARG(_0, _1, _2, _3, _4, _5, _6) INTERNAL_CATCH_REMOVE_PARENS(_0), INTERNAL_CATCH_REMOVE_PARENS_6_ARG(_1, _2, _4, _5, _6)
779#define INTERNAL_CATCH_REMOVE_PARENS_8_ARG(_0, _1, _2, _3, _4, _5, _6, _7) INTERNAL_CATCH_REMOVE_PARENS(_0), INTERNAL_CATCH_REMOVE_PARENS_7_ARG(_1, _2, _3, _4, _5, _6, _7)
780#define INTERNAL_CATCH_REMOVE_PARENS_9_ARG(_0, _1, _2, _3, _4, _5, _6, _7, _8) INTERNAL_CATCH_REMOVE_PARENS(_0), INTERNAL_CATCH_REMOVE_PARENS_8_ARG(_1, _2, _3, _4, _5, _6, _7, _8)
781#define INTERNAL_CATCH_REMOVE_PARENS_10_ARG(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9) INTERNAL_CATCH_REMOVE_PARENS(_0), INTERNAL_CATCH_REMOVE_PARENS_9_ARG(_1, _2, _3, _4, _5, _6, _7, _8, _9)
782#define INTERNAL_CATCH_REMOVE_PARENS_11_ARG(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10) INTERNAL_CATCH_REMOVE_PARENS(_0), INTERNAL_CATCH_REMOVE_PARENS_10_ARG(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10)
784#define INTERNAL_CATCH_VA_NARGS_IMPL(_0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, N, ...) N
786#define INTERNAL_CATCH_TYPE_GEN\
787 template<typename...> struct TypeList {};\
788 template<typename...Ts>\
789 constexpr auto get_wrapper() noexcept -> TypeList<Ts...> { return {}; }\
790 template<template<typename...> class...> struct TemplateTypeList{};\
791 template<template<typename...> class...Cs>\
792 constexpr auto get_wrapper() noexcept -> TemplateTypeList<Cs...> { return {}; }\
793 template<typename...>\
795 template<typename...>\
797 template<template<typename...> class, typename...>\
799 template<template<typename...> class, typename>\
802 template<typename T> \
803 struct append<T> { using type = T; };\
804 template< template<typename...> class L1, typename...E1, template<typename...> class L2, typename...E2, typename...Rest>\
805 struct append<L1<E1...>, L2<E2...>, Rest...> { using type = typename append<L1<E1...,E2...>, Rest...>::type; };\
806 template< template<typename...> class L1, typename...E1, typename...Rest>\
807 struct append<L1<E1...>, TypeList<mpl_::na>, Rest...> { using type = L1<E1...>; };\
809 template< template<typename...> class Container, template<typename...> class List, typename...elems>\
810 struct rewrap<TemplateTypeList<Container>, List<elems...>> { using type = TypeList<Container<elems...>>; };\
811 template< template<typename...> class Container, template<typename...> class List, class...Elems, typename...Elements>\
812 struct rewrap<TemplateTypeList<Container>, List<Elems...>, Elements...> { using type = typename append<TypeList<Container<Elems...>>, typename rewrap<TemplateTypeList<Container>, Elements...>::type>::type; };\
814 template<template <typename...> class Final, template< typename...> class...Containers, typename...Types>\
815 struct create<Final, TemplateTypeList<Containers...>, TypeList<Types...>> { using type = typename append<Final<>, typename rewrap<TemplateTypeList<Containers>, Types...>::type...>::type; };\
816 template<template <typename...> class Final, template <typename...> class List, typename...Ts>\
817 struct convert<Final, List<Ts...>> { using type = typename append<Final<>,TypeList<Ts>...>::type; };
819#define INTERNAL_CATCH_NTTP_1(signature, ...)\
820 template<INTERNAL_CATCH_REMOVE_PARENS(signature)> struct Nttp{};\
821 template<INTERNAL_CATCH_REMOVE_PARENS(signature)>\
822 constexpr auto get_wrapper() noexcept -> Nttp<__VA_ARGS__> { return {}; } \
823 template<template<INTERNAL_CATCH_REMOVE_PARENS(signature)> class...> struct NttpTemplateTypeList{};\
824 template<template<INTERNAL_CATCH_REMOVE_PARENS(signature)> class...Cs>\
825 constexpr auto get_wrapper() noexcept -> NttpTemplateTypeList<Cs...> { return {}; } \
827 template< template<INTERNAL_CATCH_REMOVE_PARENS(signature)> class Container, template<INTERNAL_CATCH_REMOVE_PARENS(signature)> class List, INTERNAL_CATCH_REMOVE_PARENS(signature)>\
828 struct rewrap<NttpTemplateTypeList<Container>, List<__VA_ARGS__>> { using type = TypeList<Container<__VA_ARGS__>>; };\
829 template< template<INTERNAL_CATCH_REMOVE_PARENS(signature)> class Container, template<INTERNAL_CATCH_REMOVE_PARENS(signature)> class List, INTERNAL_CATCH_REMOVE_PARENS(signature), typename...Elements>\
830 struct rewrap<NttpTemplateTypeList<Container>, List<__VA_ARGS__>, Elements...> { using type = typename append<TypeList<Container<__VA_ARGS__>>, typename rewrap<NttpTemplateTypeList<Container>, Elements...>::type>::type; };\
831 template<template <typename...> class Final, template<INTERNAL_CATCH_REMOVE_PARENS(signature)> class...Containers, typename...Types>\
832 struct create<Final, NttpTemplateTypeList<Containers...>, TypeList<Types...>> { using type = typename append<Final<>, typename rewrap<NttpTemplateTypeList<Containers>, Types...>::type...>::type; };
834#define INTERNAL_CATCH_DECLARE_SIG_TEST0(TestName)
835#define INTERNAL_CATCH_DECLARE_SIG_TEST1(TestName, signature)\
836 template<INTERNAL_CATCH_REMOVE_PARENS(signature)>\
837 static void TestName()
838#define INTERNAL_CATCH_DECLARE_SIG_TEST_X(TestName, signature, ...)\
839 template<INTERNAL_CATCH_REMOVE_PARENS(signature)>\
840 static void TestName()
842#define INTERNAL_CATCH_DEFINE_SIG_TEST0(TestName)
843#define INTERNAL_CATCH_DEFINE_SIG_TEST1(TestName, signature)\
844 template<INTERNAL_CATCH_REMOVE_PARENS(signature)>\
845 static void TestName()
846#define INTERNAL_CATCH_DEFINE_SIG_TEST_X(TestName, signature,...)\
847 template<INTERNAL_CATCH_REMOVE_PARENS(signature)>\
848 static void TestName()
850#define INTERNAL_CATCH_NTTP_REGISTER0(TestFunc, signature)\
851 template<typename Type>\
852 void reg_test(TypeList<Type>, Catch::NameAndTags nameAndTags)\
854 Catch::AutoReg( Catch::makeTestInvoker(&TestFunc<Type>), CATCH_INTERNAL_LINEINFO, Catch::StringRef(), nameAndTags);\
857#define INTERNAL_CATCH_NTTP_REGISTER(TestFunc, signature, ...)\
858 template<INTERNAL_CATCH_REMOVE_PARENS(signature)>\
859 void reg_test(Nttp<__VA_ARGS__>, Catch::NameAndTags nameAndTags)\
861 Catch::AutoReg( Catch::makeTestInvoker(&TestFunc<__VA_ARGS__>), CATCH_INTERNAL_LINEINFO, Catch::StringRef(), nameAndTags);\
864#define INTERNAL_CATCH_NTTP_REGISTER_METHOD0(TestName, signature, ...)\
865 template<typename Type>\
866 void reg_test(TypeList<Type>, Catch::StringRef className, Catch::NameAndTags nameAndTags)\
868 Catch::AutoReg( Catch::makeTestInvoker(&TestName<Type>::test), CATCH_INTERNAL_LINEINFO, className, nameAndTags);\
871#define INTERNAL_CATCH_NTTP_REGISTER_METHOD(TestName, signature, ...)\
872 template<INTERNAL_CATCH_REMOVE_PARENS(signature)>\
873 void reg_test(Nttp<__VA_ARGS__>, Catch::StringRef className, Catch::NameAndTags nameAndTags)\
875 Catch::AutoReg( Catch::makeTestInvoker(&TestName<__VA_ARGS__>::test), CATCH_INTERNAL_LINEINFO, className, nameAndTags);\
878#define INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD0(TestName, ClassName)
879#define INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD1(TestName, ClassName, signature)\
880 template<typename TestType> \
881 struct TestName : INTERNAL_CATCH_REMOVE_PARENS(ClassName)<TestType> { \
885#define INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X(TestName, ClassName, signature, ...)\
886 template<INTERNAL_CATCH_REMOVE_PARENS(signature)> \
887 struct TestName : INTERNAL_CATCH_REMOVE_PARENS(ClassName)<__VA_ARGS__> { \
891#define INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD0(TestName)
892#define INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD1(TestName, signature)\
893 template<typename TestType> \
894 void INTERNAL_CATCH_MAKE_NAMESPACE(TestName)::TestName<TestType>::test()
895#define INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X(TestName, signature, ...)\
896 template<INTERNAL_CATCH_REMOVE_PARENS(signature)> \
897 void INTERNAL_CATCH_MAKE_NAMESPACE(TestName)::TestName<__VA_ARGS__>::test()
899#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
900#define INTERNAL_CATCH_NTTP_0
901#define INTERNAL_CATCH_NTTP_GEN(...) INTERNAL_CATCH_VA_NARGS_IMPL(__VA_ARGS__, INTERNAL_CATCH_NTTP_1(__VA_ARGS__), INTERNAL_CATCH_NTTP_1(__VA_ARGS__), INTERNAL_CATCH_NTTP_1(__VA_ARGS__), INTERNAL_CATCH_NTTP_1(__VA_ARGS__), INTERNAL_CATCH_NTTP_1(__VA_ARGS__), INTERNAL_CATCH_NTTP_1( __VA_ARGS__), INTERNAL_CATCH_NTTP_1( __VA_ARGS__), INTERNAL_CATCH_NTTP_1( __VA_ARGS__), INTERNAL_CATCH_NTTP_1( __VA_ARGS__),INTERNAL_CATCH_NTTP_1( __VA_ARGS__), INTERNAL_CATCH_NTTP_0)
902#define INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD(TestName, ...) INTERNAL_CATCH_VA_NARGS_IMPL( "dummy", __VA_ARGS__, INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X,INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X,INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X,INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD1, INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD0)(TestName, __VA_ARGS__)
903#define INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD(TestName, ClassName, ...) INTERNAL_CATCH_VA_NARGS_IMPL( "dummy", __VA_ARGS__, INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X,INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X,INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X,INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD1, INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD0)(TestName, ClassName, __VA_ARGS__)
904#define INTERNAL_CATCH_NTTP_REG_METHOD_GEN(TestName, ...) INTERNAL_CATCH_VA_NARGS_IMPL( "dummy", __VA_ARGS__, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD0, INTERNAL_CATCH_NTTP_REGISTER_METHOD0)(TestName, __VA_ARGS__)
905#define INTERNAL_CATCH_NTTP_REG_GEN(TestFunc, ...) INTERNAL_CATCH_VA_NARGS_IMPL( "dummy", __VA_ARGS__, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER0, INTERNAL_CATCH_NTTP_REGISTER0)(TestFunc, __VA_ARGS__)
906#define INTERNAL_CATCH_DEFINE_SIG_TEST(TestName, ...) INTERNAL_CATCH_VA_NARGS_IMPL( "dummy", __VA_ARGS__, INTERNAL_CATCH_DEFINE_SIG_TEST_X, INTERNAL_CATCH_DEFINE_SIG_TEST_X, INTERNAL_CATCH_DEFINE_SIG_TEST_X, INTERNAL_CATCH_DEFINE_SIG_TEST_X, INTERNAL_CATCH_DEFINE_SIG_TEST_X, INTERNAL_CATCH_DEFINE_SIG_TEST_X, INTERNAL_CATCH_DEFINE_SIG_TEST_X, INTERNAL_CATCH_DEFINE_SIG_TEST_X,INTERNAL_CATCH_DEFINE_SIG_TEST_X,INTERNAL_CATCH_DEFINE_SIG_TEST1, INTERNAL_CATCH_DEFINE_SIG_TEST0)(TestName, __VA_ARGS__)
907#define INTERNAL_CATCH_DECLARE_SIG_TEST(TestName, ...) INTERNAL_CATCH_VA_NARGS_IMPL( "dummy", __VA_ARGS__, INTERNAL_CATCH_DECLARE_SIG_TEST_X,INTERNAL_CATCH_DECLARE_SIG_TEST_X, INTERNAL_CATCH_DECLARE_SIG_TEST_X, INTERNAL_CATCH_DECLARE_SIG_TEST_X, INTERNAL_CATCH_DECLARE_SIG_TEST_X, INTERNAL_CATCH_DECLARE_SIG_TEST_X, INTERNAL_CATCH_DEFINE_SIG_TEST_X,INTERNAL_CATCH_DECLARE_SIG_TEST_X,INTERNAL_CATCH_DECLARE_SIG_TEST_X, INTERNAL_CATCH_DECLARE_SIG_TEST1, INTERNAL_CATCH_DECLARE_SIG_TEST0)(TestName, __VA_ARGS__)
908#define INTERNAL_CATCH_REMOVE_PARENS_GEN(...) INTERNAL_CATCH_VA_NARGS_IMPL(__VA_ARGS__, INTERNAL_CATCH_REMOVE_PARENS_11_ARG,INTERNAL_CATCH_REMOVE_PARENS_10_ARG,INTERNAL_CATCH_REMOVE_PARENS_9_ARG,INTERNAL_CATCH_REMOVE_PARENS_8_ARG,INTERNAL_CATCH_REMOVE_PARENS_7_ARG,INTERNAL_CATCH_REMOVE_PARENS_6_ARG,INTERNAL_CATCH_REMOVE_PARENS_5_ARG,INTERNAL_CATCH_REMOVE_PARENS_4_ARG,INTERNAL_CATCH_REMOVE_PARENS_3_ARG,INTERNAL_CATCH_REMOVE_PARENS_2_ARG,INTERNAL_CATCH_REMOVE_PARENS_1_ARG)(__VA_ARGS__)
910#define INTERNAL_CATCH_NTTP_0(signature)
911#define INTERNAL_CATCH_NTTP_GEN(...) INTERNAL_CATCH_EXPAND_VARGS(INTERNAL_CATCH_VA_NARGS_IMPL(__VA_ARGS__, INTERNAL_CATCH_NTTP_1, INTERNAL_CATCH_NTTP_1, INTERNAL_CATCH_NTTP_1, INTERNAL_CATCH_NTTP_1, INTERNAL_CATCH_NTTP_1, INTERNAL_CATCH_NTTP_1, INTERNAL_CATCH_NTTP_1, INTERNAL_CATCH_NTTP_1, INTERNAL_CATCH_NTTP_1,INTERNAL_CATCH_NTTP_1, INTERNAL_CATCH_NTTP_0)( __VA_ARGS__))
912#define INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD(TestName, ...) INTERNAL_CATCH_EXPAND_VARGS(INTERNAL_CATCH_VA_NARGS_IMPL( "dummy", __VA_ARGS__, INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X,INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X,INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X,INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD1, INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD0)(TestName, __VA_ARGS__))
913#define INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD(TestName, ClassName, ...) INTERNAL_CATCH_EXPAND_VARGS(INTERNAL_CATCH_VA_NARGS_IMPL( "dummy", __VA_ARGS__, INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X,INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X,INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X,INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD_X, INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD1, INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD0)(TestName, ClassName, __VA_ARGS__))
914#define INTERNAL_CATCH_NTTP_REG_METHOD_GEN(TestName, ...) INTERNAL_CATCH_EXPAND_VARGS(INTERNAL_CATCH_VA_NARGS_IMPL( "dummy", __VA_ARGS__, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD, INTERNAL_CATCH_NTTP_REGISTER_METHOD0, INTERNAL_CATCH_NTTP_REGISTER_METHOD0)(TestName, __VA_ARGS__))
915#define INTERNAL_CATCH_NTTP_REG_GEN(TestFunc, ...) INTERNAL_CATCH_EXPAND_VARGS(INTERNAL_CATCH_VA_NARGS_IMPL( "dummy", __VA_ARGS__, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER, INTERNAL_CATCH_NTTP_REGISTER0, INTERNAL_CATCH_NTTP_REGISTER0)(TestFunc, __VA_ARGS__))
916#define INTERNAL_CATCH_DEFINE_SIG_TEST(TestName, ...) INTERNAL_CATCH_EXPAND_VARGS(INTERNAL_CATCH_VA_NARGS_IMPL( "dummy", __VA_ARGS__, INTERNAL_CATCH_DEFINE_SIG_TEST_X, INTERNAL_CATCH_DEFINE_SIG_TEST_X, INTERNAL_CATCH_DEFINE_SIG_TEST_X, INTERNAL_CATCH_DEFINE_SIG_TEST_X, INTERNAL_CATCH_DEFINE_SIG_TEST_X, INTERNAL_CATCH_DEFINE_SIG_TEST_X, INTERNAL_CATCH_DEFINE_SIG_TEST_X, INTERNAL_CATCH_DEFINE_SIG_TEST_X,INTERNAL_CATCH_DEFINE_SIG_TEST_X,INTERNAL_CATCH_DEFINE_SIG_TEST1, INTERNAL_CATCH_DEFINE_SIG_TEST0)(TestName, __VA_ARGS__))
917#define INTERNAL_CATCH_DECLARE_SIG_TEST(TestName, ...) INTERNAL_CATCH_EXPAND_VARGS(INTERNAL_CATCH_VA_NARGS_IMPL( "dummy", __VA_ARGS__, INTERNAL_CATCH_DECLARE_SIG_TEST_X,INTERNAL_CATCH_DECLARE_SIG_TEST_X, INTERNAL_CATCH_DECLARE_SIG_TEST_X, INTERNAL_CATCH_DECLARE_SIG_TEST_X, INTERNAL_CATCH_DECLARE_SIG_TEST_X, INTERNAL_CATCH_DECLARE_SIG_TEST_X, INTERNAL_CATCH_DEFINE_SIG_TEST_X,INTERNAL_CATCH_DECLARE_SIG_TEST_X,INTERNAL_CATCH_DECLARE_SIG_TEST_X, INTERNAL_CATCH_DECLARE_SIG_TEST1, INTERNAL_CATCH_DECLARE_SIG_TEST0)(TestName, __VA_ARGS__))
918#define INTERNAL_CATCH_REMOVE_PARENS_GEN(...) INTERNAL_CATCH_EXPAND_VARGS(INTERNAL_CATCH_VA_NARGS_IMPL(__VA_ARGS__, INTERNAL_CATCH_REMOVE_PARENS_11_ARG,INTERNAL_CATCH_REMOVE_PARENS_10_ARG,INTERNAL_CATCH_REMOVE_PARENS_9_ARG,INTERNAL_CATCH_REMOVE_PARENS_8_ARG,INTERNAL_CATCH_REMOVE_PARENS_7_ARG,INTERNAL_CATCH_REMOVE_PARENS_6_ARG,INTERNAL_CATCH_REMOVE_PARENS_5_ARG,INTERNAL_CATCH_REMOVE_PARENS_4_ARG,INTERNAL_CATCH_REMOVE_PARENS_3_ARG,INTERNAL_CATCH_REMOVE_PARENS_2_ARG,INTERNAL_CATCH_REMOVE_PARENS_1_ARG)(__VA_ARGS__))
925#include <type_traits>
933 template <
typename Fun,
typename... Args>
935 template <
typename...>
936 std::false_type
static test(...);
939 template <
typename T>
942 template <
typename Fun,
typename... Args>
943 struct is_callable<Fun(Args...)> : decltype(is_callable_tester::test<Fun, Args...>(0)) {};
945#if defined(__cpp_lib_is_invocable) && __cpp_lib_is_invocable >= 201703
948 template <
typename Func,
typename... U>
949 using FunctionReturnType = std::remove_reference_t<std::remove_cv_t<std::invoke_result_t<Func, U...>>>;
952 template <
typename Func,
typename... U>
953 using FunctionReturnType =
typename std::remove_reference<
typename std::remove_cv<
typename std::result_of<Func(U...)>::type>::type>::type;
967 void (
C::*m_testAsMethod)();
971 void invoke()
const override {
973 (obj.*m_testAsMethod)();
977auto makeTestInvoker(
void(*testAsFunction)() ) noexcept ->
ITestInvoker*;
980auto makeTestInvoker(
void (
C::*testAsMethod)() ) noexcept ->
ITestInvoker* {
997#if defined(CATCH_CONFIG_DISABLE)
998 #define INTERNAL_CATCH_TESTCASE_NO_REGISTRATION( TestName, ... ) \
999 static void TestName()
1000 #define INTERNAL_CATCH_TESTCASE_METHOD_NO_REGISTRATION( TestName, ClassName, ... ) \
1002 struct TestName : INTERNAL_CATCH_REMOVE_PARENS(ClassName) { \
1006 void TestName::test()
1007 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_NO_REGISTRATION_2( TestName, TestFunc, Name, Tags, Signature, ... ) \
1008 INTERNAL_CATCH_DEFINE_SIG_TEST(TestFunc, INTERNAL_CATCH_REMOVE_PARENS(Signature))
1009 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_NO_REGISTRATION_2( TestNameClass, TestName, ClassName, Name, Tags, Signature, ... ) \
1011 namespace INTERNAL_CATCH_MAKE_NAMESPACE(TestName) { \
1012 INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD(TestName, ClassName, INTERNAL_CATCH_REMOVE_PARENS(Signature));\
1015 INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD(TestName, INTERNAL_CATCH_REMOVE_PARENS(Signature))
1017 #ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
1018 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_NO_REGISTRATION(Name, Tags, ...) \
1019 INTERNAL_CATCH_TEMPLATE_TEST_CASE_NO_REGISTRATION_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), Name, Tags, typename TestType, __VA_ARGS__ )
1021 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_NO_REGISTRATION(Name, Tags, ...) \
1022 INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_NO_REGISTRATION_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), Name, Tags, typename TestType, __VA_ARGS__ ) )
1025 #ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
1026 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_SIG_NO_REGISTRATION(Name, Tags, Signature, ...) \
1027 INTERNAL_CATCH_TEMPLATE_TEST_CASE_NO_REGISTRATION_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), Name, Tags, Signature, __VA_ARGS__ )
1029 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_SIG_NO_REGISTRATION(Name, Tags, Signature, ...) \
1030 INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_NO_REGISTRATION_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), Name, Tags, Signature, __VA_ARGS__ ) )
1033 #ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
1034 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_NO_REGISTRATION( ClassName, Name, Tags,... ) \
1035 INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_NO_REGISTRATION_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____C_L_A_S_S____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ) , ClassName, Name, Tags, typename T, __VA_ARGS__ )
1037 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_NO_REGISTRATION( ClassName, Name, Tags,... ) \
1038 INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_NO_REGISTRATION_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____C_L_A_S_S____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ) , ClassName, Name, Tags, typename T, __VA_ARGS__ ) )
1041 #ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
1042 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_SIG_NO_REGISTRATION( ClassName, Name, Tags, Signature, ... ) \
1043 INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_NO_REGISTRATION_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____C_L_A_S_S____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ) , ClassName, Name, Tags, Signature, __VA_ARGS__ )
1045 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_SIG_NO_REGISTRATION( ClassName, Name, Tags, Signature, ... ) \
1046 INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_NO_REGISTRATION_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____C_L_A_S_S____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ) , ClassName, Name, Tags, Signature, __VA_ARGS__ ) )
1051 #define INTERNAL_CATCH_TESTCASE2( TestName, ... ) \
1052 static void TestName(); \
1053 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
1054 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
1055 namespace{ Catch::AutoReg INTERNAL_CATCH_UNIQUE_NAME( autoRegistrar )( Catch::makeTestInvoker( &TestName ), CATCH_INTERNAL_LINEINFO, Catch::StringRef(), Catch::NameAndTags{ __VA_ARGS__ } ); } \
1056 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION \
1057 static void TestName()
1058 #define INTERNAL_CATCH_TESTCASE( ... ) \
1059 INTERNAL_CATCH_TESTCASE2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ), __VA_ARGS__ )
1062 #define INTERNAL_CATCH_METHOD_AS_TEST_CASE( QualifiedMethod, ... ) \
1063 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
1064 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
1065 namespace{ Catch::AutoReg INTERNAL_CATCH_UNIQUE_NAME( autoRegistrar )( Catch::makeTestInvoker( &QualifiedMethod ), CATCH_INTERNAL_LINEINFO, "&" #QualifiedMethod, Catch::NameAndTags{ __VA_ARGS__ } ); }
\
1066 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION
1069 #define INTERNAL_CATCH_TEST_CASE_METHOD2( TestName, ClassName, ... )\
1070 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
1071 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
1073 struct TestName : INTERNAL_CATCH_REMOVE_PARENS(ClassName) { \
1076 Catch::AutoReg INTERNAL_CATCH_UNIQUE_NAME( autoRegistrar ) ( Catch::makeTestInvoker( &TestName::test ), CATCH_INTERNAL_LINEINFO, #ClassName, Catch::NameAndTags{ __VA_ARGS__ } ); \
1078 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION \
1079 void TestName::test()
1080 #define INTERNAL_CATCH_TEST_CASE_METHOD( ClassName, ... ) \
1081 INTERNAL_CATCH_TEST_CASE_METHOD2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ), ClassName, __VA_ARGS__ )
1084 #define INTERNAL_CATCH_REGISTER_TESTCASE( Function, ... ) \
1085 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
1086 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
1087 Catch::AutoReg INTERNAL_CATCH_UNIQUE_NAME( autoRegistrar )( Catch::makeTestInvoker( Function ), CATCH_INTERNAL_LINEINFO, Catch::StringRef(), Catch::NameAndTags{ __VA_ARGS__ } ); \
1088 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION
1091 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_2(TestName, TestFunc, Name, Tags, Signature, ... )\
1092 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
1093 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
1094 CATCH_INTERNAL_SUPPRESS_ZERO_VARIADIC_WARNINGS \
1095 CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS \
1096 INTERNAL_CATCH_DECLARE_SIG_TEST(TestFunc, INTERNAL_CATCH_REMOVE_PARENS(Signature));\
1098 namespace INTERNAL_CATCH_MAKE_NAMESPACE(TestName){\
1099 INTERNAL_CATCH_TYPE_GEN\
1100 INTERNAL_CATCH_NTTP_GEN(INTERNAL_CATCH_REMOVE_PARENS(Signature))\
1101 INTERNAL_CATCH_NTTP_REG_GEN(TestFunc,INTERNAL_CATCH_REMOVE_PARENS(Signature))\
1102 template<typename...Types> \
1106 constexpr char const* tmpl_types[] = {CATCH_REC_LIST(INTERNAL_CATCH_STRINGIZE_WITHOUT_PARENS, __VA_ARGS__)};\
1107 using expander = int[];\
1108 (void)expander{(reg_test(Types{}, Catch::NameAndTags{ Name " - " + std::string(tmpl_types[index]), Tags } ), index++, 0)... };
\
1111 static int INTERNAL_CATCH_UNIQUE_NAME( globalRegistrar ) = [](){\
1112 TestName<INTERNAL_CATCH_MAKE_TYPE_LISTS_FROM_TYPES(__VA_ARGS__)>();\
1117 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION \
1118 INTERNAL_CATCH_DEFINE_SIG_TEST(TestFunc,INTERNAL_CATCH_REMOVE_PARENS(Signature))
1120#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
1121 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE(Name, Tags, ...) \
1122 INTERNAL_CATCH_TEMPLATE_TEST_CASE_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), Name, Tags, typename TestType, __VA_ARGS__ )
1124 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE(Name, Tags, ...) \
1125 INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), Name, Tags, typename TestType, __VA_ARGS__ ) )
1128#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
1129 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_SIG(Name, Tags, Signature, ...) \
1130 INTERNAL_CATCH_TEMPLATE_TEST_CASE_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), Name, Tags, Signature, __VA_ARGS__ )
1132 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_SIG(Name, Tags, Signature, ...) \
1133 INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), Name, Tags, Signature, __VA_ARGS__ ) )
1136 #define INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE2(TestName, TestFuncName, Name, Tags, Signature, TmplTypes, TypesList) \
1137 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
1138 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
1139 CATCH_INTERNAL_SUPPRESS_ZERO_VARIADIC_WARNINGS \
1140 CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS \
1141 template<typename TestType> static void TestFuncName(); \
1143 namespace INTERNAL_CATCH_MAKE_NAMESPACE(TestName) { \
1144 INTERNAL_CATCH_TYPE_GEN \
1145 INTERNAL_CATCH_NTTP_GEN(INTERNAL_CATCH_REMOVE_PARENS(Signature)) \
1146 template<typename... Types> \
1148 void reg_tests() { \
1150 using expander = int[]; \
1151 constexpr char const* tmpl_types[] = {CATCH_REC_LIST(INTERNAL_CATCH_STRINGIZE_WITHOUT_PARENS, INTERNAL_CATCH_REMOVE_PARENS(TmplTypes))};\
1152 constexpr char const* types_list[] = {CATCH_REC_LIST(INTERNAL_CATCH_STRINGIZE_WITHOUT_PARENS, INTERNAL_CATCH_REMOVE_PARENS(TypesList))};\
1153 constexpr auto num_types = sizeof(types_list) / sizeof(types_list[0]);\
1154 (void)expander{(Catch::AutoReg( Catch::makeTestInvoker( &TestFuncName<Types> ), CATCH_INTERNAL_LINEINFO, Catch::StringRef(), Catch::NameAndTags{ Name " - " + std::string(tmpl_types[index / num_types]) + "<" + std::string(types_list[index % num_types]) + ">", Tags } ), index++, 0)... };
\
1157 static int INTERNAL_CATCH_UNIQUE_NAME( globalRegistrar ) = [](){ \
1158 using TestInit = typename create<TestName, decltype(get_wrapper<INTERNAL_CATCH_REMOVE_PARENS(TmplTypes)>()), TypeList<INTERNAL_CATCH_MAKE_TYPE_LISTS_FROM_TYPES(INTERNAL_CATCH_REMOVE_PARENS(TypesList))>>::type; \
1165 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION \
1166 template<typename TestType> \
1167 static void TestFuncName()
1169#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
1170 #define INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE(Name, Tags, ...)\
1171 INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE2(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), Name, Tags, typename T,__VA_ARGS__)
1173 #define INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE(Name, Tags, ...)\
1174 INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), Name, Tags, typename T, __VA_ARGS__ ) )
1177#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
1178 #define INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_SIG(Name, Tags, Signature, ...)\
1179 INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE2(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), Name, Tags, Signature, __VA_ARGS__)
1181 #define INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_SIG(Name, Tags, Signature, ...)\
1182 INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), Name, Tags, Signature, __VA_ARGS__ ) )
1185 #define INTERNAL_CATCH_TEMPLATE_LIST_TEST_CASE_2(TestName, TestFunc, Name, Tags, TmplList)\
1186 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
1187 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
1188 CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS \
1189 template<typename TestType> static void TestFunc(); \
1191 namespace INTERNAL_CATCH_MAKE_NAMESPACE(TestName){\
1192 INTERNAL_CATCH_TYPE_GEN\
1193 template<typename... Types> \
1195 void reg_tests() { \
1197 using expander = int[]; \
1198 (void)expander{(Catch::AutoReg( Catch::makeTestInvoker( &TestFunc<Types> ), CATCH_INTERNAL_LINEINFO, Catch::StringRef(), Catch::NameAndTags{ Name " - " + std::string(INTERNAL_CATCH_STRINGIZE(TmplList)) + " - " + std::to_string(index), Tags } ), index++, 0)... };
\
1201 static int INTERNAL_CATCH_UNIQUE_NAME( globalRegistrar ) = [](){ \
1202 using TestInit = typename convert<TestName, TmplList>::type; \
1208 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION \
1209 template<typename TestType> \
1210 static void TestFunc()
1212 #define INTERNAL_CATCH_TEMPLATE_LIST_TEST_CASE(Name, Tags, TmplList) \
1213 INTERNAL_CATCH_TEMPLATE_LIST_TEST_CASE_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), Name, Tags, TmplList )
1215 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_2( TestNameClass, TestName, ClassName, Name, Tags, Signature, ... ) \
1216 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
1217 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
1218 CATCH_INTERNAL_SUPPRESS_ZERO_VARIADIC_WARNINGS \
1219 CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS \
1221 namespace INTERNAL_CATCH_MAKE_NAMESPACE(TestName){ \
1222 INTERNAL_CATCH_TYPE_GEN\
1223 INTERNAL_CATCH_NTTP_GEN(INTERNAL_CATCH_REMOVE_PARENS(Signature))\
1224 INTERNAL_CATCH_DECLARE_SIG_TEST_METHOD(TestName, ClassName, INTERNAL_CATCH_REMOVE_PARENS(Signature));\
1225 INTERNAL_CATCH_NTTP_REG_METHOD_GEN(TestName, INTERNAL_CATCH_REMOVE_PARENS(Signature))\
1226 template<typename...Types> \
1227 struct TestNameClass{\
1230 constexpr char const* tmpl_types[] = {CATCH_REC_LIST(INTERNAL_CATCH_STRINGIZE_WITHOUT_PARENS, __VA_ARGS__)};\
1231 using expander = int[];\
1232 (void)expander{(reg_test(Types{}, #ClassName, Catch::NameAndTags{ Name " - " + std::string(tmpl_types[index]), Tags } ), index++, 0)... };
\
1235 static int INTERNAL_CATCH_UNIQUE_NAME( globalRegistrar ) = [](){\
1236 TestNameClass<INTERNAL_CATCH_MAKE_TYPE_LISTS_FROM_TYPES(__VA_ARGS__)>();\
1241 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION \
1242 INTERNAL_CATCH_DEFINE_SIG_TEST_METHOD(TestName, INTERNAL_CATCH_REMOVE_PARENS(Signature))
1244#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
1245 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD( ClassName, Name, Tags,... ) \
1246 INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____C_L_A_S_S____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ) , ClassName, Name, Tags, typename T, __VA_ARGS__ )
1248 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD( ClassName, Name, Tags,... ) \
1249 INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____C_L_A_S_S____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ) , ClassName, Name, Tags, typename T, __VA_ARGS__ ) )
1252#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
1253 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_SIG( ClassName, Name, Tags, Signature, ... ) \
1254 INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____C_L_A_S_S____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ) , ClassName, Name, Tags, Signature, __VA_ARGS__ )
1256 #define INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_SIG( ClassName, Name, Tags, Signature, ... ) \
1257 INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____C_L_A_S_S____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ) , ClassName, Name, Tags, Signature, __VA_ARGS__ ) )
1260 #define INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_2(TestNameClass, TestName, ClassName, Name, Tags, Signature, TmplTypes, TypesList)\
1261 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
1262 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
1263 CATCH_INTERNAL_SUPPRESS_ZERO_VARIADIC_WARNINGS \
1264 CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS \
1265 template<typename TestType> \
1266 struct TestName : INTERNAL_CATCH_REMOVE_PARENS(ClassName <TestType>) { \
1270 namespace INTERNAL_CATCH_MAKE_NAMESPACE(TestNameClass) {\
1271 INTERNAL_CATCH_TYPE_GEN \
1272 INTERNAL_CATCH_NTTP_GEN(INTERNAL_CATCH_REMOVE_PARENS(Signature))\
1273 template<typename...Types>\
1274 struct TestNameClass{\
1277 using expander = int[];\
1278 constexpr char const* tmpl_types[] = {CATCH_REC_LIST(INTERNAL_CATCH_STRINGIZE_WITHOUT_PARENS, INTERNAL_CATCH_REMOVE_PARENS(TmplTypes))};\
1279 constexpr char const* types_list[] = {CATCH_REC_LIST(INTERNAL_CATCH_STRINGIZE_WITHOUT_PARENS, INTERNAL_CATCH_REMOVE_PARENS(TypesList))};\
1280 constexpr auto num_types = sizeof(types_list) / sizeof(types_list[0]);\
1281 (void)expander{(Catch::AutoReg( Catch::makeTestInvoker( &TestName<Types>::test ), CATCH_INTERNAL_LINEINFO, #ClassName, Catch::NameAndTags{ Name " - " + std::string(tmpl_types[index / num_types]) + "<" + std::string(types_list[index % num_types]) + ">", Tags } ), index++, 0)... };
\
1284 static int INTERNAL_CATCH_UNIQUE_NAME( globalRegistrar ) = [](){\
1285 using TestInit = typename create<TestNameClass, decltype(get_wrapper<INTERNAL_CATCH_REMOVE_PARENS(TmplTypes)>()), TypeList<INTERNAL_CATCH_MAKE_TYPE_LISTS_FROM_TYPES(INTERNAL_CATCH_REMOVE_PARENS(TypesList))>>::type;\
1292 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION \
1293 template<typename TestType> \
1294 void TestName<TestType>::test()
1296#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
1297 #define INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( ClassName, Name, Tags, ... )\
1298 INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), ClassName, Name, Tags, typename T, __VA_ARGS__ )
1300 #define INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( ClassName, Name, Tags, ... )\
1301 INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), ClassName, Name, Tags, typename T,__VA_ARGS__ ) )
1304#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
1305 #define INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG( ClassName, Name, Tags, Signature, ... )\
1306 INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), ClassName, Name, Tags, Signature, __VA_ARGS__ )
1308 #define INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG( ClassName, Name, Tags, Signature, ... )\
1309 INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), ClassName, Name, Tags, Signature,__VA_ARGS__ ) )
1312 #define INTERNAL_CATCH_TEMPLATE_LIST_TEST_CASE_METHOD_2( TestNameClass, TestName, ClassName, Name, Tags, TmplList) \
1313 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
1314 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
1315 CATCH_INTERNAL_SUPPRESS_UNUSED_TEMPLATE_WARNINGS \
1316 template<typename TestType> \
1317 struct TestName : INTERNAL_CATCH_REMOVE_PARENS(ClassName <TestType>) { \
1321 namespace INTERNAL_CATCH_MAKE_NAMESPACE(TestName){ \
1322 INTERNAL_CATCH_TYPE_GEN\
1323 template<typename...Types>\
1324 struct TestNameClass{\
1327 using expander = int[];\
1328 (void)expander{(Catch::AutoReg( Catch::makeTestInvoker( &TestName<Types>::test ), CATCH_INTERNAL_LINEINFO, #ClassName, Catch::NameAndTags{ Name " - " + std::string(INTERNAL_CATCH_STRINGIZE(TmplList)) + " - " + std::to_string(index), Tags } ), index++, 0)... };
\
1331 static int INTERNAL_CATCH_UNIQUE_NAME( globalRegistrar ) = [](){\
1332 using TestInit = typename convert<TestNameClass, TmplList>::type;\
1338 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION \
1339 template<typename TestType> \
1340 void TestName<TestType>::test()
1342#define INTERNAL_CATCH_TEMPLATE_LIST_TEST_CASE_METHOD(ClassName, Name, Tags, TmplList) \
1343 INTERNAL_CATCH_TEMPLATE_LIST_TEST_CASE_METHOD_2( INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____ ), INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_M_P_L_A_T_E____T_E_S_T____F_U_N_C____ ), ClassName, Name, Tags, TmplList )
1365 ExpressionFailed = FailureBit | 1,
1366 ExplicitFailure = FailureBit | 2,
1368 Exception = 0x100 | FailureBit,
1370 ThrewException = Exception | 1,
1371 DidntThrowException = Exception | 2,
1373 FatalErrorCondition = 0x200 | FailureBit
1377 bool isOk( ResultWas::OfType resultType );
1378 bool isJustInfo(
int flags );
1384 ContinueOnFailure = 0x02,
1389 ResultDisposition::Flags operator | ( ResultDisposition::Flags lhs, ResultDisposition::Flags rhs );
1391 bool shouldContinueOnFailure(
int flags );
1392 inline bool isFalseTest(
int flags ) {
return ( flags & ResultDisposition::FalseTest ) != 0; }
1393 bool shouldSuppressFailure(
int flags );
1405 ResultDisposition::Flags resultDisposition;
1421#include <type_traits>
1431 std::ostream& cout();
1432 std::ostream& cerr();
1433 std::ostream& clog();
1439 virtual std::ostream& stream()
const = 0;
1445 std::size_t m_index;
1446 std::ostream* m_oss;
1451 auto str()
const -> std::string;
1453 template<
typename T>
1458 auto get() -> std::ostream& {
return *m_oss; }
1472 std::vector<std::pair<int, StringRef>> m_values;
1485 template<
typename E>
1487 static_assert(
sizeof(int) >=
sizeof(
E),
"Cannot serialize enum to int");
1488 std::vector<int> intValues;
1489 intValues.reserve( values.size() );
1490 for(
auto enumValue : values )
1491 intValues.push_back(
static_cast<int>( enumValue ) );
1492 return registerEnum( enumName, allEnums, intValues );
1500#ifdef CATCH_CONFIG_CPP17_STRING_VIEW
1501#include <string_view>
1507#import <Foundation/Foundation.h>
1510#define CATCH_ARC_ENABLED __has_feature(objc_arc)
1512#define CATCH_ARC_ENABLED 0
1515void arcSafeRelease( NSObject* obj );
1516id performOptionalSelector(
id obj,
SEL sel );
1518#if !CATCH_ARC_ENABLED
1519inline void arcSafeRelease( NSObject* obj ) {
1522inline id performOptionalSelector(
id obj,
SEL sel ) {
1523 if( [obj respondsToSelector: sel] )
1524 return [obj performSelector: sel];
1527#define CATCH_UNSAFE_UNRETAINED
1528#define CATCH_ARC_STRONG
1530inline void arcSafeRelease( NSObject* ){}
1531inline id performOptionalSelector(
id obj,
SEL sel ) {
1533#pragma clang diagnostic push
1534#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
1536 if( [obj respondsToSelector: sel] )
1537 return [obj performSelector: sel];
1539#pragma clang diagnostic pop
1543#define CATCH_UNSAFE_UNRETAINED __unsafe_unretained
1544#define CATCH_ARC_STRONG __strong
1551#pragma warning(push)
1552#pragma warning(disable:4180)
1558 extern const std::string unprintableString;
1560 std::string rawMemoryToString(
const void *
object, std::size_t size );
1562 template<
typename T>
1563 std::string rawMemoryToString(
const T&
object ) {
1564 return rawMemoryToString( &
object,
sizeof(
object) );
1567 template<
typename T>
1569 template<
typename Stream,
typename U>
1570 static auto test(
int)
1571 ->
decltype(std::declval<Stream&>() << std::declval<U>(), std::true_type());
1573 template<
typename,
typename>
1574 static auto test(...)->std::false_type;
1577 static const bool value =
decltype(test<std::ostream, const T&>(0))::value;
1580 template<
typename E>
1581 std::string convertUnknownEnumToString(
E e );
1583 template<
typename T>
1584 typename std::enable_if<
1585 !std::is_enum<T>::value && !std::is_base_of<std::exception, T>::value,
1586 std::string>::type convertUnstreamable( T
const& ) {
1587 return Detail::unprintableString;
1589 template<
typename T>
1590 typename std::enable_if<
1591 !std::is_enum<T>::value && std::is_base_of<std::exception, T>::value,
1592 std::string>::type convertUnstreamable(T
const& ex) {
1596 template<
typename T>
1597 typename std::enable_if<
1598 std::is_enum<T>::value
1599 , std::string>::type convertUnstreamable( T
const& value ) {
1600 return convertUnknownEnumToString( value );
1603#if defined(_MANAGED)
1605 template<
typename T>
1606 std::string clrReferenceToString( T^ ref ) {
1608 return std::string(
"null");
1609 auto bytes = System::Text::Encoding::UTF8->GetBytes(ref->ToString());
1610 cli::pin_ptr<System::Byte> p = &bytes[0];
1611 return std::string(
reinterpret_cast<char const *
>(p), bytes->Length);
1618 template <
typename T,
typename =
void>
1620 template <
typename Fake = T>
1622 typename std::enable_if<::Catch::Detail::IsStreamInsertable<Fake>::value, std::string>::type
1623 convert(
const Fake& value) {
1627 rss.operator<<(value);
1631 template <
typename Fake = T>
1633 typename std::enable_if<!::Catch::Detail::IsStreamInsertable<Fake>::value, std::string>::type
1634 convert(
const Fake& value ) {
1635#if !defined(CATCH_CONFIG_FALLBACK_STRINGIFIER)
1636 return Detail::convertUnstreamable(value);
1638 return CATCH_CONFIG_FALLBACK_STRINGIFIER(value);
1647 template <
typename T>
1648 std::string stringify(
const T& e) {
1649 return ::Catch::StringMaker<typename std::remove_cv<typename std::remove_reference<T>::type>::type>::convert(e);
1652 template<
typename E>
1653 std::string convertUnknownEnumToString(
E e ) {
1654 return ::Catch::Detail::stringify(
static_cast<typename std::underlying_type<E>::type
>(e));
1657#if defined(_MANAGED)
1658 template <
typename T>
1659 std::string stringify( T^ e ) {
1660 return ::Catch::StringMaker<T^>::convert(e);
1670 static std::string convert(
const std::string& str);
1673#ifdef CATCH_CONFIG_CPP17_STRING_VIEW
1676 static std::string convert(std::string_view str);
1682 static std::string convert(
char const * str);
1686 static std::string convert(
char * str);
1689#ifdef CATCH_CONFIG_WCHAR
1692 static std::string convert(
const std::wstring& wstr);
1695# ifdef CATCH_CONFIG_CPP17_STRING_VIEW
1698 static std::string convert(std::wstring_view str);
1704 static std::string convert(
wchar_t const * str);
1708 static std::string convert(
wchar_t * str);
1716 static std::string convert(
char const* str) {
1717 return ::Catch::Detail::stringify(std::string{ str });
1722 static std::string convert(
signed char const* str) {
1723 return ::Catch::Detail::stringify(std::string{
reinterpret_cast<char const *
>(str) });
1728 static std::string convert(
unsigned char const* str) {
1729 return ::Catch::Detail::stringify(std::string{
reinterpret_cast<char const *
>(str) });
1733#if defined(CATCH_CONFIG_CPP17_BYTE)
1736 static std::string convert(std::byte value);
1741 static std::string convert(
int value);
1745 static std::string convert(
long value);
1749 static std::string convert(
long long value);
1753 static std::string convert(
unsigned int value);
1757 static std::string convert(
unsigned long value);
1761 static std::string convert(
unsigned long long value);
1766 static std::string convert(
bool b);
1771 static std::string convert(
char c);
1775 static std::string convert(
signed char c);
1779 static std::string convert(
unsigned char c);
1784 static std::string convert(std::nullptr_t);
1789 static std::string convert(
float value);
1790 static int precision;
1795 static std::string convert(
double value);
1796 static int precision;
1799 template <
typename T>
1801 template <
typename U>
1802 static std::string convert(U* p) {
1804 return ::Catch::Detail::rawMemoryToString(p);
1811 template <
typename R,
typename C>
1813 static std::string convert(R
C::* p) {
1815 return ::Catch::Detail::rawMemoryToString(p);
1822#if defined(_MANAGED)
1823 template <
typename T>
1825 static std::string convert( T^ ref ) {
1826 return ::Catch::Detail::clrReferenceToString(ref);
1832 template<
typename InputIterator>
1833 std::string rangeToString(InputIterator first, InputIterator last) {
1834 ReusableStringStream rss;
1836 if (first != last) {
1837 rss << ::Catch::Detail::stringify(*first);
1838 for (++first; first != last; ++first)
1839 rss <<
", " << ::Catch::Detail::stringify(*first);
1848 struct StringMaker<NSString*> {
1849 static std::string convert(NSString * nsstring) {
1852 return std::string(
"@") + [nsstring UTF8String];
1856 struct StringMaker<NSObject*> {
1857 static std::string convert(NSObject* nsObject) {
1858 return ::Catch::Detail::stringify([nsObject description]);
1863 inline std::string stringify( NSString* nsstring ) {
1864 return StringMaker<NSString*>::convert( nsstring );
1876#if defined(CATCH_CONFIG_ENABLE_ALL_STRINGMAKERS)
1877# define CATCH_CONFIG_ENABLE_PAIR_STRINGMAKER
1878# define CATCH_CONFIG_ENABLE_TUPLE_STRINGMAKER
1879# define CATCH_CONFIG_ENABLE_VARIANT_STRINGMAKER
1880# define CATCH_CONFIG_ENABLE_CHRONO_STRINGMAKER
1881# define CATCH_CONFIG_ENABLE_OPTIONAL_STRINGMAKER
1885#if defined(CATCH_CONFIG_ENABLE_PAIR_STRINGMAKER)
1888 template<
typename T1,
typename T2>
1889 struct StringMaker<std::pair<T1, T2> > {
1890 static std::string convert(
const std::pair<T1, T2>& pair) {
1891 ReusableStringStream rss;
1893 << ::Catch::Detail::stringify(pair.first)
1895 << ::Catch::Detail::stringify(pair.second)
1903#if defined(CATCH_CONFIG_ENABLE_OPTIONAL_STRINGMAKER) && defined(CATCH_CONFIG_CPP17_OPTIONAL)
1906 template<
typename T>
1907 struct StringMaker<std::optional<T> > {
1908 static std::string convert(
const std::optional<T>& optional) {
1909 ReusableStringStream rss;
1910 if (optional.has_value()) {
1911 rss << ::Catch::Detail::stringify(*optional);
1922#if defined(CATCH_CONFIG_ENABLE_TUPLE_STRINGMAKER)
1929 bool = (N < std::tuple_size<Tuple>::value)
1931 struct TupleElementPrinter {
1932 static void print(
const Tuple& tuple, std::ostream& os) {
1933 os << (N ?
", " :
" ")
1934 << ::Catch::Detail::stringify(std::get<N>(tuple));
1935 TupleElementPrinter<Tuple, N + 1>::print(tuple, os);
1943 struct TupleElementPrinter<Tuple, N, false> {
1944 static void print(
const Tuple&, std::ostream&) {}
1949 template<
typename ...Types>
1950 struct StringMaker<std::tuple<Types...>> {
1951 static std::string convert(
const std::tuple<Types...>& tuple) {
1952 ReusableStringStream rss;
1954 Detail::TupleElementPrinter<std::tuple<Types...>>::print(tuple, rss.get());
1962#if defined(CATCH_CONFIG_ENABLE_VARIANT_STRINGMAKER) && defined(CATCH_CONFIG_CPP17_VARIANT)
1966 struct StringMaker<std::monostate> {
1967 static std::string convert(
const std::monostate&) {
1972 template<
typename... Elements>
1973 struct StringMaker<std::variant<Elements...>> {
1974 static std::string convert(
const std::variant<Elements...>& variant) {
1975 if (variant.valueless_by_exception()) {
1976 return "{valueless variant}";
1979 [](
const auto& value) {
1980 return ::Catch::Detail::stringify(value);
1996 template <
typename...>
2001 template <
typename T,
typename =
void>
2005 template <
typename T>
2010 template <
typename T>
2014#if defined(_MANAGED)
2015 template <
typename T>
2017 static const bool value =
false;
2021 template<
typename Range>
2022 std::string rangeToString( Range
const& range ) {
2023 return ::Catch::Detail::rangeToString( begin( range ), end( range ) );
2027 template<
typename Allocator>
2028 std::string rangeToString( std::vector<bool, Allocator>
const& v ) {
2029 ReusableStringStream rss;
2037 rss << ::Catch::Detail::stringify( b );
2043 template<
typename R>
2044 struct StringMaker<R, typename std::enable_if<is_range<R>::value && !::Catch::Detail::IsStreamInsertable<R>::value>::type> {
2045 static std::string convert( R
const& range ) {
2046 return rangeToString( range );
2050 template <
typename T,
int SZ>
2052 static std::string convert(T
const(&arr)[SZ]) {
2053 return rangeToString(arr);
2060#if defined(CATCH_CONFIG_ENABLE_CHRONO_STRINGMAKER)
2067template <
class Ratio>
2068struct ratio_string {
2069 static std::string symbol();
2072template <
class Ratio>
2073std::string ratio_string<Ratio>::symbol() {
2075 rss <<
'[' << Ratio::num <<
'/'
2076 << Ratio::den <<
']';
2080struct ratio_string<std::atto> {
2081 static std::string symbol();
2084struct ratio_string<std::femto> {
2085 static std::string symbol();
2088struct ratio_string<std::pico> {
2089 static std::string symbol();
2092struct ratio_string<std::nano> {
2093 static std::string symbol();
2096struct ratio_string<std::micro> {
2097 static std::string symbol();
2100struct ratio_string<std::milli> {
2101 static std::string symbol();
2106 template<
typename Value,
typename Ratio>
2107 struct StringMaker<std::chrono::duration<Value, Ratio>> {
2108 static std::string convert(std::chrono::duration<Value, Ratio>
const& duration) {
2109 ReusableStringStream rss;
2110 rss << duration.count() <<
' ' << ratio_string<Ratio>::symbol() <<
's';
2114 template<
typename Value>
2115 struct StringMaker<std::chrono::duration<Value, std::ratio<1>>> {
2116 static std::string convert(std::chrono::duration<Value, std::ratio<1>>
const& duration) {
2117 ReusableStringStream rss;
2118 rss << duration.count() <<
" s";
2122 template<
typename Value>
2123 struct StringMaker<std::chrono::duration<Value, std::ratio<60>>> {
2124 static std::string convert(std::chrono::duration<Value, std::ratio<60>>
const& duration) {
2125 ReusableStringStream rss;
2126 rss << duration.count() <<
" m";
2130 template<
typename Value>
2131 struct StringMaker<std::chrono::duration<Value, std::ratio<3600>>> {
2132 static std::string convert(std::chrono::duration<Value, std::ratio<3600>>
const& duration) {
2133 ReusableStringStream rss;
2134 rss << duration.count() <<
" h";
2142 template<
typename Clock,
typename Duration>
2143 struct StringMaker<std::chrono::time_point<Clock, Duration>> {
2144 static std::string convert(std::chrono::time_point<Clock, Duration>
const& time_point) {
2145 return ::Catch::Detail::stringify(time_point.time_since_epoch()) +
" since epoch";
2149 template<
typename Duration>
2150 struct StringMaker<std::chrono::time_point<std::chrono::system_clock, Duration>> {
2151 static std::string convert(std::chrono::time_point<std::chrono::system_clock, Duration>
const& time_point) {
2152 auto converted = std::chrono::system_clock::to_time_t(time_point);
2155 std::tm timeInfo = {};
2156 gmtime_s(&timeInfo, &converted);
2158 std::tm* timeInfo = std::gmtime(&converted);
2161 auto const timeStampSize =
sizeof(
"2017-01-16T17:06:45Z");
2162 char timeStamp[timeStampSize];
2163 const char *
const fmt =
"%Y-%m-%dT%H:%M:%SZ";
2166 std::strftime(timeStamp, timeStampSize, fmt, &timeInfo);
2168 std::strftime(timeStamp, timeStampSize, fmt, timeInfo);
2170 return std::string(timeStamp);
2176#define INTERNAL_CATCH_REGISTER_ENUM( enumName, ... ) \
2178 template<> struct StringMaker<enumName> { \
2179 static std::string convert( enumName value ) { \
2180 static const auto& enumInfo = ::Catch::getMutableRegistryHub().getMutableEnumValuesRegistry().registerEnum( #enumName, #__VA_ARGS__, { __VA_ARGS__ } ); \
2181 return static_cast<std::string>(enumInfo.lookup( static_cast<int>( value ) )); \
2186#define CATCH_REGISTER_ENUM( enumName, ... ) INTERNAL_CATCH_REGISTER_ENUM( enumName, __VA_ARGS__ )
2196#pragma warning(push)
2197#pragma warning(disable:4389)
2198#pragma warning(disable:4018)
2199#pragma warning(disable:4312)
2200#pragma warning(disable:4180)
2201#pragma warning(disable:4800)
2207 auto isBinaryExpression()
const ->
bool {
return m_isBinaryExpression; }
2208 auto getResult()
const ->
bool {
return m_result; }
2209 virtual void streamReconstructedExpression( std::ostream &os )
const = 0;
2212 : m_isBinaryExpression( isBinaryExpression ),
2220 bool m_isBinaryExpression;
2225 void formatReconstructedExpression( std::ostream &os, std::string
const& lhs,
StringRef op, std::string
const& rhs );
2227 template<
typename LhsT,
typename RhsT>
2233 void streamReconstructedExpression( std::ostream &os )
const override {
2234 formatReconstructedExpression
2235 ( os, Catch::Detail::stringify( m_lhs ), m_op, Catch::Detail::stringify( m_rhs ) );
2246 template<
typename T>
2249 "chained comparisons are not supported inside assertions, "
2250 "wrap the expression inside parentheses, or decompose it");
2253 template<
typename T>
2256 "chained comparisons are not supported inside assertions, "
2257 "wrap the expression inside parentheses, or decompose it");
2260 template<
typename T>
2263 "chained comparisons are not supported inside assertions, "
2264 "wrap the expression inside parentheses, or decompose it");
2267 template<
typename T>
2270 "chained comparisons are not supported inside assertions, "
2271 "wrap the expression inside parentheses, or decompose it");
2274 template<
typename T>
2277 "chained comparisons are not supported inside assertions, "
2278 "wrap the expression inside parentheses, or decompose it");
2281 template<
typename T>
2284 "chained comparisons are not supported inside assertions, "
2285 "wrap the expression inside parentheses, or decompose it");
2288 template<
typename T>
2291 "chained comparisons are not supported inside assertions, "
2292 "wrap the expression inside parentheses, or decompose it");
2295 template<
typename T>
2298 "chained comparisons are not supported inside assertions, "
2299 "wrap the expression inside parentheses, or decompose it");
2303 template<
typename LhsT>
2307 void streamReconstructedExpression( std::ostream &os )
const override {
2308 os << Catch::Detail::stringify( m_lhs );
2319 template<
typename LhsT,
typename RhsT>
2320 auto compareEqual( LhsT
const& lhs, RhsT
const& rhs ) ->
bool {
return static_cast<bool>(lhs == rhs); }
2321 template<
typename T>
2322 auto compareEqual( T*
const& lhs,
int rhs ) ->
bool {
return lhs ==
reinterpret_cast<void const*
>( rhs ); }
2323 template<
typename T>
2324 auto compareEqual( T*
const& lhs,
long rhs ) ->
bool {
return lhs ==
reinterpret_cast<void const*
>( rhs ); }
2325 template<
typename T>
2326 auto compareEqual(
int lhs, T*
const& rhs ) ->
bool {
return reinterpret_cast<void const*
>( lhs ) == rhs; }
2327 template<
typename T>
2328 auto compareEqual(
long lhs, T*
const& rhs ) ->
bool {
return reinterpret_cast<void const*
>( lhs ) == rhs; }
2330 template<
typename LhsT,
typename RhsT>
2331 auto compareNotEqual( LhsT
const& lhs, RhsT&& rhs ) ->
bool {
return static_cast<bool>(lhs != rhs); }
2332 template<
typename T>
2333 auto compareNotEqual( T*
const& lhs,
int rhs ) ->
bool {
return lhs !=
reinterpret_cast<void const*
>( rhs ); }
2334 template<
typename T>
2335 auto compareNotEqual( T*
const& lhs,
long rhs ) ->
bool {
return lhs !=
reinterpret_cast<void const*
>( rhs ); }
2336 template<
typename T>
2337 auto compareNotEqual(
int lhs, T*
const& rhs ) ->
bool {
return reinterpret_cast<void const*
>( lhs ) != rhs; }
2338 template<
typename T>
2339 auto compareNotEqual(
long lhs, T*
const& rhs ) ->
bool {
return reinterpret_cast<void const*
>( lhs ) != rhs; }
2341 template<
typename LhsT>
2345 explicit ExprLhs( LhsT lhs ) : m_lhs( lhs ) {}
2347 template<
typename RhsT>
2349 return { compareEqual( m_lhs, rhs ), m_lhs,
"==", rhs };
2352 return { m_lhs == rhs, m_lhs,
"==", rhs };
2355 template<
typename RhsT>
2357 return { compareNotEqual( m_lhs, rhs ), m_lhs,
"!=", rhs };
2360 return { m_lhs != rhs, m_lhs,
"!=", rhs };
2363 template<
typename RhsT>
2365 return {
static_cast<bool>(m_lhs > rhs), m_lhs,
">", rhs };
2367 template<
typename RhsT>
2369 return {
static_cast<bool>(m_lhs < rhs), m_lhs,
"<", rhs };
2371 template<
typename RhsT>
2373 return {
static_cast<bool>(m_lhs >= rhs), m_lhs,
">=", rhs };
2375 template<
typename RhsT>
2377 return {
static_cast<bool>(m_lhs <= rhs), m_lhs,
"<=", rhs };
2379 template <
typename RhsT>
2381 return {
static_cast<bool>(m_lhs | rhs), m_lhs,
"|", rhs };
2383 template <
typename RhsT>
2385 return {
static_cast<bool>(m_lhs & rhs), m_lhs,
"&", rhs };
2387 template <
typename RhsT>
2389 return {
static_cast<bool>(m_lhs ^ rhs), m_lhs,
"^", rhs };
2392 template<
typename RhsT>
2395 "operator&& is not supported inside assertions, "
2396 "wrap the expression inside parentheses, or decompose it");
2399 template<
typename RhsT>
2402 "operator|| is not supported inside assertions, "
2403 "wrap the expression inside parentheses, or decompose it");
2413 template<
typename T>
2414 void handleExpression(
ExprLhs<T> const& expr ) {
2415 handleExpression( expr.makeUnaryExpr() );
2419 template<
typename T>
2443 class AssertionResult;
2444 struct AssertionInfo;
2446 struct SectionEndInfo;
2448 struct MessageBuilder;
2450 struct AssertionReaction;
2451 struct SourceLineInfo;
2453 struct ITransientExpression;
2454 struct IGeneratorTracker;
2456#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
2457 struct BenchmarkInfo;
2458 template <
typename Duration = std::chrono::duration<
double, std::nano>>
2459 struct BenchmarkStats;
2466 virtual bool sectionStarted(
SectionInfo const& sectionInfo,
2467 Counts& assertions ) = 0;
2469 virtual void sectionEndedEarly(
SectionEndInfo const& endInfo ) = 0;
2473#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
2474 virtual void benchmarkPreparing( std::string
const& name ) = 0;
2475 virtual void benchmarkStarting( BenchmarkInfo
const& info ) = 0;
2476 virtual void benchmarkEnded( BenchmarkStats<>
const& stats ) = 0;
2477 virtual void benchmarkFailed( std::string
const& error ) = 0;
2480 virtual void pushScopedMessage(
MessageInfo const& message ) = 0;
2481 virtual void popScopedMessage(
MessageInfo const& message ) = 0;
2483 virtual void emplaceUnscopedMessage(
MessageBuilder const& builder ) = 0;
2485 virtual void handleFatalErrorCondition(
StringRef message ) = 0;
2487 virtual void handleExpr
2491 virtual void handleMessage
2493 ResultWas::OfType resultType,
2496 virtual void handleUnexpectedExceptionNotThrown
2499 virtual void handleUnexpectedInflightException
2501 std::string
const& message,
2503 virtual void handleIncomplete
2505 virtual void handleNonExpr
2507 ResultWas::OfType resultType,
2510 virtual bool lastAssertionPassed() = 0;
2511 virtual void assertionPassed() = 0;
2514 virtual std::string getCurrentTestName()
const = 0;
2515 virtual const AssertionResult* getLastResult()
const = 0;
2516 virtual void exceptionEarlyReported() = 0;
2526 struct AssertionResultData;
2532 friend struct AssertionStats;
2533 friend class RunContext;
2542 explicit operator bool()
const;
2548 bool shouldDebugBreak =
false;
2549 bool shouldThrow =
false;
2555 bool m_completed =
false;
2563 ResultDisposition::Flags resultDisposition );
2565 if ( !m_completed ) {
2566 m_resultCapture.handleIncomplete( m_assertionInfo );
2570 template<
typename T>
2572 handleExpr( expr.makeUnaryExpr() );
2576 void handleMessage(ResultWas::OfType resultType,
StringRef const& message);
2578 void handleExceptionThrownAsExpected();
2579 void handleUnexpectedExceptionNotThrown();
2580 void handleExceptionNotThrownAsExpected();
2581 void handleThrowingCallSkipped();
2582 void handleUnexpectedInflightException();
2585 void setCompleted();
2588 auto allowThrows()
const -> bool;
2606 ResultWas::OfType _type );
2609 std::string message;
2611 ResultWas::OfType type;
2612 unsigned int sequence;
2614 bool operator == (
MessageInfo const& other )
const;
2615 bool operator < (
MessageInfo const& other )
const;
2617 static unsigned int globalCount;
2622 template<
typename T>
2634 ResultWas::OfType type );
2636 template<
typename T>
2657 std::vector<MessageInfo> m_messages;
2659 size_t m_captured = 0;
2664 void captureValue(
size_t index, std::string
const& value );
2666 template<
typename T>
2667 void captureValues(
size_t index, T
const& value ) {
2668 captureValue( index, Catch::Detail::stringify( value ) );
2671 template<
typename T,
typename... Ts>
2672 void captureValues(
size_t index, T
const& value, Ts
const&... values ) {
2673 captureValue( index, Catch::Detail::stringify(value) );
2674 captureValues( index+1, values... );
2681#if !defined(CATCH_CONFIG_DISABLE)
2683#if !defined(CATCH_CONFIG_DISABLE_STRINGIFICATION)
2684 #define CATCH_INTERNAL_STRINGIFY(...) #__VA_ARGS__
2686 #define CATCH_INTERNAL_STRINGIFY(...) "Disabled by CATCH_CONFIG_DISABLE_STRINGIFICATION"
2689#if defined(CATCH_CONFIG_FAST_COMPILE) || defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
2694#define INTERNAL_CATCH_TRY
2695#define INTERNAL_CATCH_CATCH( capturer )
2699#define INTERNAL_CATCH_TRY try
2700#define INTERNAL_CATCH_CATCH( handler ) catch(...) { handler.handleUnexpectedInflightException(); }
2704#define INTERNAL_CATCH_REACT( handler ) handler.complete();
2707#define INTERNAL_CATCH_TEST( macroName, resultDisposition, ... ) \
2709 CATCH_INTERNAL_IGNORE_BUT_WARN(__VA_ARGS__); \
2710 Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(__VA_ARGS__), resultDisposition ); \
2711 INTERNAL_CATCH_TRY { \
2712 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
2713 CATCH_INTERNAL_SUPPRESS_PARENTHESES_WARNINGS \
2714 catchAssertionHandler.handleExpr( Catch::Decomposer() <= __VA_ARGS__ ); \
2715 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION \
2716 } INTERNAL_CATCH_CATCH( catchAssertionHandler ) \
2717 INTERNAL_CATCH_REACT( catchAssertionHandler ) \
2718 } while( (void)0, (false) && static_cast<bool>( !!(__VA_ARGS__) ) )
2721#define INTERNAL_CATCH_IF( macroName, resultDisposition, ... ) \
2722 INTERNAL_CATCH_TEST( macroName, resultDisposition, __VA_ARGS__ ); \
2723 if( Catch::getResultCapture().lastAssertionPassed() )
2726#define INTERNAL_CATCH_ELSE( macroName, resultDisposition, ... ) \
2727 INTERNAL_CATCH_TEST( macroName, resultDisposition, __VA_ARGS__ ); \
2728 if( !Catch::getResultCapture().lastAssertionPassed() )
2731#define INTERNAL_CATCH_NO_THROW( macroName, resultDisposition, ... ) \
2733 Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(__VA_ARGS__), resultDisposition ); \
2735 static_cast<void>(__VA_ARGS__); \
2736 catchAssertionHandler.handleExceptionNotThrownAsExpected(); \
2739 catchAssertionHandler.handleUnexpectedInflightException(); \
2741 INTERNAL_CATCH_REACT( catchAssertionHandler ) \
2745#define INTERNAL_CATCH_THROWS( macroName, resultDisposition, ... ) \
2747 Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(__VA_ARGS__), resultDisposition); \
2748 if( catchAssertionHandler.allowThrows() ) \
2750 static_cast<void>(__VA_ARGS__); \
2751 catchAssertionHandler.handleUnexpectedExceptionNotThrown(); \
2754 catchAssertionHandler.handleExceptionThrownAsExpected(); \
2757 catchAssertionHandler.handleThrowingCallSkipped(); \
2758 INTERNAL_CATCH_REACT( catchAssertionHandler ) \
2762#define INTERNAL_CATCH_THROWS_AS( macroName, exceptionType, resultDisposition, expr ) \
2764 Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(expr) ", " CATCH_INTERNAL_STRINGIFY(exceptionType), resultDisposition ); \
2765 if( catchAssertionHandler.allowThrows() ) \
2767 static_cast<void>(expr); \
2768 catchAssertionHandler.handleUnexpectedExceptionNotThrown(); \
2770 catch( exceptionType const& ) { \
2771 catchAssertionHandler.handleExceptionThrownAsExpected(); \
2774 catchAssertionHandler.handleUnexpectedInflightException(); \
2777 catchAssertionHandler.handleThrowingCallSkipped(); \
2778 INTERNAL_CATCH_REACT( catchAssertionHandler ) \
2782#define INTERNAL_CATCH_MSG( macroName, messageType, resultDisposition, ... ) \
2784 Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, Catch::StringRef(), resultDisposition ); \
2785 catchAssertionHandler.handleMessage( messageType, ( Catch::MessageStream() << __VA_ARGS__ + ::Catch::StreamEndStop() ).m_stream.str() ); \
2786 INTERNAL_CATCH_REACT( catchAssertionHandler ) \
2790#define INTERNAL_CATCH_CAPTURE( varName, macroName, ... ) \
2791 auto varName = Catch::Capturer( macroName, CATCH_INTERNAL_LINEINFO, Catch::ResultWas::Info, #__VA_ARGS__ ); \
2792 varName.captureValues( 0, __VA_ARGS__ )
2795#define INTERNAL_CATCH_INFO( macroName, log ) \
2796 Catch::ScopedMessage INTERNAL_CATCH_UNIQUE_NAME( scopedMessage )( Catch::MessageBuilder( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, Catch::ResultWas::Info ) << log );
2799#define INTERNAL_CATCH_UNSCOPED_INFO( macroName, log ) \
2800 Catch::getResultCapture().emplaceUnscopedMessage( Catch::MessageBuilder( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, Catch::ResultWas::Info ) << log )
2804#define INTERNAL_CATCH_THROWS_STR_MATCHES( macroName, resultDisposition, matcher, ... ) \
2806 Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(__VA_ARGS__) ", " CATCH_INTERNAL_STRINGIFY(matcher), resultDisposition ); \
2807 if( catchAssertionHandler.allowThrows() ) \
2809 static_cast<void>(__VA_ARGS__); \
2810 catchAssertionHandler.handleUnexpectedExceptionNotThrown(); \
2813 Catch::handleExceptionMatchExpr( catchAssertionHandler, matcher, #matcher##_catch_sr ); \
2816 catchAssertionHandler.handleThrowingCallSkipped(); \
2817 INTERNAL_CATCH_REACT( catchAssertionHandler ) \
2837 std::size_t total()
const;
2838 bool allPassed()
const;
2841 std::size_t passed = 0;
2842 std::size_t failed = 0;
2843 std::size_t failedButOk = 0;
2867 std::string
const& _name );
2872 std::string
const& _name,
2873 std::string
const& ) :
SectionInfo( _lineInfo, _name ) {}
2876 std::string description;
2883 double durationInSeconds;
2895 auto getCurrentNanosecondsSinceEpoch() -> uint64_t;
2896 auto getEstimatedClockResolution() -> uint64_t;
2899 uint64_t m_nanoseconds = 0;
2902 auto getElapsedNanoseconds()
const -> uint64_t;
2903 auto getElapsedMicroseconds()
const -> uint64_t;
2904 auto getElapsedMilliseconds()
const ->
unsigned int;
2905 auto getElapsedSeconds()
const -> double;
2921 explicit operator bool()
const;
2928 bool m_sectionIncluded;
2934#define INTERNAL_CATCH_SECTION( ... ) \
2935 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
2936 CATCH_INTERNAL_SUPPRESS_UNUSED_WARNINGS \
2937 if( Catch::Section const& INTERNAL_CATCH_UNIQUE_NAME( catch_internal_Section ) = Catch::SectionInfo( CATCH_INTERNAL_LINEINFO, __VA_ARGS__ ) ) \
2938 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION
2940#define INTERNAL_CATCH_DYNAMIC_SECTION( ... ) \
2941 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
2942 CATCH_INTERNAL_SUPPRESS_UNUSED_WARNINGS \
2943 if( Catch::Section const& INTERNAL_CATCH_UNIQUE_NAME( catch_internal_Section ) = Catch::SectionInfo( CATCH_INTERNAL_LINEINFO, (Catch::ReusableStringStream() << __VA_ARGS__).str() ) ) \
2944 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION
2957 struct ITestCaseRegistry;
2958 struct IExceptionTranslatorRegistry;
2959 struct IExceptionTranslator;
2960 struct IReporterRegistry;
2961 struct IReporterFactory;
2962 struct ITagAliasRegistry;
2963 struct IMutableEnumValuesRegistry;
2965 class StartupExceptionRegistry;
2967 using IReporterFactoryPtr = std::shared_ptr<IReporterFactory>;
2972 virtual IReporterRegistry
const& getReporterRegistry()
const = 0;
2974 virtual ITagAliasRegistry
const& getTagAliasRegistry()
const = 0;
2977 virtual StartupExceptionRegistry
const& getStartupExceptionRegistry()
const = 0;
2982 virtual void registerReporter( std::string
const& name, IReporterFactoryPtr
const& factory ) = 0;
2983 virtual void registerListener( IReporterFactoryPtr
const& factory ) = 0;
2984 virtual void registerTest(
TestCase const& testInfo ) = 0;
2986 virtual void registerTagAlias( std::string
const& alias, std::string
const& tag,
SourceLineInfo const& lineInfo ) = 0;
2987 virtual void registerStartupException()
noexcept = 0;
2994 std::string translateActiveException();
2999#if defined(CATCH_CONFIG_DISABLE)
3000 #define INTERNAL_CATCH_TRANSLATE_EXCEPTION_NO_REG( translatorName, signature) \
3001 static std::string translatorName( signature )
3009 using exceptionTranslateFunction = std::string(*)();
3011 struct IExceptionTranslator;
3012 using ExceptionTranslators = std::vector<std::unique_ptr<IExceptionTranslator const>>;
3016 virtual std::string translate( ExceptionTranslators::const_iterator it, ExceptionTranslators::const_iterator itEnd )
const = 0;
3022 virtual std::string translateActiveException()
const = 0;
3026 template<
typename T>
3030 ExceptionTranslator( std::string(*translateFunction)( T& ) )
3031 : m_translateFunction( translateFunction )
3034 std::string translate( ExceptionTranslators::const_iterator it, ExceptionTranslators::const_iterator itEnd )
const override {
3035#if defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
3040 std::rethrow_exception(std::current_exception());
3042 return (*it)->translate( it+1, itEnd );
3045 return m_translateFunction( ex );
3051 std::string(*m_translateFunction)( T& );
3055 template<
typename T>
3057 getMutableRegistryHub().registerTranslator
3058 (
new ExceptionTranslator<T>( translateFunction ) );
3064#define INTERNAL_CATCH_TRANSLATE_EXCEPTION2( translatorName, signature ) \
3065 static std::string translatorName( signature ); \
3066 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
3067 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
3068 namespace{ Catch::ExceptionTranslatorRegistrar INTERNAL_CATCH_UNIQUE_NAME( catch_internal_ExceptionRegistrar )( &translatorName ); } \
3069 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION \
3070 static std::string translatorName( signature )
3072#define INTERNAL_CATCH_TRANSLATE_EXCEPTION( signature ) INTERNAL_CATCH_TRANSLATE_EXCEPTION2( INTERNAL_CATCH_UNIQUE_NAME( catch_internal_ExceptionTranslator ), signature )
3077#include <type_traits>
3084 bool equalityComparisonImpl(
double other)
const;
3087 void setMargin(
double margin);
3090 void setEpsilon(
double epsilon);
3093 explicit Approx (
double value );
3097 Approx operator-()
const;
3099 template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
3100 Approx operator()( T
const& value ) {
3101 Approx approx(
static_cast<double>(value) );
3102 approx.m_epsilon = m_epsilon;
3103 approx.m_margin = m_margin;
3104 approx.m_scale = m_scale;
3108 template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
3109 explicit Approx( T
const& value ):
Approx(
static_cast<double>(value))
3112 template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
3113 friend bool operator == (
const T& lhs,
Approx const& rhs ) {
3114 auto lhs_v =
static_cast<double>(lhs);
3115 return rhs.equalityComparisonImpl(lhs_v);
3118 template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
3119 friend bool operator == (
Approx const& lhs,
const T& rhs ) {
3120 return operator==( rhs, lhs );
3123 template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
3124 friend bool operator != ( T
const& lhs,
Approx const& rhs ) {
3125 return !operator==( lhs, rhs );
3128 template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
3129 friend bool operator != (
Approx const& lhs, T
const& rhs ) {
3130 return !operator==( rhs, lhs );
3133 template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
3134 friend bool operator <= ( T
const& lhs,
Approx const& rhs ) {
3135 return static_cast<double>(lhs) < rhs.m_value || lhs == rhs;
3138 template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
3139 friend bool operator <= (
Approx const& lhs, T
const& rhs ) {
3140 return lhs.m_value <
static_cast<double>(rhs) || lhs == rhs;
3143 template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
3144 friend bool operator >= ( T
const& lhs,
Approx const& rhs ) {
3145 return static_cast<double>(lhs) > rhs.m_value || lhs == rhs;
3148 template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
3149 friend bool operator >= (
Approx const& lhs, T
const& rhs ) {
3150 return lhs.m_value >
static_cast<double>(rhs) || lhs == rhs;
3153 template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
3154 Approx& epsilon( T
const& newEpsilon ) {
3155 double epsilonAsDouble =
static_cast<double>(newEpsilon);
3156 setEpsilon(epsilonAsDouble);
3160 template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
3161 Approx& margin( T
const& newMargin ) {
3162 double marginAsDouble =
static_cast<double>(newMargin);
3163 setMargin(marginAsDouble);
3167 template <typename T, typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
3168 Approx& scale( T
const& newScale ) {
3169 m_scale =
static_cast<double>(newScale);
3173 std::string toString()
const;
3204 bool startsWith( std::string
const& s, std::string
const& prefix );
3205 bool startsWith( std::string
const& s,
char prefix );
3206 bool endsWith( std::string
const& s, std::string
const& suffix );
3207 bool endsWith( std::string
const& s,
char suffix );
3208 bool contains( std::string
const& s, std::string
const& infix );
3209 void toLowerInPlace( std::string& s );
3210 std::string toLower( std::string
const& s );
3212 std::string trim( std::string
const& str );
3214 StringRef trim(StringRef ref);
3217 std::vector<StringRef> splitStringRef( StringRef str,
char delimiter );
3218 bool replaceInPlace( std::string& str, std::string
const& replaceThis, std::string
const& withThis );
3221 pluralise( std::size_t count, std::string
const& label );
3223 friend std::ostream& operator << ( std::ostream& os,
pluralise const& pluraliser );
3225 std::size_t m_count;
3226 std::string m_label;
3231#ifndef CATCH_CONFIG_DISABLE_MATCHERS
3243 template<
typename ArgT>
struct MatchAllOf;
3244 template<
typename ArgT>
struct MatchAnyOf;
3245 template<
typename ArgT>
struct MatchNotOf;
3252 std::string toString()
const;
3256 virtual std::string describe()
const = 0;
3257 mutable std::string m_cachedToString;
3261# pragma clang diagnostic push
3262# pragma clang diagnostic ignored "-Wnon-virtual-dtor"
3265 template<
typename ObjectT>
3267 virtual bool match( ObjectT
const& arg )
const = 0;
3270#if defined(__OBJC__)
3275 virtual bool match( NSString* arg )
const = 0;
3280# pragma clang diagnostic pop
3283 template<
typename T>
3291 template<
typename ArgT>
3293 bool match( ArgT
const& arg )
const override {
3294 for(
auto matcher : m_matchers ) {
3295 if (!matcher->match(arg))
3300 std::string describe()
const override {
3301 std::string description;
3302 description.reserve( 4 + m_matchers.size()*32 );
3303 description +=
"( ";
3305 for(
auto matcher : m_matchers ) {
3309 description +=
" and ";
3310 description += matcher->toString();
3312 description +=
" )";
3318 copy.m_matchers.push_back( &other );
3322 std::vector<MatcherBase<ArgT>
const*> m_matchers;
3324 template<
typename ArgT>
3327 bool match( ArgT
const& arg )
const override {
3328 for(
auto matcher : m_matchers ) {
3329 if (matcher->match(arg))
3334 std::string describe()
const override {
3335 std::string description;
3336 description.reserve( 4 + m_matchers.size()*32 );
3337 description +=
"( ";
3339 for(
auto matcher : m_matchers ) {
3343 description +=
" or ";
3344 description += matcher->toString();
3346 description +=
" )";
3352 copy.m_matchers.push_back( &other );
3356 std::vector<MatcherBase<ArgT>
const*> m_matchers;
3359 template<
typename ArgT>
3364 bool match( ArgT
const& arg )
const override {
3365 return !m_underlyingMatcher.match( arg );
3368 std::string describe()
const override {
3369 return "not " + m_underlyingMatcher.toString();
3374 template<
typename T>
3378 template<
typename T>
3380 return MatchAnyOf<T>() || *
this || other;
3382 template<
typename T>
3384 return MatchNotOf<T>( *
this );
3391using namespace Matchers;
3392using Matchers::Impl::MatcherBase;
3401namespace Exception {
3404 std::string m_message;
3411 bool match(std::exception
const& ex)
const override;
3413 std::string describe()
const override;
3429 namespace Floating {
3431 enum class FloatingPointKind : uint8_t;
3435 bool match(
double const& matchee)
const override;
3436 std::string describe()
const override;
3444 bool match(
double const& matchee)
const override;
3445 std::string describe()
const override;
3449 FloatingPointKind m_type;
3460 bool match(
double const& matchee)
const override;
3461 std::string describe()
const override;
3487#include <functional>
3495 std::string finalizeDescription(
const std::string& desc);
3498template <
typename T>
3500 std::function<bool(T
const&)> m_predicate;
3501 std::string m_description;
3504 PredicateMatcher(std::function<
bool(T
const&)>
const& elem, std::string
const& descr)
3505 :m_predicate(std::move(elem)),
3506 m_description(Detail::finalizeDescription(descr))
3509 bool match( T
const& item )
const override {
3510 return m_predicate(item);
3513 std::string describe()
const override {
3514 return m_description;
3524 template<
typename T>
3540 namespace StdString {
3544 CasedString( std::string
const& str, CaseSensitive::Choice caseSensitivity );
3545 std::string adjustString( std::string
const& str )
const;
3546 std::string caseSensitivitySuffix()
const;
3548 CaseSensitive::Choice m_caseSensitivity;
3554 std::string describe()
const override;
3557 std::string m_operation;
3562 bool match( std::string
const& source )
const override;
3566 bool match( std::string
const& source )
const override;
3570 bool match( std::string
const& source )
const override;
3574 bool match( std::string
const& source )
const override;
3578 RegexMatcher( std::string regex, CaseSensitive::Choice caseSensitivity );
3579 bool match( std::string
const& matchee )
const override;
3580 std::string describe()
const override;
3583 std::string m_regex;
3584 CaseSensitive::Choice m_caseSensitivity;
3592 StdString::EqualsMatcher Equals( std::string
const& str, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes );
3596 StdString::RegexMatcher Matches( std::string
const& regex, CaseSensitive::Choice caseSensitivity = CaseSensitive::Yes );
3610 template<
typename T,
typename Alloc>
3615 bool match(std::vector<T, Alloc>
const &v)
const override {
3616 for (
auto const& el : v) {
3617 if (el == m_comparator) {
3624 std::string describe()
const override {
3625 return "Contains: " + ::Catch::Detail::stringify( m_comparator );
3628 T
const& m_comparator;
3631 template<
typename T,
typename AllocComp,
typename AllocMatch>
3634 ContainsMatcher(std::vector<T, AllocComp>
const &comparator) : m_comparator( comparator ) {}
3636 bool match(std::vector<T, AllocMatch>
const &v)
const override {
3638 if (m_comparator.size() > v.size())
3640 for (
auto const& comparator : m_comparator) {
3641 auto present =
false;
3642 for (
const auto& el : v) {
3643 if (el == comparator) {
3654 std::string describe()
const override {
3655 return "Contains: " + ::Catch::Detail::stringify( m_comparator );
3658 std::vector<T, AllocComp>
const& m_comparator;
3661 template<
typename T,
typename AllocComp,
typename AllocMatch>
3664 EqualsMatcher(std::vector<T, AllocComp>
const &comparator) : m_comparator( comparator ) {}
3666 bool match(std::vector<T, AllocMatch>
const &v)
const override {
3671 if (m_comparator.size() != v.size())
3673 for (std::size_t i = 0; i < v.size(); ++i)
3674 if (m_comparator[i] != v[i])
3678 std::string describe()
const override {
3679 return "Equals: " + ::Catch::Detail::stringify( m_comparator );
3681 std::vector<T, AllocComp>
const& m_comparator;
3684 template<
typename T,
typename AllocComp,
typename AllocMatch>
3687 ApproxMatcher(std::vector<T, AllocComp>
const& comparator) : m_comparator( comparator ) {}
3689 bool match(std::vector<T, AllocMatch>
const &v)
const override {
3690 if (m_comparator.size() != v.size())
3692 for (std::size_t i = 0; i < v.size(); ++i)
3693 if (m_comparator[i] != approx(v[i]))
3697 std::string describe()
const override {
3698 return "is approx: " + ::Catch::Detail::stringify( m_comparator );
3700 template <typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
3702 approx.epsilon(newEpsilon);
3705 template <typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
3707 approx.margin(newMargin);
3710 template <typename = typename std::enable_if<std::is_constructible<double, T>::value>::type>
3712 approx.scale(newScale);
3716 std::vector<T, AllocComp>
const& m_comparator;
3720 template<
typename T,
typename AllocComp,
typename AllocMatch>
3723 bool match(std::vector<T, AllocMatch>
const& vec)
const override {
3724 if (m_target.size() != vec.size()) {
3727 return std::is_permutation(m_target.begin(), m_target.end(), vec.begin());
3730 std::string describe()
const override {
3731 return "UnorderedEquals: " + ::Catch::Detail::stringify(m_target);
3734 std::vector<T, AllocComp>
const& m_target;
3742 template<
typename T,
typename AllocComp = std::allocator<T>,
typename AllocMatch = AllocComp>
3747 template<
typename T,
typename Alloc = std::allocator<T>>
3752 template<
typename T,
typename AllocComp = std::allocator<T>,
typename AllocMatch = AllocComp>
3753 Vector::EqualsMatcher<T, AllocComp, AllocMatch> Equals( std::vector<T, AllocComp>
const& comparator ) {
3754 return Vector::EqualsMatcher<T, AllocComp, AllocMatch>( comparator );
3757 template<
typename T,
typename AllocComp = std::allocator<T>,
typename AllocMatch = AllocComp>
3758 Vector::ApproxMatcher<T, AllocComp, AllocMatch>
Approx( std::vector<T, AllocComp>
const& comparator ) {
3759 return Vector::ApproxMatcher<T, AllocComp, AllocMatch>( comparator );
3762 template<
typename T,
typename AllocComp = std::allocator<T>,
typename AllocMatch = AllocComp>
3763 Vector::UnorderedEqualsMatcher<T, AllocComp, AllocMatch> UnorderedEquals(std::vector<T, AllocComp>
const& target) {
3764 return Vector::UnorderedEqualsMatcher<T, AllocComp, AllocMatch>( target );
3773 template<
typename ArgT,
typename MatcherT>
3779 MatchExpr( ArgT
const& arg, MatcherT
const& matcher,
StringRef const& matcherString )
3782 m_matcher( matcher ),
3783 m_matcherString( matcherString )
3786 void streamReconstructedExpression( std::ostream &os )
const override {
3787 auto matcherAsString = m_matcher.toString();
3788 os << Catch::Detail::stringify( m_arg ) <<
' ';
3789 if( matcherAsString == Detail::unprintableString )
3790 os << m_matcherString;
3792 os << matcherAsString;
3800 template<
typename ArgT,
typename MatcherT>
3808#define INTERNAL_CHECK_THAT( macroName, matcher, resultDisposition, arg ) \
3810 Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(arg) ", " CATCH_INTERNAL_STRINGIFY(matcher), resultDisposition ); \
3811 INTERNAL_CATCH_TRY { \
3812 catchAssertionHandler.handleExpr( Catch::makeMatchExpr( arg, matcher, #matcher##_catch_sr ) ); \
3813 } INTERNAL_CATCH_CATCH( catchAssertionHandler ) \
3814 INTERNAL_CATCH_REACT( catchAssertionHandler ) \
3818#define INTERNAL_CATCH_THROWS_MATCHES( macroName, exceptionType, resultDisposition, matcher, ... ) \
3820 Catch::AssertionHandler catchAssertionHandler( macroName##_catch_sr, CATCH_INTERNAL_LINEINFO, CATCH_INTERNAL_STRINGIFY(__VA_ARGS__) ", " CATCH_INTERNAL_STRINGIFY(exceptionType) ", " CATCH_INTERNAL_STRINGIFY(matcher), resultDisposition ); \
3821 if( catchAssertionHandler.allowThrows() ) \
3823 static_cast<void>(__VA_ARGS__ ); \
3824 catchAssertionHandler.handleUnexpectedExceptionNotThrown(); \
3826 catch( exceptionType const& ex ) { \
3827 catchAssertionHandler.handleExpr( Catch::makeMatchExpr( ex, matcher, #matcher##_catch_sr ) ); \
3830 catchAssertionHandler.handleUnexpectedInflightException(); \
3833 catchAssertionHandler.handleThrowingCallSkipped(); \
3834 INTERNAL_CATCH_REACT( catchAssertionHandler ) \
3848 namespace Generators {
3857 virtual bool next() = 0;
3859 using GeneratorBasePtr = std::unique_ptr<GeneratorUntypedBase>;
3865 virtual auto hasGenerator()
const ->
bool = 0;
3866 virtual auto getGenerator()
const -> Generators::GeneratorBasePtr
const& = 0;
3867 virtual void setGenerator( Generators::GeneratorBasePtr&& generator ) = 0;
3878#if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
3879 template <
typename Ex>
3881 void throw_exception(Ex
const& e) {
3886 void throw_exception(std::exception
const& e);
3890 void throw_logic_error(std::string
const& msg);
3892 void throw_domain_error(std::string
const& msg);
3894 void throw_runtime_error(std::string
const& msg);
3898#define CATCH_MAKE_MSG(...) \
3899 (Catch::ReusableStringStream() << __VA_ARGS__).str()
3901#define CATCH_INTERNAL_ERROR(...) \
3902 Catch::throw_logic_error(CATCH_MAKE_MSG( CATCH_INTERNAL_LINEINFO << ": Internal Catch2 error: " << __VA_ARGS__))
3904#define CATCH_ERROR(...) \
3905 Catch::throw_domain_error(CATCH_MAKE_MSG( __VA_ARGS__ ))
3907#define CATCH_RUNTIME_ERROR(...) \
3908 Catch::throw_runtime_error(CATCH_MAKE_MSG( __VA_ARGS__ ))
3910#define CATCH_ENFORCE( condition, ... ) \
3911 do{ if( !(condition) ) CATCH_ERROR( __VA_ARGS__ ); } while(false)
3924 const char*
const m_msg =
"";
3931 const char* what()
const noexcept override final;
3934namespace Generators {
3938 template<
typename T,
typename... Args>
3939 std::unique_ptr<T> make_unique( Args&&... args ) {
3940 return std::unique_ptr<T>(
new T(std::forward<Args>(args)...));
3944 template<
typename T>
3952 virtual T
const& get()
const = 0;
3956 template<
typename T>
3962 T
const& get()
const override {
3965 bool next()
override {
3970 template<
typename T>
3972 static_assert(!std::is_same<T, bool>::value,
3973 "FixedValuesGenerator does not support bools because of std::vector<bool>"
3974 "specialization, use SingleValue Generator instead.");
3975 std::vector<T> m_values;
3980 T
const& get()
const override {
3981 return m_values[m_idx];
3983 bool next()
override {
3985 return m_idx < m_values.size();
3989 template <
typename T>
3991 std::unique_ptr<IGenerator<T>> m_generator;
3994 m_generator(std::move(generator))
3996 T
const& get()
const {
3997 return m_generator->get();
4000 return m_generator->next();
4004 template <
typename T>
4008 template <
typename T>
4009 GeneratorWrapper<T> values(std::initializer_list<T> values) {
4010 return GeneratorWrapper<T>(pf::make_unique<FixedValuesGenerator<T>>(values));
4013 template<
typename T>
4015 std::vector<GeneratorWrapper<T>> m_generators;
4016 size_t m_current = 0;
4019 m_generators.emplace_back(std::move(generator));
4021 void populate(T&& val) {
4022 m_generators.emplace_back(value(std::forward<T>(val)));
4024 template<
typename U>
4025 void populate(U&& val) {
4026 populate(T(std::forward<U>(val)));
4028 template<
typename U,
typename... Gs>
4029 void populate(U&& valueOrGenerator, Gs &&... moreGenerators) {
4030 populate(std::forward<U>(valueOrGenerator));
4031 populate(std::forward<Gs>(moreGenerators)...);
4035 template <
typename... Gs>
4037 m_generators.reserve(
sizeof...(Gs));
4038 populate(std::forward<Gs>(moreGenerators)...);
4041 T
const& get()
const override {
4042 return m_generators[m_current].get();
4045 bool next()
override {
4046 if (m_current >= m_generators.size()) {
4049 const bool current_status = m_generators[m_current].next();
4050 if (!current_status) {
4053 return m_current < m_generators.size();
4057 template<
typename... Ts>
4058 GeneratorWrapper<std::tuple<Ts...>> table( std::initializer_list<std::tuple<
typename std::decay<Ts>::type...>> tuples ) {
4059 return values<std::tuple<Ts...>>( tuples );
4063 template <
typename T>
4066 template<
typename T,
typename... Gs>
4068 return Generators<T>(std::move(generator), std::forward<Gs>(moreGenerators)...);
4070 template<
typename T>
4071 auto makeGenerators( GeneratorWrapper<T>&& generator ) -> Generators<T> {
4072 return Generators<T>(std::move(generator));
4074 template<
typename T,
typename... Gs>
4075 auto makeGenerators( T&& val, Gs &&... moreGenerators ) -> Generators<T> {
4076 return makeGenerators( value( std::forward<T>( val ) ), std::forward<Gs>( moreGenerators )... );
4078 template<
typename T,
typename U,
typename... Gs>
4079 auto makeGenerators( as<T>, U&& val, Gs &&... moreGenerators ) -> Generators<T> {
4080 return makeGenerators( value( T( std::forward<U>( val ) ) ), std::forward<Gs>( moreGenerators )... );
4083 auto acquireGeneratorTracker( SourceLineInfo
const& lineInfo ) -> IGeneratorTracker&;
4085 template<
typename L>
4089 auto generate( SourceLineInfo
const& lineInfo, L
const& generatorExpression ) ->
decltype(std::declval<decltype(generatorExpression())>().get()) {
4090 using UnderlyingType =
typename decltype(generatorExpression())::type;
4092 IGeneratorTracker& tracker = acquireGeneratorTracker( lineInfo );
4093 if (!tracker.hasGenerator()) {
4094 tracker.setGenerator(pf::make_unique<Generators<UnderlyingType>>(generatorExpression()));
4097 auto const& generator =
static_cast<IGenerator<UnderlyingType> const&
>( *tracker.getGenerator() );
4098 return generator.get();
4104#define GENERATE( ... ) \
4105 Catch::Generators::generate( CATCH_INTERNAL_LINEINFO, [ ]{ using namespace Catch::Generators; return makeGenerators( __VA_ARGS__ ); } )
4106#define GENERATE_COPY( ... ) \
4107 Catch::Generators::generate( CATCH_INTERNAL_LINEINFO, [=]{ using namespace Catch::Generators; return makeGenerators( __VA_ARGS__ ); } )
4108#define GENERATE_REF( ... ) \
4109 Catch::Generators::generate( CATCH_INTERNAL_LINEINFO, [&]{ using namespace Catch::Generators; return makeGenerators( __VA_ARGS__ ); } )
4115namespace Generators {
4117 template <
typename T>
4120 size_t m_returned = 0;
4124 m_generator(std::move(generator)),
4127 assert(target != 0 &&
"Empty generators are not allowed");
4129 T
const& get()
const override {
4130 return m_generator.get();
4132 bool next()
override {
4134 if (m_returned >= m_target) {
4138 const auto success = m_generator.next();
4142 m_returned = m_target;
4148 template <
typename T>
4153 template <
typename T,
typename Predicate>
4156 Predicate m_predicate;
4158 template <
typename P = Predicate>
4160 m_generator(std::move(generator)),
4161 m_predicate(std::forward<P>(pred))
4163 if (!m_predicate(m_generator.get())) {
4166 auto has_initial_value = next();
4167 if (!has_initial_value) {
4168 Catch::throw_exception(
GeneratorException(
"No valid value found in filtered generator"));
4173 T
const& get()
const override {
4174 return m_generator.get();
4177 bool next()
override {
4178 bool success = m_generator.next();
4182 while (!m_predicate(m_generator.get()) && (success = m_generator.next()) ==
true);
4187 template <
typename T,
typename Predicate>
4192 template <
typename T>
4194 static_assert(!std::is_same<T, bool>::value,
4195 "RepeatGenerator currently does not support bools"
4196 "because of std::vector<bool> specialization");
4198 mutable std::vector<T> m_returned;
4199 size_t m_target_repeats;
4200 size_t m_current_repeat = 0;
4201 size_t m_repeat_index = 0;
4204 m_generator(std::move(generator)),
4205 m_target_repeats(repeats)
4207 assert(m_target_repeats > 0 &&
"Repeat generator must repeat at least once");
4210 T
const& get()
const override {
4211 if (m_current_repeat == 0) {
4212 m_returned.push_back(m_generator.get());
4213 return m_returned.back();
4215 return m_returned[m_repeat_index];
4218 bool next()
override {
4225 if (m_current_repeat == 0) {
4226 const auto success = m_generator.next();
4230 return m_current_repeat < m_target_repeats;
4235 if (m_repeat_index == m_returned.size()) {
4239 return m_current_repeat < m_target_repeats;
4243 template <
typename T>
4248 template <
typename T,
typename U,
typename Func>
4256 template <
typename F2 = Func>
4258 m_generator(std::move(generator)),
4259 m_function(std::forward<F2>(function)),
4260 m_cache(m_function(m_generator.get()))
4263 T
const& get()
const override {
4266 bool next()
override {
4267 const auto success = m_generator.next();
4269 m_cache = m_function(m_generator.get());
4275 template <
typename Func,
typename U,
typename T = FunctionReturnType<Func, U>>
4282 template <
typename T,
typename U,
typename Func>
4283 GeneratorWrapper<T> map(Func&& function, GeneratorWrapper<U>&& generator) {
4284 return GeneratorWrapper<T>(
4285 pf::make_unique<MapGenerator<T, U, Func>>(std::forward<Func>(function), std::move(generator))
4289 template <
typename T>
4291 std::vector<T> m_chunk;
4292 size_t m_chunk_size;
4294 bool m_used_up =
false;
4297 m_chunk_size(size), m_generator(std::move(generator))
4299 m_chunk.reserve(m_chunk_size);
4300 if (m_chunk_size != 0) {
4301 m_chunk.push_back(m_generator.get());
4302 for (
size_t i = 1; i < m_chunk_size; ++i) {
4303 if (!m_generator.next()) {
4304 Catch::throw_exception(
GeneratorException(
"Not enough values to initialize the first chunk"));
4306 m_chunk.push_back(m_generator.get());
4310 std::vector<T>
const& get()
const override {
4313 bool next()
override {
4315 for (
size_t idx = 0; idx < m_chunk_size; ++idx) {
4316 if (!m_generator.next()) {
4319 m_chunk.push_back(m_generator.get());
4325 template <
typename T>
4328 pf::make_unique<ChunkGenerator<T>>(size, std::move(generator))
4344 struct IResultCapture;
4347 struct IMutableContext;
4349 using IConfigPtr = std::shared_ptr<IConfig const>;
4356 virtual IRunner* getRunner() = 0;
4357 virtual IConfigPtr
const& getConfig()
const = 0;
4363 virtual void setResultCapture(
IResultCapture* resultCapture ) = 0;
4364 virtual void setRunner(
IRunner* runner ) = 0;
4365 virtual void setConfig( IConfigPtr
const& config ) = 0;
4370 friend void cleanUpContext();
4371 static void createContext();
4376 if( !IMutableContext::currentContext )
4377 IMutableContext::createContext();
4379 return *IMutableContext::currentContext;
4382 inline IContext& getCurrentContext()
4384 return getCurrentMutableContext();
4387 void cleanUpContext();
4401 template<
typename T>
4404 Option() : nullableValue(
nullptr ) {}
4405 Option( T
const& _value )
4406 : nullableValue(
new( storage ) T( _value ) )
4409 : nullableValue( _other ?
new( storage ) T( *_other ) :
nullptr )
4417 if( &_other !=
this ) {
4420 nullableValue =
new( storage ) T( *_other );
4424 Option& operator = ( T
const& _value ) {
4426 nullableValue =
new( storage ) T( _value );
4432 nullableValue->~T();
4433 nullableValue =
nullptr;
4436 T& operator*() {
return *nullableValue; }
4437 T
const& operator*()
const {
return *nullableValue; }
4438 T* operator->() {
return nullableValue; }
4439 const T* operator->()
const {
return nullableValue; }
4441 T valueOr( T
const& defaultValue )
const {
4442 return nullableValue ? *nullableValue : defaultValue;
4445 bool some()
const {
return nullableValue !=
nullptr; }
4446 bool none()
const {
return nullableValue ==
nullptr; }
4448 bool operator !()
const {
return nullableValue ==
nullptr; }
4449 explicit operator bool()
const {
4455 alignas(
alignof(T))
char storage[
sizeof(T)];
4469 enum class Verbosity {
4477 NoAssertions = 0x01,
4488 InLexicographicalOrder,
4500 BeforeStartAndExit = BeforeStart | BeforeExit
4509 virtual bool allowThrows()
const = 0;
4510 virtual std::ostream& stream()
const = 0;
4511 virtual std::string name()
const = 0;
4512 virtual bool includeSuccessfulResults()
const = 0;
4513 virtual bool shouldDebugBreak()
const = 0;
4514 virtual bool warnAboutMissingAssertions()
const = 0;
4515 virtual bool warnAboutNoTests()
const = 0;
4516 virtual int abortAfter()
const = 0;
4517 virtual bool showInvisibles()
const = 0;
4518 virtual ShowDurations::OrNot showDurations()
const = 0;
4519 virtual TestSpec
const& testSpec()
const = 0;
4520 virtual bool hasTestFilters()
const = 0;
4521 virtual std::vector<std::string>
const& getTestsOrTags()
const = 0;
4522 virtual RunTests::InWhatOrder runOrder()
const = 0;
4523 virtual unsigned int rngSeed()
const = 0;
4524 virtual UseColour::YesOrNo useColour()
const = 0;
4525 virtual std::vector<std::string>
const& getSectionsToRun()
const = 0;
4526 virtual Verbosity verbosity()
const = 0;
4528 virtual bool benchmarkNoAnalysis()
const = 0;
4529 virtual int benchmarkSamples()
const = 0;
4530 virtual double benchmarkConfidenceInterval()
const = 0;
4531 virtual unsigned int benchmarkResamples()
const = 0;
4532 virtual std::chrono::milliseconds benchmarkWarmupTime()
const = 0;
4535 using IConfigPtr = std::shared_ptr<IConfig const>;
4551 using state_type = std::uint64_t;
4553 using result_type = std::uint32_t;
4554 static constexpr result_type (min)() {
4557 static constexpr result_type (max)() {
4558 return static_cast<result_type
>(-1);
4566 void seed(result_type seed_);
4567 void discard(uint64_t skip);
4569 result_type operator()();
4578 std::uint64_t m_state;
4583 static const std::uint64_t s_inc = (0x13ed0cc53f939476ULL << 1ULL) | 1ULL;
4592namespace Generators {
4594template <
typename Float>
4597 std::uniform_real_distribution<Float> m_dist;
4598 Float m_current_number;
4604 static_cast<void>(next());
4607 Float
const& get()
const override {
4608 return m_current_number;
4610 bool next()
override {
4611 m_current_number = m_dist(m_rng);
4616template <
typename Integer>
4619 std::uniform_int_distribution<Integer> m_dist;
4620 Integer m_current_number;
4626 static_cast<void>(next());
4629 Integer
const& get()
const override {
4630 return m_current_number;
4632 bool next()
override {
4633 m_current_number = m_dist(m_rng);
4640template <
typename T>
4641typename std::enable_if<std::is_integral<T>::value && !std::is_same<T, bool>::value,
4649template <
typename T>
4650typename std::enable_if<std::is_floating_point<T>::value,
4651GeneratorWrapper<T>>::type
4653 return GeneratorWrapper<T>(
4654 pf::make_unique<RandomFloatingGenerator<T>>(a, b)
4658template <
typename T>
4670 m_positive(m_step > T(0))
4672 assert(m_current != m_end &&
"Range start and end cannot be equal");
4673 assert(m_step != T(0) &&
"Step size cannot be zero");
4674 assert(((m_positive && m_current <= m_end) || (!m_positive && m_current >= m_end)) &&
"Step moves away from end");
4681 T
const& get()
const override {
4685 bool next()
override {
4686 m_current += m_step;
4687 return (m_positive) ? (m_current < m_end) : (m_current > m_end);
4691template <
typename T>
4693 static_assert(std::is_arithmetic<T>::value && !std::is_same<T, bool>::value,
"Type must be numeric");
4697template <
typename T>
4698GeneratorWrapper<T> range(T
const& start, T
const& end) {
4699 static_assert(std::is_integral<T>::value && !std::is_same<T, bool>::value,
"Type must be an integer");
4700 return GeneratorWrapper<T>(pf::make_unique<RangeGenerator<T>>(start, end));
4703template <
typename T>
4705 static_assert(!std::is_same<T, bool>::value,
4706 "IteratorGenerator currently does not support bools"
4707 "because of std::vector<bool> specialization");
4709 std::vector<T> m_elems;
4710 size_t m_current = 0;
4712 template <
typename InputIterator,
typename InputSentinel>
4713 IteratorGenerator(InputIterator first, InputSentinel last):m_elems(first, last) {
4714 if (m_elems.empty()) {
4715 Catch::throw_exception(
GeneratorException(
"IteratorGenerator received no valid values"));
4719 T
const& get()
const override {
4720 return m_elems[m_current];
4723 bool next()
override {
4725 return m_current != m_elems.size();
4729template <
typename InputIterator,
4730 typename InputSentinel,
4731 typename ResultType =
typename std::iterator_traits<InputIterator>::value_type>
4736template <
typename Container,
4737 typename ResultType =
typename Container::value_type>
4738GeneratorWrapper<ResultType> from_range(Container
const& cnt) {
4739 return GeneratorWrapper<ResultType>(pf::make_unique<IteratorGenerator<ResultType>>(cnt.begin(), cnt.end()));
4756#pragma clang diagnostic push
4757#pragma clang diagnostic ignored "-Wpadded"
4762 struct ITestInvoker;
4765 enum SpecialProperties{
4768 ShouldFail = 1 << 2,
4771 NonPortable = 1 << 5,
4776 std::string
const& _className,
4777 std::string
const& _description,
4778 std::vector<std::string>
const& _tags,
4781 friend void setTags(
TestCaseInfo& testCaseInfo, std::vector<std::string> tags );
4783 bool isHidden()
const;
4784 bool throws()
const;
4785 bool okToFail()
const;
4786 bool expectedToFail()
const;
4788 std::string tagsAsString()
const;
4791 std::string className;
4792 std::string description;
4793 std::vector<std::string> tags;
4794 std::vector<std::string> lcaseTags;
4796 SpecialProperties properties;
4804 TestCase withName( std::string
const& _newName )
const;
4806 void invoke()
const;
4810 bool operator == (
TestCase const& other )
const;
4811 bool operator < (
TestCase const& other )
const;
4814 std::shared_ptr<ITestInvoker> test;
4818 std::string
const& className,
4824#pragma clang diagnostic pop
4834 virtual bool aborting()
const = 0;
4843#import <objc/runtime.h>
4865 class OcMethod :
public ITestInvoker {
4868 OcMethod( Class cls,
SEL sel ) : m_cls( cls ), m_sel( sel ) {}
4870 virtual void invoke()
const {
4871 id obj = [[m_cls alloc] init];
4873 performOptionalSelector( obj,
@selector(setUp) );
4874 performOptionalSelector( obj, m_sel );
4875 performOptionalSelector( obj,
@selector(tearDown) );
4877 arcSafeRelease( obj );
4880 virtual ~OcMethod() {}
4888 inline std::string getAnnotation( Class cls,
4889 std::string
const& annotationName,
4890 std::string
const& testCaseName ) {
4891 NSString* selStr = [[NSString alloc] initWithFormat:@"Catch_%s_%s", annotationName.c_str(), testCaseName.c_str()];
4892 SEL sel = NSSelectorFromString( selStr );
4893 arcSafeRelease( selStr );
4894 id value = performOptionalSelector( cls, sel );
4896 return [(NSString*)value UTF8String];
4901 inline std::size_t registerTestMethods() {
4902 std::size_t noTestMethods = 0;
4903 int noClasses = objc_getClassList(
nullptr, 0 );
4905 Class* classes = (CATCH_UNSAFE_UNRETAINED Class *)malloc(
sizeof(Class) * noClasses);
4906 objc_getClassList( classes, noClasses );
4908 for(
int c = 0; c < noClasses; c++ ) {
4909 Class cls = classes[c];
4912 Method* methods = class_copyMethodList( cls, &count );
4913 for( u_int m = 0; m < count ; m++ ) {
4914 SEL selector = method_getName(methods[m]);
4915 std::string methodName = sel_getName(selector);
4916 if( startsWith( methodName,
"Catch_TestCase_" ) ) {
4917 std::string testCaseName = methodName.substr( 15 );
4918 std::string name = Detail::getAnnotation( cls,
"Name", testCaseName );
4919 std::string desc = Detail::getAnnotation( cls,
"Description", testCaseName );
4920 const char* className = class_getName( cls );
4922 getMutableRegistryHub().registerTest( makeTestCase(
new OcMethod( cls, selector ), className, NameAndTags( name.c_str(), desc.c_str() ), SourceLineInfo(
"",0) ) );
4929 return noTestMethods;
4932#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
4934 namespace Matchers {
4936 namespace NSStringMatchers {
4938 struct StringHolder : MatcherBase<NSString*>{
4939 StringHolder( NSString* substr ) : m_substr( [substr copy] ){}
4940 StringHolder( StringHolder
const& other ) : m_substr( [other.m_substr copy] ){}
4942 arcSafeRelease( m_substr );
4945 bool match( NSString* str )
const override {
4949 NSString* CATCH_ARC_STRONG m_substr;
4952 struct Equals : StringHolder {
4953 Equals( NSString* substr ) : StringHolder( substr ){}
4955 bool match( NSString* str )
const override {
4956 return (str != nil || m_substr == nil ) &&
4957 [str isEqualToString:m_substr];
4960 std::string describe()
const override {
4961 return "equals string: " + Catch::Detail::stringify( m_substr );
4965 struct Contains : StringHolder {
4966 Contains( NSString* substr ) : StringHolder( substr ){}
4968 bool match( NSString* str )
const override {
4969 return (str != nil || m_substr == nil ) &&
4970 [str rangeOfString:m_substr].location != NSNotFound;
4973 std::string describe()
const override {
4974 return "contains string: " + Catch::Detail::stringify( m_substr );
4978 struct StartsWith : StringHolder {
4979 StartsWith( NSString* substr ) : StringHolder( substr ){}
4981 bool match( NSString* str )
const override {
4982 return (str != nil || m_substr == nil ) &&
4983 [str rangeOfString:m_substr].location == 0;
4986 std::string describe()
const override {
4987 return "starts with: " + Catch::Detail::stringify( m_substr );
4990 struct EndsWith : StringHolder {
4991 EndsWith( NSString* substr ) : StringHolder( substr ){}
4993 bool match( NSString* str )
const override {
4994 return (str != nil || m_substr == nil ) &&
4995 [str rangeOfString:m_substr].location == [str length] - [m_substr length];
4998 std::string describe()
const override {
4999 return "ends with: " + Catch::Detail::stringify( m_substr );
5006 inline Impl::NSStringMatchers::Equals
5007 Equals( NSString* substr ){
return Impl::NSStringMatchers::Equals( substr ); }
5009 inline Impl::NSStringMatchers::Contains
5010 Contains( NSString* substr ){
return Impl::NSStringMatchers::Contains( substr ); }
5012 inline Impl::NSStringMatchers::StartsWith
5013 StartsWith( NSString* substr ){
return Impl::NSStringMatchers::StartsWith( substr ); }
5015 inline Impl::NSStringMatchers::EndsWith
5016 EndsWith( NSString* substr ){
return Impl::NSStringMatchers::EndsWith( substr ); }
5020 using namespace Matchers;
5027#define OC_MAKE_UNIQUE_NAME( root, uniqueSuffix ) root##uniqueSuffix
5028#define OC_TEST_CASE2( name, desc, uniqueSuffix ) \
5029+(NSString*) OC_MAKE_UNIQUE_NAME( Catch_Name_test_, uniqueSuffix ) \
5033+(NSString*) OC_MAKE_UNIQUE_NAME( Catch_Description_test_, uniqueSuffix ) \
5037-(void) OC_MAKE_UNIQUE_NAME( Catch_TestCase_test_, uniqueSuffix )
5039#define OC_TEST_CASE( name, desc ) OC_TEST_CASE2( name, desc, __LINE__ )
5045#if defined(CATCH_CONFIG_EXTERNAL_INTERFACES) || defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
5057#pragma clang diagnostic push
5058#pragma clang diagnostic ignored "-Wpadded"
5064#pragma clang diagnostic push
5065#pragma clang diagnostic ignored "-Wpadded"
5072 class WildcardPattern {
5073 enum WildcardPosition {
5075 WildcardAtStart = 1,
5077 WildcardAtBothEnds = WildcardAtStart | WildcardAtEnd
5082 WildcardPattern( std::string
const& pattern, CaseSensitive::Choice caseSensitivity );
5083 virtual ~WildcardPattern() =
default;
5084 virtual bool matches( std::string
const& str )
const;
5087 std::string normaliseString( std::string
const& str )
const;
5088 CaseSensitive::Choice m_caseSensitivity;
5089 WildcardPosition m_wildcard = NoWildcard;
5090 std::string m_pattern;
5106 explicit Pattern( std::string
const& name );
5108 virtual bool matches( TestCaseInfo
const& testCase )
const = 0;
5109 std::string
const& name()
const;
5111 std::string
const m_name;
5113 using PatternPtr = std::shared_ptr<Pattern>;
5115 class NamePattern :
public Pattern {
5117 explicit NamePattern( std::string
const& name, std::string
const& filterString );
5118 bool matches( TestCaseInfo
const& testCase )
const override;
5120 WildcardPattern m_wildcardPattern;
5123 class TagPattern :
public Pattern {
5125 explicit TagPattern( std::string
const& tag, std::string
const& filterString );
5126 bool matches( TestCaseInfo
const& testCase )
const override;
5131 class ExcludedPattern :
public Pattern {
5133 explicit ExcludedPattern( PatternPtr
const& underlyingPattern );
5134 bool matches( TestCaseInfo
const& testCase )
const override;
5136 PatternPtr m_underlyingPattern;
5140 std::vector<PatternPtr> m_patterns;
5142 bool matches( TestCaseInfo
const& testCase )
const;
5143 std::string name()
const;
5147 struct FilterMatch {
5149 std::vector<TestCase const*> tests;
5151 using Matches = std::vector<FilterMatch>;
5152 using vectorStrings = std::vector<std::string>;
5154 bool hasFilters()
const;
5155 bool matches( TestCaseInfo
const& testCase )
const;
5156 Matches matchesByFilter( std::vector<TestCase>
const& testCases, IConfig
const& config )
const;
5157 const vectorStrings & getInvalidArgs()
const;
5160 std::vector<Filter> m_filters;
5161 std::vector<std::string> m_invalidArgs;
5162 friend class TestSpecParser;
5167#pragma clang diagnostic pop
5179 struct ITagAliasRegistry {
5180 virtual ~ITagAliasRegistry();
5182 virtual TagAlias
const* find( std::string
const& alias )
const = 0;
5183 virtual std::string expandAliases( std::string
const& unexpandedTestSpec )
const = 0;
5185 static ITagAliasRegistry
const& get();
5193 class TestSpecParser {
5194 enum Mode{ None, Name, QuotedName,
Tag, EscapedName };
5196 Mode lastMode = None;
5197 bool m_exclusion =
false;
5198 std::size_t m_pos = 0;
5199 std::size_t m_realPatternPos = 0;
5201 std::string m_substring;
5202 std::string m_patternName;
5203 std::vector<std::size_t> m_escapeChars;
5204 TestSpec::Filter m_currentFilter;
5205 TestSpec m_testSpec;
5206 ITagAliasRegistry
const* m_tagAliases =
nullptr;
5209 TestSpecParser( ITagAliasRegistry
const& tagAliases );
5211 TestSpecParser& parse( std::string
const& arg );
5212 TestSpec testSpec();
5215 bool visitChar(
char c );
5216 void startNewMode( Mode mode );
5217 bool processNoneChar(
char c );
5218 void processNameChar(
char c );
5219 bool processOtherChar(
char c );
5222 bool isControlChar(
char c )
const;
5223 void saveLastMode();
5224 void revertBackToLastMode();
5229 std::string preprocessPattern();
5231 void addNamePattern();
5233 void addTagPattern();
5235 inline void addCharToPattern(
char c) {
5242 TestSpec parseTestSpec( std::string
const& arg );
5247#pragma clang diagnostic pop
5257#ifndef CATCH_CONFIG_CONSOLE_WIDTH
5258#define CATCH_CONFIG_CONSOLE_WIDTH 80
5266 bool listTests =
false;
5267 bool listTags =
false;
5268 bool listReporters =
false;
5269 bool listTestNamesOnly =
false;
5271 bool showSuccessfulTests =
false;
5272 bool shouldDebugBreak =
false;
5273 bool noThrow =
false;
5274 bool showHelp =
false;
5275 bool showInvisibles =
false;
5276 bool filenamesAsTags =
false;
5277 bool libIdentify =
false;
5279 int abortAfter = -1;
5280 unsigned int rngSeed = 0;
5282 bool benchmarkNoAnalysis =
false;
5283 unsigned int benchmarkSamples = 100;
5284 double benchmarkConfidenceInterval = 0.95;
5285 unsigned int benchmarkResamples = 100000;
5286 std::chrono::milliseconds::rep benchmarkWarmupTime = 100;
5288 Verbosity verbosity = Verbosity::Normal;
5289 WarnAbout::What warnings = WarnAbout::Nothing;
5290 ShowDurations::OrNot showDurations = ShowDurations::DefaultForReporter;
5291 RunTests::InWhatOrder runOrder = RunTests::InDeclarationOrder;
5292 UseColour::YesOrNo useColour = UseColour::Auto;
5293 WaitForKeypress::When waitForKeypress = WaitForKeypress::Never;
5295 std::string outputFilename;
5297 std::string processName;
5298#ifndef CATCH_CONFIG_DEFAULT_REPORTER
5299#define CATCH_CONFIG_DEFAULT_REPORTER "console"
5301 std::string reporterName = CATCH_CONFIG_DEFAULT_REPORTER;
5302#undef CATCH_CONFIG_DEFAULT_REPORTER
5304 std::vector<std::string> testsOrTags;
5305 std::vector<std::string> sectionsToRun;
5308 class Config :
public IConfig {
5312 Config( ConfigData
const& data );
5313 virtual ~Config() =
default;
5315 std::string
const& getFilename()
const;
5317 bool listTests()
const;
5318 bool listTestNamesOnly()
const;
5319 bool listTags()
const;
5320 bool listReporters()
const;
5322 std::string getProcessName()
const;
5323 std::string
const& getReporterName()
const;
5325 std::vector<std::string>
const& getTestsOrTags()
const override;
5326 std::vector<std::string>
const& getSectionsToRun()
const override;
5328 TestSpec
const& testSpec()
const override;
5329 bool hasTestFilters()
const override;
5331 bool showHelp()
const;
5334 bool allowThrows()
const override;
5335 std::ostream& stream()
const override;
5336 std::string name()
const override;
5337 bool includeSuccessfulResults()
const override;
5338 bool warnAboutMissingAssertions()
const override;
5339 bool warnAboutNoTests()
const override;
5340 ShowDurations::OrNot showDurations()
const override;
5341 RunTests::InWhatOrder runOrder()
const override;
5342 unsigned int rngSeed()
const override;
5343 UseColour::YesOrNo useColour()
const override;
5344 bool shouldDebugBreak()
const override;
5345 int abortAfter()
const override;
5346 bool showInvisibles()
const override;
5347 Verbosity verbosity()
const override;
5348 bool benchmarkNoAnalysis()
const override;
5349 int benchmarkSamples()
const override;
5350 double benchmarkConfidenceInterval()
const override;
5351 unsigned int benchmarkResamples()
const override;
5352 std::chrono::milliseconds benchmarkWarmupTime()
const override;
5356 IStream
const* openStream();
5359 std::unique_ptr<IStream const> m_stream;
5360 TestSpec m_testSpec;
5361 bool m_hasTestFilters =
false;
5373 struct AssertionResultData
5375 AssertionResultData() =
delete;
5377 AssertionResultData( ResultWas::OfType _resultType, LazyExpression
const& _lazyExpression );
5379 std::string message;
5380 mutable std::string reconstructedExpression;
5381 LazyExpression lazyExpression;
5382 ResultWas::OfType resultType;
5384 std::string reconstructExpression()
const;
5387 class AssertionResult {
5389 AssertionResult() =
delete;
5390 AssertionResult( AssertionInfo
const& info, AssertionResultData
const& data );
5393 bool succeeded()
const;
5394 ResultWas::OfType getResultType()
const;
5395 bool hasExpression()
const;
5396 bool hasMessage()
const;
5397 std::string getExpression()
const;
5398 std::string getExpressionInMacro()
const;
5399 bool hasExpandedExpression()
const;
5400 std::string getExpandedExpression()
const;
5401 std::string getMessage()
const;
5402 SourceLineInfo getSourceInfo()
const;
5403 StringRef getTestMacroName()
const;
5406 AssertionInfo m_info;
5407 AssertionResultData m_resultData;
5413#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
5420 namespace Benchmark {
5421 template <
typename Duration>
5424 Duration lower_bound;
5425 Duration upper_bound;
5426 double confidence_interval;
5428 template <
typename Duration2>
5429 operator Estimate<Duration2>()
const {
5430 return { point, lower_bound, upper_bound, confidence_interval };
5442 namespace Benchmark {
5443 struct OutlierClassification {
5444 int samples_seen = 0;
5448 int high_severe = 0;
5451 return low_severe + low_mild + high_mild + high_severe;
5469 struct ReporterConfig {
5470 explicit ReporterConfig( IConfigPtr
const& _fullConfig );
5472 ReporterConfig( IConfigPtr
const& _fullConfig, std::ostream& _stream );
5474 std::ostream& stream()
const;
5475 IConfigPtr fullConfig()
const;
5478 std::ostream* m_stream;
5479 IConfigPtr m_fullConfig;
5482 struct ReporterPreferences {
5483 bool shouldRedirectStdOut =
false;
5484 bool shouldReportAllAssertions =
false;
5487 template<
typename T>
5488 struct LazyStat : Option<T> {
5489 LazyStat& operator=( T
const& _value ) {
5490 Option<T>::operator=( _value );
5501 struct TestRunInfo {
5502 TestRunInfo( std::string
const& _name );
5506 GroupInfo( std::string
const& _name,
5507 std::size_t _groupIndex,
5508 std::size_t _groupsCount );
5511 std::size_t groupIndex;
5512 std::size_t groupsCounts;
5515 struct AssertionStats {
5516 AssertionStats( AssertionResult
const& _assertionResult,
5517 std::vector<MessageInfo>
const& _infoMessages,
5518 Totals
const& _totals );
5520 AssertionStats( AssertionStats
const& ) =
default;
5521 AssertionStats( AssertionStats && ) =
default;
5522 AssertionStats& operator = ( AssertionStats
const& ) =
delete;
5523 AssertionStats& operator = ( AssertionStats && ) =
delete;
5524 virtual ~AssertionStats();
5526 AssertionResult assertionResult;
5527 std::vector<MessageInfo> infoMessages;
5531 struct SectionStats {
5532 SectionStats( SectionInfo
const& _sectionInfo,
5533 Counts
const& _assertions,
5534 double _durationInSeconds,
5535 bool _missingAssertions );
5536 SectionStats( SectionStats
const& ) =
default;
5537 SectionStats( SectionStats && ) =
default;
5538 SectionStats& operator = ( SectionStats
const& ) =
default;
5539 SectionStats& operator = ( SectionStats && ) =
default;
5540 virtual ~SectionStats();
5542 SectionInfo sectionInfo;
5544 double durationInSeconds;
5545 bool missingAssertions;
5548 struct TestCaseStats {
5549 TestCaseStats( TestCaseInfo
const& _testInfo,
5550 Totals
const& _totals,
5551 std::string
const& _stdOut,
5552 std::string
const& _stdErr,
5555 TestCaseStats( TestCaseStats
const& ) =
default;
5556 TestCaseStats( TestCaseStats && ) =
default;
5557 TestCaseStats& operator = ( TestCaseStats
const& ) =
default;
5558 TestCaseStats& operator = ( TestCaseStats && ) =
default;
5559 virtual ~TestCaseStats();
5561 TestCaseInfo testInfo;
5568 struct TestGroupStats {
5569 TestGroupStats( GroupInfo
const& _groupInfo,
5570 Totals
const& _totals,
5572 TestGroupStats( GroupInfo
const& _groupInfo );
5574 TestGroupStats( TestGroupStats
const& ) =
default;
5575 TestGroupStats( TestGroupStats && ) =
default;
5576 TestGroupStats& operator = ( TestGroupStats
const& ) =
default;
5577 TestGroupStats& operator = ( TestGroupStats && ) =
default;
5578 virtual ~TestGroupStats();
5580 GroupInfo groupInfo;
5585 struct TestRunStats {
5586 TestRunStats( TestRunInfo
const& _runInfo,
5587 Totals
const& _totals,
5590 TestRunStats( TestRunStats
const& ) =
default;
5591 TestRunStats( TestRunStats && ) =
default;
5592 TestRunStats& operator = ( TestRunStats
const& ) =
default;
5593 TestRunStats& operator = ( TestRunStats && ) =
default;
5594 virtual ~TestRunStats();
5596 TestRunInfo runInfo;
5601#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
5602 struct BenchmarkInfo {
5604 double estimatedDuration;
5607 unsigned int resamples;
5608 double clockResolution;
5612 template <
class Duration>
5613 struct BenchmarkStats {
5616 std::vector<Duration> samples;
5617 Benchmark::Estimate<Duration> mean;
5618 Benchmark::Estimate<Duration> standardDeviation;
5619 Benchmark::OutlierClassification outliers;
5620 double outlierVariance;
5622 template <
typename Duration2>
5623 operator BenchmarkStats<Duration2>()
const {
5624 std::vector<Duration2> samples2;
5625 samples2.reserve(samples.size());
5626 std::transform(samples.begin(), samples.end(), std::back_inserter(samples2), [](Duration d) { return Duration2(d); });
5629 std::move(samples2),
5639 struct IStreamingReporter {
5640 virtual ~IStreamingReporter() =
default;
5646 virtual ReporterPreferences getPreferences()
const = 0;
5648 virtual void noMatchingTestCases( std::string
const& spec ) = 0;
5650 virtual void reportInvalidArguments(std::string
const&) {}
5652 virtual void testRunStarting( TestRunInfo
const& testRunInfo ) = 0;
5653 virtual void testGroupStarting( GroupInfo
const& groupInfo ) = 0;
5655 virtual void testCaseStarting( TestCaseInfo
const& testInfo ) = 0;
5656 virtual void sectionStarting( SectionInfo
const& sectionInfo ) = 0;
5658#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
5659 virtual void benchmarkPreparing( std::string
const& ) {}
5660 virtual void benchmarkStarting( BenchmarkInfo
const& ) {}
5661 virtual void benchmarkEnded( BenchmarkStats<>
const& ) {}
5662 virtual void benchmarkFailed( std::string
const& ) {}
5665 virtual void assertionStarting( AssertionInfo
const& assertionInfo ) = 0;
5668 virtual bool assertionEnded( AssertionStats
const& assertionStats ) = 0;
5670 virtual void sectionEnded( SectionStats
const& sectionStats ) = 0;
5671 virtual void testCaseEnded( TestCaseStats
const& testCaseStats ) = 0;
5672 virtual void testGroupEnded( TestGroupStats
const& testGroupStats ) = 0;
5673 virtual void testRunEnded( TestRunStats
const& testRunStats ) = 0;
5675 virtual void skipTest( TestCaseInfo
const& testInfo ) = 0;
5678 virtual void fatalErrorEncountered( StringRef name );
5680 virtual bool isMulti()
const;
5682 using IStreamingReporterPtr = std::unique_ptr<IStreamingReporter>;
5684 struct IReporterFactory {
5685 virtual ~IReporterFactory();
5686 virtual IStreamingReporterPtr create( ReporterConfig
const& config )
const = 0;
5687 virtual std::string getDescription()
const = 0;
5689 using IReporterFactoryPtr = std::shared_ptr<IReporterFactory>;
5691 struct IReporterRegistry {
5692 using FactoryMap = std::map<std::string, IReporterFactoryPtr>;
5693 using Listeners = std::vector<IReporterFactoryPtr>;
5695 virtual ~IReporterRegistry();
5696 virtual IStreamingReporterPtr create( std::string
const& name, IConfigPtr
const& config )
const = 0;
5697 virtual FactoryMap
const& getFactories()
const = 0;
5698 virtual Listeners
const& getListeners()
const = 0;
5713 void prepareExpandedExpression(AssertionResult& result);
5716 std::string getFormattedDuration(
double duration );
5718 std::string serializeFilters( std::vector<std::string>
const& container );
5720 template<
typename DerivedT>
5721 struct StreamingReporterBase : IStreamingReporter {
5723 StreamingReporterBase( ReporterConfig
const& _config )
5724 : m_config( _config.fullConfig() ),
5725 stream( _config.stream() )
5727 m_reporterPrefs.shouldRedirectStdOut =
false;
5728 if( !DerivedT::getSupportedVerbosities().count( m_config->verbosity() ) )
5729 CATCH_ERROR(
"Verbosity level not supported by this reporter" );
5732 ReporterPreferences getPreferences()
const override {
5733 return m_reporterPrefs;
5736 static std::set<Verbosity> getSupportedVerbosities() {
5737 return { Verbosity::Normal };
5740 ~StreamingReporterBase()
override =
default;
5742 void noMatchingTestCases(std::string
const&)
override {}
5744 void reportInvalidArguments(std::string
const&)
override {}
5746 void testRunStarting(TestRunInfo
const& _testRunInfo)
override {
5747 currentTestRunInfo = _testRunInfo;
5750 void testGroupStarting(GroupInfo
const& _groupInfo)
override {
5751 currentGroupInfo = _groupInfo;
5754 void testCaseStarting(TestCaseInfo
const& _testInfo)
override {
5755 currentTestCaseInfo = _testInfo;
5757 void sectionStarting(SectionInfo
const& _sectionInfo)
override {
5758 m_sectionStack.push_back(_sectionInfo);
5761 void sectionEnded(SectionStats
const& )
override {
5762 m_sectionStack.pop_back();
5764 void testCaseEnded(TestCaseStats
const& )
override {
5765 currentTestCaseInfo.reset();
5767 void testGroupEnded(TestGroupStats
const& )
override {
5768 currentGroupInfo.reset();
5770 void testRunEnded(TestRunStats
const& )
override {
5771 currentTestCaseInfo.reset();
5772 currentGroupInfo.reset();
5773 currentTestRunInfo.reset();
5776 void skipTest(TestCaseInfo
const&)
override {
5781 IConfigPtr m_config;
5782 std::ostream& stream;
5784 LazyStat<TestRunInfo> currentTestRunInfo;
5785 LazyStat<GroupInfo> currentGroupInfo;
5786 LazyStat<TestCaseInfo> currentTestCaseInfo;
5788 std::vector<SectionInfo> m_sectionStack;
5789 ReporterPreferences m_reporterPrefs;
5792 template<
typename DerivedT>
5793 struct CumulativeReporterBase : IStreamingReporter {
5794 template<
typename T,
typename ChildNodeT>
5796 explicit Node( T
const& _value ) : value( _value ) {}
5799 using ChildNodes = std::vector<std::shared_ptr<ChildNodeT>>;
5801 ChildNodes children;
5803 struct SectionNode {
5804 explicit SectionNode(SectionStats
const& _stats) : stats(_stats) {}
5805 virtual ~SectionNode() =
default;
5807 bool operator == (SectionNode
const& other)
const {
5808 return stats.sectionInfo.lineInfo == other.stats.sectionInfo.lineInfo;
5810 bool operator == (std::shared_ptr<SectionNode>
const& other)
const {
5811 return operator==(*other);
5815 using ChildSections = std::vector<std::shared_ptr<SectionNode>>;
5816 using Assertions = std::vector<AssertionStats>;
5817 ChildSections childSections;
5818 Assertions assertions;
5823 struct BySectionInfo {
5824 BySectionInfo( SectionInfo
const& other ) : m_other( other ) {}
5825 BySectionInfo( BySectionInfo
const& other ) : m_other( other.m_other ) {}
5826 bool operator() (std::shared_ptr<SectionNode>
const& node)
const {
5827 return ((node->stats.sectionInfo.name == m_other.name) &&
5828 (node->stats.sectionInfo.lineInfo == m_other.lineInfo));
5830 void operator=(BySectionInfo
const&) =
delete;
5833 SectionInfo
const& m_other;
5836 using TestCaseNode = Node<TestCaseStats, SectionNode>;
5837 using TestGroupNode = Node<TestGroupStats, TestCaseNode>;
5838 using TestRunNode = Node<TestRunStats, TestGroupNode>;
5840 CumulativeReporterBase( ReporterConfig
const& _config )
5841 : m_config( _config.fullConfig() ),
5842 stream( _config.stream() )
5844 m_reporterPrefs.shouldRedirectStdOut =
false;
5845 if( !DerivedT::getSupportedVerbosities().count( m_config->verbosity() ) )
5846 CATCH_ERROR(
"Verbosity level not supported by this reporter" );
5848 ~CumulativeReporterBase()
override =
default;
5850 ReporterPreferences getPreferences()
const override {
5851 return m_reporterPrefs;
5854 static std::set<Verbosity> getSupportedVerbosities() {
5855 return { Verbosity::Normal };
5858 void testRunStarting( TestRunInfo
const& )
override {}
5859 void testGroupStarting( GroupInfo
const& )
override {}
5861 void testCaseStarting( TestCaseInfo
const& )
override {}
5863 void sectionStarting( SectionInfo
const& sectionInfo )
override {
5864 SectionStats incompleteStats( sectionInfo, Counts(), 0,
false );
5865 std::shared_ptr<SectionNode> node;
5866 if( m_sectionStack.empty() ) {
5867 if( !m_rootSection )
5868 m_rootSection = std::make_shared<SectionNode>( incompleteStats );
5869 node = m_rootSection;
5872 SectionNode& parentNode = *m_sectionStack.back();
5874 std::find_if( parentNode.childSections.begin(),
5875 parentNode.childSections.end(),
5876 BySectionInfo( sectionInfo ) );
5877 if( it == parentNode.childSections.end() ) {
5878 node = std::make_shared<SectionNode>( incompleteStats );
5879 parentNode.childSections.push_back( node );
5884 m_sectionStack.push_back( node );
5885 m_deepestSection = std::move(node);
5888 void assertionStarting(AssertionInfo
const&)
override {}
5890 bool assertionEnded(AssertionStats
const& assertionStats)
override {
5891 assert(!m_sectionStack.empty());
5897 prepareExpandedExpression(
const_cast<AssertionResult&
>( assertionStats.assertionResult ) );
5898 SectionNode& sectionNode = *m_sectionStack.back();
5899 sectionNode.assertions.push_back(assertionStats);
5902 void sectionEnded(SectionStats
const& sectionStats)
override {
5903 assert(!m_sectionStack.empty());
5904 SectionNode& node = *m_sectionStack.back();
5905 node.stats = sectionStats;
5906 m_sectionStack.pop_back();
5908 void testCaseEnded(TestCaseStats
const& testCaseStats)
override {
5909 auto node = std::make_shared<TestCaseNode>(testCaseStats);
5910 assert(m_sectionStack.size() == 0);
5911 node->children.push_back(m_rootSection);
5912 m_testCases.push_back(node);
5913 m_rootSection.reset();
5915 assert(m_deepestSection);
5916 m_deepestSection->stdOut = testCaseStats.stdOut;
5917 m_deepestSection->stdErr = testCaseStats.stdErr;
5919 void testGroupEnded(TestGroupStats
const& testGroupStats)
override {
5920 auto node = std::make_shared<TestGroupNode>(testGroupStats);
5921 node->children.swap(m_testCases);
5922 m_testGroups.push_back(node);
5924 void testRunEnded(TestRunStats
const& testRunStats)
override {
5925 auto node = std::make_shared<TestRunNode>(testRunStats);
5926 node->children.swap(m_testGroups);
5927 m_testRuns.push_back(node);
5928 testRunEndedCumulative();
5930 virtual void testRunEndedCumulative() = 0;
5932 void skipTest(TestCaseInfo
const&)
override {}
5934 IConfigPtr m_config;
5935 std::ostream& stream;
5936 std::vector<AssertionStats> m_assertions;
5937 std::vector<std::vector<std::shared_ptr<SectionNode>>> m_sections;
5938 std::vector<std::shared_ptr<TestCaseNode>> m_testCases;
5939 std::vector<std::shared_ptr<TestGroupNode>> m_testGroups;
5941 std::vector<std::shared_ptr<TestRunNode>> m_testRuns;
5943 std::shared_ptr<SectionNode> m_rootSection;
5944 std::shared_ptr<SectionNode> m_deepestSection;
5945 std::vector<std::shared_ptr<SectionNode>> m_sectionStack;
5946 ReporterPreferences m_reporterPrefs;
5950 char const* getLineOfChars() {
5951 static char line[CATCH_CONFIG_CONSOLE_WIDTH] = {0};
5953 std::memset( line,
C, CATCH_CONFIG_CONSOLE_WIDTH-1 );
5954 line[CATCH_CONFIG_CONSOLE_WIDTH-1] = 0;
5959 struct TestEventListenerBase : StreamingReporterBase<TestEventListenerBase> {
5960 TestEventListenerBase( ReporterConfig
const& _config );
5962 static std::set<Verbosity> getSupportedVerbosities();
5964 void assertionStarting(AssertionInfo
const&)
override;
5965 bool assertionEnded(AssertionStats
const&)
override;
5989 BrightRed = Bright | Red,
5990 BrightGreen = Bright | Green,
5991 LightGrey = Bright | Grey,
5992 BrightWhite = Bright | White,
5993 BrightYellow = Bright | Yellow,
5996 FileName = LightGrey,
5997 Warning = BrightYellow,
5998 ResultError = BrightRed,
5999 ResultSuccess = BrightGreen,
6000 ResultExpectedFailure = Warning,
6005 OriginalExpression = Cyan,
6006 ReconstructedExpression = BrightYellow,
6008 SecondaryText = LightGrey,
6013 Colour( Code _colourCode );
6014 Colour( Colour&& other )
noexcept;
6015 Colour& operator=( Colour&& other )
noexcept;
6019 static void use( Code _colourCode );
6022 bool m_moved =
false;
6025 std::ostream& operator << ( std::ostream& os, Colour
const& );
6035 template<
typename T>
6036 class ReporterRegistrar {
6038 class ReporterFactory :
public IReporterFactory {
6040 IStreamingReporterPtr create( ReporterConfig
const& config )
const override {
6041 return std::unique_ptr<T>(
new T( config ) );
6044 std::string getDescription()
const override {
6045 return T::getDescription();
6051 explicit ReporterRegistrar( std::string
const& name ) {
6052 getMutableRegistryHub().registerReporter( name, std::make_shared<ReporterFactory>() );
6056 template<
typename T>
6057 class ListenerRegistrar {
6059 class ListenerFactory :
public IReporterFactory {
6061 IStreamingReporterPtr create( ReporterConfig
const& config )
const override {
6062 return std::unique_ptr<T>(
new T( config ) );
6064 std::string getDescription()
const override {
6065 return std::string();
6071 ListenerRegistrar() {
6072 getMutableRegistryHub().registerListener( std::make_shared<ListenerFactory>() );
6077#if !defined(CATCH_CONFIG_DISABLE)
6079#define CATCH_REGISTER_REPORTER( name, reporterType ) \
6080 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
6081 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
6082 namespace{ Catch::ReporterRegistrar<reporterType> catch_internal_RegistrarFor##reporterType( name ); } \
6083 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION
6085#define CATCH_REGISTER_LISTENER( listenerType ) \
6086 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION \
6087 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS \
6088 namespace{ Catch::ListenerRegistrar<listenerType> catch_internal_RegistrarFor##listenerType; } \
6089 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION
6092#define CATCH_REGISTER_REPORTER(name, reporterType)
6093#define CATCH_REGISTER_LISTENER(listenerType)
6103 struct CompactReporter : StreamingReporterBase<CompactReporter> {
6105 using StreamingReporterBase::StreamingReporterBase;
6107 ~CompactReporter()
override;
6109 static std::string getDescription();
6111 ReporterPreferences getPreferences()
const override;
6113 void noMatchingTestCases(std::string
const& spec)
override;
6115 void assertionStarting(AssertionInfo
const&)
override;
6117 bool assertionEnded(AssertionStats
const& _assertionStats)
override;
6119 void sectionEnded(SectionStats
const& _sectionStats)
override;
6121 void testRunEnded(TestRunStats
const& _testRunStats)
override;
6130#if defined(_MSC_VER)
6131#pragma warning(push)
6132#pragma warning(disable:4061)
6139 struct SummaryColumn;
6142 struct ConsoleReporter : StreamingReporterBase<ConsoleReporter> {
6143 std::unique_ptr<TablePrinter> m_tablePrinter;
6145 ConsoleReporter(ReporterConfig
const& config);
6146 ~ConsoleReporter()
override;
6147 static std::string getDescription();
6149 void noMatchingTestCases(std::string
const& spec)
override;
6151 void reportInvalidArguments(std::string
const&arg)
override;
6153 void assertionStarting(AssertionInfo
const&)
override;
6155 bool assertionEnded(AssertionStats
const& _assertionStats)
override;
6157 void sectionStarting(SectionInfo
const& _sectionInfo)
override;
6158 void sectionEnded(SectionStats
const& _sectionStats)
override;
6160#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
6161 void benchmarkPreparing(std::string
const& name)
override;
6162 void benchmarkStarting(BenchmarkInfo
const& info)
override;
6163 void benchmarkEnded(BenchmarkStats<>
const& stats)
override;
6164 void benchmarkFailed(std::string
const& error)
override;
6167 void testCaseEnded(TestCaseStats
const& _testCaseStats)
override;
6168 void testGroupEnded(TestGroupStats
const& _testGroupStats)
override;
6169 void testRunEnded(TestRunStats
const& _testRunStats)
override;
6170 void testRunStarting(TestRunInfo
const& _testRunInfo)
override;
6175 void lazyPrintWithoutClosingBenchmarkTable();
6176 void lazyPrintRunInfo();
6177 void lazyPrintGroupInfo();
6178 void printTestCaseAndSectionHeader();
6180 void printClosedHeader(std::string
const& _name);
6181 void printOpenHeader(std::string
const& _name);
6185 void printHeaderString(std::string
const& _string, std::size_t indent = 0);
6187 void printTotals(Totals
const& totals);
6188 void printSummaryRow(std::string
const& label, std::vector<SummaryColumn>
const& cols, std::size_t row);
6190 void printTotalsDivider(Totals
const& totals);
6191 void printSummaryDivider();
6192 void printTestFilters();
6195 bool m_headerPrinted =
false;
6200#if defined(_MSC_VER)
6212 enum class XmlFormatting {
6218 XmlFormatting operator | (XmlFormatting lhs, XmlFormatting rhs);
6219 XmlFormatting operator & (XmlFormatting lhs, XmlFormatting rhs);
6223 enum ForWhat { ForTextNodes, ForAttributes };
6225 XmlEncode( std::string
const& str, ForWhat forWhat = ForTextNodes );
6227 void encodeTo( std::ostream& os )
const;
6229 friend std::ostream&
operator << ( std::ostream& os, XmlEncode
const& xmlEncode );
6239 class ScopedElement {
6241 ScopedElement( XmlWriter* writer, XmlFormatting fmt );
6243 ScopedElement( ScopedElement&& other )
noexcept;
6244 ScopedElement& operator=( ScopedElement&& other )
noexcept;
6248 ScopedElement& writeText( std::string
const& text, XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent );
6250 template<
typename T>
6251 ScopedElement& writeAttribute( std::string
const& name, T
const& attribute ) {
6252 m_writer->writeAttribute( name, attribute );
6257 mutable XmlWriter* m_writer =
nullptr;
6258 XmlFormatting m_fmt;
6261 XmlWriter( std::ostream& os = Catch::cout() );
6264 XmlWriter( XmlWriter
const& ) =
delete;
6265 XmlWriter& operator=( XmlWriter
const& ) =
delete;
6267 XmlWriter& startElement( std::string
const& name, XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent);
6269 ScopedElement scopedElement( std::string
const& name, XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent);
6271 XmlWriter& endElement(XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent);
6273 XmlWriter& writeAttribute( std::string
const& name, std::string
const& attribute );
6275 XmlWriter& writeAttribute( std::string
const& name,
bool attribute );
6277 template<
typename T>
6278 XmlWriter& writeAttribute( std::string
const& name, T
const& attribute ) {
6279 ReusableStringStream rss;
6281 return writeAttribute( name, rss.str() );
6284 XmlWriter& writeText( std::string
const& text, XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent);
6286 XmlWriter& writeComment(std::string
const& text, XmlFormatting fmt = XmlFormatting::Newline | XmlFormatting::Indent);
6288 void writeStylesheetRef( std::string
const& url );
6290 XmlWriter& writeBlankLine();
6292 void ensureTagClosed();
6296 void applyFormatting(XmlFormatting fmt);
6298 void writeDeclaration();
6300 void newlineIfNecessary();
6302 bool m_tagIsOpen =
false;
6303 bool m_needsNewline =
false;
6304 std::vector<std::string> m_tags;
6305 std::string m_indent;
6314 class JunitReporter :
public CumulativeReporterBase<JunitReporter> {
6316 JunitReporter(ReporterConfig
const& _config);
6318 ~JunitReporter()
override;
6320 static std::string getDescription();
6322 void noMatchingTestCases(std::string
const& )
override;
6324 void testRunStarting(TestRunInfo
const& runInfo)
override;
6326 void testGroupStarting(GroupInfo
const& groupInfo)
override;
6328 void testCaseStarting(TestCaseInfo
const& testCaseInfo)
override;
6329 bool assertionEnded(AssertionStats
const& assertionStats)
override;
6331 void testCaseEnded(TestCaseStats
const& testCaseStats)
override;
6333 void testGroupEnded(TestGroupStats
const& testGroupStats)
override;
6335 void testRunEndedCumulative()
override;
6337 void writeGroup(TestGroupNode
const& groupNode,
double suiteTime);
6339 void writeTestCase(TestCaseNode
const& testCaseNode);
6341 void writeSection(std::string
const& className,
6342 std::string
const& rootName,
6343 SectionNode
const& sectionNode);
6345 void writeAssertions(SectionNode
const& sectionNode);
6346 void writeAssertion(AssertionStats
const& stats);
6350 std::string stdOutForSuite;
6351 std::string stdErrForSuite;
6352 unsigned int unexpectedExceptions = 0;
6353 bool m_okToFail =
false;
6362 class XmlReporter :
public StreamingReporterBase<XmlReporter> {
6364 XmlReporter(ReporterConfig
const& _config);
6366 ~XmlReporter()
override;
6368 static std::string getDescription();
6370 virtual std::string getStylesheetRef()
const;
6372 void writeSourceInfo(SourceLineInfo
const& sourceInfo);
6376 void noMatchingTestCases(std::string
const& s)
override;
6378 void testRunStarting(TestRunInfo
const& testInfo)
override;
6380 void testGroupStarting(GroupInfo
const& groupInfo)
override;
6382 void testCaseStarting(TestCaseInfo
const& testInfo)
override;
6384 void sectionStarting(SectionInfo
const& sectionInfo)
override;
6386 void assertionStarting(AssertionInfo
const&)
override;
6388 bool assertionEnded(AssertionStats
const& assertionStats)
override;
6390 void sectionEnded(SectionStats
const& sectionStats)
override;
6392 void testCaseEnded(TestCaseStats
const& testCaseStats)
override;
6394 void testGroupEnded(TestGroupStats
const& testGroupStats)
override;
6396 void testRunEnded(TestRunStats
const& testRunStats)
override;
6398#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
6399 void benchmarkPreparing(std::string
const& name)
override;
6400 void benchmarkStarting(BenchmarkInfo
const&)
override;
6401 void benchmarkEnded(BenchmarkStats<>
const&)
override;
6402 void benchmarkFailed(std::string
const&)
override;
6406 Timer m_testCaseTimer;
6408 int m_sectionDepth = 0;
6418#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
6443 namespace Benchmark {
6444 template <
typename Clock>
6445 using ClockDuration =
typename Clock::duration;
6446 template <
typename Clock>
6447 using FloatDuration = std::chrono::duration<double, typename Clock::period>;
6449 template <
typename Clock>
6450 using TimePoint =
typename Clock::time_point;
6452 using default_clock = std::chrono::steady_clock;
6454 template <
typename Clock>
6456 TimePoint<Clock> operator()()
const {
6457 return Clock::now();
6461 using fp_seconds = std::chrono::duration<double, std::ratio<1>>;
6471#if defined(_MSC_VER)
6476 namespace Benchmark {
6477#if defined(__GNUC__) || defined(__clang__)
6478 template <
typename T>
6479 inline void keep_memory(T* p) {
6480 asm volatile(
"" : :
"g"(p) :
"memory");
6482 inline void keep_memory() {
6483 asm volatile(
"" : : :
"memory");
6487 inline void optimizer_barrier() { keep_memory(); }
6489#elif defined(_MSC_VER)
6491#pragma optimize("", off)
6492 template <
typename T>
6493 inline void keep_memory(T* p) {
6495 *
reinterpret_cast<char volatile*
>(p) = *
reinterpret_cast<char const volatile*
>(p);
6498#pragma optimize("", on)
6501 inline void optimizer_barrier() {
6502 std::atomic_thread_fence(std::memory_order_seq_cst);
6508 template <
typename T>
6509 inline void deoptimize_value(T&& x) {
6513 template <
typename Fn,
typename... Args>
6514 inline auto invoke_deoptimized(Fn&& fn, Args&&... args) ->
typename std::enable_if<!std::is_same<void,
decltype(fn(args...))>::value>::type {
6515 deoptimize_value(std::forward<Fn>(fn) (std::forward<Args...>(args...)));
6518 template <
typename Fn,
typename... Args>
6519 inline auto invoke_deoptimized(Fn&& fn, Args&&... args) ->
typename std::enable_if<std::is_same<void,
decltype(fn(args...))>::value>::type {
6520 std::forward<Fn>(fn) (std::forward<Args...>(args...));
6531#include <type_traits>
6535 namespace Benchmark {
6537 template <
typename T>
6538 struct CompleteType {
using type = T; };
6540 struct CompleteType<void> {
struct type {}; };
6542 template <
typename T>
6543 using CompleteType_t =
typename CompleteType<T>::type;
6545 template <
typename Result>
6546 struct CompleteInvoker {
6547 template <
typename Fun,
typename... Args>
6548 static Result invoke(Fun&& fun, Args&&... args) {
6549 return std::forward<Fun>(fun)(std::forward<Args>(args)...);
6553 struct CompleteInvoker<void> {
6554 template <
typename Fun,
typename... Args>
6555 static CompleteType_t<void> invoke(Fun&& fun, Args&&... args) {
6556 std::forward<Fun>(fun)(std::forward<Args>(args)...);
6562 template <
typename Fun,
typename... Args>
6563 CompleteType_t<FunctionReturnType<Fun, Args...>> complete_invoke(Fun&& fun, Args&&... args) {
6564 return CompleteInvoker<FunctionReturnType<Fun, Args...>>::invoke(std::forward<Fun>(fun), std::forward<Args>(args)...);
6567 const std::string benchmarkErrorMsg =
"a benchmark failed to run successfully";
6570 template <
typename Fun>
6571 Detail::CompleteType_t<FunctionReturnType<Fun>> user_code(Fun&& fun) {
6573 return Detail::complete_invoke(std::forward<Fun>(fun));
6575 getResultCapture().benchmarkFailed(translateActiveException());
6576 CATCH_RUNTIME_ERROR(Detail::benchmarkErrorMsg);
6584 namespace Benchmark {
6586 struct ChronometerConcept {
6587 virtual void start() = 0;
6588 virtual void finish() = 0;
6589 virtual ~ChronometerConcept() =
default;
6591 template <
typename Clock>
6592 struct ChronometerModel final :
public ChronometerConcept {
6593 void start()
override { started = Clock::now(); }
6594 void finish()
override { finished = Clock::now(); }
6596 ClockDuration<Clock> elapsed()
const {
return finished - started; }
6598 TimePoint<Clock> started;
6599 TimePoint<Clock> finished;
6603 struct Chronometer {
6605 template <
typename Fun>
6606 void measure(Fun&& fun) { measure(std::forward<Fun>(fun), is_callable<Fun(
int)>()); }
6608 int runs()
const {
return k; }
6610 Chronometer(Detail::ChronometerConcept& meter,
int k)
6615 template <
typename Fun>
6616 void measure(Fun&& fun, std::false_type) {
6617 measure([&fun](
int) {
return fun(); }, std::true_type());
6620 template <
typename Fun>
6621 void measure(Fun&& fun, std::true_type) {
6622 Detail::optimizer_barrier();
6624 for (
int i = 0; i < k; ++i) invoke_deoptimized(fun, i);
6626 Detail::optimizer_barrier();
6629 Detail::ChronometerConcept* impl;
6642 namespace Benchmark {
6643 template <
typename Duration>
6644 struct EnvironmentEstimate {
6646 OutlierClassification outliers;
6648 template <
typename Duration2>
6649 operator EnvironmentEstimate<Duration2>()
const {
6650 return { mean, outliers };
6653 template <
typename Clock>
6654 struct Environment {
6655 using clock_type = Clock;
6656 EnvironmentEstimate<FloatDuration<Clock>> clock_resolution;
6657 EnvironmentEstimate<FloatDuration<Clock>> clock_cost;
6674#include <type_traits>
6679 namespace Benchmark {
6681 template <
typename T>
6682 using Decay =
typename std::decay<T>::type;
6683 template <
typename T,
typename U>
6685 : std::is_same<Decay<T>, Decay<U>> {};
6694 struct BenchmarkFunction {
6697 virtual void call(Chronometer meter)
const = 0;
6698 virtual callable* clone()
const = 0;
6699 virtual ~callable() =
default;
6701 template <
typename Fun>
6702 struct model :
public callable {
6703 model(Fun&& fun) : fun(std::move(fun)) {}
6704 model(Fun
const& fun) : fun(fun) {}
6706 model<Fun>* clone()
const override {
return new model<Fun>(*
this); }
6708 void call(Chronometer meter)
const override {
6709 call(meter, is_callable<Fun(Chronometer)>());
6711 void call(Chronometer meter, std::true_type)
const {
6714 void call(Chronometer meter, std::false_type)
const {
6721 struct do_nothing {
void operator()()
const {} };
6723 template <
typename T>
6724 BenchmarkFunction(model<T>* c) : f(c) {}
6728 : f(new model<do_nothing>{ {} }) {}
6730 template <
typename Fun,
6731 typename std::enable_if<!is_related<Fun, BenchmarkFunction>::value,
int>::type = 0>
6732 BenchmarkFunction(Fun&& fun)
6733 : f(new model<typename std::decay<Fun>::type>(std::forward<Fun>(fun))) {}
6735 BenchmarkFunction(BenchmarkFunction&& that)
6736 : f(std::move(that.f)) {}
6738 BenchmarkFunction(BenchmarkFunction
const& that)
6739 : f(that.f->clone()) {}
6741 BenchmarkFunction& operator=(BenchmarkFunction&& that) {
6742 f = std::move(that.f);
6746 BenchmarkFunction& operator=(BenchmarkFunction
const& that) {
6747 f.reset(that.f->clone());
6751 void operator()(Chronometer meter)
const { f->call(meter); }
6754 std::unique_ptr<callable> f;
6766#include <type_traits>
6770 namespace Benchmark {
6772 template <
typename Fun>
6774 void operator()(
int k)
const {
6775 for (
int i = 0; i < k; ++i) {
6781 template <
typename Fun>
6782 repeater<typename std::decay<Fun>::type> repeat(Fun&& fun) {
6783 return { std::forward<Fun>(fun) };
6806#include <type_traits>
6809 namespace Benchmark {
6810 template <
typename Duration,
typename Result>
6816 template <
typename Clock,
typename Func,
typename... Args>
6817 using TimingOf = Timing<ClockDuration<Clock>, Detail::CompleteType_t<FunctionReturnType<Func, Args...>>>;
6825 namespace Benchmark {
6827 template <
typename Clock,
typename Fun,
typename... Args>
6828 TimingOf<Clock, Fun, Args...> measure(Fun&& fun, Args&&... args) {
6829 auto start = Clock::now();
6830 auto&& r = Detail::complete_invoke(fun, std::forward<Args>(args)...);
6831 auto end = Clock::now();
6832 auto delta = end - start;
6833 return { delta, std::forward<decltype(r)>(r), 1 };
6841#include <type_traits>
6844 namespace Benchmark {
6846 template <
typename Clock,
typename Fun>
6847 TimingOf<Clock, Fun, int> measure_one(Fun&& fun,
int iters, std::false_type) {
6848 return Detail::measure<Clock>(fun, iters);
6850 template <
typename Clock,
typename Fun>
6851 TimingOf<Clock, Fun, Chronometer> measure_one(Fun&& fun,
int iters, std::true_type) {
6852 Detail::ChronometerModel<Clock> meter;
6853 auto&& result = Detail::complete_invoke(fun, Chronometer(meter, iters));
6855 return { meter.elapsed(), std::move(result), iters };
6858 template <
typename Clock,
typename Fun>
6859 using run_for_at_least_argument_t =
typename std::conditional<is_callable<Fun(Chronometer)>::value, Chronometer,
int>::type;
6861 struct optimized_away_error : std::exception {
6862 const char* what() const noexcept
override {
6863 return "could not measure benchmark, maybe it was optimized away";
6867 template <
typename Clock,
typename Fun>
6868 TimingOf<Clock, Fun, run_for_at_least_argument_t<Clock, Fun>> run_for_at_least(ClockDuration<Clock> how_long,
int seed, Fun&& fun) {
6870 while (iters < (1 << 30)) {
6871 auto&& Timing = measure_one<Clock>(fun, iters, is_callable<Fun(Chronometer)>());
6873 if (Timing.elapsed >= how_long) {
6874 return { Timing.elapsed, std::move(Timing.result), iters };
6878 throw optimized_away_error{};
6888 namespace Benchmark {
6889 template <
typename Duration>
6890 struct ExecutionPlan {
6891 int iterations_per_sample;
6892 Duration estimated_duration;
6893 Detail::BenchmarkFunction benchmark;
6894 Duration warmup_time;
6895 int warmup_iterations;
6897 template <
typename Duration2>
6898 operator ExecutionPlan<Duration2>()
const {
6899 return { iterations_per_sample, estimated_duration, benchmark, warmup_time, warmup_iterations };
6902 template <
typename Clock>
6903 std::vector<FloatDuration<Clock>> run(
const IConfig &cfg, Environment<FloatDuration<Clock>> env)
const {
6905 Detail::run_for_at_least<Clock>(std::chrono::duration_cast<ClockDuration<Clock>>(warmup_time), warmup_iterations, Detail::repeat(now<Clock>{}));
6907 std::vector<FloatDuration<Clock>> times;
6908 times.reserve(cfg.benchmarkSamples());
6909 std::generate_n(std::back_inserter(times), cfg.benchmarkSamples(), [
this, env] {
6910 Detail::ChronometerModel<Clock> model;
6911 this->benchmark(Chronometer(model, iterations_per_sample));
6912 auto sample_time = model.elapsed() - env.clock_cost.mean;
6913 if (sample_time < FloatDuration<Clock>::zero()) sample_time = FloatDuration<Clock>::zero();
6914 return sample_time / iterations_per_sample;
6934#include <functional>
6945 namespace Benchmark {
6947 using sample = std::vector<double>;
6949 double weighted_average_quantile(
int k,
int q, std::vector<double>::iterator first, std::vector<double>::iterator last);
6951 template <
typename Iterator>
6952 OutlierClassification classify_outliers(Iterator first, Iterator last) {
6953 std::vector<double> copy(first, last);
6955 auto q1 = weighted_average_quantile(1, 4, copy.begin(), copy.end());
6956 auto q3 = weighted_average_quantile(3, 4, copy.begin(), copy.end());
6958 auto los = q1 - (iqr * 3.);
6959 auto lom = q1 - (iqr * 1.5);
6960 auto him = q3 + (iqr * 1.5);
6961 auto his = q3 + (iqr * 3.);
6963 OutlierClassification o;
6964 for (; first != last; ++first) {
6966 if (t < los) ++o.low_severe;
6967 else if (t < lom) ++o.low_mild;
6968 else if (t > his) ++o.high_severe;
6969 else if (t > him) ++o.high_mild;
6975 template <
typename Iterator>
6976 double mean(Iterator first, Iterator last) {
6977 auto count = last - first;
6978 double sum = std::accumulate(first, last, 0.);
6982 template <
typename URng,
typename Iterator,
typename Estimator>
6983 sample resample(URng& rng,
int resamples, Iterator first, Iterator last, Estimator& estimator) {
6984 auto n = last - first;
6985 std::uniform_int_distribution<
decltype(n)> dist(0, n - 1);
6988 out.reserve(resamples);
6989 std::generate_n(std::back_inserter(out), resamples, [n, first, &estimator, &dist, &rng] {
6990 std::vector<double> resampled;
6991 resampled.reserve(n);
6992 std::generate_n(std::back_inserter(resampled), n, [first, &dist, &rng] {
return first[dist(rng)]; });
6993 return estimator(resampled.begin(), resampled.end());
6995 std::sort(out.begin(), out.end());
6999 template <
typename Estimator,
typename Iterator>
7000 sample jackknife(Estimator&& estimator, Iterator first, Iterator last) {
7001 auto n = last - first;
7002 auto second = std::next(first);
7006 for (
auto it = first; it != last; ++it) {
7007 std::iter_swap(it, first);
7008 results.push_back(estimator(second, last));
7014 inline double normal_cdf(
double x) {
7015 return std::erfc(-x / std::sqrt(2.0)) / 2.0;
7018 double erfc_inv(
double x);
7020 double normal_quantile(
double p);
7022 template <
typename Iterator,
typename Estimator>
7023 Estimate<double> bootstrap(
double confidence_level, Iterator first, Iterator last, sample
const& resample, Estimator&& estimator) {
7024 auto n_samples = last - first;
7026 double point = estimator(first, last);
7028 if (n_samples == 1)
return { point, point, point, confidence_level };
7030 sample jack = jackknife(estimator, first, last);
7031 double jack_mean = mean(jack.begin(), jack.end());
7032 double sum_squares, sum_cubes;
7033 std::tie(sum_squares, sum_cubes) = std::accumulate(jack.begin(), jack.end(), std::make_pair(0., 0.), [jack_mean](std::pair<double, double> sqcb,
double x) -> std::pair<double, double> {
7034 auto d = jack_mean - x;
7037 return { sqcb.first + d2, sqcb.second + d3 };
7040 double accel = sum_cubes / (6 * std::pow(sum_squares, 1.5));
7041 int n =
static_cast<int>(resample.size());
7042 double prob_n = std::count_if(resample.begin(), resample.end(), [point](
double x) { return x < point; }) / (double)n;
7044 if (prob_n == 0)
return { point, point, point, confidence_level };
7046 double bias = normal_quantile(prob_n);
7047 double z1 = normal_quantile((1. - confidence_level) / 2.);
7049 auto cumn = [n](
double x) ->
int {
7050 return std::lround(normal_cdf(x) * n); };
7051 auto a = [bias, accel](
double b) {
return bias + b / (1. - accel * b); };
7052 double b1 = bias + z1;
7053 double b2 = bias - z1;
7056 auto lo = std::max(cumn(a1), 0);
7057 auto hi = std::min(cumn(a2), n - 1);
7059 return { point, resample[lo], resample[hi], confidence_level };
7062 double outlier_variance(Estimate<double> mean, Estimate<double> stddev,
int n);
7064 struct bootstrap_analysis {
7065 Estimate<double> mean;
7066 Estimate<double> standard_deviation;
7067 double outlier_variance;
7070 bootstrap_analysis analyse_samples(
double confidence_level,
int n_resamples, std::vector<double>::iterator first, std::vector<double>::iterator last);
7083 namespace Benchmark {
7085 template <
typename Clock>
7086 std::vector<double> resolution(
int k) {
7087 std::vector<TimePoint<Clock>> times;
7088 times.reserve(k + 1);
7089 std::generate_n(std::back_inserter(times), k + 1, now<Clock>{});
7091 std::vector<double> deltas;
7093 std::transform(std::next(times.begin()), times.end(), times.begin(),
7094 std::back_inserter(deltas),
7095 [](TimePoint<Clock> a, TimePoint<Clock> b) { return static_cast<double>((a - b).count()); });
7100 const auto warmup_iterations = 10000;
7101 const auto warmup_time = std::chrono::milliseconds(100);
7102 const auto minimum_ticks = 1000;
7103 const auto warmup_seed = 10000;
7104 const auto clock_resolution_estimation_time = std::chrono::milliseconds(500);
7105 const auto clock_cost_estimation_time_limit = std::chrono::seconds(1);
7106 const auto clock_cost_estimation_tick_limit = 100000;
7107 const auto clock_cost_estimation_time = std::chrono::milliseconds(10);
7108 const auto clock_cost_estimation_iterations = 10000;
7110 template <
typename Clock>
7112 return run_for_at_least<Clock>(std::chrono::duration_cast<ClockDuration<Clock>>(warmup_time), warmup_seed, &resolution<Clock>)
7115 template <
typename Clock>
7116 EnvironmentEstimate<FloatDuration<Clock>> estimate_clock_resolution(
int iterations) {
7117 auto r = run_for_at_least<Clock>(std::chrono::duration_cast<ClockDuration<Clock>>(clock_resolution_estimation_time), iterations, &resolution<Clock>)
7120 FloatDuration<Clock>(mean(r.begin(), r.end())),
7121 classify_outliers(r.begin(), r.end()),
7124 template <
typename Clock>
7125 EnvironmentEstimate<FloatDuration<Clock>> estimate_clock_cost(FloatDuration<Clock> resolution) {
7126 auto time_limit = std::min(resolution * clock_cost_estimation_tick_limit, FloatDuration<Clock>(clock_cost_estimation_time_limit));
7127 auto time_clock = [](
int k) {
7128 return Detail::measure<Clock>([k] {
7129 for (
int i = 0; i < k; ++i) {
7130 volatile auto ignored = Clock::now();
7136 int iters = clock_cost_estimation_iterations;
7137 auto&& r = run_for_at_least<Clock>(std::chrono::duration_cast<ClockDuration<Clock>>(clock_cost_estimation_time), iters, time_clock);
7138 std::vector<double> times;
7139 int nsamples =
static_cast<int>(std::ceil(time_limit / r.elapsed));
7140 times.reserve(nsamples);
7141 std::generate_n(std::back_inserter(times), nsamples, [time_clock, &r] {
7142 return static_cast<double>((time_clock(r.iterations) / r.iterations).count());
7145 FloatDuration<Clock>(mean(times.begin(), times.end())),
7146 classify_outliers(times.begin(), times.end()),
7150 template <
typename Clock>
7151 Environment<FloatDuration<Clock>> measure_environment() {
7152 static Environment<FloatDuration<Clock>>* env =
nullptr;
7157 auto iters = Detail::warmup<Clock>();
7158 auto resolution = Detail::estimate_clock_resolution<Clock>(iters);
7159 auto cost = Detail::estimate_clock_cost<Clock>(resolution.mean);
7161 env =
new Environment<FloatDuration<Clock>>{ resolution, cost };
7185 namespace Benchmark {
7186 template <
typename Duration>
7187 struct SampleAnalysis {
7188 std::vector<Duration> samples;
7189 Estimate<Duration> mean;
7190 Estimate<Duration> standard_deviation;
7191 OutlierClassification outliers;
7192 double outlier_variance;
7194 template <
typename Duration2>
7195 operator SampleAnalysis<Duration2>()
const {
7196 std::vector<Duration2> samples2;
7197 samples2.reserve(samples.size());
7198 std::transform(samples.begin(), samples.end(), std::back_inserter(samples2), [](Duration d) { return Duration2(d); });
7200 std::move(samples2),
7217 namespace Benchmark {
7219 template <
typename Duration,
typename Iterator>
7220 SampleAnalysis<Duration> analyse(
const IConfig &cfg, Environment<Duration>, Iterator first, Iterator last) {
7221 if (!cfg.benchmarkNoAnalysis()) {
7222 std::vector<double> samples;
7223 samples.reserve(last - first);
7224 std::transform(first, last, std::back_inserter(samples), [](Duration d) {
return d.count(); });
7226 auto analysis = Catch::Benchmark::Detail::analyse_samples(cfg.benchmarkConfidenceInterval(), cfg.benchmarkResamples(), samples.begin(), samples.end());
7227 auto outliers = Catch::Benchmark::Detail::classify_outliers(samples.begin(), samples.end());
7229 auto wrap_estimate = [](Estimate<double> e) {
7230 return Estimate<Duration> {
7232 Duration(e.lower_bound),
7233 Duration(e.upper_bound),
7234 e.confidence_interval,
7237 std::vector<Duration> samples2;
7238 samples2.reserve(samples.size());
7239 std::transform(samples.begin(), samples.end(), std::back_inserter(samples2), [](
double d) { return Duration(d); });
7241 std::move(samples2),
7242 wrap_estimate(analysis.mean),
7243 wrap_estimate(analysis.standard_deviation),
7245 analysis.outlier_variance,
7248 std::vector<Duration> samples;
7249 samples.reserve(last - first);
7251 Duration mean = Duration(0);
7253 for (
auto it = first; it < last; ++it, ++i) {
7254 samples.push_back(Duration(*it));
7255 mean += Duration(*it);
7261 Estimate<Duration>{mean, mean, mean, 0.0},
7262 Estimate<Duration>{Duration(0), Duration(0), Duration(0), 0.0},
7263 OutlierClassification{},
7274#include <functional>
7280 namespace Benchmark {
7282 Benchmark(std::string &&name)
7283 : name(std::move(name)) {}
7285 template <
class FUN>
7286 Benchmark(std::string &&name, FUN &&
func)
7287 : fun(std::move(
func)), name(std::move(name)) {}
7289 template <
typename Clock>
7290 ExecutionPlan<FloatDuration<Clock>> prepare(
const IConfig &cfg, Environment<FloatDuration<Clock>> env)
const {
7291 auto min_time = env.clock_resolution.mean * Detail::minimum_ticks;
7292 auto run_time = std::max(min_time, std::chrono::duration_cast<
decltype(min_time)>(cfg.benchmarkWarmupTime()));
7293 auto&& test = Detail::run_for_at_least<Clock>(std::chrono::duration_cast<ClockDuration<Clock>>(run_time), 1, fun);
7294 int new_iters =
static_cast<int>(std::ceil(min_time * test.iterations / test.elapsed));
7295 return { new_iters, test.elapsed / test.iterations * new_iters * cfg.benchmarkSamples(), fun, std::chrono::duration_cast<FloatDuration<Clock>>(cfg.benchmarkWarmupTime()), Detail::warmup_iterations };
7298 template <
typename Clock = default_clock>
7300 IConfigPtr cfg = getCurrentContext().getConfig();
7302 auto env = Detail::measure_environment<Clock>();
7304 getResultCapture().benchmarkPreparing(name);
7306 auto plan = user_code([&] {
7307 return prepare<Clock>(*cfg, env);
7310 BenchmarkInfo info {
7312 plan.estimated_duration.count(),
7313 plan.iterations_per_sample,
7314 cfg->benchmarkSamples(),
7315 cfg->benchmarkResamples(),
7316 env.clock_resolution.mean.count(),
7317 env.clock_cost.mean.count()
7320 getResultCapture().benchmarkStarting(info);
7322 auto samples = user_code([&] {
7323 return plan.template run<Clock>(*cfg, env);
7326 auto analysis = Detail::analyse(*cfg, env, samples.begin(), samples.end());
7327 BenchmarkStats<FloatDuration<Clock>> stats{ info, analysis.samples, analysis.mean, analysis.standard_deviation, analysis.outliers, analysis.outlier_variance };
7328 getResultCapture().benchmarkEnded(stats);
7331 if (translateActiveException() != Detail::benchmarkErrorMsg)
7332 std::rethrow_exception(std::current_exception());
7337 template <
typename Fun,
7338 typename std::enable_if<!Detail::is_related<Fun, Benchmark>::value,
int>::type = 0>
7339 Benchmark & operator=(Fun
func) {
7340 fun = Detail::BenchmarkFunction(
func);
7345 explicit operator bool() {
7350 Detail::BenchmarkFunction fun;
7356#define INTERNAL_CATCH_GET_1_ARG(arg1, arg2, ...) arg1
7357#define INTERNAL_CATCH_GET_2_ARG(arg1, arg2, ...) arg2
7359#define INTERNAL_CATCH_BENCHMARK(BenchmarkName, name, benchmarkIndex)\
7360 if( Catch::Benchmark::Benchmark BenchmarkName{name} ) \
7361 BenchmarkName = [&](int benchmarkIndex)
7363#define INTERNAL_CATCH_BENCHMARK_ADVANCED(BenchmarkName, name)\
7364 if( Catch::Benchmark::Benchmark BenchmarkName{name} ) \
7373#include <type_traits>
7376 namespace Benchmark {
7378 template <
typename T,
bool Destruct>
7379 struct ObjectStorage
7381 using TStorage =
typename std::aligned_storage<
sizeof(T), std::alignment_of<T>::value>::type;
7383 ObjectStorage() : data() {}
7385 ObjectStorage(
const ObjectStorage& other)
7387 new(&data) T(other.stored_object());
7390 ObjectStorage(ObjectStorage&& other)
7392 new(&data) T(std::move(other.stored_object()));
7395 ~ObjectStorage() { destruct_on_exit<T>(); }
7397 template <
typename... Args>
7398 void construct(Args&&... args)
7400 new (&data) T(std::forward<Args>(args)...);
7403 template <
bool AllowManualDestruction = !Destruct>
7404 typename std::enable_if<AllowManualDestruction>::type destruct()
7406 stored_object().~T();
7411 template <
typename U>
7412 void destruct_on_exit(
typename std::enable_if<Destruct, U>::type* = 0) { destruct<true>(); }
7414 template <
typename U>
7415 void destruct_on_exit(
typename std::enable_if<!Destruct, U>::type* = 0) { }
7417 T& stored_object() {
7418 return *
static_cast<T*
>(
static_cast<void*
>(&data));
7421 T
const& stored_object()
const {
7422 return *
static_cast<T*
>(
static_cast<void*
>(&data));
7429 template <
typename T>
7430 using storage_for = Detail::ObjectStorage<T, true>;
7432 template <
typename T>
7433 using destructable_object = Detail::ObjectStorage<T, false>;
7447#pragma clang diagnostic push
7448#pragma clang diagnostic ignored "-Wweak-vtables"
7459namespace TestCaseTracking {
7461 struct NameAndLocation {
7463 SourceLineInfo location;
7465 NameAndLocation( std::string
const& _name, SourceLineInfo
const& _location );
7470 using ITrackerPtr = std::shared_ptr<ITracker>;
7473 virtual ~ITracker();
7476 virtual NameAndLocation
const& nameAndLocation()
const = 0;
7479 virtual bool isComplete()
const = 0;
7480 virtual bool isSuccessfullyCompleted()
const = 0;
7481 virtual bool isOpen()
const = 0;
7482 virtual bool hasChildren()
const = 0;
7484 virtual ITracker& parent() = 0;
7487 virtual void close() = 0;
7488 virtual void fail() = 0;
7489 virtual void markAsNeedingAnotherRun() = 0;
7491 virtual void addChild( ITrackerPtr
const& child ) = 0;
7492 virtual ITrackerPtr findChild( NameAndLocation
const& nameAndLocation ) = 0;
7493 virtual void openChild() = 0;
7496 virtual bool isSectionTracker()
const = 0;
7497 virtual bool isGeneratorTracker()
const = 0;
7500 class TrackerContext {
7508 ITrackerPtr m_rootTracker;
7509 ITracker* m_currentTracker =
nullptr;
7510 RunState m_runState = NotStarted;
7514 ITracker& startRun();
7518 void completeCycle();
7520 bool completedCycle()
const;
7521 ITracker& currentTracker();
7522 void setCurrentTracker( ITracker* tracker );
7525 class TrackerBase :
public ITracker {
7532 CompletedSuccessfully,
7536 using Children = std::vector<ITrackerPtr>;
7537 NameAndLocation m_nameAndLocation;
7538 TrackerContext& m_ctx;
7540 Children m_children;
7541 CycleState m_runState = NotStarted;
7544 TrackerBase( NameAndLocation
const& nameAndLocation, TrackerContext& ctx, ITracker* parent );
7546 NameAndLocation
const& nameAndLocation()
const override;
7547 bool isComplete()
const override;
7548 bool isSuccessfullyCompleted()
const override;
7549 bool isOpen()
const override;
7550 bool hasChildren()
const override;
7552 void addChild( ITrackerPtr
const& child )
override;
7554 ITrackerPtr findChild( NameAndLocation
const& nameAndLocation )
override;
7555 ITracker& parent()
override;
7557 void openChild()
override;
7559 bool isSectionTracker()
const override;
7560 bool isGeneratorTracker()
const override;
7564 void close()
override;
7565 void fail()
override;
7566 void markAsNeedingAnotherRun()
override;
7569 void moveToParent();
7573 class SectionTracker :
public TrackerBase {
7574 std::vector<std::string> m_filters;
7575 std::string m_trimmed_name;
7577 SectionTracker( NameAndLocation
const& nameAndLocation, TrackerContext& ctx, ITracker* parent );
7579 bool isSectionTracker()
const override;
7581 bool isComplete()
const override;
7583 static SectionTracker& acquire( TrackerContext& ctx, NameAndLocation
const& nameAndLocation );
7587 void addInitialFilters( std::vector<std::string>
const& filters );
7588 void addNextFilters( std::vector<std::string>
const& filters );
7593using TestCaseTracking::ITracker;
7594using TestCaseTracking::TrackerContext;
7595using TestCaseTracking::SectionTracker;
7605 struct LeakDetector {
7617#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
7622#if defined(CATCH_CONFIG_USE_ASYNC)
7627 double erf_inv(
double x) {
7631 w = -log((1.0 - x) * (1.0 + x));
7635 p = -3.6444120640178196996e-21;
7636 p = -1.685059138182016589e-19 + p * w;
7637 p = 1.2858480715256400167e-18 + p * w;
7638 p = 1.115787767802518096e-17 + p * w;
7639 p = -1.333171662854620906e-16 + p * w;
7640 p = 2.0972767875968561637e-17 + p * w;
7641 p = 6.6376381343583238325e-15 + p * w;
7642 p = -4.0545662729752068639e-14 + p * w;
7643 p = -8.1519341976054721522e-14 + p * w;
7644 p = 2.6335093153082322977e-12 + p * w;
7645 p = -1.2975133253453532498e-11 + p * w;
7646 p = -5.4154120542946279317e-11 + p * w;
7647 p = 1.051212273321532285e-09 + p * w;
7648 p = -4.1126339803469836976e-09 + p * w;
7649 p = -2.9070369957882005086e-08 + p * w;
7650 p = 4.2347877827932403518e-07 + p * w;
7651 p = -1.3654692000834678645e-06 + p * w;
7652 p = -1.3882523362786468719e-05 + p * w;
7653 p = 0.0001867342080340571352 + p * w;
7654 p = -0.00074070253416626697512 + p * w;
7655 p = -0.0060336708714301490533 + p * w;
7656 p = 0.24015818242558961693 + p * w;
7657 p = 1.6536545626831027356 + p * w;
7658 }
else if (w < 16.000000) {
7659 w = sqrt(w) - 3.250000;
7660 p = 2.2137376921775787049e-09;
7661 p = 9.0756561938885390979e-08 + p * w;
7662 p = -2.7517406297064545428e-07 + p * w;
7663 p = 1.8239629214389227755e-08 + p * w;
7664 p = 1.5027403968909827627e-06 + p * w;
7665 p = -4.013867526981545969e-06 + p * w;
7666 p = 2.9234449089955446044e-06 + p * w;
7667 p = 1.2475304481671778723e-05 + p * w;
7668 p = -4.7318229009055733981e-05 + p * w;
7669 p = 6.8284851459573175448e-05 + p * w;
7670 p = 2.4031110387097893999e-05 + p * w;
7671 p = -0.0003550375203628474796 + p * w;
7672 p = 0.00095328937973738049703 + p * w;
7673 p = -0.0016882755560235047313 + p * w;
7674 p = 0.0024914420961078508066 + p * w;
7675 p = -0.0037512085075692412107 + p * w;
7676 p = 0.005370914553590063617 + p * w;
7677 p = 1.0052589676941592334 + p * w;
7678 p = 3.0838856104922207635 + p * w;
7680 w = sqrt(w) - 5.000000;
7681 p = -2.7109920616438573243e-11;
7682 p = -2.5556418169965252055e-10 + p * w;
7683 p = 1.5076572693500548083e-09 + p * w;
7684 p = -3.7894654401267369937e-09 + p * w;
7685 p = 7.6157012080783393804e-09 + p * w;
7686 p = -1.4960026627149240478e-08 + p * w;
7687 p = 2.9147953450901080826e-08 + p * w;
7688 p = -6.7711997758452339498e-08 + p * w;
7689 p = 2.2900482228026654717e-07 + p * w;
7690 p = -9.9298272942317002539e-07 + p * w;
7691 p = 4.5260625972231537039e-06 + p * w;
7692 p = -1.9681778105531670567e-05 + p * w;
7693 p = 7.5995277030017761139e-05 + p * w;
7694 p = -0.00021503011930044477347 + p * w;
7695 p = -0.00013871931833623122026 + p * w;
7696 p = 1.0103004648645343977 + p * w;
7697 p = 4.8499064014085844221 + p * w;
7702 double standard_deviation(std::vector<double>::iterator first, std::vector<double>::iterator last) {
7703 auto m = Catch::Benchmark::Detail::mean(first, last);
7704 double variance = std::accumulate(first, last, 0., [m](
double a,
double b) {
7705 double diff = b - m;
7706 return a + diff * diff;
7707 }) / (last - first);
7708 return std::sqrt(variance);
7714 namespace Benchmark {
7717 double weighted_average_quantile(
int k,
int q, std::vector<double>::iterator first, std::vector<double>::iterator last) {
7718 auto count = last - first;
7719 double idx = (count - 1) * k / static_cast<double>(q);
7720 int j =
static_cast<int>(idx);
7722 std::nth_element(first, first + j, last);
7724 if (g == 0)
return xj;
7726 auto xj1 = *std::min_element(first + (j + 1), last);
7727 return xj + g * (xj1 - xj);
7730 double erfc_inv(
double x) {
7731 return erf_inv(1.0 - x);
7734 double normal_quantile(
double p) {
7735 static const double ROOT_TWO = std::sqrt(2.0);
7737 double result = 0.0;
7738 assert(p >= 0 && p <= 1);
7739 if (p < 0 || p > 1) {
7743 result = -erfc_inv(2.0 * p);
7750 double outlier_variance(Estimate<double> mean, Estimate<double> stddev,
int n) {
7751 double sb = stddev.point;
7752 double mn = mean.point / n;
7753 double mg_min = mn / 2.;
7754 double sg = std::min(mg_min / 4., sb / std::sqrt(n));
7755 double sg2 = sg * sg;
7756 double sb2 = sb * sb;
7758 auto c_max = [n, mn, sb2, sg2](
double x) ->
double {
7762 double k0 = -n * nd;
7763 double k1 = sb2 - n * sg2 + nd;
7764 double det = k1 * k1 - 4 * sg2 * k0;
7765 return (
int)(-2. * k0 / (k1 + std::sqrt(det)));
7768 auto var_out = [n, sb2, sg2](
double c) {
7770 return (nc / n) * (sb2 - nc * sg2);
7773 return std::min(var_out(1), var_out(std::min(c_max(0.), c_max(mg_min)))) / sb2;
7776 bootstrap_analysis analyse_samples(
double confidence_level,
int n_resamples, std::vector<double>::iterator first, std::vector<double>::iterator last) {
7777 CATCH_INTERNAL_START_WARNINGS_SUPPRESSION
7778 CATCH_INTERNAL_SUPPRESS_GLOBALS_WARNINGS
7779 static std::random_device entropy;
7780 CATCH_INTERNAL_STOP_WARNINGS_SUPPRESSION
7782 auto n =
static_cast<int>(last - first);
7784 auto mean = &Detail::mean<std::vector<double>::iterator>;
7785 auto stddev = &standard_deviation;
7787#if defined(CATCH_CONFIG_USE_ASYNC)
7788 auto Estimate = [=](double(*f)(std::vector<double>::iterator, std::vector<double>::iterator)) {
7789 auto seed = entropy();
7790 return std::async(std::launch::async, [=] {
7791 std::mt19937 rng(seed);
7792 auto resampled = resample(rng, n_resamples, first, last, f);
7793 return bootstrap(confidence_level, first, last, resampled, f);
7797 auto mean_future = Estimate(mean);
7798 auto stddev_future = Estimate(stddev);
7800 auto mean_estimate = mean_future.get();
7801 auto stddev_estimate = stddev_future.get();
7803 auto Estimate = [=](double(*f)(std::vector<double>::iterator, std::vector<double>::iterator)) {
7804 auto seed = entropy();
7805 std::mt19937 rng(seed);
7806 auto resampled = resample(rng, n_resamples, first, last, f);
7807 return bootstrap(confidence_level, first, last, resampled, f);
7810 auto mean_estimate = Estimate(mean);
7811 auto stddev_estimate = Estimate(stddev);
7814 double outlier_variance = Detail::outlier_variance(mean_estimate, stddev_estimate, n);
7816 return { mean_estimate, stddev_estimate, outlier_variance };
7833bool marginComparison(
double lhs,
double rhs,
double margin) {
7834 return (lhs + margin >= rhs) && (rhs + margin >= lhs);
7842 Approx::Approx (
double value )
7843 : m_epsilon( std::numeric_limits<float>::epsilon()*100 ),
7849 Approx Approx::custom() {
7853 Approx Approx::operator-()
const {
7855 temp.m_value = -temp.m_value;
7859 std::string Approx::toString()
const {
7860 ReusableStringStream rss;
7861 rss <<
"Approx( " << ::Catch::Detail::stringify( m_value ) <<
" )";
7865 bool Approx::equalityComparisonImpl(
const double other)
const {
7868 return marginComparison(m_value, other, m_margin)
7869 || marginComparison(m_value, other, m_epsilon * (m_scale + std::fabs(std::isinf(m_value)? 0 : m_value)));
7872 void Approx::setMargin(
double newMargin) {
7873 CATCH_ENFORCE(newMargin >= 0,
7874 "Invalid Approx::margin: " << newMargin <<
'.'
7875 <<
" Approx::Margin has to be non-negative.");
7876 m_margin = newMargin;
7879 void Approx::setEpsilon(
double newEpsilon) {
7880 CATCH_ENFORCE(newEpsilon >= 0 && newEpsilon <= 1.0,
7881 "Invalid Approx::epsilon: " << newEpsilon <<
'.'
7882 <<
" Approx::epsilon has to be in [0, 1]");
7883 m_epsilon = newEpsilon;
7889 Detail::Approx
operator "" _a(
long double val) {
7890 return Detail::Approx(val);
7892 Detail::Approx
operator "" _a(
unsigned long long val) {
7893 return Detail::Approx(val);
7898 return value.toString();
7908 bool isDebuggerActive();
7911#ifdef CATCH_PLATFORM_MAC
7913 #if defined(__i386__) || defined(__x86_64__)
7914 #define CATCH_TRAP() __asm__("int $3")
7915 #elif defined(__aarch64__)
7916 #define CATCH_TRAP() __asm__(".inst 0xd4200000")
7917 #elif defined(__arm__) && !defined(__thumb__)
7918 #define CATCH_TRAP() __asm__(".inst 0xe7f001f0")
7919 #elif defined(__arm__) && defined(__thumb__)
7920 #define CATCH_TRAP() __asm__(".inst 0xde01")
7923#elif defined(CATCH_PLATFORM_IPHONE)
7926 #if defined(__i386__) || defined(__x86_64__)
7927 #define CATCH_TRAP() __asm__("int $3")
7928 #elif defined(__aarch64__)
7929 #define CATCH_TRAP() __asm__(".inst 0xd4200000")
7930 #elif defined(__arm__) && !defined(__thumb__)
7931 #define CATCH_TRAP() __asm__(".inst 0xe7f001f0")
7932 #elif defined(__arm__) && defined(__thumb__)
7933 #define CATCH_TRAP() __asm__(".inst 0xde01")
7936#elif defined(CATCH_PLATFORM_LINUX)
7942 #define CATCH_TRAP() raise(SIGTRAP)
7943#elif defined(_MSC_VER)
7944 #define CATCH_TRAP() __debugbreak()
7945#elif defined(__MINGW32__)
7946 extern "C" __declspec(dllimport)
void __stdcall DebugBreak();
7947 #define CATCH_TRAP() DebugBreak()
7950#ifndef CATCH_BREAK_INTO_DEBUGGER
7952 #define CATCH_BREAK_INTO_DEBUGGER() []{ if( Catch::isDebuggerActive() ) { CATCH_TRAP(); } }()
7954 #define CATCH_BREAK_INTO_DEBUGGER() []{}()
7966#if defined(CATCH_PLATFORM_WINDOWS)
7968#if !defined(NOMINMAX) && !defined(CATCH_CONFIG_NO_NOMINMAX)
7969# define CATCH_DEFINED_NOMINMAX
7972#if !defined(WIN32_LEAN_AND_MEAN) && !defined(CATCH_CONFIG_NO_WIN32_LEAN_AND_MEAN)
7973# define CATCH_DEFINED_WIN32_LEAN_AND_MEAN
7974# define WIN32_LEAN_AND_MEAN
7983#ifdef CATCH_DEFINED_NOMINMAX
7986#ifdef CATCH_DEFINED_WIN32_LEAN_AND_MEAN
7987# undef WIN32_LEAN_AND_MEAN
7993#if defined( CATCH_CONFIG_WINDOWS_SEH )
7997 struct FatalConditionHandler {
7999 static LONG CALLBACK handleVectoredException(PEXCEPTION_POINTERS ExceptionInfo);
8000 FatalConditionHandler();
8001 static void reset();
8002 ~FatalConditionHandler();
8006 static ULONG guaranteeSize;
8007 static PVOID exceptionHandlerHandle;
8012#elif defined ( CATCH_CONFIG_POSIX_SIGNALS )
8018 struct FatalConditionHandler {
8021 static struct sigaction oldSigActions[];
8022 static stack_t oldSigStack;
8023 static char altStackMem[];
8025 static void handleSignal(
int sig );
8027 FatalConditionHandler();
8028 ~FatalConditionHandler();
8029 static void reset();
8037 struct FatalConditionHandler {
8049 struct IMutableContext;
8053 class RunContext :
public IResultCapture,
public IRunner {
8056 RunContext( RunContext
const& ) =
delete;
8057 RunContext& operator =( RunContext
const& ) =
delete;
8059 explicit RunContext( IConfigPtr
const& _config, IStreamingReporterPtr&& reporter );
8061 ~RunContext()
override;
8063 void testGroupStarting( std::string
const& testSpec, std::size_t groupIndex, std::size_t groupsCount );
8064 void testGroupEnded( std::string
const& testSpec, Totals
const& totals, std::size_t groupIndex, std::size_t groupsCount );
8066 Totals runTest(TestCase
const& testCase);
8068 IConfigPtr config()
const;
8069 IStreamingReporter& reporter()
const;
8075 ( AssertionInfo
const& info,
8076 ITransientExpression
const& expr,
8077 AssertionReaction& reaction )
override;
8079 ( AssertionInfo
const& info,
8080 ResultWas::OfType resultType,
8081 StringRef
const& message,
8082 AssertionReaction& reaction )
override;
8083 void handleUnexpectedExceptionNotThrown
8084 ( AssertionInfo
const& info,
8085 AssertionReaction& reaction )
override;
8086 void handleUnexpectedInflightException
8087 ( AssertionInfo
const& info,
8088 std::string
const& message,
8089 AssertionReaction& reaction )
override;
8090 void handleIncomplete
8091 ( AssertionInfo
const& info )
override;
8093 ( AssertionInfo
const &info,
8094 ResultWas::OfType resultType,
8095 AssertionReaction &reaction )
override;
8097 bool sectionStarted( SectionInfo
const& sectionInfo, Counts& assertions )
override;
8099 void sectionEnded( SectionEndInfo
const& endInfo )
override;
8100 void sectionEndedEarly( SectionEndInfo
const& endInfo )
override;
8102 auto acquireGeneratorTracker( SourceLineInfo
const& lineInfo ) -> IGeneratorTracker&
override;
8104#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
8105 void benchmarkPreparing( std::string
const& name )
override;
8106 void benchmarkStarting( BenchmarkInfo
const& info )
override;
8107 void benchmarkEnded( BenchmarkStats<>
const& stats )
override;
8108 void benchmarkFailed( std::string
const& error )
override;
8111 void pushScopedMessage( MessageInfo
const& message )
override;
8112 void popScopedMessage( MessageInfo
const& message )
override;
8114 void emplaceUnscopedMessage( MessageBuilder
const& builder )
override;
8116 std::string getCurrentTestName()
const override;
8118 const AssertionResult* getLastResult()
const override;
8120 void exceptionEarlyReported()
override;
8122 void handleFatalErrorCondition( StringRef message )
override;
8124 bool lastAssertionPassed()
override;
8126 void assertionPassed()
override;
8130 bool aborting() const final;
8134 void runCurrentTest( std::
string& redirectedCout, std::
string& redirectedCerr );
8135 void invokeActiveTestCase();
8137 void resetAssertionInfo();
8138 bool testForMissingAssertions( Counts& assertions );
8140 void assertionEnded( AssertionResult const& result );
8142 ( AssertionInfo const &info,
8143 ResultWas::OfType resultType,
8144 ITransientExpression const *expr,
8147 void populateReaction( AssertionReaction& reaction );
8151 void handleUnfinishedSections();
8153 TestRunInfo m_runInfo;
8154 IMutableContext& m_context;
8155 TestCase const* m_activeTestCase =
nullptr;
8156 ITracker* m_testCaseTracker =
nullptr;
8157 Option<AssertionResult> m_lastResult;
8159 IConfigPtr m_config;
8161 IStreamingReporterPtr m_reporter;
8162 std::vector<MessageInfo> m_messages;
8163 std::vector<ScopedMessage> m_messageScopes;
8164 AssertionInfo m_lastAssertionInfo;
8165 std::vector<SectionEndInfo> m_unfinishedSections;
8166 std::vector<ITracker*> m_activeSections;
8167 TrackerContext m_trackerContext;
8168 bool m_lastAssertionPassed = false;
8169 bool m_shouldReportUnexpected = true;
8170 bool m_includeSuccessfulResults;
8173 void seedRng(IConfig const& config);
8174 unsigned int rngSeed();
8181 auto operator <<( std::ostream& os, ITransientExpression
const& expr ) -> std::ostream& {
8182 expr.streamReconstructedExpression( os );
8187 LazyExpression::LazyExpression(
bool isNegated )
8188 : m_isNegated( isNegated )
8191 LazyExpression::LazyExpression( LazyExpression
const& other ) : m_isNegated( other.m_isNegated ) {}
8193 LazyExpression::operator bool()
const {
8194 return m_transientExpression !=
nullptr;
8197 auto operator << ( std::ostream& os, LazyExpression
const& lazyExpr ) -> std::ostream& {
8198 if( lazyExpr.m_isNegated )
8202 if( lazyExpr.m_isNegated && lazyExpr.m_transientExpression->isBinaryExpression() )
8203 os <<
"(" << *lazyExpr.m_transientExpression <<
")";
8205 os << *lazyExpr.m_transientExpression;
8208 os <<
"{** error - unchecked empty expression requested **}";
8213 AssertionHandler::AssertionHandler
8214 ( StringRef
const& macroName,
8215 SourceLineInfo
const& lineInfo,
8216 StringRef capturedExpression,
8217 ResultDisposition::Flags resultDisposition )
8218 : m_assertionInfo{ macroName, lineInfo, capturedExpression, resultDisposition },
8219 m_resultCapture( getResultCapture() )
8222 void AssertionHandler::handleExpr( ITransientExpression
const& expr ) {
8223 m_resultCapture.handleExpr( m_assertionInfo, expr, m_reaction );
8225 void AssertionHandler::handleMessage(ResultWas::OfType resultType, StringRef
const& message) {
8226 m_resultCapture.handleMessage( m_assertionInfo, resultType, message, m_reaction );
8229 auto AssertionHandler::allowThrows() const ->
bool {
8230 return getCurrentContext().getConfig()->allowThrows();
8233 void AssertionHandler::complete() {
8235 if( m_reaction.shouldDebugBreak ) {
8241 CATCH_BREAK_INTO_DEBUGGER();
8243 if (m_reaction.shouldThrow) {
8244#if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
8247 CATCH_ERROR(
"Test failure requires aborting test!" );
8251 void AssertionHandler::setCompleted() {
8255 void AssertionHandler::handleUnexpectedInflightException() {
8256 m_resultCapture.handleUnexpectedInflightException( m_assertionInfo, Catch::translateActiveException(), m_reaction );
8259 void AssertionHandler::handleExceptionThrownAsExpected() {
8260 m_resultCapture.handleNonExpr(m_assertionInfo, ResultWas::Ok, m_reaction);
8262 void AssertionHandler::handleExceptionNotThrownAsExpected() {
8263 m_resultCapture.handleNonExpr(m_assertionInfo, ResultWas::Ok, m_reaction);
8266 void AssertionHandler::handleUnexpectedExceptionNotThrown() {
8267 m_resultCapture.handleUnexpectedExceptionNotThrown( m_assertionInfo, m_reaction );
8270 void AssertionHandler::handleThrowingCallSkipped() {
8271 m_resultCapture.handleNonExpr(m_assertionInfo, ResultWas::Ok, m_reaction);
8276 void handleExceptionMatchExpr( AssertionHandler& handler, std::string
const& str, StringRef
const& matcherString ) {
8277 handleExceptionMatchExpr( handler, Matchers::Equals( str ), matcherString );
8285 AssertionResultData::AssertionResultData(ResultWas::OfType _resultType, LazyExpression
const & _lazyExpression):
8286 lazyExpression(_lazyExpression),
8287 resultType(_resultType) {}
8289 std::string AssertionResultData::reconstructExpression()
const {
8291 if( reconstructedExpression.empty() ) {
8292 if( lazyExpression ) {
8293 ReusableStringStream rss;
8294 rss << lazyExpression;
8295 reconstructedExpression = rss.str();
8298 return reconstructedExpression;
8301 AssertionResult::AssertionResult( AssertionInfo
const& info, AssertionResultData
const& data )
8303 m_resultData( data )
8307 bool AssertionResult::succeeded()
const {
8308 return Catch::isOk( m_resultData.resultType );
8312 bool AssertionResult::isOk()
const {
8313 return Catch::isOk( m_resultData.resultType ) || shouldSuppressFailure( m_info.resultDisposition );
8316 ResultWas::OfType AssertionResult::getResultType()
const {
8317 return m_resultData.resultType;
8320 bool AssertionResult::hasExpression()
const {
8321 return !m_info.capturedExpression.empty();
8324 bool AssertionResult::hasMessage()
const {
8325 return !m_resultData.message.empty();
8328 std::string AssertionResult::getExpression()
const {
8330 std::string expr; expr.reserve(m_info.capturedExpression.size() + 3);
8331 if (isFalseTest(m_info.resultDisposition)) {
8334 expr += m_info.capturedExpression;
8335 if (isFalseTest(m_info.resultDisposition)) {
8341 std::string AssertionResult::getExpressionInMacro()
const {
8343 if( m_info.macroName.empty() )
8344 expr =
static_cast<std::string
>(m_info.capturedExpression);
8346 expr.reserve( m_info.macroName.size() + m_info.capturedExpression.size() + 4 );
8347 expr += m_info.macroName;
8349 expr += m_info.capturedExpression;
8355 bool AssertionResult::hasExpandedExpression()
const {
8356 return hasExpression() && getExpandedExpression() != getExpression();
8359 std::string AssertionResult::getExpandedExpression()
const {
8360 std::string expr = m_resultData.reconstructExpression();
8366 std::string AssertionResult::getMessage()
const {
8367 return m_resultData.message;
8369 SourceLineInfo AssertionResult::getSourceInfo()
const {
8370 return m_info.lineInfo;
8373 StringRef AssertionResult::getTestMacroName()
const {
8374 return m_info.macroName;
8383 using StringMatcher = Matchers::Impl::MatcherBase<std::string>;
8388 void handleExceptionMatchExpr( AssertionHandler& handler, StringMatcher
const& matcher, StringRef
const& matcherString ) {
8389 std::string exceptionMessage = Catch::translateActiveException();
8390 MatchExpr<std::string, StringMatcher const&> expr( exceptionMessage, matcher, matcherString );
8391 handler.handleExpr( expr );
8403#ifdef CLARA_CONFIG_CONSOLE_WIDTH
8404#define CATCH_TEMP_CLARA_CONFIG_CONSOLE_WIDTH CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH
8405#undef CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH
8407#define CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH CATCH_CONFIG_CONSOLE_WIDTH-1
8410#pragma clang diagnostic push
8411#pragma clang diagnostic ignored "-Wweak-vtables"
8412#pragma clang diagnostic ignored "-Wexit-time-destructors"
8413#pragma clang diagnostic ignored "-Wshadow"
8427#ifndef CATCH_CLARA_CONFIG_CONSOLE_WIDTH
8428#define CATCH_CLARA_CONFIG_CONSOLE_WIDTH 80
8431#ifndef CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH
8432#define CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH CATCH_CLARA_CONFIG_CONSOLE_WIDTH
8435#ifndef CLARA_CONFIG_OPTIONAL_TYPE
8437#if __has_include(<optional>) && __cplusplus >= 201703L
8439#define CLARA_CONFIG_OPTIONAL_TYPE std::optional
8461#ifndef CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH
8462#define CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH 80
8469inline auto isWhitespace(
char c) ->
bool {
8470 static std::string chars =
" \t\n\r";
8471 return chars.find(c) != std::string::npos;
8473inline auto isBreakableBefore(
char c) ->
bool {
8474 static std::string chars =
"[({<|";
8475 return chars.find(c) != std::string::npos;
8477inline auto isBreakableAfter(
char c) ->
bool {
8478 static std::string chars =
"])}>.,:;*+-=&/\\";
8479 return chars.find(c) != std::string::npos;
8485 std::vector<std::string> m_strings;
8486 size_t m_width = CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH;
8487 size_t m_indent = 0;
8488 size_t m_initialIndent = std::string::npos;
8494 Column
const& m_column;
8495 size_t m_stringIndex = 0;
8500 bool m_suffix =
false;
8502 iterator(Column
const& column,
size_t stringIndex)
8504 m_stringIndex(stringIndex) {}
8506 auto line() const -> std::
string const& {
return m_column.m_strings[m_stringIndex]; }
8508 auto isBoundary(
size_t at)
const ->
bool {
8510 assert(at <= line().size());
8512 return at == line().size() ||
8513 (isWhitespace(line()[at]) && !isWhitespace(line()[at - 1])) ||
8514 isBreakableBefore(line()[at]) ||
8515 isBreakableAfter(line()[at - 1]);
8519 assert(m_stringIndex < m_column.m_strings.size());
8522 auto width = m_column.m_width - indent();
8524 if (line()[m_pos] ==
'\n') {
8527 while (m_end < line().size() && line()[m_end] !=
'\n')
8530 if (m_end < m_pos + width) {
8531 m_len = m_end - m_pos;
8534 while (len > 0 && !isBoundary(m_pos + len))
8536 while (len > 0 && isWhitespace(line()[m_pos + len - 1]))
8548 auto indent() const ->
size_t {
8549 auto initial = m_pos == 0 && m_stringIndex == 0 ? m_column.m_initialIndent : std::string::npos;
8550 return initial == std::string::npos ? m_column.m_indent : initial;
8553 auto addIndentAndSuffix(std::string
const &plain)
const -> std::string {
8554 return std::string(indent(),
' ') + (m_suffix ? plain + "-" : plain);
8558 using difference_type = std::ptrdiff_t;
8559 using value_type = std::string;
8560 using pointer = value_type * ;
8561 using reference = value_type & ;
8562 using iterator_category = std::forward_iterator_tag;
8564 explicit iterator(Column
const& column) : m_column(column) {
8565 assert(m_column.m_width > m_column.m_indent);
8566 assert(m_column.m_initialIndent == std::string::npos || m_column.m_width > m_column.m_initialIndent);
8572 auto operator *() const -> std::
string {
8573 assert(m_stringIndex < m_column.m_strings.size());
8574 assert(m_pos <= m_end);
8575 return addIndentAndSuffix(line().substr(m_pos, m_len));
8578 auto operator ++() -> iterator& {
8580 if (m_pos < line().size() && line()[m_pos] ==
'\n')
8583 while (m_pos < line().size() && isWhitespace(line()[m_pos]))
8586 if (m_pos == line().size()) {
8590 if (m_stringIndex < m_column.m_strings.size())
8594 auto operator ++(
int) -> iterator {
8595 iterator prev(*
this);
8600 auto operator ==(iterator
const& other)
const ->
bool {
8602 m_pos == other.m_pos &&
8603 m_stringIndex == other.m_stringIndex &&
8604 &m_column == &other.m_column;
8606 auto operator !=(iterator
const& other)
const ->
bool {
8607 return !operator==(other);
8610 using const_iterator = iterator;
8612 explicit Column(std::string
const& text) { m_strings.push_back(text); }
8614 auto width(
size_t newWidth) -> Column& {
8615 assert(newWidth > 0);
8619 auto indent(
size_t newIndent) -> Column& {
8620 m_indent = newIndent;
8623 auto initialIndent(
size_t newIndent) -> Column& {
8624 m_initialIndent = newIndent;
8628 auto width() const ->
size_t {
return m_width; }
8629 auto begin() const -> iterator {
return iterator(*
this); }
8630 auto end() const -> iterator {
return { *
this, m_strings.size() }; }
8632 inline friend std::ostream&
operator << (std::ostream& os, Column
const& col) {
8634 for (
auto line : col) {
8644 auto operator + (Column
const& other)->Columns;
8646 auto toString() const -> std::
string {
8647 std::ostringstream oss;
8653class Spacer :
public Column {
8656 explicit Spacer(
size_t spaceWidth) : Column(
"") {
8662 std::vector<Column> m_columns;
8670 std::vector<Column>
const& m_columns;
8671 std::vector<Column::iterator> m_iterators;
8672 size_t m_activeIterators;
8674 iterator(Columns
const& columns, EndTag)
8675 : m_columns(columns.m_columns),
8676 m_activeIterators(0) {
8677 m_iterators.reserve(m_columns.size());
8679 for (
auto const& col : m_columns)
8680 m_iterators.push_back(col.end());
8684 using difference_type = std::ptrdiff_t;
8685 using value_type = std::string;
8686 using pointer = value_type * ;
8687 using reference = value_type & ;
8688 using iterator_category = std::forward_iterator_tag;
8690 explicit iterator(Columns
const& columns)
8691 : m_columns(columns.m_columns),
8692 m_activeIterators(m_columns.size()) {
8693 m_iterators.reserve(m_columns.size());
8695 for (
auto const& col : m_columns)
8696 m_iterators.push_back(col.begin());
8699 auto operator ==(iterator
const& other)
const ->
bool {
8700 return m_iterators == other.m_iterators;
8702 auto operator !=(iterator
const& other)
const ->
bool {
8703 return m_iterators != other.m_iterators;
8705 auto operator *() const -> std::
string {
8706 std::string row, padding;
8708 for (
size_t i = 0; i < m_columns.size(); ++i) {
8709 auto width = m_columns[i].width();
8710 if (m_iterators[i] != m_columns[i].end()) {
8711 std::string col = *m_iterators[i];
8712 row += padding + col;
8713 if (col.size() < width)
8714 padding = std::string(width - col.size(),
' ');
8718 padding += std::string(width, ' ');
8723 auto operator ++() -> iterator& {
8724 for (
size_t i = 0; i < m_columns.size(); ++i) {
8725 if (m_iterators[i] != m_columns[i].end())
8730 auto operator ++(
int) -> iterator {
8731 iterator prev(*
this);
8736 using const_iterator = iterator;
8738 auto begin() const -> iterator {
return iterator(*
this); }
8739 auto end() const -> iterator {
return { *
this, iterator::EndTag() }; }
8741 auto operator += (Column
const& col) -> Columns& {
8742 m_columns.push_back(col);
8745 auto operator + (Column
const& col) -> Columns {
8746 Columns combined = *
this;
8751 inline friend std::ostream&
operator << (std::ostream& os, Columns
const& cols) {
8754 for (
auto line : cols) {
8764 auto toString() const -> std::
string {
8765 std::ostringstream oss;
8771inline auto Column::operator + (Column
const& other) -> Columns {
8791#if !defined(CATCH_PLATFORM_WINDOWS) && ( defined(WIN32) || defined(__WIN32__) || defined(_WIN32) || defined(_MSC_VER) )
8792#define CATCH_PLATFORM_WINDOWS
8795namespace Catch {
namespace clara {
8799 template<
typename L>
8800 struct UnaryLambdaTraits : UnaryLambdaTraits<decltype( &L::operator() )> {};
8802 template<
typename ClassT,
typename ReturnT,
typename... Args>
8803 struct UnaryLambdaTraits<ReturnT( ClassT::* )( Args... ) const> {
8804 static const bool isValid =
false;
8807 template<
typename ClassT,
typename ReturnT,
typename ArgT>
8808 struct UnaryLambdaTraits<ReturnT( ClassT::* )( ArgT ) const> {
8809 static const bool isValid =
true;
8810 using ArgType =
typename std::remove_const<typename std::remove_reference<ArgT>::type>::type;
8811 using ReturnType = ReturnT;
8819 std::string m_exeName;
8820 std::vector<std::string> m_args;
8823 Args(
int argc,
char const*
const* argv )
8824 : m_exeName(argv[0]),
8825 m_args(argv + 1, argv + argc) {}
8827 Args( std::initializer_list<std::string> args )
8828 : m_exeName( *args.begin() ),
8829 m_args( args.begin()+1, args.end() )
8832 auto exeName() const -> std::
string {
8839 enum class TokenType {
8847 inline auto isOptPrefix(
char c ) ->
bool {
8849#ifdef CATCH_PLATFORM_WINDOWS
8857 using Iterator = std::vector<std::string>::const_iterator;
8860 std::vector<Token> m_tokenBuffer;
8863 m_tokenBuffer.resize( 0 );
8866 while( it != itEnd && it->empty() )
8870 auto const &next = *it;
8871 if( isOptPrefix( next[0] ) ) {
8872 auto delimiterPos = next.find_first_of(
" :=" );
8873 if( delimiterPos != std::string::npos ) {
8874 m_tokenBuffer.push_back( { TokenType::Option, next.substr( 0, delimiterPos ) } );
8875 m_tokenBuffer.push_back( { TokenType::Argument, next.substr( delimiterPos + 1 ) } );
8877 if( next[1] !=
'-' && next.size() > 2 ) {
8878 std::string opt =
"- ";
8879 for(
size_t i = 1; i < next.size(); ++i ) {
8881 m_tokenBuffer.push_back( { TokenType::Option, opt } );
8884 m_tokenBuffer.push_back( { TokenType::Option, next } );
8888 m_tokenBuffer.push_back( { TokenType::Argument, next } );
8894 explicit TokenStream( Args
const &args ) : TokenStream( args.m_args.begin(), args.m_args.end() ) {}
8896 TokenStream( Iterator it, Iterator itEnd ) : it( it ), itEnd( itEnd ) {
8900 explicit operator bool()
const {
8901 return !m_tokenBuffer.empty() || it != itEnd;
8904 auto count() const ->
size_t {
return m_tokenBuffer.size() + (itEnd - it); }
8906 auto operator*() const -> Token {
8907 assert( !m_tokenBuffer.empty() );
8908 return m_tokenBuffer.front();
8911 auto operator->() const -> Token const * {
8912 assert( !m_tokenBuffer.empty() );
8913 return &m_tokenBuffer.front();
8916 auto operator++() -> TokenStream & {
8917 if( m_tokenBuffer.size() >= 2 ) {
8918 m_tokenBuffer.erase( m_tokenBuffer.begin() );
8931 Ok, LogicError, RuntimeError
8935 ResultBase( Type type ) : m_type( type ) {}
8936 virtual ~ResultBase() =
default;
8938 virtual void enforceOk()
const = 0;
8943 template<
typename T>
8944 class ResultValueBase :
public ResultBase {
8946 auto value() const -> T const & {
8952 ResultValueBase( Type type ) : ResultBase( type ) {}
8954 ResultValueBase( ResultValueBase
const &other ) : ResultBase( other ) {
8955 if( m_type == ResultBase::Ok )
8956 new( &m_value ) T( other.m_value );
8959 ResultValueBase( Type, T
const &value ) : ResultBase( Ok ) {
8960 new( &m_value ) T( value );
8963 auto operator=( ResultValueBase
const &other ) -> ResultValueBase & {
8964 if( m_type == ResultBase::Ok )
8966 ResultBase::operator=(other);
8967 if( m_type == ResultBase::Ok )
8968 new( &m_value ) T( other.m_value );
8972 ~ResultValueBase()
override {
8983 class ResultValueBase<void> :
public ResultBase {
8985 using ResultBase::ResultBase;
8988 template<
typename T =
void>
8989 class BasicResult :
public ResultValueBase<T> {
8991 template<
typename U>
8992 explicit BasicResult( BasicResult<U>
const &other )
8993 : ResultValueBase<T>( other.type() ),
8994 m_errorMessage( other.errorMessage() )
8996 assert( type() != ResultBase::Ok );
8999 template<
typename U>
9000 static auto ok( U
const &value ) -> BasicResult {
return { ResultBase::Ok, value }; }
9001 static auto ok() -> BasicResult {
return { ResultBase::Ok }; }
9002 static auto logicError( std::string
const &message ) -> BasicResult {
return { ResultBase::LogicError, message }; }
9003 static auto runtimeError( std::string
const &message ) -> BasicResult {
return { ResultBase::RuntimeError, message }; }
9005 explicit operator bool()
const {
return m_type == ResultBase::Ok; }
9006 auto type() const -> ResultBase::Type {
return m_type; }
9007 auto errorMessage() const -> std::
string {
return m_errorMessage; }
9010 void enforceOk()
const override {
9014 assert( m_type != ResultBase::LogicError );
9015 assert( m_type != ResultBase::RuntimeError );
9016 if( m_type != ResultBase::Ok )
9020 std::string m_errorMessage;
9022 BasicResult( ResultBase::Type type, std::string
const &message )
9023 : ResultValueBase<T>(type),
9024 m_errorMessage(message)
9026 assert( m_type != ResultBase::Ok );
9029 using ResultValueBase<T>::ResultValueBase;
9030 using ResultBase::m_type;
9033 enum class ParseResultType {
9034 Matched, NoMatch, ShortCircuitAll, ShortCircuitSame
9040 ParseState( ParseResultType type, TokenStream
const &remainingTokens )
9042 m_remainingTokens( remainingTokens )
9045 auto type() const -> ParseResultType {
return m_type; }
9046 auto remainingTokens() const -> TokenStream {
return m_remainingTokens; }
9049 ParseResultType m_type;
9050 TokenStream m_remainingTokens;
9053 using Result = BasicResult<void>;
9054 using ParserResult = BasicResult<ParseResultType>;
9055 using InternalParseResult = BasicResult<ParseState>;
9057 struct HelpColumns {
9062 template<
typename T>
9063 inline auto convertInto( std::string
const &source, T& target ) -> ParserResult {
9064 std::stringstream ss;
9068 return ParserResult::runtimeError(
"Unable to convert '" + source +
"' to destination type" );
9070 return ParserResult::ok( ParseResultType::Matched );
9072 inline auto convertInto( std::string
const &source, std::string& target ) -> ParserResult {
9074 return ParserResult::ok( ParseResultType::Matched );
9076 inline auto convertInto( std::string
const &source,
bool &target ) -> ParserResult {
9077 std::string srcLC = source;
9078 std::transform( srcLC.begin(), srcLC.end(), srcLC.begin(), [](
char c ) { return static_cast<char>( std::tolower(c) ); } );
9079 if (srcLC ==
"y" || srcLC ==
"1" || srcLC ==
"true" || srcLC ==
"yes" || srcLC ==
"on")
9081 else if (srcLC ==
"n" || srcLC ==
"0" || srcLC ==
"false" || srcLC ==
"no" || srcLC ==
"off")
9084 return ParserResult::runtimeError(
"Expected a boolean value but did not recognise: '" + source +
"'" );
9085 return ParserResult::ok( ParseResultType::Matched );
9087#ifdef CLARA_CONFIG_OPTIONAL_TYPE
9088 template<
typename T>
9089 inline auto convertInto( std::string
const &source, CLARA_CONFIG_OPTIONAL_TYPE<T>& target ) -> ParserResult {
9091 auto result = convertInto( source, temp );
9093 target = std::move(temp);
9098 struct NonCopyable {
9099 NonCopyable() =
default;
9100 NonCopyable( NonCopyable
const & ) =
delete;
9101 NonCopyable( NonCopyable && ) =
delete;
9102 NonCopyable &operator=( NonCopyable
const & ) =
delete;
9103 NonCopyable &operator=( NonCopyable && ) =
delete;
9106 struct BoundRef : NonCopyable {
9107 virtual ~BoundRef() =
default;
9108 virtual auto isContainer() const ->
bool {
return false; }
9109 virtual auto isFlag() const ->
bool {
return false; }
9111 struct BoundValueRefBase : BoundRef {
9112 virtual auto setValue( std::string
const &arg ) -> ParserResult = 0;
9114 struct BoundFlagRefBase : BoundRef {
9115 virtual auto setFlag(
bool flag ) -> ParserResult = 0;
9116 virtual auto isFlag() const ->
bool {
return true; }
9119 template<
typename T>
9120 struct BoundValueRef : BoundValueRefBase {
9123 explicit BoundValueRef( T &ref ) : m_ref( ref ) {}
9125 auto setValue( std::string
const &arg ) -> ParserResult
override {
9126 return convertInto( arg, m_ref );
9130 template<
typename T>
9131 struct BoundValueRef<std::vector<T>> : BoundValueRefBase {
9132 std::vector<T> &m_ref;
9134 explicit BoundValueRef( std::vector<T> &ref ) : m_ref( ref ) {}
9136 auto isContainer() const ->
bool override {
return true; }
9138 auto setValue( std::string
const &arg ) -> ParserResult
override {
9140 auto result = convertInto( arg, temp );
9142 m_ref.push_back( temp );
9147 struct BoundFlagRef : BoundFlagRefBase {
9150 explicit BoundFlagRef(
bool &ref ) : m_ref( ref ) {}
9152 auto setFlag(
bool flag ) -> ParserResult
override {
9154 return ParserResult::ok( ParseResultType::Matched );
9158 template<
typename ReturnType>
9159 struct LambdaInvoker {
9160 static_assert( std::is_same<ReturnType, ParserResult>::value,
"Lambda must return void or clara::ParserResult" );
9162 template<
typename L,
typename ArgType>
9163 static auto invoke( L
const &lambda, ArgType
const &arg ) -> ParserResult {
9164 return lambda( arg );
9169 struct LambdaInvoker<void> {
9170 template<
typename L,
typename ArgType>
9171 static auto invoke( L
const &lambda, ArgType
const &arg ) -> ParserResult {
9173 return ParserResult::ok( ParseResultType::Matched );
9177 template<
typename ArgType,
typename L>
9178 inline auto invokeLambda( L
const &lambda, std::string
const &arg ) -> ParserResult {
9180 auto result = convertInto( arg, temp );
9183 : LambdaInvoker<typename UnaryLambdaTraits<L>::ReturnType>::invoke( lambda, temp );
9186 template<
typename L>
9187 struct BoundLambda : BoundValueRefBase {
9190 static_assert( UnaryLambdaTraits<L>::isValid,
"Supplied lambda must take exactly one argument" );
9191 explicit BoundLambda( L
const &lambda ) : m_lambda( lambda ) {}
9193 auto setValue( std::string
const &arg ) -> ParserResult
override {
9194 return invokeLambda<typename UnaryLambdaTraits<L>::ArgType>( m_lambda, arg );
9198 template<
typename L>
9199 struct BoundFlagLambda : BoundFlagRefBase {
9202 static_assert( UnaryLambdaTraits<L>::isValid,
"Supplied lambda must take exactly one argument" );
9203 static_assert( std::is_same<typename UnaryLambdaTraits<L>::ArgType,
bool>::value,
"flags must be boolean" );
9205 explicit BoundFlagLambda( L
const &lambda ) : m_lambda( lambda ) {}
9207 auto setFlag(
bool flag ) -> ParserResult
override {
9208 return LambdaInvoker<typename UnaryLambdaTraits<L>::ReturnType>::invoke( m_lambda, flag );
9212 enum class Optionality { Optional, Required };
9218 virtual ~ParserBase() =
default;
9219 virtual auto validate() const -> Result {
return Result::ok(); }
9220 virtual auto parse( std::string
const& exeName, TokenStream
const &tokens)
const -> InternalParseResult = 0;
9221 virtual auto cardinality() const ->
size_t {
return 1; }
9223 auto parse( Args
const &args )
const -> InternalParseResult {
9224 return parse( args.exeName(), TokenStream( args ) );
9228 template<
typename DerivedT>
9229 class ComposableParserImpl :
public ParserBase {
9231 template<
typename T>
9232 auto operator|( T
const &other )
const -> Parser;
9234 template<
typename T>
9235 auto operator+( T
const &other )
const -> Parser;
9239 template<
typename DerivedT>
9240 class ParserRefImpl :
public ComposableParserImpl<DerivedT> {
9242 Optionality m_optionality = Optionality::Optional;
9243 std::shared_ptr<BoundRef> m_ref;
9245 std::string m_description;
9247 explicit ParserRefImpl( std::shared_ptr<BoundRef>
const &ref ) : m_ref( ref ) {}
9250 template<
typename T>
9251 ParserRefImpl( T &ref, std::string
const &hint )
9252 : m_ref( std::make_shared<BoundValueRef<T>>( ref ) ),
9256 template<
typename LambdaT>
9257 ParserRefImpl( LambdaT
const &ref, std::string
const &hint )
9258 : m_ref( std::make_shared<BoundLambda<LambdaT>>( ref ) ),
9262 auto operator()( std::string
const &description ) -> DerivedT & {
9263 m_description = description;
9264 return static_cast<DerivedT &
>( *this );
9267 auto optional() -> DerivedT & {
9268 m_optionality = Optionality::Optional;
9269 return static_cast<DerivedT &
>( *this );
9272 auto required() -> DerivedT & {
9273 m_optionality = Optionality::Required;
9274 return static_cast<DerivedT &
>( *this );
9277 auto isOptional() const ->
bool {
9278 return m_optionality == Optionality::Optional;
9281 auto cardinality() const ->
size_t override {
9282 if( m_ref->isContainer() )
9288 auto hint() const -> std::
string {
return m_hint; }
9291 class ExeName :
public ComposableParserImpl<ExeName> {
9292 std::shared_ptr<std::string> m_name;
9293 std::shared_ptr<BoundValueRefBase> m_ref;
9295 template<
typename LambdaT>
9296 static auto makeRef(LambdaT
const &lambda) -> std::shared_ptr<BoundValueRefBase> {
9297 return std::make_shared<BoundLambda<LambdaT>>( lambda) ;
9301 ExeName() : m_name( std::make_shared<std::string>(
"<executable>" ) ) {}
9303 explicit ExeName( std::string &ref ) : ExeName() {
9304 m_ref = std::make_shared<BoundValueRef<std::string>>( ref );
9307 template<
typename LambdaT>
9308 explicit ExeName( LambdaT
const& lambda ) : ExeName() {
9309 m_ref = std::make_shared<BoundLambda<LambdaT>>( lambda );
9313 auto parse( std::string
const&, TokenStream
const &tokens )
const -> InternalParseResult
override {
9314 return InternalParseResult::ok( ParseState( ParseResultType::NoMatch, tokens ) );
9317 auto name() const -> std::
string {
return *m_name; }
9318 auto set( std::string
const& newName ) -> ParserResult {
9320 auto lastSlash = newName.find_last_of(
"\\/" );
9321 auto filename = ( lastSlash == std::string::npos )
9323 : newName.substr( lastSlash+1 );
9327 return m_ref->setValue( filename );
9329 return ParserResult::ok( ParseResultType::Matched );
9333 class Arg :
public ParserRefImpl<Arg> {
9335 using ParserRefImpl::ParserRefImpl;
9337 auto parse( std::string
const &, TokenStream
const &tokens )
const -> InternalParseResult
override {
9338 auto validationResult = validate();
9339 if( !validationResult )
9340 return InternalParseResult( validationResult );
9342 auto remainingTokens = tokens;
9343 auto const &token = *remainingTokens;
9344 if( token.type != TokenType::Argument )
9345 return InternalParseResult::ok( ParseState( ParseResultType::NoMatch, remainingTokens ) );
9347 assert( !m_ref->isFlag() );
9348 auto valueRef =
static_cast<detail::BoundValueRefBase*
>( m_ref.get() );
9350 auto result = valueRef->setValue( remainingTokens->token );
9352 return InternalParseResult( result );
9354 return InternalParseResult::ok( ParseState( ParseResultType::Matched, ++remainingTokens ) );
9358 inline auto normaliseOpt( std::string
const &optName ) -> std::string {
9359#ifdef CATCH_PLATFORM_WINDOWS
9360 if( optName[0] ==
'/' )
9361 return "-" + optName.substr( 1 );
9367 class Opt :
public ParserRefImpl<Opt> {
9369 std::vector<std::string> m_optNames;
9372 template<
typename LambdaT>
9373 explicit Opt( LambdaT
const &ref ) : ParserRefImpl( std::make_shared<BoundFlagLambda<LambdaT>>( ref ) ) {}
9375 explicit Opt(
bool &ref ) : ParserRefImpl( std::make_shared<BoundFlagRef>( ref ) ) {}
9377 template<
typename LambdaT>
9378 Opt( LambdaT
const &ref, std::string
const &hint ) : ParserRefImpl( ref, hint ) {}
9380 template<
typename T>
9381 Opt( T &ref, std::string
const &hint ) : ParserRefImpl( ref, hint ) {}
9383 auto operator[]( std::string
const &optName ) -> Opt & {
9384 m_optNames.push_back( optName );
9388 auto getHelpColumns() const -> std::vector<HelpColumns> {
9389 std::ostringstream oss;
9391 for(
auto const &opt : m_optNames ) {
9398 if( !m_hint.empty() )
9399 oss <<
" <" << m_hint <<
">";
9400 return { { oss.str(), m_description } };
9403 auto isMatch( std::string
const &optToken )
const ->
bool {
9404 auto normalisedToken = normaliseOpt( optToken );
9405 for(
auto const &name : m_optNames ) {
9406 if( normaliseOpt( name ) == normalisedToken )
9412 using ParserBase::parse;
9414 auto parse( std::string
const&, TokenStream
const &tokens )
const -> InternalParseResult
override {
9415 auto validationResult = validate();
9416 if( !validationResult )
9417 return InternalParseResult( validationResult );
9419 auto remainingTokens = tokens;
9420 if( remainingTokens && remainingTokens->type == TokenType::Option ) {
9421 auto const &token = *remainingTokens;
9422 if( isMatch(token.token ) ) {
9423 if( m_ref->isFlag() ) {
9424 auto flagRef =
static_cast<detail::BoundFlagRefBase*
>( m_ref.get() );
9425 auto result = flagRef->setFlag(
true );
9427 return InternalParseResult( result );
9428 if( result.value() == ParseResultType::ShortCircuitAll )
9429 return InternalParseResult::ok( ParseState( result.value(), remainingTokens ) );
9431 auto valueRef =
static_cast<detail::BoundValueRefBase*
>( m_ref.get() );
9433 if( !remainingTokens )
9434 return InternalParseResult::runtimeError(
"Expected argument following " + token.token );
9435 auto const &argToken = *remainingTokens;
9436 if( argToken.type != TokenType::Argument )
9437 return InternalParseResult::runtimeError(
"Expected argument following " + token.token );
9438 auto result = valueRef->setValue( argToken.token );
9440 return InternalParseResult( result );
9441 if( result.value() == ParseResultType::ShortCircuitAll )
9442 return InternalParseResult::ok( ParseState( result.value(), remainingTokens ) );
9444 return InternalParseResult::ok( ParseState( ParseResultType::Matched, ++remainingTokens ) );
9447 return InternalParseResult::ok( ParseState( ParseResultType::NoMatch, remainingTokens ) );
9450 auto validate() const -> Result
override {
9451 if( m_optNames.empty() )
9452 return Result::logicError(
"No options supplied to Opt" );
9453 for(
auto const &name : m_optNames ) {
9455 return Result::logicError(
"Option name cannot be empty" );
9456#ifdef CATCH_PLATFORM_WINDOWS
9457 if( name[0] !=
'-' && name[0] !=
'/' )
9458 return Result::logicError(
"Option name must begin with '-' or '/'" );
9460 if( name[0] !=
'-' )
9461 return Result::logicError(
"Option name must begin with '-'" );
9464 return ParserRefImpl::validate();
9469 Help(
bool &showHelpFlag )
9470 : Opt([&]( bool flag ) {
9471 showHelpFlag = flag;
9472 return ParserResult::ok( ParseResultType::ShortCircuitAll );
9475 static_cast<Opt &
>( *this )
9476 (
"display usage information")
9477 [
"-?"][
"-h"][
"--help"]
9482 struct Parser : ParserBase {
9484 mutable ExeName m_exeName;
9485 std::vector<Opt> m_options;
9486 std::vector<Arg> m_args;
9488 auto operator|=( ExeName
const &exeName ) -> Parser & {
9489 m_exeName = exeName;
9493 auto operator|=( Arg
const &arg ) -> Parser & {
9494 m_args.push_back(arg);
9498 auto operator|=( Opt
const &opt ) -> Parser & {
9499 m_options.push_back(opt);
9503 auto operator|=( Parser
const &other ) -> Parser & {
9504 m_options.insert(m_options.end(), other.m_options.begin(), other.m_options.end());
9505 m_args.insert(m_args.end(), other.m_args.begin(), other.m_args.end());
9509 template<
typename T>
9510 auto operator|( T
const &other )
const -> Parser {
9511 return Parser( *
this ) |= other;
9515 template<
typename T>
9516 auto operator+=( T
const &other ) -> Parser & {
return operator|=( other ); }
9517 template<
typename T>
9518 auto operator+( T
const &other )
const -> Parser {
return operator|( other ); }
9520 auto getHelpColumns() const -> std::vector<HelpColumns> {
9521 std::vector<HelpColumns> cols;
9522 for (
auto const &o : m_options) {
9523 auto childCols = o.getHelpColumns();
9524 cols.insert( cols.end(), childCols.begin(), childCols.end() );
9529 void writeToStream( std::ostream &os )
const {
9530 if (!m_exeName.name().empty()) {
9531 os <<
"usage:\n" <<
" " << m_exeName.name() <<
" ";
9532 bool required =
true, first =
true;
9533 for(
auto const &arg : m_args ) {
9538 if( arg.isOptional() && required ) {
9542 os <<
"<" << arg.hint() <<
">";
9543 if( arg.cardinality() == 0 )
9548 if( !m_options.empty() )
9550 os <<
"\n\nwhere options are:" << std::endl;
9553 auto rows = getHelpColumns();
9554 size_t consoleWidth = CATCH_CLARA_CONFIG_CONSOLE_WIDTH;
9555 size_t optWidth = 0;
9556 for(
auto const &cols : rows )
9557 optWidth = (std::max)(optWidth, cols.left.size() + 2);
9559 optWidth = (std::min)(optWidth, consoleWidth/2);
9561 for(
auto const &cols : rows ) {
9563 TextFlow::Column( cols.left ).width( optWidth ).indent( 2 ) +
9564 TextFlow::Spacer(4) +
9565 TextFlow::Column( cols.right ).width( consoleWidth - 7 - optWidth );
9566 os << row << std::endl;
9570 friend auto operator<<( std::ostream &os, Parser
const &parser ) -> std::ostream& {
9571 parser.writeToStream( os );
9575 auto validate() const -> Result
override {
9576 for(
auto const &opt : m_options ) {
9577 auto result = opt.validate();
9581 for(
auto const &arg : m_args ) {
9582 auto result = arg.validate();
9586 return Result::ok();
9589 using ParserBase::parse;
9591 auto parse( std::string
const& exeName, TokenStream
const &tokens )
const -> InternalParseResult
override {
9594 ParserBase
const* parser =
nullptr;
9597 const size_t totalParsers = m_options.size() + m_args.size();
9598 assert( totalParsers < 512 );
9600 ParserInfo parseInfos[512];
9604 for (
auto const &opt : m_options) parseInfos[i++].parser = &opt;
9605 for (
auto const &arg : m_args) parseInfos[i++].parser = &arg;
9608 m_exeName.set( exeName );
9610 auto result = InternalParseResult::ok( ParseState( ParseResultType::NoMatch, tokens ) );
9611 while( result.value().remainingTokens() ) {
9612 bool tokenParsed =
false;
9614 for(
size_t i = 0; i < totalParsers; ++i ) {
9615 auto& parseInfo = parseInfos[i];
9616 if( parseInfo.parser->cardinality() == 0 || parseInfo.count < parseInfo.parser->cardinality() ) {
9617 result = parseInfo.parser->parse(exeName, result.value().remainingTokens());
9620 if (result.value().type() != ParseResultType::NoMatch) {
9628 if( result.value().type() == ParseResultType::ShortCircuitAll )
9631 return InternalParseResult::runtimeError(
"Unrecognised token: " + result.value().remainingTokens()->token );
9638 template<
typename DerivedT>
9639 template<
typename T>
9640 auto ComposableParserImpl<DerivedT>::operator|( T
const &other )
const -> Parser {
9641 return Parser() |
static_cast<DerivedT
const &
>( *this ) | other;
9646using detail::Parser;
9658using detail::ExeName;
9664using detail::ParseResultType;
9667using detail::ParserResult;
9673#pragma clang diagnostic pop
9677#ifdef CATCH_TEMP_CLARA_CONFIG_CONSOLE_WIDTH
9678#define CATCH_CLARA_TEXTFLOW_CONFIG_CONSOLE_WIDTH CATCH_TEMP_CLARA_CONFIG_CONSOLE_WIDTH
9679#undef CATCH_TEMP_CLARA_CONFIG_CONSOLE_WIDTH
9685 clara::Parser makeCommandLineParser( ConfigData& config );
9695 clara::Parser makeCommandLineParser( ConfigData& config ) {
9697 using namespace clara;
9699 auto const setWarning = [&]( std::string
const& warning ) {
9700 auto warningSet = [&]() {
9701 if( warning ==
"NoAssertions" )
9702 return WarnAbout::NoAssertions;
9704 if ( warning ==
"NoTests" )
9705 return WarnAbout::NoTests;
9707 return WarnAbout::Nothing;
9710 if (warningSet == WarnAbout::Nothing)
9711 return ParserResult::runtimeError(
"Unrecognised warning: '" + warning +
"'" );
9712 config.warnings =
static_cast<WarnAbout::What
>( config.warnings | warningSet );
9713 return ParserResult::ok( ParseResultType::Matched );
9715 auto const loadTestNamesFromFile = [&]( std::string
const& filename ) {
9716 std::ifstream f( filename.c_str() );
9718 return ParserResult::runtimeError(
"Unable to load input file: '" + filename +
"'" );
9721 while( std::getline( f, line ) ) {
9723 if( !line.empty() && !startsWith( line,
'#' ) ) {
9724 if( !startsWith( line,
'"' ) )
9725 line =
'"' + line + '"';
9726 config.testsOrTags.push_back( line );
9727 config.testsOrTags.emplace_back(
"," );
9731 if(!config.testsOrTags.empty())
9732 config.testsOrTags.erase( config.testsOrTags.end()-1 );
9734 return ParserResult::ok( ParseResultType::Matched );
9736 auto const setTestOrder = [&]( std::string
const& order ) {
9737 if( startsWith(
"declared", order ) )
9738 config.runOrder = RunTests::InDeclarationOrder;
9739 else if( startsWith(
"lexical", order ) )
9740 config.runOrder = RunTests::InLexicographicalOrder;
9741 else if( startsWith(
"random", order ) )
9742 config.runOrder = RunTests::InRandomOrder;
9744 return clara::ParserResult::runtimeError(
"Unrecognised ordering: '" + order +
"'" );
9745 return ParserResult::ok( ParseResultType::Matched );
9747 auto const setRngSeed = [&]( std::string
const& seed ) {
9748 if( seed !=
"time" )
9749 return clara::detail::convertInto( seed, config.rngSeed );
9750 config.rngSeed =
static_cast<unsigned int>( std::time(
nullptr) );
9751 return ParserResult::ok( ParseResultType::Matched );
9753 auto const setColourUsage = [&]( std::string
const& useColour ) {
9754 auto mode = toLower( useColour );
9757 config.useColour = UseColour::Yes;
9758 else if( mode ==
"no" )
9759 config.useColour = UseColour::No;
9760 else if( mode ==
"auto" )
9761 config.useColour = UseColour::Auto;
9763 return ParserResult::runtimeError(
"colour mode must be one of: auto, yes or no. '" + useColour +
"' not recognised" );
9764 return ParserResult::ok( ParseResultType::Matched );
9766 auto const setWaitForKeypress = [&]( std::string
const& keypress ) {
9767 auto keypressLc = toLower( keypress );
9768 if (keypressLc ==
"never")
9769 config.waitForKeypress = WaitForKeypress::Never;
9770 else if( keypressLc ==
"start" )
9771 config.waitForKeypress = WaitForKeypress::BeforeStart;
9772 else if( keypressLc ==
"exit" )
9773 config.waitForKeypress = WaitForKeypress::BeforeExit;
9774 else if( keypressLc ==
"both" )
9775 config.waitForKeypress = WaitForKeypress::BeforeStartAndExit;
9777 return ParserResult::runtimeError(
"keypress argument must be one of: never, start, exit or both. '" + keypress +
"' not recognised" );
9778 return ParserResult::ok( ParseResultType::Matched );
9780 auto const setVerbosity = [&]( std::string
const& verbosity ) {
9781 auto lcVerbosity = toLower( verbosity );
9782 if( lcVerbosity ==
"quiet" )
9783 config.verbosity = Verbosity::Quiet;
9784 else if( lcVerbosity ==
"normal" )
9785 config.verbosity = Verbosity::Normal;
9786 else if( lcVerbosity ==
"high" )
9787 config.verbosity = Verbosity::High;
9789 return ParserResult::runtimeError(
"Unrecognised verbosity, '" + verbosity +
"'" );
9790 return ParserResult::ok( ParseResultType::Matched );
9792 auto const setReporter = [&]( std::string
const& reporter ) {
9793 IReporterRegistry::FactoryMap
const& factories = getRegistryHub().getReporterRegistry().getFactories();
9795 auto lcReporter = toLower( reporter );
9796 auto result = factories.find( lcReporter );
9798 if( factories.end() != result )
9799 config.reporterName = lcReporter;
9801 return ParserResult::runtimeError(
"Unrecognized reporter, '" + reporter +
"'. Check available with --list-reporters" );
9802 return ParserResult::ok( ParseResultType::Matched );
9806 = ExeName( config.processName )
9807 | Help( config.showHelp )
9808 | Opt( config.listTests )
9809 ["-l"]["--list-tests"]
9810 (
"list all/matching test cases" )
9811 | Opt( config.listTags )
9812 ["-t"]["--list-tags"]
9813 (
"list all/matching tags" )
9814 | Opt( config.showSuccessfulTests )
9816 (
"include successful tests in output" )
9817 | Opt( config.shouldDebugBreak )
9819 (
"break into debugger on failure" )
9820 | Opt( config.noThrow )
9822 (
"skip exception tests" )
9823 | Opt( config.showInvisibles )
9824 ["-i"]["--invisibles"]
9825 (
"show invisibles (tabs, newlines)" )
9826 | Opt( config.outputFilename,
"filename" )
9828 (
"output filename" )
9829 | Opt( setReporter,
"name" )
9830 ["-r"]["--reporter"]
9831 (
"reporter to use (defaults to console)" )
9832 | Opt( config.name,
"name" )
9835 | Opt( [&](
bool ){ config.abortAfter = 1; } )
9837 (
"abort at first failure" )
9838 | Opt( [&](
int x ){ config.abortAfter = x; },
"no. failures" )
9840 (
"abort after x failures" )
9841 | Opt( setWarning,
"warning name" )
9843 (
"enable warnings" )
9844 | Opt( [&](
bool flag ) { config.showDurations = flag ? ShowDurations::Always : ShowDurations::Never; },
"yes|no" )
9845 [
"-d"][
"--durations"]
9846 (
"show test durations" )
9847 | Opt( loadTestNamesFromFile,
"filename" )
9848 ["-f"]["--input-file"]
9849 (
"load test names to run from a file" )
9850 | Opt( config.filenamesAsTags )
9851 ["-#"]["--filenames-as-tags"]
9852 (
"adds a tag for the filename" )
9853 | Opt( config.sectionsToRun,
"section name" )
9855 (
"specify section to run" )
9856 | Opt( setVerbosity,
"quiet|normal|high" )
9857 ["-v"]["--verbosity"]
9858 (
"set output verbosity" )
9859 | Opt( config.listTestNamesOnly )
9860 ["--list-test-names-only"]
9861 (
"list all/matching test cases names only" )
9862 | Opt( config.listReporters )
9863 ["--list-reporters"]
9864 (
"list all reporters" )
9865 | Opt( setTestOrder,
"decl|lex|rand" )
9867 (
"test case order (defaults to decl)" )
9868 | Opt( setRngSeed,
"'time'|number" )
9870 (
"set a specific seed for random numbers" )
9871 | Opt( setColourUsage,
"yes|no" )
9873 (
"should output be colourised" )
9874 | Opt( config.libIdentify )
9876 (
"report name and version according to libidentify standard" )
9877 | Opt( setWaitForKeypress,
"never|start|exit|both" )
9878 ["--wait-for-keypress"]
9879 (
"waits for a keypress before exiting" )
9880 | Opt( config.benchmarkSamples,
"samples" )
9881 ["--benchmark-samples"]
9882 (
"number of samples to collect (default: 100)" )
9883 | Opt( config.benchmarkResamples,
"resamples" )
9884 ["--benchmark-resamples"]
9885 (
"number of resamples for the bootstrap (default: 100000)" )
9886 | Opt( config.benchmarkConfidenceInterval,
"confidence interval" )
9887 ["--benchmark-confidence-interval"]
9888 (
"confidence interval for the bootstrap (between 0 and 1, default: 0.95)" )
9889 | Opt( config.benchmarkNoAnalysis )
9890 ["--benchmark-no-analysis"]
9891 (
"perform only measurements; do not perform any analysis" )
9892 | Opt( config.benchmarkWarmupTime,
"benchmarkWarmupTime" )
9893 ["--benchmark-warmup-time"]
9894 (
"amount of time in milliseconds spent on warming up each test (default: 100)" )
9895 | Arg( config.testsOrTags,
"test name|pattern|tags" )
9896 (
"which test or tests to use" );
9910 bool SourceLineInfo::operator == ( SourceLineInfo
const& other )
const noexcept {
9911 return line == other.line && (file == other.file || std::strcmp(file, other.file) == 0);
9913 bool SourceLineInfo::operator < ( SourceLineInfo
const& other )
const noexcept {
9916 return line < other.line || ( line == other.line && file != other.file && (std::strcmp(file, other.file) < 0));
9919 std::ostream& operator << ( std::ostream& os, SourceLineInfo
const& info ) {
9921 os << info.file <<
'(' << info.line <<
')';
9923 os << info.file <<
':' << info.line;
9928 std::string StreamEndStop::operator+()
const {
9929 return std::string();
9932 NonCopyable::NonCopyable() =
default;
9933 NonCopyable::~NonCopyable() =
default;
9941 Config::Config( ConfigData
const& data )
9943 m_stream( openStream() )
9949 for (
auto& elem : m_data.testsOrTags) {
9952 for (
auto& elem : m_data.sectionsToRun) {
9956 TestSpecParser parser(ITagAliasRegistry::get());
9957 if (!m_data.testsOrTags.empty()) {
9958 m_hasTestFilters =
true;
9959 for (
auto const& testOrTags : m_data.testsOrTags) {
9960 parser.parse(testOrTags);
9963 m_testSpec = parser.testSpec();
9966 std::string
const& Config::getFilename()
const {
9967 return m_data.outputFilename ;
9970 bool Config::listTests()
const {
return m_data.listTests; }
9971 bool Config::listTestNamesOnly()
const {
return m_data.listTestNamesOnly; }
9972 bool Config::listTags()
const {
return m_data.listTags; }
9973 bool Config::listReporters()
const {
return m_data.listReporters; }
9975 std::string Config::getProcessName()
const {
return m_data.processName; }
9976 std::string
const& Config::getReporterName()
const {
return m_data.reporterName; }
9978 std::vector<std::string>
const& Config::getTestsOrTags()
const {
return m_data.testsOrTags; }
9979 std::vector<std::string>
const& Config::getSectionsToRun()
const {
return m_data.sectionsToRun; }
9981 TestSpec
const& Config::testSpec()
const {
return m_testSpec; }
9982 bool Config::hasTestFilters()
const {
return m_hasTestFilters; }
9984 bool Config::showHelp()
const {
return m_data.showHelp; }
9987 bool Config::allowThrows()
const {
return !m_data.noThrow; }
9988 std::ostream& Config::stream()
const {
return m_stream->stream(); }
9989 std::string Config::name()
const {
return m_data.name.empty() ? m_data.processName : m_data.name; }
9990 bool Config::includeSuccessfulResults()
const {
return m_data.showSuccessfulTests; }
9991 bool Config::warnAboutMissingAssertions()
const {
return !!(m_data.warnings & WarnAbout::NoAssertions); }
9992 bool Config::warnAboutNoTests()
const {
return !!(m_data.warnings & WarnAbout::NoTests); }
9993 ShowDurations::OrNot Config::showDurations()
const {
return m_data.showDurations; }
9994 RunTests::InWhatOrder Config::runOrder()
const {
return m_data.runOrder; }
9995 unsigned int Config::rngSeed()
const {
return m_data.rngSeed; }
9996 UseColour::YesOrNo Config::useColour()
const {
return m_data.useColour; }
9997 bool Config::shouldDebugBreak()
const {
return m_data.shouldDebugBreak; }
9998 int Config::abortAfter()
const {
return m_data.abortAfter; }
9999 bool Config::showInvisibles()
const {
return m_data.showInvisibles; }
10000 Verbosity Config::verbosity()
const {
return m_data.verbosity; }
10002 bool Config::benchmarkNoAnalysis()
const {
return m_data.benchmarkNoAnalysis; }
10003 int Config::benchmarkSamples()
const {
return m_data.benchmarkSamples; }
10004 double Config::benchmarkConfidenceInterval()
const {
return m_data.benchmarkConfidenceInterval; }
10005 unsigned int Config::benchmarkResamples()
const {
return m_data.benchmarkResamples; }
10006 std::chrono::milliseconds Config::benchmarkWarmupTime()
const {
return std::chrono::milliseconds(m_data.benchmarkWarmupTime); }
10008 IStream
const* Config::openStream() {
10009 return Catch::makeStream(m_data.outputFilename);
10016#if defined(__clang__)
10017# pragma clang diagnostic push
10018# pragma clang diagnostic ignored "-Wexit-time-destructors"
10041 struct IColourImpl {
10042 virtual ~IColourImpl() =
default;
10043 virtual void use( Colour::Code _colourCode ) = 0;
10046 struct NoColourImpl : IColourImpl {
10047 void use( Colour::Code )
override {}
10049 static IColourImpl* instance() {
10050 static NoColourImpl s_instance;
10051 return &s_instance;
10058#if !defined( CATCH_CONFIG_COLOUR_NONE ) && !defined( CATCH_CONFIG_COLOUR_WINDOWS ) && !defined( CATCH_CONFIG_COLOUR_ANSI )
10059# ifdef CATCH_PLATFORM_WINDOWS
10060# define CATCH_CONFIG_COLOUR_WINDOWS
10062# define CATCH_CONFIG_COLOUR_ANSI
10066#if defined ( CATCH_CONFIG_COLOUR_WINDOWS )
10071 class Win32ColourImpl :
public IColourImpl {
10073 Win32ColourImpl() : stdoutHandle( GetStdHandle(STD_OUTPUT_HANDLE) )
10075 CONSOLE_SCREEN_BUFFER_INFO csbiInfo;
10076 GetConsoleScreenBufferInfo( stdoutHandle, &csbiInfo );
10077 originalForegroundAttributes = csbiInfo.wAttributes & ~( BACKGROUND_GREEN | BACKGROUND_RED | BACKGROUND_BLUE | BACKGROUND_INTENSITY );
10078 originalBackgroundAttributes = csbiInfo.wAttributes & ~( FOREGROUND_GREEN | FOREGROUND_RED | FOREGROUND_BLUE | FOREGROUND_INTENSITY );
10081 void use( Colour::Code _colourCode )
override {
10082 switch( _colourCode ) {
10083 case Colour::None:
return setTextAttribute( originalForegroundAttributes );
10084 case Colour::White:
return setTextAttribute( FOREGROUND_GREEN | FOREGROUND_RED | FOREGROUND_BLUE );
10085 case Colour::Red:
return setTextAttribute( FOREGROUND_RED );
10086 case Colour::Green:
return setTextAttribute( FOREGROUND_GREEN );
10087 case Colour::Blue:
return setTextAttribute( FOREGROUND_BLUE );
10088 case Colour::Cyan:
return setTextAttribute( FOREGROUND_BLUE | FOREGROUND_GREEN );
10089 case Colour::Yellow:
return setTextAttribute( FOREGROUND_RED | FOREGROUND_GREEN );
10090 case Colour::Grey:
return setTextAttribute( 0 );
10092 case Colour::LightGrey:
return setTextAttribute( FOREGROUND_INTENSITY );
10093 case Colour::BrightRed:
return setTextAttribute( FOREGROUND_INTENSITY | FOREGROUND_RED );
10094 case Colour::BrightGreen:
return setTextAttribute( FOREGROUND_INTENSITY | FOREGROUND_GREEN );
10095 case Colour::BrightWhite:
return setTextAttribute( FOREGROUND_INTENSITY | FOREGROUND_GREEN | FOREGROUND_RED | FOREGROUND_BLUE );
10096 case Colour::BrightYellow:
return setTextAttribute( FOREGROUND_INTENSITY | FOREGROUND_RED | FOREGROUND_GREEN );
10098 case Colour::Bright: CATCH_INTERNAL_ERROR(
"not a colour" );
10101 CATCH_ERROR(
"Unknown colour requested" );
10106 void setTextAttribute( WORD _textAttribute ) {
10107 SetConsoleTextAttribute( stdoutHandle, _textAttribute | originalBackgroundAttributes );
10109 HANDLE stdoutHandle;
10110 WORD originalForegroundAttributes;
10111 WORD originalBackgroundAttributes;
10114 IColourImpl* platformColourInstance() {
10115 static Win32ColourImpl s_instance;
10117 IConfigPtr config = getCurrentContext().getConfig();
10118 UseColour::YesOrNo colourMode = config
10119 ? config->useColour()
10121 if( colourMode == UseColour::Auto )
10122 colourMode = UseColour::Yes;
10123 return colourMode == UseColour::Yes
10125 : NoColourImpl::instance();
10131#elif defined( CATCH_CONFIG_COLOUR_ANSI )
10142 class PosixColourImpl :
public IColourImpl {
10144 void use( Colour::Code _colourCode )
override {
10145 switch( _colourCode ) {
10147 case Colour::White:
return setColour(
"[0m" );
10148 case Colour::Red:
return setColour(
"[0;31m" );
10149 case Colour::Green:
return setColour(
"[0;32m" );
10150 case Colour::Blue:
return setColour(
"[0;34m" );
10151 case Colour::Cyan:
return setColour(
"[0;36m" );
10152 case Colour::Yellow:
return setColour(
"[0;33m" );
10153 case Colour::Grey:
return setColour(
"[1;30m" );
10155 case Colour::LightGrey:
return setColour(
"[0;37m" );
10156 case Colour::BrightRed:
return setColour(
"[1;31m" );
10157 case Colour::BrightGreen:
return setColour(
"[1;32m" );
10158 case Colour::BrightWhite:
return setColour(
"[1;37m" );
10159 case Colour::BrightYellow:
return setColour(
"[1;33m" );
10161 case Colour::Bright: CATCH_INTERNAL_ERROR(
"not a colour" );
10162 default: CATCH_INTERNAL_ERROR(
"Unknown colour requested" );
10165 static IColourImpl* instance() {
10166 static PosixColourImpl s_instance;
10167 return &s_instance;
10171 void setColour(
const char* _escapeCode ) {
10172 getCurrentContext().getConfig()->stream()
10173 <<
'\033' << _escapeCode;
10177 bool useColourOnPlatform() {
10179#if defined(CATCH_PLATFORM_MAC) || defined(CATCH_PLATFORM_IPHONE)
10180 !isDebuggerActive() &&
10182#if !(defined(__DJGPP__) && defined(__STRICT_ANSI__))
10183 isatty(STDOUT_FILENO)
10189 IColourImpl* platformColourInstance() {
10191 IConfigPtr config = getCurrentContext().getConfig();
10192 UseColour::YesOrNo colourMode = config
10193 ? config->useColour()
10195 if( colourMode == UseColour::Auto )
10196 colourMode = useColourOnPlatform()
10199 return colourMode == UseColour::Yes
10200 ? PosixColourImpl::instance()
10201 : NoColourImpl::instance();
10211 static IColourImpl* platformColourInstance() {
return NoColourImpl::instance(); }
10219 Colour::Colour( Code _colourCode ) { use( _colourCode ); }
10220 Colour::Colour( Colour&& other )
noexcept {
10221 m_moved = other.m_moved;
10222 other.m_moved =
true;
10224 Colour& Colour::operator=( Colour&& other )
noexcept {
10225 m_moved = other.m_moved;
10226 other.m_moved =
true;
10230 Colour::~Colour(){
if( !m_moved ) use( None ); }
10232 void Colour::use( Code _colourCode ) {
10233 static IColourImpl* impl = platformColourInstance();
10238 if (impl !=
nullptr) {
10239 impl->use( _colourCode );
10243 std::ostream& operator << ( std::ostream& os, Colour
const& ) {
10249#if defined(__clang__)
10250# pragma clang diagnostic pop
10258 class Context :
public IMutableContext, NonCopyable {
10261 IResultCapture* getResultCapture()
override {
10262 return m_resultCapture;
10264 IRunner* getRunner()
override {
10268 IConfigPtr
const& getConfig()
const override {
10272 ~Context()
override;
10275 void setResultCapture( IResultCapture* resultCapture )
override {
10276 m_resultCapture = resultCapture;
10278 void setRunner( IRunner* runner )
override {
10281 void setConfig( IConfigPtr
const& config )
override {
10285 friend IMutableContext& getCurrentMutableContext();
10288 IConfigPtr m_config;
10289 IRunner* m_runner =
nullptr;
10290 IResultCapture* m_resultCapture =
nullptr;
10293 IMutableContext *IMutableContext::currentContext =
nullptr;
10295 void IMutableContext::createContext()
10297 currentContext =
new Context();
10300 void cleanUpContext() {
10301 delete IMutableContext::currentContext;
10302 IMutableContext::currentContext =
nullptr;
10304 IContext::~IContext() =
default;
10305 IMutableContext::~IMutableContext() =
default;
10306 Context::~Context() =
default;
10308 SimplePcg32& rng() {
10309 static SimplePcg32 s_rng;
10322 void writeToDebugConsole( std::string
const& text );
10326#if defined(CATCH_CONFIG_ANDROID_LOGWRITE)
10327#include <android/log.h>
10330 void writeToDebugConsole( std::string
const& text ) {
10331 __android_log_write( ANDROID_LOG_DEBUG,
"Catch", text.c_str() );
10335#elif defined(CATCH_PLATFORM_WINDOWS)
10338 void writeToDebugConsole( std::string
const& text ) {
10339 ::OutputDebugStringA( text.c_str() );
10346 void writeToDebugConsole( std::string
const& text ) {
10348 Catch::cout() << text;
10356#if defined(CATCH_PLATFORM_MAC) || defined(CATCH_PLATFORM_IPHONE)
10359# include <sys/types.h>
10360# include <unistd.h>
10364#ifdef __apple_build_version__
10367# include <sys/sysctl.h>
10371 #ifdef __apple_build_version__
10377 bool isDebuggerActive(){
10379 struct kinfo_proc info;
10385 info.kp_proc.p_flag = 0;
10391 mib[1] = KERN_PROC;
10392 mib[2] = KERN_PROC_PID;
10397 size =
sizeof(info);
10398 if( sysctl(mib,
sizeof(mib) /
sizeof(*mib), &info, &size,
nullptr, 0) != 0 ) {
10399 Catch::cerr() <<
"\n** Call to sysctl failed - unable to determine if debugger is active **\n" << std::endl;
10405 return ( (info.kp_proc.p_flag & P_TRACED) != 0 );
10408 bool isDebuggerActive() {
10415#elif defined(CATCH_PLATFORM_LINUX)
10427 bool isDebuggerActive(){
10431 std::ifstream in(
"/proc/self/status");
10432 for( std::string line; std::getline(in, line); ) {
10433 static const int PREFIX_LEN = 11;
10434 if( line.compare(0, PREFIX_LEN,
"TracerPid:\t") == 0 ) {
10438 return line.length() > PREFIX_LEN && line[PREFIX_LEN] !=
'0';
10445#elif defined(_MSC_VER)
10446 extern "C" __declspec(dllimport)
int __stdcall IsDebuggerPresent();
10448 bool isDebuggerActive() {
10449 return IsDebuggerPresent() != 0;
10452#elif defined(__MINGW32__)
10453 extern "C" __declspec(dllimport)
int __stdcall IsDebuggerPresent();
10455 bool isDebuggerActive() {
10456 return IsDebuggerPresent() != 0;
10461 bool isDebuggerActive() {
return false; }
10469 ITransientExpression::~ITransientExpression() =
default;
10471 void formatReconstructedExpression( std::ostream &os, std::string
const& lhs, StringRef op, std::string
const& rhs ) {
10472 if( lhs.size() + rhs.size() < 40 &&
10473 lhs.find(
'\n') == std::string::npos &&
10474 rhs.find(
'\n') == std::string::npos )
10475 os << lhs <<
" " << op <<
" " << rhs;
10477 os << lhs <<
"\n" << op <<
"\n" << rhs;
10483#include <stdexcept>
10486#if defined(CATCH_CONFIG_DISABLE_EXCEPTIONS) && !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS_CUSTOM_HANDLER)
10488 void throw_exception(std::exception
const& e) {
10489 Catch::cerr() <<
"Catch will terminate because it needed to throw an exception.\n"
10490 <<
"The message was: " << e.what() <<
'\n';
10496 void throw_logic_error(std::string
const& msg) {
10497 throw_exception(std::logic_error(msg));
10501 void throw_domain_error(std::string
const& msg) {
10502 throw_exception(std::domain_error(msg));
10506 void throw_runtime_error(std::string
const& msg) {
10507 throw_exception(std::runtime_error(msg));
10522 std::unique_ptr<EnumInfo> makeEnumInfo( StringRef enumName, StringRef allValueNames, std::vector<int>
const& values );
10524 class EnumValuesRegistry :
public IMutableEnumValuesRegistry {
10526 std::vector<std::unique_ptr<EnumInfo>> m_enumInfos;
10528 EnumInfo
const& registerEnum( StringRef enumName, StringRef allEnums, std::vector<int>
const& values)
override;
10531 std::vector<StringRef> parseEnums( StringRef enums );
10544 IMutableEnumValuesRegistry::~IMutableEnumValuesRegistry() {}
10551 StringRef extractInstanceName(StringRef enumInstance) {
10553 size_t name_start = enumInstance.size();
10554 while (name_start > 0 && enumInstance[name_start - 1] !=
':') {
10557 return enumInstance.substr(name_start, enumInstance.size() - name_start);
10561 std::vector<StringRef> parseEnums( StringRef enums ) {
10562 auto enumValues = splitStringRef( enums,
',' );
10563 std::vector<StringRef> parsed;
10564 parsed.reserve( enumValues.size() );
10565 for(
auto const& enumValue : enumValues ) {
10566 parsed.push_back(trim(extractInstanceName(enumValue)));
10571 EnumInfo::~EnumInfo() {}
10573 StringRef EnumInfo::lookup(
int value )
const {
10574 for(
auto const& valueToName : m_values ) {
10575 if( valueToName.first == value )
10576 return valueToName.second;
10578 return "{** unexpected enum value **}"_sr;
10581 std::unique_ptr<EnumInfo> makeEnumInfo( StringRef enumName, StringRef allValueNames, std::vector<int>
const& values ) {
10582 std::unique_ptr<EnumInfo> enumInfo(
new EnumInfo );
10583 enumInfo->m_name = enumName;
10584 enumInfo->m_values.reserve( values.size() );
10586 const auto valueNames = Catch::Detail::parseEnums( allValueNames );
10587 assert( valueNames.size() == values.size() );
10589 for(
auto value : values )
10590 enumInfo->m_values.emplace_back(value, valueNames[i++]);
10595 EnumInfo
const& EnumValuesRegistry::registerEnum( StringRef enumName, StringRef allValueNames, std::vector<int>
const& values ) {
10596 m_enumInfos.push_back(makeEnumInfo(enumName, allValueNames, values));
10597 return *m_enumInfos.back();
10609 ErrnoGuard::ErrnoGuard():m_oldErrno(
errno){}
10610 ErrnoGuard::~ErrnoGuard() {
errno = m_oldErrno; }
10623 class ExceptionTranslatorRegistry :
public IExceptionTranslatorRegistry {
10625 ~ExceptionTranslatorRegistry();
10626 virtual void registerTranslator(
const IExceptionTranslator* translator );
10627 std::string translateActiveException()
const override;
10628 std::string tryTranslators()
const;
10631 std::vector<std::unique_ptr<IExceptionTranslator const>> m_translators;
10637#import "Foundation/Foundation.h"
10642 ExceptionTranslatorRegistry::~ExceptionTranslatorRegistry() {
10645 void ExceptionTranslatorRegistry::registerTranslator(
const IExceptionTranslator* translator ) {
10646 m_translators.push_back( std::unique_ptr<const IExceptionTranslator>( translator ) );
10649#if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
10650 std::string ExceptionTranslatorRegistry::translateActiveException()
const {
10655 return tryTranslators();
10657 @catch (NSException *exception) {
10658 return Catch::Detail::stringify( [exception description] );
10669 if (std::current_exception() ==
nullptr) {
10670 return "Non C++ exception. Possibly a CLR exception.";
10672 return tryTranslators();
10675 catch( TestFailureException& ) {
10676 std::rethrow_exception(std::current_exception());
10678 catch( std::exception& ex ) {
10681 catch( std::string& msg ) {
10684 catch(
const char* msg ) {
10688 return "Unknown exception";
10692 std::string ExceptionTranslatorRegistry::tryTranslators()
const {
10693 if (m_translators.empty()) {
10694 std::rethrow_exception(std::current_exception());
10696 return m_translators[0]->translate(m_translators.begin() + 1, m_translators.end());
10701 std::string ExceptionTranslatorRegistry::translateActiveException()
const {
10702 CATCH_INTERNAL_ERROR(
"Attempted to translate active exception under CATCH_CONFIG_DISABLE_EXCEPTIONS!");
10705 std::string ExceptionTranslatorRegistry::tryTranslators()
const {
10706 CATCH_INTERNAL_ERROR(
"Attempted to use exception translators under CATCH_CONFIG_DISABLE_EXCEPTIONS!");
10714#if defined(__GNUC__)
10715# pragma GCC diagnostic push
10716# pragma GCC diagnostic ignored "-Wmissing-field-initializers"
10719#if defined( CATCH_CONFIG_WINDOWS_SEH ) || defined( CATCH_CONFIG_POSIX_SIGNALS )
10723 void reportFatal(
char const *
const message ) {
10724 Catch::getCurrentContext().getResultCapture()->handleFatalErrorCondition( message );
10730#if defined( CATCH_CONFIG_WINDOWS_SEH )
10733 struct SignalDefs { DWORD id;
const char* name; };
10738 static SignalDefs signalDefs[] = {
10739 {
static_cast<DWORD
>(EXCEPTION_ILLEGAL_INSTRUCTION),
"SIGILL - Illegal instruction signal" },
10740 {
static_cast<DWORD
>(EXCEPTION_STACK_OVERFLOW),
"SIGSEGV - Stack overflow" },
10741 {
static_cast<DWORD
>(EXCEPTION_ACCESS_VIOLATION),
"SIGSEGV - Segmentation violation signal" },
10742 {
static_cast<DWORD
>(EXCEPTION_INT_DIVIDE_BY_ZERO),
"Divide by zero error" },
10745 LONG CALLBACK FatalConditionHandler::handleVectoredException(PEXCEPTION_POINTERS ExceptionInfo) {
10746 for (
auto const& def : signalDefs) {
10747 if (ExceptionInfo->ExceptionRecord->ExceptionCode == def.id) {
10748 reportFatal(def.name);
10753 return EXCEPTION_CONTINUE_SEARCH;
10756 FatalConditionHandler::FatalConditionHandler() {
10760 guaranteeSize = 32 * 1024;
10761 exceptionHandlerHandle =
nullptr;
10763 exceptionHandlerHandle = AddVectoredExceptionHandler(1, handleVectoredException);
10765 SetThreadStackGuarantee(&guaranteeSize);
10768 void FatalConditionHandler::reset() {
10770 RemoveVectoredExceptionHandler(exceptionHandlerHandle);
10771 SetThreadStackGuarantee(&guaranteeSize);
10772 exceptionHandlerHandle =
nullptr;
10777 FatalConditionHandler::~FatalConditionHandler() {
10781bool FatalConditionHandler::isSet =
false;
10782ULONG FatalConditionHandler::guaranteeSize = 0;
10783PVOID FatalConditionHandler::exceptionHandlerHandle =
nullptr;
10787#elif defined( CATCH_CONFIG_POSIX_SIGNALS )
10791 struct SignalDefs {
10798 static constexpr std::size_t sigStackSize = 32768;
10800 static SignalDefs signalDefs[] = {
10801 { SIGINT,
"SIGINT - Terminal interrupt signal" },
10802 { SIGILL,
"SIGILL - Illegal instruction signal" },
10803 { SIGFPE,
"SIGFPE - Floating point error signal" },
10804 { SIGSEGV,
"SIGSEGV - Segmentation violation signal" },
10805 { SIGTERM,
"SIGTERM - Termination request signal" },
10806 { SIGABRT,
"SIGABRT - Abort (abnormal termination) signal" }
10809 void FatalConditionHandler::handleSignal(
int sig ) {
10810 char const * name =
"<unknown signal>";
10811 for (
auto const& def : signalDefs) {
10812 if (sig == def.id) {
10822 FatalConditionHandler::FatalConditionHandler() {
10825 sigStack.ss_sp = altStackMem;
10826 sigStack.ss_size = sigStackSize;
10827 sigStack.ss_flags = 0;
10828 sigaltstack(&sigStack, &oldSigStack);
10829 struct sigaction sa = { };
10831 sa.sa_handler = handleSignal;
10832 sa.sa_flags = SA_ONSTACK;
10833 for (std::size_t i = 0; i <
sizeof(signalDefs)/
sizeof(SignalDefs); ++i) {
10834 sigaction(signalDefs[i].
id, &sa, &oldSigActions[i]);
10838 FatalConditionHandler::~FatalConditionHandler() {
10842 void FatalConditionHandler::reset() {
10845 for( std::size_t i = 0; i <
sizeof(signalDefs)/
sizeof(SignalDefs); ++i ) {
10846 sigaction(signalDefs[i].
id, &oldSigActions[i],
nullptr);
10849 sigaltstack(&oldSigStack,
nullptr);
10854 bool FatalConditionHandler::isSet =
false;
10855 struct sigaction FatalConditionHandler::oldSigActions[sizeof(signalDefs)/sizeof(SignalDefs)] = {};
10856 stack_t FatalConditionHandler::oldSigStack = {};
10857 char FatalConditionHandler::altStackMem[sigStackSize] = {};
10864 void FatalConditionHandler::reset() {}
10869#if defined(__GNUC__)
10870# pragma GCC diagnostic pop
10880IGeneratorTracker::~IGeneratorTracker() {}
10882const char* GeneratorException::what() const noexcept {
10886namespace Generators {
10888 GeneratorUntypedBase::~GeneratorUntypedBase() {}
10890 auto acquireGeneratorTracker( SourceLineInfo
const& lineInfo ) -> IGeneratorTracker& {
10891 return getResultCapture().acquireGeneratorTracker( lineInfo );
10900 IResultCapture::~IResultCapture() =
default;
10906 IConfig::~IConfig() =
default;
10912 IExceptionTranslator::~IExceptionTranslator() =
default;
10913 IExceptionTranslatorRegistry::~IExceptionTranslatorRegistry() =
default;
10919 IRegistryHub::~IRegistryHub() =
default;
10920 IMutableRegistryHub::~IMutableRegistryHub() =
default;
10929 class ListeningReporter :
public IStreamingReporter {
10930 using Reporters = std::vector<IStreamingReporterPtr>;
10931 Reporters m_listeners;
10932 IStreamingReporterPtr m_reporter =
nullptr;
10933 ReporterPreferences m_preferences;
10936 ListeningReporter();
10938 void addListener( IStreamingReporterPtr&& listener );
10939 void addReporter( IStreamingReporterPtr&& reporter );
10943 ReporterPreferences getPreferences()
const override;
10945 void noMatchingTestCases( std::string
const& spec )
override;
10947 void reportInvalidArguments(std::string
const&arg)
override;
10949 static std::set<Verbosity> getSupportedVerbosities();
10951#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
10952 void benchmarkPreparing(std::string
const& name)
override;
10953 void benchmarkStarting( BenchmarkInfo
const& benchmarkInfo )
override;
10954 void benchmarkEnded( BenchmarkStats<>
const& benchmarkStats )
override;
10955 void benchmarkFailed(std::string
const&)
override;
10958 void testRunStarting( TestRunInfo
const& testRunInfo )
override;
10959 void testGroupStarting( GroupInfo
const& groupInfo )
override;
10960 void testCaseStarting( TestCaseInfo
const& testInfo )
override;
10961 void sectionStarting( SectionInfo
const& sectionInfo )
override;
10962 void assertionStarting( AssertionInfo
const& assertionInfo )
override;
10965 bool assertionEnded( AssertionStats
const& assertionStats )
override;
10966 void sectionEnded( SectionStats
const& sectionStats )
override;
10967 void testCaseEnded( TestCaseStats
const& testCaseStats )
override;
10968 void testGroupEnded( TestGroupStats
const& testGroupStats )
override;
10969 void testRunEnded( TestRunStats
const& testRunStats )
override;
10971 void skipTest( TestCaseInfo
const& testInfo )
override;
10972 bool isMulti()
const override;
10981 ReporterConfig::ReporterConfig( IConfigPtr
const& _fullConfig )
10982 : m_stream( &_fullConfig->stream() ), m_fullConfig( _fullConfig ) {}
10984 ReporterConfig::ReporterConfig( IConfigPtr
const& _fullConfig, std::ostream& _stream )
10985 : m_stream( &_stream ), m_fullConfig( _fullConfig ) {}
10987 std::ostream& ReporterConfig::stream()
const {
return *m_stream; }
10988 IConfigPtr ReporterConfig::fullConfig()
const {
return m_fullConfig; }
10990 TestRunInfo::TestRunInfo( std::string
const& _name ) : name( _name ) {}
10992 GroupInfo::GroupInfo( std::string
const& _name,
10993 std::size_t _groupIndex,
10994 std::size_t _groupsCount )
10996 groupIndex( _groupIndex ),
10997 groupsCounts( _groupsCount )
11000 AssertionStats::AssertionStats( AssertionResult
const& _assertionResult,
11001 std::vector<MessageInfo>
const& _infoMessages,
11002 Totals
const& _totals )
11003 : assertionResult( _assertionResult ),
11004 infoMessages( _infoMessages ),
11007 assertionResult.m_resultData.lazyExpression.m_transientExpression = _assertionResult.m_resultData.lazyExpression.m_transientExpression;
11009 if( assertionResult.hasMessage() ) {
11012 MessageBuilder builder( assertionResult.getTestMacroName(), assertionResult.getSourceInfo(), assertionResult.getResultType() );
11013 builder << assertionResult.getMessage();
11014 builder.m_info.message = builder.m_stream.str();
11016 infoMessages.push_back( builder.m_info );
11020 AssertionStats::~AssertionStats() =
default;
11022 SectionStats::SectionStats( SectionInfo
const& _sectionInfo,
11023 Counts
const& _assertions,
11024 double _durationInSeconds,
11025 bool _missingAssertions )
11026 : sectionInfo( _sectionInfo ),
11027 assertions( _assertions ),
11028 durationInSeconds( _durationInSeconds ),
11029 missingAssertions( _missingAssertions )
11032 SectionStats::~SectionStats() =
default;
11034 TestCaseStats::TestCaseStats( TestCaseInfo
const& _testInfo,
11035 Totals
const& _totals,
11036 std::string
const& _stdOut,
11037 std::string
const& _stdErr,
11039 : testInfo( _testInfo ),
11043 aborting( _aborting )
11046 TestCaseStats::~TestCaseStats() =
default;
11048 TestGroupStats::TestGroupStats( GroupInfo
const& _groupInfo,
11049 Totals
const& _totals,
11051 : groupInfo( _groupInfo ),
11053 aborting( _aborting )
11056 TestGroupStats::TestGroupStats( GroupInfo
const& _groupInfo )
11057 : groupInfo( _groupInfo ),
11061 TestGroupStats::~TestGroupStats() =
default;
11063 TestRunStats::TestRunStats( TestRunInfo
const& _runInfo,
11064 Totals
const& _totals,
11066 : runInfo( _runInfo ),
11068 aborting( _aborting )
11071 TestRunStats::~TestRunStats() =
default;
11073 void IStreamingReporter::fatalErrorEncountered( StringRef ) {}
11074 bool IStreamingReporter::isMulti()
const {
return false; }
11076 IReporterFactory::~IReporterFactory() =
default;
11077 IReporterRegistry::~IReporterRegistry() =
default;
11084 IRunner::~IRunner() =
default;
11090 ITestInvoker::~ITestInvoker() =
default;
11091 ITestCaseRegistry::~ITestCaseRegistry() =
default;
11096#ifdef CATCH_CONFIG_WINDOWS_CRTDBG
11101 LeakDetector::LeakDetector() {
11102 int flag = _CrtSetDbgFlag(_CRTDBG_REPORT_FLAG);
11103 flag |= _CRTDBG_LEAK_CHECK_DF;
11104 flag |= _CRTDBG_ALLOC_MEM_DF;
11105 _CrtSetDbgFlag(flag);
11106 _CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE | _CRTDBG_MODE_DEBUG);
11107 _CrtSetReportFile(_CRT_WARN, _CRTDBG_FILE_STDERR);
11109 _CrtSetBreakAlloc(-1);
11115 Catch::LeakDetector::LeakDetector() {}
11119Catch::LeakDetector::~LeakDetector() {
11131 std::size_t listTests( Config
const& config );
11133 std::size_t listTestsNamesOnly( Config
const& config );
11136 void add( std::string
const& spelling );
11137 std::string all()
const;
11139 std::set<std::string> spellings;
11140 std::size_t count = 0;
11143 std::size_t listTags( Config
const& config );
11145 std::size_t listReporters();
11147 Option<std::size_t> list( std::shared_ptr<Config>
const& config );
11155 using namespace clara::TextFlow;
11160#include <algorithm>
11165 std::size_t listTests( Config
const& config ) {
11166 TestSpec
const& testSpec = config.testSpec();
11167 if( config.hasTestFilters() )
11168 Catch::cout() <<
"Matching test cases:\n";
11170 Catch::cout() <<
"All available test cases:\n";
11173 auto matchedTestCases = filterTests( getAllTestCasesSorted( config ), testSpec, config );
11174 for(
auto const& testCaseInfo : matchedTestCases ) {
11175 Colour::Code colour = testCaseInfo.isHidden()
11176 ? Colour::SecondaryText
11178 Colour colourGuard( colour );
11180 Catch::cout() << Column( testCaseInfo.name ).initialIndent( 2 ).indent( 4 ) <<
"\n";
11181 if( config.verbosity() >= Verbosity::High ) {
11182 Catch::cout() << Column( Catch::Detail::stringify( testCaseInfo.lineInfo ) ).indent(4) << std::endl;
11183 std::string description = testCaseInfo.description;
11184 if( description.empty() )
11185 description =
"(NO DESCRIPTION)";
11186 Catch::cout() << Column( description ).indent(4) << std::endl;
11188 if( !testCaseInfo.tags.empty() )
11189 Catch::cout() << Column( testCaseInfo.tagsAsString() ).indent( 6 ) <<
"\n";
11192 if( !config.hasTestFilters() )
11193 Catch::cout() << pluralise( matchedTestCases.size(),
"test case" ) <<
'\n' << std::endl;
11195 Catch::cout() << pluralise( matchedTestCases.size(),
"matching test case" ) <<
'\n' << std::endl;
11196 return matchedTestCases.size();
11199 std::size_t listTestsNamesOnly( Config
const& config ) {
11200 TestSpec
const& testSpec = config.testSpec();
11201 std::size_t matchedTests = 0;
11202 std::vector<TestCase> matchedTestCases = filterTests( getAllTestCasesSorted( config ), testSpec, config );
11203 for(
auto const& testCaseInfo : matchedTestCases ) {
11205 if( startsWith( testCaseInfo.name,
'#' ) )
11206 Catch::cout() <<
'"' << testCaseInfo.name <<
'"';
11208 Catch::cout() << testCaseInfo.name;
11209 if ( config.verbosity() >= Verbosity::High )
11210 Catch::cout() <<
"\t@" << testCaseInfo.lineInfo;
11211 Catch::cout() << std::endl;
11213 return matchedTests;
11216 void TagInfo::add( std::string
const& spelling ) {
11218 spellings.insert( spelling );
11221 std::string TagInfo::all()
const {
11223 for (
auto const& spelling : spellings) {
11225 size += spelling.size() + 2;
11228 std::string out; out.reserve(size);
11229 for (
auto const& spelling : spellings) {
11237 std::size_t listTags( Config
const& config ) {
11238 TestSpec
const& testSpec = config.testSpec();
11239 if( config.hasTestFilters() )
11240 Catch::cout() <<
"Tags for matching test cases:\n";
11242 Catch::cout() <<
"All available tags:\n";
11245 std::map<std::string, TagInfo> tagCounts;
11247 std::vector<TestCase> matchedTestCases = filterTests( getAllTestCasesSorted( config ), testSpec, config );
11248 for(
auto const& testCase : matchedTestCases ) {
11249 for(
auto const& tagName : testCase.getTestCaseInfo().tags ) {
11250 std::string lcaseTagName = toLower( tagName );
11251 auto countIt = tagCounts.find( lcaseTagName );
11252 if( countIt == tagCounts.end() )
11253 countIt = tagCounts.insert( std::make_pair( lcaseTagName, TagInfo() ) ).first;
11254 countIt->second.add( tagName );
11258 for(
auto const& tagCount : tagCounts ) {
11259 ReusableStringStream rss;
11260 rss <<
" " << std::setw(2) << tagCount.second.count <<
" ";
11261 auto str = rss.str();
11262 auto wrapper = Column( tagCount.second.all() )
11263 .initialIndent( 0 )
11264 .indent( str.size() )
11265 .width( CATCH_CONFIG_CONSOLE_WIDTH-10 );
11266 Catch::cout() << str << wrapper <<
'\n';
11268 Catch::cout() << pluralise( tagCounts.size(),
"tag" ) <<
'\n' << std::endl;
11269 return tagCounts.size();
11272 std::size_t listReporters() {
11273 Catch::cout() <<
"Available reporters:\n";
11274 IReporterRegistry::FactoryMap
const& factories = getRegistryHub().getReporterRegistry().getFactories();
11275 std::size_t maxNameLen = 0;
11276 for(
auto const& factoryKvp : factories )
11277 maxNameLen = (std::max)( maxNameLen, factoryKvp.first.size() );
11279 for(
auto const& factoryKvp : factories ) {
11281 << Column( factoryKvp.first +
":" )
11283 .width( 5+maxNameLen )
11284 + Column( factoryKvp.second->getDescription() )
11287 .width( CATCH_CONFIG_CONSOLE_WIDTH - maxNameLen-8 )
11290 Catch::cout() << std::endl;
11291 return factories.size();
11294 Option<std::size_t> list( std::shared_ptr<Config>
const& config ) {
11295 Option<std::size_t> listedCount;
11296 getCurrentMutableContext().setConfig( config );
11297 if( config->listTests() )
11298 listedCount = listedCount.valueOr(0) + listTests( *config );
11299 if( config->listTestNamesOnly() )
11300 listedCount = listedCount.valueOr(0) + listTestsNamesOnly( *config );
11301 if( config->listTags() )
11302 listedCount = listedCount.valueOr(0) + listTags( *config );
11303 if( config->listReporters() )
11304 listedCount = listedCount.valueOr(0) + listReporters();
11305 return listedCount;
11313namespace Matchers {
11316 std::string MatcherUntypedBase::toString()
const {
11317 if( m_cachedToString.empty() )
11318 m_cachedToString = describe();
11319 return m_cachedToString;
11322 MatcherUntypedBase::~MatcherUntypedBase() =
default;
11327using namespace Matchers;
11328using Matchers::Impl::MatcherBase;
11335namespace Matchers {
11336namespace Exception {
11338bool ExceptionMessageMatcher::match(std::exception
const& ex)
const {
11339 return ex.what() == m_message;
11342std::string ExceptionMessageMatcher::describe()
const {
11343 return "exception message matches \"" + m_message + "\"";
11347Exception::ExceptionMessageMatcher Message(std::string
const& message) {
11348 return Exception::ExceptionMessageMatcher(message);
11360 bool isnan(
float f);
11361 bool isnan(
double d);
11370 template <
typename T>
11371 std::string to_string(T
const& t) {
11372#if defined(CATCH_CONFIG_CPP11_TO_STRING)
11373 return std::to_string(t);
11375 ReusableStringStream rss;
11383#include <algorithm>
11389#include <type_traits>
11396 int32_t convert(
float f) {
11397 static_assert(
sizeof(float) ==
sizeof(int32_t),
"Important ULP matcher assumption violated");
11399 std::memcpy(&i, &f,
sizeof(f));
11403 int64_t convert(
double d) {
11404 static_assert(
sizeof(double) ==
sizeof(int64_t),
"Important ULP matcher assumption violated");
11406 std::memcpy(&i, &d,
sizeof(d));
11410 template <
typename FP>
11411 bool almostEqualUlps(FP lhs, FP rhs, uint64_t maxUlpDiff) {
11414 if (Catch::isnan(lhs) || Catch::isnan(rhs)) {
11418 auto lc = convert(lhs);
11419 auto rc = convert(rhs);
11421 if ((lc < 0) != (rc < 0)) {
11426 auto ulpDiff = std::abs(lc - rc);
11427 return static_cast<uint64_t
>(ulpDiff) <= maxUlpDiff;
11430#if defined(CATCH_CONFIG_GLOBAL_NEXTAFTER)
11432 float nextafter(
float x,
float y) {
11433 return ::nextafterf(x, y);
11436 double nextafter(
double x,
double y) {
11437 return ::nextafter(x, y);
11442template <
typename FP>
11443FP step(FP start, FP direction, uint64_t steps) {
11444 for (uint64_t i = 0; i < steps; ++i) {
11445#if defined(CATCH_CONFIG_GLOBAL_NEXTAFTER)
11446 start = Catch::nextafter(start, direction);
11448 start = std::nextafter(start, direction);
11456bool marginComparison(
double lhs,
double rhs,
double margin) {
11457 return (lhs + margin >= rhs) && (rhs + margin >= lhs);
11460template <
typename FloatingPo
int>
11461void write(std::ostream& out, FloatingPoint num) {
11462 out << std::scientific
11463 << std::setprecision(std::numeric_limits<FloatingPoint>::max_digits10 - 1)
11469namespace Matchers {
11470namespace Floating {
11472 enum class FloatingPointKind : uint8_t {
11477 WithinAbsMatcher::WithinAbsMatcher(
double target,
double margin)
11478 :m_target{ target }, m_margin{ margin } {
11479 CATCH_ENFORCE(margin >= 0,
"Invalid margin: " << margin <<
'.'
11480 <<
" Margin has to be non-negative.");
11485 bool WithinAbsMatcher::match(
double const& matchee)
const {
11486 return (matchee + m_margin >= m_target) && (m_target + m_margin >= matchee);
11489 std::string WithinAbsMatcher::describe()
const {
11490 return "is within " + ::Catch::Detail::stringify(m_margin) + " of " + ::Catch::Detail::stringify(m_target);
11493 WithinUlpsMatcher::WithinUlpsMatcher(
double target, uint64_t ulps, FloatingPointKind baseType)
11494 :m_target{ target }, m_ulps{ ulps }, m_type{ baseType } {
11495 CATCH_ENFORCE(m_type == FloatingPointKind::Double
11496 || m_ulps < (std::numeric_limits<uint32_t>::max)(),
11497 "Provided ULP is impossibly large for a float comparison.");
11500#if defined(__clang__)
11501#pragma clang diagnostic push
11503#pragma clang diagnostic ignored "-Wunreachable-code"
11506 bool WithinUlpsMatcher::match(
double const& matchee)
const {
11508 case FloatingPointKind::Float:
11509 return almostEqualUlps<float>(
static_cast<float>(matchee),
static_cast<float>(m_target), m_ulps);
11510 case FloatingPointKind::Double:
11511 return almostEqualUlps<double>(matchee, m_target, m_ulps);
11513 CATCH_INTERNAL_ERROR(
"Unknown FloatingPointKind value" );
11517#if defined(__clang__)
11518#pragma clang diagnostic pop
11521 std::string WithinUlpsMatcher::describe()
const {
11522 std::stringstream ret;
11524 ret <<
"is within " << m_ulps <<
" ULPs of ";
11526 if (m_type == FloatingPointKind::Float) {
11527 write(ret,
static_cast<float>(m_target));
11530 write(ret, m_target);
11534 if (m_type == FloatingPointKind::Double) {
11535 write(ret, step(m_target,
static_cast<double>(-INFINITY), m_ulps));
11537 write(ret, step(m_target,
static_cast<double>( INFINITY), m_ulps));
11540 write(ret, step(
static_cast<float>(m_target),
static_cast<float>(-INFINITY), m_ulps));
11542 write(ret, step(
static_cast<float>(m_target),
static_cast<float>( INFINITY), m_ulps));
11549 WithinRelMatcher::WithinRelMatcher(
double target,
double epsilon):
11551 m_epsilon(epsilon){
11552 CATCH_ENFORCE(m_epsilon >= 0.,
"Relative comparison with epsilon < 0 does not make sense.");
11553 CATCH_ENFORCE(m_epsilon < 1., "Relative comparison with epsilon >= 1 does not make sense.
");
11556 bool WithinRelMatcher::match(double const& matchee) const {
11557 const auto relMargin = m_epsilon * (std::max)(std::fabs(matchee), std::fabs(m_target));
11558 return marginComparison(matchee, m_target,
11559 std::isinf(relMargin)? 0 : relMargin);
11562 std::string WithinRelMatcher::describe() const {
11563 Catch::ReusableStringStream sstr;
11564 sstr << "and
" << m_target << " are within
" << m_epsilon * 100. << "% of each other
";
11568}// namespace Floating
11570Floating::WithinUlpsMatcher WithinULP(double target, uint64_t maxUlpDiff) {
11571 return Floating::WithinUlpsMatcher(target, maxUlpDiff, Floating::FloatingPointKind::Double);
11574Floating::WithinUlpsMatcher WithinULP(float target, uint64_t maxUlpDiff) {
11575 return Floating::WithinUlpsMatcher(target, maxUlpDiff, Floating::FloatingPointKind::Float);
11578Floating::WithinAbsMatcher WithinAbs(double target, double margin) {
11579 return Floating::WithinAbsMatcher(target, margin);
11582Floating::WithinRelMatcher WithinRel(double target, double eps) {
11583 return Floating::WithinRelMatcher(target, eps);
11586Floating::WithinRelMatcher WithinRel(double target) {
11587 return Floating::WithinRelMatcher(target, std::numeric_limits<double>::epsilon() * 100);
11590Floating::WithinRelMatcher WithinRel(float target, float eps) {
11591 return Floating::WithinRelMatcher(target, eps);
11594Floating::WithinRelMatcher WithinRel(float target) {
11595 return Floating::WithinRelMatcher(target, std::numeric_limits<float>::epsilon() * 100);
11598} // namespace Matchers
11599} // namespace Catch
11601// end catch_matchers_floating.cpp
11602// start catch_matchers_generic.cpp
11604std::string Catch::Matchers::Generic::Detail::finalizeDescription(const std::string& desc) {
11605 if (desc.empty()) {
11606 return "matches undescribed predicate
";
11608 return "matches predicate: \
"" + desc +
'"';
11617namespace Matchers {
11619 namespace StdString {
11621 CasedString::CasedString( std::string
const& str, CaseSensitive::Choice caseSensitivity )
11622 : m_caseSensitivity( caseSensitivity ),
11623 m_str( adjustString( str ) )
11625 std::string CasedString::adjustString( std::string
const& str )
const {
11626 return m_caseSensitivity == CaseSensitive::No
11630 std::string CasedString::caseSensitivitySuffix()
const {
11631 return m_caseSensitivity == CaseSensitive::No
11632 ?
" (case insensitive)"
11636 StringMatcherBase::StringMatcherBase( std::string
const& operation, CasedString
const& comparator )
11637 : m_comparator( comparator ),
11638 m_operation( operation ) {
11641 std::string StringMatcherBase::describe()
const {
11642 std::string description;
11643 description.reserve(5 + m_operation.size() + m_comparator.m_str.size() +
11644 m_comparator.caseSensitivitySuffix().size());
11645 description += m_operation;
11646 description += ": \"";
11647 description += m_comparator.m_str;
11648 description += "\"";
11649 description += m_comparator.caseSensitivitySuffix();
11650 return description;
11653 EqualsMatcher::EqualsMatcher( CasedString
const& comparator ) : StringMatcherBase(
"equals", comparator ) {}
11655 bool EqualsMatcher::match( std::string
const& source )
const {
11656 return m_comparator.adjustString( source ) == m_comparator.m_str;
11659 ContainsMatcher::ContainsMatcher( CasedString
const& comparator ) : StringMatcherBase(
"contains", comparator ) {}
11661 bool ContainsMatcher::match( std::string
const& source )
const {
11662 return contains( m_comparator.adjustString( source ), m_comparator.m_str );
11665 StartsWithMatcher::StartsWithMatcher( CasedString
const& comparator ) : StringMatcherBase(
"starts with", comparator ) {}
11667 bool StartsWithMatcher::match( std::string
const& source )
const {
11668 return startsWith( m_comparator.adjustString( source ), m_comparator.m_str );
11671 EndsWithMatcher::EndsWithMatcher( CasedString
const& comparator ) : StringMatcherBase(
"ends with", comparator ) {}
11673 bool EndsWithMatcher::match( std::string
const& source )
const {
11674 return endsWith( m_comparator.adjustString( source ), m_comparator.m_str );
11677 RegexMatcher::RegexMatcher(std::string regex, CaseSensitive::Choice caseSensitivity): m_regex(std::move(regex)), m_caseSensitivity(caseSensitivity) {}
11679 bool RegexMatcher::match(std::string
const& matchee)
const {
11680 auto flags = std::regex::ECMAScript;
11681 if (m_caseSensitivity == CaseSensitive::Choice::No) {
11682 flags |= std::regex::icase;
11684 auto reg = std::regex(m_regex, flags);
11685 return std::regex_match(matchee, reg);
11688 std::string RegexMatcher::describe()
const {
11689 return "matches " + ::Catch::Detail::stringify(m_regex) + ((m_caseSensitivity == CaseSensitive::Choice::Yes)? " case sensitively" : " case insensitively");
11694 StdString::EqualsMatcher Equals( std::string
const& str, CaseSensitive::Choice caseSensitivity ) {
11695 return StdString::EqualsMatcher( StdString::CasedString( str, caseSensitivity) );
11697 StdString::ContainsMatcher Contains( std::string
const& str, CaseSensitive::Choice caseSensitivity ) {
11698 return StdString::ContainsMatcher( StdString::CasedString( str, caseSensitivity) );
11700 StdString::EndsWithMatcher EndsWith( std::string
const& str, CaseSensitive::Choice caseSensitivity ) {
11701 return StdString::EndsWithMatcher( StdString::CasedString( str, caseSensitivity) );
11703 StdString::StartsWithMatcher StartsWith( std::string
const& str, CaseSensitive::Choice caseSensitivity ) {
11704 return StdString::StartsWithMatcher( StdString::CasedString( str, caseSensitivity) );
11707 StdString::RegexMatcher Matches(std::string
const& regex, CaseSensitive::Choice caseSensitivity) {
11708 return StdString::RegexMatcher(regex, caseSensitivity);
11719 bool uncaught_exceptions();
11728 MessageInfo::MessageInfo( StringRef
const& _macroName,
11729 SourceLineInfo
const& _lineInfo,
11730 ResultWas::OfType _type )
11731 : macroName( _macroName ),
11732 lineInfo( _lineInfo ),
11734 sequence( ++globalCount )
11737 bool MessageInfo::operator==( MessageInfo
const& other )
const {
11738 return sequence == other.sequence;
11741 bool MessageInfo::operator<( MessageInfo
const& other )
const {
11742 return sequence < other.sequence;
11746 unsigned int MessageInfo::globalCount = 0;
11750 Catch::MessageBuilder::MessageBuilder( StringRef
const& macroName,
11751 SourceLineInfo
const& lineInfo,
11752 ResultWas::OfType type )
11753 :m_info(macroName, lineInfo, type) {}
11757 ScopedMessage::ScopedMessage( MessageBuilder
const& builder )
11758 : m_info( builder.m_info ), m_moved()
11760 m_info.message = builder.m_stream.str();
11761 getResultCapture().pushScopedMessage( m_info );
11764 ScopedMessage::ScopedMessage( ScopedMessage&& old )
11765 : m_info( old.m_info ), m_moved()
11767 old.m_moved =
true;
11770 ScopedMessage::~ScopedMessage() {
11771 if ( !uncaught_exceptions() && !m_moved ){
11772 getResultCapture().popScopedMessage(m_info);
11776 Capturer::Capturer( StringRef macroName, SourceLineInfo
const& lineInfo, ResultWas::OfType resultType, StringRef names ) {
11777 auto trimmed = [&] (
size_t start,
size_t end) {
11778 while (names[start] ==
',' || isspace(
static_cast<unsigned char>(names[start]))) {
11781 while (names[end] ==
',' || isspace(
static_cast<unsigned char>(names[end]))) {
11784 return names.substr(start, end - start + 1);
11786 auto skipq = [&] (
size_t start,
char quote) {
11787 for (
auto i = start + 1; i < names.size() ; ++i) {
11788 if (names[i] == quote)
11790 if (names[i] ==
'\\')
11793 CATCH_INTERNAL_ERROR(
"CAPTURE parsing encountered unmatched quote");
11797 std::stack<char> openings;
11798 for (
size_t pos = 0; pos < names.size(); ++pos) {
11799 char c = names[pos];
11817 pos = skipq(pos, c);
11820 if (start != pos && openings.empty()) {
11821 m_messages.emplace_back(macroName, lineInfo, resultType);
11822 m_messages.back().message =
static_cast<std::string
>(trimmed(start, pos));
11823 m_messages.back().message += " := ";
11828 assert(openings.empty() &&
"Mismatched openings");
11829 m_messages.emplace_back(macroName, lineInfo, resultType);
11830 m_messages.back().message =
static_cast<std::string
>(trimmed(start, names.size() - 1));
11831 m_messages.back().message += " := ";
11833 Capturer::~Capturer() {
11834 if ( !uncaught_exceptions() ){
11835 assert( m_captured == m_messages.size() );
11836 for(
size_t i = 0; i < m_captured; ++i )
11837 m_resultCapture.popScopedMessage( m_messages[i] );
11841 void Capturer::captureValue(
size_t index, std::string
const& value ) {
11842 assert( index < m_messages.size() );
11843 m_messages[index].message += value;
11844 m_resultCapture.pushScopedMessage( m_messages[index] );
11853#ifndef TWOBLUECUBES_CATCH_OUTPUT_REDIRECT_H
11854#define TWOBLUECUBES_CATCH_OUTPUT_REDIRECT_H
11862 class RedirectedStream {
11863 std::ostream& m_originalStream;
11864 std::ostream& m_redirectionStream;
11865 std::streambuf* m_prevBuf;
11868 RedirectedStream( std::ostream& originalStream, std::ostream& redirectionStream );
11869 ~RedirectedStream();
11872 class RedirectedStdOut {
11873 ReusableStringStream m_rss;
11874 RedirectedStream m_cout;
11876 RedirectedStdOut();
11877 auto str() const -> std::
string;
11883 class RedirectedStdErr {
11884 ReusableStringStream m_rss;
11885 RedirectedStream m_cerr;
11886 RedirectedStream m_clog;
11888 RedirectedStdErr();
11889 auto str() const -> std::
string;
11892 class RedirectedStreams {
11894 RedirectedStreams(RedirectedStreams
const&) =
delete;
11895 RedirectedStreams& operator=(RedirectedStreams
const&) =
delete;
11896 RedirectedStreams(RedirectedStreams&&) =
delete;
11897 RedirectedStreams& operator=(RedirectedStreams&&) =
delete;
11899 RedirectedStreams(std::string& redirectedCout, std::string& redirectedCerr);
11900 ~RedirectedStreams();
11902 std::string& m_redirectedCout;
11903 std::string& m_redirectedCerr;
11904 RedirectedStdOut m_redirectedStdOut;
11905 RedirectedStdErr m_redirectedStdErr;
11908#if defined(CATCH_CONFIG_NEW_CAPTURE)
11916 TempFile(TempFile
const&) =
delete;
11917 TempFile& operator=(TempFile
const&) =
delete;
11918 TempFile(TempFile&&) =
delete;
11919 TempFile& operator=(TempFile&&) =
delete;
11924 std::FILE* getFile();
11925 std::string getContents();
11928 std::FILE* m_file =
nullptr;
11929 #if defined(_MSC_VER)
11930 char m_buffer[L_tmpnam] = { 0 };
11934 class OutputRedirect {
11936 OutputRedirect(OutputRedirect
const&) =
delete;
11937 OutputRedirect& operator=(OutputRedirect
const&) =
delete;
11938 OutputRedirect(OutputRedirect&&) =
delete;
11939 OutputRedirect& operator=(OutputRedirect&&) =
delete;
11941 OutputRedirect(std::string& stdout_dest, std::string& stderr_dest);
11945 int m_originalStdout = -1;
11946 int m_originalStderr = -1;
11947 TempFile m_stdoutFile;
11948 TempFile m_stderrFile;
11949 std::string& m_stdoutDest;
11950 std::string& m_stderrDest;
11963#include <stdexcept>
11965#if defined(CATCH_CONFIG_NEW_CAPTURE)
11966 #if defined(_MSC_VER)
11970 #define fileno _fileno
11972 #include <unistd.h>
11978 RedirectedStream::RedirectedStream( std::ostream& originalStream, std::ostream& redirectionStream )
11979 : m_originalStream( originalStream ),
11980 m_redirectionStream( redirectionStream ),
11981 m_prevBuf( m_originalStream.rdbuf() )
11983 m_originalStream.rdbuf( m_redirectionStream.rdbuf() );
11986 RedirectedStream::~RedirectedStream() {
11987 m_originalStream.rdbuf( m_prevBuf );
11990 RedirectedStdOut::RedirectedStdOut() : m_cout( Catch::cout(), m_rss.get() ) {}
11991 auto RedirectedStdOut::str() const -> std::
string {
return m_rss.str(); }
11993 RedirectedStdErr::RedirectedStdErr()
11994 : m_cerr( Catch::cerr(), m_rss.get() ),
11995 m_clog( Catch::clog(), m_rss.get() )
11997 auto RedirectedStdErr::str() const -> std::
string {
return m_rss.str(); }
11999 RedirectedStreams::RedirectedStreams(std::string& redirectedCout, std::string& redirectedCerr)
12000 : m_redirectedCout(redirectedCout),
12001 m_redirectedCerr(redirectedCerr)
12004 RedirectedStreams::~RedirectedStreams() {
12005 m_redirectedCout += m_redirectedStdOut.str();
12006 m_redirectedCerr += m_redirectedStdErr.str();
12009#if defined(CATCH_CONFIG_NEW_CAPTURE)
12011#if defined(_MSC_VER)
12012 TempFile::TempFile() {
12013 if (tmpnam_s(m_buffer)) {
12014 CATCH_RUNTIME_ERROR(
"Could not get a temp filename");
12016 if (fopen_s(&m_file, m_buffer,
"w")) {
12018 if (strerror_s(buffer,
errno)) {
12019 CATCH_RUNTIME_ERROR(
"Could not translate errno to a string");
12021 CATCH_RUNTIME_ERROR(
"Could not open the temp file: '" << m_buffer <<
"' because: " << buffer);
12025 TempFile::TempFile() {
12026 m_file = std::tmpfile();
12028 CATCH_RUNTIME_ERROR(
"Could not create a temp file.");
12034 TempFile::~TempFile() {
12036 std::fclose(m_file);
12039#if defined(_MSC_VER)
12040 std::remove(m_buffer);
12044 FILE* TempFile::getFile() {
12048 std::string TempFile::getContents() {
12049 std::stringstream sstr;
12050 char buffer[100] = {};
12051 std::rewind(m_file);
12052 while (std::fgets(buffer,
sizeof(buffer), m_file)) {
12058 OutputRedirect::OutputRedirect(std::string& stdout_dest, std::string& stderr_dest) :
12059 m_originalStdout(dup(1)),
12060 m_originalStderr(dup(2)),
12061 m_stdoutDest(stdout_dest),
12062 m_stderrDest(stderr_dest) {
12063 dup2(fileno(m_stdoutFile.getFile()), 1);
12064 dup2(fileno(m_stderrFile.getFile()), 2);
12067 OutputRedirect::~OutputRedirect() {
12068 Catch::cout() << std::flush;
12072 Catch::cerr() << std::flush;
12073 Catch::clog() << std::flush;
12076 dup2(m_originalStdout, 1);
12077 dup2(m_originalStderr, 2);
12079 m_stdoutDest += m_stdoutFile.getContents();
12080 m_stderrDest += m_stderrFile.getContents();
12087#if defined(CATCH_CONFIG_NEW_CAPTURE)
12088 #if defined(_MSC_VER)
12101#if !defined(CATCH_CONFIG_POLYFILL_ISNAN)
12102 bool isnan(
float f) {
12103 return std::isnan(f);
12105 bool isnan(
double d) {
12106 return std::isnan(d);
12110 bool isnan(
float f) {
12111 return std::_isnan(f);
12113 bool isnan(
double d) {
12114 return std::_isnan(d);
12126#if defined(_MSC_VER)
12127#pragma warning(push)
12128#pragma warning(disable:4146)
12131 uint32_t rotate_right(uint32_t val, uint32_t count) {
12132 const uint32_t mask = 31;
12134 return (val >> count) | (val << (-count & mask));
12137#if defined(_MSC_VER)
12138#pragma warning(pop)
12143 SimplePcg32::SimplePcg32(result_type seed_) {
12147 void SimplePcg32::seed(result_type seed_) {
12154 void SimplePcg32::discard(uint64_t skip) {
12157 for (uint64_t s = 0; s < skip; ++s) {
12158 static_cast<void>((*this)());
12162 SimplePcg32::result_type SimplePcg32::operator()() {
12164 const uint32_t xorshifted =
static_cast<uint32_t
>(((m_state >> 18u) ^ m_state) >> 27u);
12165 const auto output = rotate_right(xorshifted, m_state >> 59u);
12168 m_state = m_state * 6364136223846793005ULL + s_inc;
12173 bool operator==(SimplePcg32
const& lhs, SimplePcg32
const& rhs) {
12174 return lhs.m_state == rhs.m_state;
12177 bool operator!=(SimplePcg32
const& lhs, SimplePcg32
const& rhs) {
12178 return lhs.m_state != rhs.m_state;
12188#include <algorithm>
12196 std::vector<TestCase> sortTests( IConfig
const& config, std::vector<TestCase>
const& unsortedTestCases );
12198 bool isThrowSafe( TestCase
const& testCase, IConfig
const& config );
12199 bool matchTest( TestCase
const& testCase, TestSpec
const& testSpec, IConfig
const& config );
12201 void enforceNoDuplicateTestCases( std::vector<TestCase>
const& functions );
12203 std::vector<TestCase> filterTests( std::vector<TestCase>
const& testCases, TestSpec
const& testSpec, IConfig
const& config );
12204 std::vector<TestCase>
const& getAllTestCasesSorted( IConfig
const& config );
12206 class TestRegistry :
public ITestCaseRegistry {
12208 virtual ~TestRegistry() =
default;
12210 virtual void registerTest( TestCase
const& testCase );
12212 std::vector<TestCase>
const& getAllTests()
const override;
12213 std::vector<TestCase>
const& getAllTestsSorted( IConfig
const& config )
const override;
12216 std::vector<TestCase> m_functions;
12217 mutable RunTests::InWhatOrder m_currentSortOrder = RunTests::InDeclarationOrder;
12218 mutable std::vector<TestCase> m_sortedFunctions;
12219 std::size_t m_unnamedCount = 0;
12220 std::ios_base::Init m_ostreamInit;
12225 class TestInvokerAsFunction :
public ITestInvoker {
12226 void(*m_testAsFunction)();
12228 TestInvokerAsFunction(
void(*testAsFunction)() ) noexcept;
12230 void invoke() const override;
12233 std::
string extractClassName( StringRef const& classOrQualifiedMethodName );
12246 class ReporterRegistry :
public IReporterRegistry {
12250 ~ReporterRegistry()
override;
12252 IStreamingReporterPtr create( std::string
const& name, IConfigPtr
const& config )
const override;
12254 void registerReporter( std::string
const& name, IReporterFactoryPtr
const& factory );
12255 void registerListener( IReporterFactoryPtr
const& factory );
12257 FactoryMap
const& getFactories()
const override;
12258 Listeners
const& getListeners()
const override;
12261 FactoryMap m_factories;
12262 Listeners m_listeners;
12276 TagAlias(std::string
const& _tag, SourceLineInfo _lineInfo);
12279 SourceLineInfo lineInfo;
12289 class TagAliasRegistry :
public ITagAliasRegistry {
12291 ~TagAliasRegistry()
override;
12292 TagAlias
const* find( std::string
const& alias )
const override;
12293 std::string expandAliases( std::string
const& unexpandedTestSpec )
const override;
12294 void add( std::string
const& alias, std::string
const& tag, SourceLineInfo
const& lineInfo );
12297 std::map<std::string, TagAlias> m_registry;
12306#include <exception>
12310 class StartupExceptionRegistry {
12312 void add(std::exception_ptr
const& exception)
noexcept;
12313 std::vector<std::exception_ptr>
const& getExceptions() const noexcept;
12315 std::vector<std::exception_ptr> m_exceptions;
12325 struct ISingleton {
12326 virtual ~ISingleton();
12329 void addSingleton( ISingleton* singleton );
12330 void cleanupSingletons();
12332 template<
typename SingletonImplT,
typename InterfaceT = SingletonImplT,
typename MutableInterfaceT = InterfaceT>
12333 class Singleton : SingletonImplT,
public ISingleton {
12335 static auto getInternal() -> Singleton* {
12336 static Singleton* s_instance =
nullptr;
12337 if( !s_instance ) {
12338 s_instance =
new Singleton;
12339 addSingleton( s_instance );
12345 static auto get() -> InterfaceT
const& {
12346 return *getInternal();
12348 static auto getMutable() -> MutableInterfaceT& {
12349 return *getInternal();
12360 class RegistryHub :
public IRegistryHub,
public IMutableRegistryHub,
12361 private NonCopyable {
12364 RegistryHub() =
default;
12365 IReporterRegistry
const& getReporterRegistry()
const override {
12366 return m_reporterRegistry;
12368 ITestCaseRegistry
const& getTestCaseRegistry()
const override {
12369 return m_testCaseRegistry;
12371 IExceptionTranslatorRegistry
const& getExceptionTranslatorRegistry()
const override {
12372 return m_exceptionTranslatorRegistry;
12374 ITagAliasRegistry
const& getTagAliasRegistry()
const override {
12375 return m_tagAliasRegistry;
12377 StartupExceptionRegistry
const& getStartupExceptionRegistry()
const override {
12378 return m_exceptionRegistry;
12382 void registerReporter( std::string
const& name, IReporterFactoryPtr
const& factory )
override {
12383 m_reporterRegistry.registerReporter( name, factory );
12385 void registerListener( IReporterFactoryPtr
const& factory )
override {
12386 m_reporterRegistry.registerListener( factory );
12388 void registerTest( TestCase
const& testInfo )
override {
12389 m_testCaseRegistry.registerTest( testInfo );
12391 void registerTranslator(
const IExceptionTranslator* translator )
override {
12392 m_exceptionTranslatorRegistry.registerTranslator( translator );
12394 void registerTagAlias( std::string
const& alias, std::string
const& tag, SourceLineInfo
const& lineInfo )
override {
12395 m_tagAliasRegistry.add( alias, tag, lineInfo );
12397 void registerStartupException() noexcept
override {
12398 m_exceptionRegistry.add(std::current_exception());
12400 IMutableEnumValuesRegistry& getMutableEnumValuesRegistry()
override {
12401 return m_enumValuesRegistry;
12405 TestRegistry m_testCaseRegistry;
12406 ReporterRegistry m_reporterRegistry;
12407 ExceptionTranslatorRegistry m_exceptionTranslatorRegistry;
12408 TagAliasRegistry m_tagAliasRegistry;
12409 StartupExceptionRegistry m_exceptionRegistry;
12410 Detail::EnumValuesRegistry m_enumValuesRegistry;
12414 using RegistryHubSingleton = Singleton<RegistryHub, IRegistryHub, IMutableRegistryHub>;
12416 IRegistryHub
const& getRegistryHub() {
12417 return RegistryHubSingleton::get();
12419 IMutableRegistryHub& getMutableRegistryHub() {
12420 return RegistryHubSingleton::getMutable();
12423 cleanupSingletons();
12426 std::string translateActiveException() {
12427 return getRegistryHub().getExceptionTranslatorRegistry().translateActiveException();
12436 ReporterRegistry::~ReporterRegistry() =
default;
12438 IStreamingReporterPtr ReporterRegistry::create( std::string
const& name, IConfigPtr
const& config )
const {
12439 auto it = m_factories.find( name );
12440 if( it == m_factories.end() )
12442 return it->second->create( ReporterConfig( config ) );
12445 void ReporterRegistry::registerReporter( std::string
const& name, IReporterFactoryPtr
const& factory ) {
12446 m_factories.emplace(name, factory);
12448 void ReporterRegistry::registerListener( IReporterFactoryPtr
const& factory ) {
12449 m_listeners.push_back( factory );
12452 IReporterRegistry::FactoryMap
const& ReporterRegistry::getFactories()
const {
12453 return m_factories;
12455 IReporterRegistry::Listeners
const& ReporterRegistry::getListeners()
const {
12456 return m_listeners;
12465 bool isOk( ResultWas::OfType resultType ) {
12466 return ( resultType & ResultWas::FailureBit ) == 0;
12468 bool isJustInfo(
int flags ) {
12469 return flags == ResultWas::Info;
12472 ResultDisposition::Flags operator | ( ResultDisposition::Flags lhs, ResultDisposition::Flags rhs ) {
12473 return static_cast<ResultDisposition::Flags
>(
static_cast<int>( lhs ) |
static_cast<int>( rhs ) );
12476 bool shouldContinueOnFailure(
int flags ) {
return ( flags & ResultDisposition::ContinueOnFailure ) != 0; }
12477 bool shouldSuppressFailure(
int flags ) {
return ( flags & ResultDisposition::SuppressFail ) != 0; }
12484#include <algorithm>
12489 namespace Generators {
12490 struct GeneratorTracker : TestCaseTracking::TrackerBase, IGeneratorTracker {
12491 GeneratorBasePtr m_generator;
12493 GeneratorTracker( TestCaseTracking::NameAndLocation
const& nameAndLocation, TrackerContext& ctx, ITracker* parent )
12494 : TrackerBase( nameAndLocation, ctx, parent )
12496 ~GeneratorTracker();
12498 static GeneratorTracker& acquire( TrackerContext& ctx, TestCaseTracking::NameAndLocation
const& nameAndLocation ) {
12499 std::shared_ptr<GeneratorTracker> tracker;
12501 ITracker& currentTracker = ctx.currentTracker();
12502 if( TestCaseTracking::ITrackerPtr childTracker = currentTracker.findChild( nameAndLocation ) ) {
12503 assert( childTracker );
12504 assert( childTracker->isGeneratorTracker() );
12505 tracker = std::static_pointer_cast<GeneratorTracker>( childTracker );
12508 tracker = std::make_shared<GeneratorTracker>( nameAndLocation, ctx, ¤tTracker );
12509 currentTracker.addChild( tracker );
12512 if( !ctx.completedCycle() && !tracker->isComplete() ) {
12520 bool isGeneratorTracker()
const override {
return true; }
12521 auto hasGenerator() const ->
bool override {
12522 return !!m_generator;
12524 void close()
override {
12525 TrackerBase::close();
12527 if (m_runState == CompletedSuccessfully && m_generator->next()) {
12528 m_children.clear();
12529 m_runState = Executing;
12534 auto getGenerator() const -> GeneratorBasePtr const&
override {
12535 return m_generator;
12537 void setGenerator( GeneratorBasePtr&& generator )
override {
12538 m_generator = std::move( generator );
12541 GeneratorTracker::~GeneratorTracker() {}
12544 RunContext::RunContext(IConfigPtr
const& _config, IStreamingReporterPtr&& reporter)
12545 : m_runInfo(_config->name()),
12546 m_context(getCurrentMutableContext()),
12548 m_reporter(std::move(reporter)),
12549 m_lastAssertionInfo{ StringRef(), SourceLineInfo(
"",0), StringRef(), ResultDisposition::Normal },
12550 m_includeSuccessfulResults( m_config->includeSuccessfulResults() || m_reporter->getPreferences().shouldReportAllAssertions )
12552 m_context.setRunner(
this);
12553 m_context.setConfig(m_config);
12554 m_context.setResultCapture(
this);
12555 m_reporter->testRunStarting(m_runInfo);
12558 RunContext::~RunContext() {
12559 m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals, aborting()));
12562 void RunContext::testGroupStarting(std::string
const& testSpec, std::size_t groupIndex, std::size_t groupsCount) {
12563 m_reporter->testGroupStarting(GroupInfo(testSpec, groupIndex, groupsCount));
12566 void RunContext::testGroupEnded(std::string
const& testSpec, Totals
const& totals, std::size_t groupIndex, std::size_t groupsCount) {
12567 m_reporter->testGroupEnded(TestGroupStats(GroupInfo(testSpec, groupIndex, groupsCount), totals, aborting()));
12570 Totals RunContext::runTest(TestCase
const& testCase) {
12571 Totals prevTotals = m_totals;
12573 std::string redirectedCout;
12574 std::string redirectedCerr;
12576 auto const& testInfo = testCase.getTestCaseInfo();
12578 m_reporter->testCaseStarting(testInfo);
12580 m_activeTestCase = &testCase;
12582 ITracker& rootTracker = m_trackerContext.startRun();
12583 assert(rootTracker.isSectionTracker());
12584 static_cast<SectionTracker&
>(rootTracker).addInitialFilters(m_config->getSectionsToRun());
12586 m_trackerContext.startCycle();
12587 m_testCaseTracker = &SectionTracker::acquire(m_trackerContext, TestCaseTracking::NameAndLocation(testInfo.name, testInfo.lineInfo));
12588 runCurrentTest(redirectedCout, redirectedCerr);
12589 }
while (!m_testCaseTracker->isSuccessfullyCompleted() && !aborting());
12591 Totals deltaTotals = m_totals.delta(prevTotals);
12592 if (testInfo.expectedToFail() && deltaTotals.testCases.passed > 0) {
12593 deltaTotals.assertions.failed++;
12594 deltaTotals.testCases.passed--;
12595 deltaTotals.testCases.failed++;
12597 m_totals.testCases += deltaTotals.testCases;
12598 m_reporter->testCaseEnded(TestCaseStats(testInfo,
12604 m_activeTestCase =
nullptr;
12605 m_testCaseTracker =
nullptr;
12607 return deltaTotals;
12610 IConfigPtr RunContext::config()
const {
12614 IStreamingReporter& RunContext::reporter()
const {
12615 return *m_reporter;
12618 void RunContext::assertionEnded(AssertionResult
const & result) {
12619 if (result.getResultType() == ResultWas::Ok) {
12620 m_totals.assertions.passed++;
12621 m_lastAssertionPassed =
true;
12622 }
else if (!result.isOk()) {
12623 m_lastAssertionPassed =
false;
12624 if( m_activeTestCase->getTestCaseInfo().okToFail() )
12625 m_totals.assertions.failedButOk++;
12627 m_totals.assertions.failed++;
12630 m_lastAssertionPassed =
true;
12635 static_cast<void>(m_reporter->assertionEnded(AssertionStats(result, m_messages, m_totals)));
12637 if (result.getResultType() != ResultWas::Warning)
12638 m_messageScopes.clear();
12641 resetAssertionInfo();
12642 m_lastResult = result;
12644 void RunContext::resetAssertionInfo() {
12645 m_lastAssertionInfo.macroName = StringRef();
12646 m_lastAssertionInfo.capturedExpression =
"{Unknown expression after the reported line}"_sr;
12649 bool RunContext::sectionStarted(SectionInfo
const & sectionInfo, Counts & assertions) {
12650 ITracker& sectionTracker = SectionTracker::acquire(m_trackerContext, TestCaseTracking::NameAndLocation(sectionInfo.name, sectionInfo.lineInfo));
12651 if (!sectionTracker.isOpen())
12653 m_activeSections.push_back(§ionTracker);
12655 m_lastAssertionInfo.lineInfo = sectionInfo.lineInfo;
12657 m_reporter->sectionStarting(sectionInfo);
12659 assertions = m_totals.assertions;
12663 auto RunContext::acquireGeneratorTracker( SourceLineInfo
const& lineInfo ) -> IGeneratorTracker& {
12664 using namespace Generators;
12665 GeneratorTracker& tracker = GeneratorTracker::acquire( m_trackerContext, TestCaseTracking::NameAndLocation(
"generator", lineInfo ) );
12666 assert( tracker.isOpen() );
12667 m_lastAssertionInfo.lineInfo = lineInfo;
12671 bool RunContext::testForMissingAssertions(Counts& assertions) {
12672 if (assertions.total() != 0)
12674 if (!m_config->warnAboutMissingAssertions())
12676 if (m_trackerContext.currentTracker().hasChildren())
12678 m_totals.assertions.failed++;
12679 assertions.failed++;
12683 void RunContext::sectionEnded(SectionEndInfo
const & endInfo) {
12684 Counts assertions = m_totals.assertions - endInfo.prevAssertions;
12685 bool missingAssertions = testForMissingAssertions(assertions);
12687 if (!m_activeSections.empty()) {
12688 m_activeSections.back()->close();
12689 m_activeSections.pop_back();
12692 m_reporter->sectionEnded(SectionStats(endInfo.sectionInfo, assertions, endInfo.durationInSeconds, missingAssertions));
12693 m_messages.clear();
12694 m_messageScopes.clear();
12697 void RunContext::sectionEndedEarly(SectionEndInfo
const & endInfo) {
12698 if (m_unfinishedSections.empty())
12699 m_activeSections.back()->fail();
12701 m_activeSections.back()->close();
12702 m_activeSections.pop_back();
12704 m_unfinishedSections.push_back(endInfo);
12707#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
12708 void RunContext::benchmarkPreparing(std::string
const& name) {
12709 m_reporter->benchmarkPreparing(name);
12711 void RunContext::benchmarkStarting( BenchmarkInfo
const& info ) {
12712 m_reporter->benchmarkStarting( info );
12714 void RunContext::benchmarkEnded( BenchmarkStats<>
const& stats ) {
12715 m_reporter->benchmarkEnded( stats );
12717 void RunContext::benchmarkFailed(std::string
const & error) {
12718 m_reporter->benchmarkFailed(error);
12722 void RunContext::pushScopedMessage(MessageInfo
const & message) {
12723 m_messages.push_back(message);
12726 void RunContext::popScopedMessage(MessageInfo
const & message) {
12727 m_messages.erase(std::remove(m_messages.begin(), m_messages.end(), message), m_messages.end());
12730 void RunContext::emplaceUnscopedMessage( MessageBuilder
const& builder ) {
12731 m_messageScopes.emplace_back( builder );
12734 std::string RunContext::getCurrentTestName()
const {
12735 return m_activeTestCase
12736 ? m_activeTestCase->getTestCaseInfo().name
12740 const AssertionResult * RunContext::getLastResult()
const {
12741 return &(*m_lastResult);
12744 void RunContext::exceptionEarlyReported() {
12745 m_shouldReportUnexpected =
false;
12748 void RunContext::handleFatalErrorCondition( StringRef message ) {
12750 m_reporter->fatalErrorEncountered(message);
12754 AssertionResultData tempResult( ResultWas::FatalErrorCondition, {
false } );
12755 tempResult.message =
static_cast<std::string
>(message);
12756 AssertionResult result(m_lastAssertionInfo, tempResult);
12758 assertionEnded(result);
12760 handleUnfinishedSections();
12763 auto const& testCaseInfo = m_activeTestCase->getTestCaseInfo();
12764 SectionInfo testCaseSection(testCaseInfo.lineInfo, testCaseInfo.name);
12767 assertions.failed = 1;
12768 SectionStats testCaseSectionStats(testCaseSection, assertions, 0,
false);
12769 m_reporter->sectionEnded(testCaseSectionStats);
12771 auto const& testInfo = m_activeTestCase->getTestCaseInfo();
12773 Totals deltaTotals;
12774 deltaTotals.testCases.failed = 1;
12775 deltaTotals.assertions.failed = 1;
12776 m_reporter->testCaseEnded(TestCaseStats(testInfo,
12781 m_totals.testCases.failed++;
12782 testGroupEnded(std::string(), m_totals, 1, 1);
12783 m_reporter->testRunEnded(TestRunStats(m_runInfo, m_totals,
false));
12786 bool RunContext::lastAssertionPassed() {
12787 return m_lastAssertionPassed;
12790 void RunContext::assertionPassed() {
12791 m_lastAssertionPassed =
true;
12792 ++m_totals.assertions.passed;
12793 resetAssertionInfo();
12794 m_messageScopes.clear();
12797 bool RunContext::aborting()
const {
12798 return m_totals.assertions.failed >=
static_cast<std::size_t
>(m_config->abortAfter());
12801 void RunContext::runCurrentTest(std::string & redirectedCout, std::string & redirectedCerr) {
12802 auto const& testCaseInfo = m_activeTestCase->getTestCaseInfo();
12803 SectionInfo testCaseSection(testCaseInfo.lineInfo, testCaseInfo.name);
12804 m_reporter->sectionStarting(testCaseSection);
12805 Counts prevAssertions = m_totals.assertions;
12806 double duration = 0;
12807 m_shouldReportUnexpected =
true;
12808 m_lastAssertionInfo = {
"TEST_CASE"_sr, testCaseInfo.lineInfo, StringRef(), ResultDisposition::Normal };
12810 seedRng(*m_config);
12814 if (m_reporter->getPreferences().shouldRedirectStdOut) {
12815#if !defined(CATCH_CONFIG_EXPERIMENTAL_REDIRECT)
12816 RedirectedStreams redirectedStreams(redirectedCout, redirectedCerr);
12819 invokeActiveTestCase();
12821 OutputRedirect r(redirectedCout, redirectedCerr);
12823 invokeActiveTestCase();
12827 invokeActiveTestCase();
12829 duration = timer.getElapsedSeconds();
12830 } CATCH_CATCH_ANON (TestFailureException&) {
12832 } CATCH_CATCH_ALL {
12835 if( m_shouldReportUnexpected ) {
12836 AssertionReaction dummyReaction;
12837 handleUnexpectedInflightException( m_lastAssertionInfo, translateActiveException(), dummyReaction );
12840 Counts assertions = m_totals.assertions - prevAssertions;
12841 bool missingAssertions = testForMissingAssertions(assertions);
12843 m_testCaseTracker->close();
12844 handleUnfinishedSections();
12845 m_messages.clear();
12846 m_messageScopes.clear();
12848 SectionStats testCaseSectionStats(testCaseSection, assertions, duration, missingAssertions);
12849 m_reporter->sectionEnded(testCaseSectionStats);
12852 void RunContext::invokeActiveTestCase() {
12853 FatalConditionHandler fatalConditionHandler;
12854 m_activeTestCase->invoke();
12855 fatalConditionHandler.reset();
12858 void RunContext::handleUnfinishedSections() {
12861 for (
auto it = m_unfinishedSections.rbegin(),
12862 itEnd = m_unfinishedSections.rend();
12866 m_unfinishedSections.clear();
12869 void RunContext::handleExpr(
12870 AssertionInfo
const& info,
12871 ITransientExpression
const& expr,
12872 AssertionReaction& reaction
12874 m_reporter->assertionStarting( info );
12876 bool negated = isFalseTest( info.resultDisposition );
12877 bool result = expr.getResult() != negated;
12880 if (!m_includeSuccessfulResults) {
12884 reportExpr(info, ResultWas::Ok, &expr, negated);
12888 reportExpr(info, ResultWas::ExpressionFailed, &expr, negated );
12889 populateReaction( reaction );
12892 void RunContext::reportExpr(
12893 AssertionInfo
const &info,
12894 ResultWas::OfType resultType,
12895 ITransientExpression
const *expr,
12898 m_lastAssertionInfo = info;
12899 AssertionResultData data( resultType, LazyExpression( negated ) );
12901 AssertionResult assertionResult{ info, data };
12902 assertionResult.m_resultData.lazyExpression.m_transientExpression = expr;
12904 assertionEnded( assertionResult );
12907 void RunContext::handleMessage(
12908 AssertionInfo
const& info,
12909 ResultWas::OfType resultType,
12910 StringRef
const& message,
12911 AssertionReaction& reaction
12913 m_reporter->assertionStarting( info );
12915 m_lastAssertionInfo = info;
12917 AssertionResultData data( resultType, LazyExpression(
false ) );
12918 data.message =
static_cast<std::string
>(message);
12919 AssertionResult assertionResult{ m_lastAssertionInfo, data };
12920 assertionEnded( assertionResult );
12921 if( !assertionResult.isOk() )
12922 populateReaction( reaction );
12924 void RunContext::handleUnexpectedExceptionNotThrown(
12925 AssertionInfo
const& info,
12926 AssertionReaction& reaction
12928 handleNonExpr(info, Catch::ResultWas::DidntThrowException, reaction);
12931 void RunContext::handleUnexpectedInflightException(
12932 AssertionInfo
const& info,
12933 std::string
const& message,
12934 AssertionReaction& reaction
12936 m_lastAssertionInfo = info;
12938 AssertionResultData data( ResultWas::ThrewException, LazyExpression(
false ) );
12939 data.message = message;
12940 AssertionResult assertionResult{ info, data };
12941 assertionEnded( assertionResult );
12942 populateReaction( reaction );
12945 void RunContext::populateReaction( AssertionReaction& reaction ) {
12946 reaction.shouldDebugBreak = m_config->shouldDebugBreak();
12947 reaction.shouldThrow = aborting() || (m_lastAssertionInfo.resultDisposition & ResultDisposition::Normal);
12950 void RunContext::handleIncomplete(
12951 AssertionInfo
const& info
12953 m_lastAssertionInfo = info;
12955 AssertionResultData data( ResultWas::ThrewException, LazyExpression(
false ) );
12956 data.message =
"Exception translation was disabled by CATCH_CONFIG_FAST_COMPILE";
12957 AssertionResult assertionResult{ info, data };
12958 assertionEnded( assertionResult );
12960 void RunContext::handleNonExpr(
12961 AssertionInfo
const &info,
12962 ResultWas::OfType resultType,
12963 AssertionReaction &reaction
12965 m_lastAssertionInfo = info;
12967 AssertionResultData data( resultType, LazyExpression(
false ) );
12968 AssertionResult assertionResult{ info, data };
12969 assertionEnded( assertionResult );
12971 if( !assertionResult.isOk() )
12972 populateReaction( reaction );
12975 IResultCapture& getResultCapture() {
12976 if (
auto* capture = getCurrentContext().getResultCapture())
12979 CATCH_INTERNAL_ERROR(
"No result capture instance");
12982 void seedRng(IConfig
const& config) {
12983 if (config.rngSeed() != 0) {
12984 std::srand(config.rngSeed());
12985 rng().seed(config.rngSeed());
12989 unsigned int rngSeed() {
12990 return getCurrentContext().getConfig()->rngSeed();
12999 Section::Section( SectionInfo
const& info )
13001 m_sectionIncluded( getResultCapture().sectionStarted( m_info, m_assertions ) )
13006 Section::~Section() {
13007 if( m_sectionIncluded ) {
13008 SectionEndInfo endInfo{ m_info, m_assertions, m_timer.getElapsedSeconds() };
13009 if( uncaught_exceptions() )
13010 getResultCapture().sectionEndedEarly( endInfo );
13012 getResultCapture().sectionEnded( endInfo );
13017 Section::operator bool()
const {
13018 return m_sectionIncluded;
13027 SectionInfo::SectionInfo
13028 ( SourceLineInfo
const& _lineInfo,
13029 std::string
const& _name )
13031 lineInfo( _lineInfo )
13044 class Session : NonCopyable {
13048 ~Session()
override;
13050 void showHelp()
const;
13051 void libIdentify();
13053 int applyCommandLine(
int argc,
char const *
const * argv );
13054 #if defined(CATCH_CONFIG_WCHAR) && defined(_WIN32) && defined(UNICODE)
13055 int applyCommandLine(
int argc,
wchar_t const *
const * argv );
13058 void useConfigData( ConfigData
const& configData );
13060 template<
typename CharT>
13061 int run(
int argc, CharT
const *
const argv[]) {
13062 if (m_startupExceptions)
13064 int returnCode = applyCommandLine(argc, argv);
13065 if (returnCode == 0)
13066 returnCode = run();
13072 clara::Parser
const& cli()
const;
13073 void cli( clara::Parser
const& newParser );
13074 ConfigData& configData();
13079 clara::Parser m_cli;
13080 ConfigData m_configData;
13081 std::shared_ptr<Config> m_config;
13082 bool m_startupExceptions =
false;
13096 Version( Version
const& ) =
delete;
13097 Version& operator=( Version
const& ) =
delete;
13098 Version(
unsigned int _majorVersion,
13099 unsigned int _minorVersion,
13100 unsigned int _patchNumber,
13101 char const *
const _branchName,
13102 unsigned int _buildNumber );
13104 unsigned int const majorVersion;
13105 unsigned int const minorVersion;
13106 unsigned int const patchNumber;
13109 char const *
const branchName;
13110 unsigned int const buildNumber;
13112 friend std::ostream&
operator << ( std::ostream& os, Version
const& version );
13115 Version
const& libraryVersion();
13127 const int MaxExitCode = 255;
13129 IStreamingReporterPtr createReporter(std::string
const& reporterName, IConfigPtr
const& config) {
13130 auto reporter = Catch::getRegistryHub().getReporterRegistry().create(reporterName, config);
13131 CATCH_ENFORCE(reporter,
"No reporter registered with name: '" << reporterName <<
"'");
13136 IStreamingReporterPtr makeReporter(std::shared_ptr<Config>
const& config) {
13137 if (Catch::getRegistryHub().getReporterRegistry().getListeners().empty()) {
13138 return createReporter(config->getReporterName(), config);
13146 auto ret = std::unique_ptr<IStreamingReporter>(
new ListeningReporter);
13147 auto& multi =
static_cast<ListeningReporter&
>(*ret);
13148 auto const& listeners = Catch::getRegistryHub().getReporterRegistry().getListeners();
13149 for (
auto const& listener : listeners) {
13150 multi.addListener(listener->create(Catch::ReporterConfig(config)));
13152 multi.addReporter(createReporter(config->getReporterName(), config));
13158 explicit TestGroup(std::shared_ptr<Config>
const& config)
13160 , m_context{config, makeReporter(config)}
13162 auto const& allTestCases = getAllTestCasesSorted(*m_config);
13163 m_matches = m_config->testSpec().matchesByFilter(allTestCases, *m_config);
13164 auto const& invalidArgs = m_config->testSpec().getInvalidArgs();
13166 if (m_matches.empty() && invalidArgs.empty()) {
13167 for (
auto const& test : allTestCases)
13168 if (!test.isHidden())
13169 m_tests.emplace(&test);
13171 for (
auto const& match : m_matches)
13172 m_tests.insert(match.tests.begin(), match.tests.end());
13177 auto const& invalidArgs = m_config->testSpec().getInvalidArgs();
13179 m_context.testGroupStarting(m_config->name(), 1, 1);
13180 for (
auto const& testCase : m_tests) {
13181 if (!m_context.aborting())
13182 totals += m_context.runTest(*testCase);
13184 m_context.reporter().skipTest(*testCase);
13187 for (
auto const& match : m_matches) {
13188 if (match.tests.empty()) {
13189 m_context.reporter().noMatchingTestCases(match.name);
13194 if (!invalidArgs.empty()) {
13195 for (
auto const& invalidArg: invalidArgs)
13196 m_context.reporter().reportInvalidArguments(invalidArg);
13199 m_context.testGroupEnded(m_config->name(), totals, 1, 1);
13204 using Tests = std::set<TestCase const*>;
13206 std::shared_ptr<Config> m_config;
13207 RunContext m_context;
13209 TestSpec::Matches m_matches;
13213 auto& tests =
const_cast<std::vector<TestCase>&
>(getAllTestCasesSorted(config));
13214 for (
auto& testCase : tests) {
13215 auto tags = testCase.tags;
13217 std::string filename = testCase.lineInfo.file;
13218 auto lastSlash = filename.find_last_of(
"\\/");
13219 if (lastSlash != std::string::npos) {
13220 filename.erase(0, lastSlash);
13224 auto lastDot = filename.find_last_of(
'.');
13225 if (lastDot != std::string::npos) {
13226 filename.erase(lastDot);
13229 tags.push_back(std::move(filename));
13230 setTags(testCase, tags);
13236 Session::Session() {
13237 static bool alreadyInstantiated =
false;
13238 if( alreadyInstantiated ) {
13239 CATCH_TRY { CATCH_INTERNAL_ERROR(
"Only one instance of Catch::Session can ever be used" ); }
13240 CATCH_CATCH_ALL { getMutableRegistryHub().registerStartupException(); }
13244#if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
13245 const auto& exceptions = getRegistryHub().getStartupExceptionRegistry().getExceptions();
13246 if ( !exceptions.empty() ) {
13248 getCurrentMutableContext().setConfig(m_config);
13250 m_startupExceptions =
true;
13251 Colour colourGuard( Colour::Red );
13252 Catch::cerr() <<
"Errors occurred during startup!" <<
'\n';
13254 for (
const auto& ex_ptr : exceptions ) {
13256 std::rethrow_exception(ex_ptr);
13257 }
catch ( std::exception
const& ex ) {
13258 Catch::cerr() << Column( ex.what() ).indent(2) <<
'\n';
13264 alreadyInstantiated =
true;
13265 m_cli = makeCommandLineParser( m_configData );
13267 Session::~Session() {
13271 void Session::showHelp()
const {
13273 <<
"\nCatch v" << libraryVersion() <<
"\n"
13274 << m_cli << std::endl
13275 <<
"For more detailed usage please see the project docs\n" << std::endl;
13277 void Session::libIdentify() {
13279 << std::left << std::setw(16) <<
"description: " <<
"A Catch2 test executable\n"
13280 << std::left << std::setw(16) <<
"category: " <<
"testframework\n"
13281 << std::left << std::setw(16) <<
"framework: " <<
"Catch Test\n"
13282 << std::left << std::setw(16) <<
"version: " << libraryVersion() << std::endl;
13285 int Session::applyCommandLine(
int argc,
char const *
const * argv ) {
13286 if( m_startupExceptions )
13289 auto result = m_cli.parse( clara::Args( argc, argv ) );
13292 getCurrentMutableContext().setConfig(m_config);
13294 << Colour( Colour::Red )
13295 <<
"\nError(s) in input:\n"
13296 << Column( result.errorMessage() ).indent( 2 )
13298 Catch::cerr() <<
"Run with -? for usage\n" << std::endl;
13299 return MaxExitCode;
13302 if( m_configData.showHelp )
13304 if( m_configData.libIdentify )
13310#if defined(CATCH_CONFIG_WCHAR) && defined(_WIN32) && defined(UNICODE)
13311 int Session::applyCommandLine(
int argc,
wchar_t const *
const * argv ) {
13313 char **utf8Argv =
new char *[ argc ];
13315 for (
int i = 0; i < argc; ++i ) {
13316 int bufSize = WideCharToMultiByte( CP_UTF8, 0, argv[i], -1,
nullptr, 0,
nullptr,
nullptr );
13318 utf8Argv[ i ] =
new char[ bufSize ];
13320 WideCharToMultiByte( CP_UTF8, 0, argv[i], -1, utf8Argv[i], bufSize,
nullptr,
nullptr );
13323 int returnCode = applyCommandLine( argc, utf8Argv );
13325 for (
int i = 0; i < argc; ++i )
13326 delete [] utf8Argv[ i ];
13328 delete [] utf8Argv;
13334 void Session::useConfigData( ConfigData
const& configData ) {
13335 m_configData = configData;
13339 int Session::run() {
13340 if( ( m_configData.waitForKeypress & WaitForKeypress::BeforeStart ) != 0 ) {
13341 Catch::cout() <<
"...waiting for enter/ return before starting" << std::endl;
13342 static_cast<void>(std::getchar());
13344 int exitCode = runInternal();
13345 if( ( m_configData.waitForKeypress & WaitForKeypress::BeforeExit ) != 0 ) {
13346 Catch::cout() <<
"...waiting for enter/ return before exiting, with code: " << exitCode << std::endl;
13347 static_cast<void>(std::getchar());
13352 clara::Parser
const& Session::cli()
const {
13355 void Session::cli( clara::Parser
const& newParser ) {
13358 ConfigData& Session::configData() {
13359 return m_configData;
13361 Config& Session::config() {
13363 m_config = std::make_shared<Config>( m_configData );
13367 int Session::runInternal() {
13368 if( m_startupExceptions )
13371 if (m_configData.showHelp || m_configData.libIdentify) {
13378 seedRng( *m_config );
13380 if( m_configData.filenamesAsTags )
13381 applyFilenamesAsTags( *m_config );
13384 if( Option<std::size_t> listed = list( m_config ) )
13385 return static_cast<int>( *listed );
13387 TestGroup tests { m_config };
13388 auto const totals = tests.execute();
13390 if( m_config->warnAboutNoTests() && totals.error == -1 )
13396 return (std::min) (MaxExitCode, (std::max) (totals.error,
static_cast<int>(totals.assertions.failed)));
13398#if !defined(CATCH_CONFIG_DISABLE_EXCEPTIONS)
13399 catch( std::exception& ex ) {
13400 Catch::cerr() << ex.what() << std::endl;
13401 return MaxExitCode;
13415 static auto getSingletons() -> std::vector<ISingleton*>*& {
13416 static std::vector<ISingleton*>* g_singletons =
nullptr;
13417 if( !g_singletons )
13418 g_singletons =
new std::vector<ISingleton*>();
13419 return g_singletons;
13423 ISingleton::~ISingleton() {}
13425 void addSingleton(ISingleton* singleton ) {
13426 getSingletons()->push_back( singleton );
13428 void cleanupSingletons() {
13429 auto& singletons = getSingletons();
13430 for(
auto singleton : *singletons )
13433 singletons =
nullptr;
13441void StartupExceptionRegistry::add( std::exception_ptr
const& exception )
noexcept {
13443 m_exceptions.push_back(exception);
13444 } CATCH_CATCH_ALL {
13450 std::vector<std::exception_ptr>
const& StartupExceptionRegistry::getExceptions() const noexcept {
13451 return m_exceptions;
13467 Catch::IStream::~IStream() =
default;
13469 namespace Detail {
namespace {
13470 template<
typename WriterF, std::
size_t bufferSize=256>
13471 class StreamBufImpl :
public std::streambuf {
13472 char data[bufferSize];
13477 setp( data, data +
sizeof(data) );
13480 ~StreamBufImpl() noexcept {
13481 StreamBufImpl::sync();
13485 int overflow(
int c )
override {
13489 if( pbase() == epptr() )
13490 m_writer( std::string( 1,
static_cast<char>( c ) ) );
13492 sputc(
static_cast<char>( c ) );
13497 int sync()
override {
13498 if( pbase() != pptr() ) {
13499 m_writer( std::string( pbase(),
static_cast<std::string::size_type
>( pptr() - pbase() ) ) );
13500 setp( pbase(), epptr() );
13508 struct OutputDebugWriter {
13510 void operator()( std::string
const&str ) {
13511 writeToDebugConsole( str );
13517 class FileStream :
public IStream {
13518 mutable std::ofstream m_ofs;
13520 FileStream( StringRef filename ) {
13521 m_ofs.open( filename.c_str() );
13522 CATCH_ENFORCE( !m_ofs.fail(),
"Unable to open file: '" << filename <<
"'" );
13524 ~FileStream()
override =
default;
13526 std::ostream& stream()
const override {
13533 class CoutStream :
public IStream {
13534 mutable std::ostream m_os;
13538 CoutStream() : m_os( Catch::cout().rdbuf() ) {}
13539 ~CoutStream()
override =
default;
13542 std::ostream& stream()
const override {
return m_os; }
13547 class DebugOutStream :
public IStream {
13548 std::unique_ptr<StreamBufImpl<OutputDebugWriter>> m_streamBuf;
13549 mutable std::ostream m_os;
13552 : m_streamBuf( new StreamBufImpl<OutputDebugWriter>() ),
13553 m_os( m_streamBuf.get() )
13556 ~DebugOutStream()
override =
default;
13559 std::ostream& stream()
const override {
return m_os; }
13566 auto makeStream( StringRef
const &filename ) -> IStream
const* {
13567 if( filename.empty() )
13568 return new Detail::CoutStream();
13569 else if( filename[0] ==
'%' ) {
13570 if( filename ==
"%debug" )
13571 return new Detail::DebugOutStream();
13573 CATCH_ERROR(
"Unrecognised stream: '" << filename <<
"'" );
13576 return new Detail::FileStream( filename );
13580 struct StringStreams {
13581 std::vector<std::unique_ptr<std::ostringstream>> m_streams;
13582 std::vector<std::size_t> m_unused;
13583 std::ostringstream m_referenceStream;
13585 auto add() -> std::size_t {
13586 if( m_unused.empty() ) {
13587 m_streams.push_back( std::unique_ptr<std::ostringstream>(
new std::ostringstream ) );
13588 return m_streams.size()-1;
13591 auto index = m_unused.back();
13592 m_unused.pop_back();
13597 void release( std::size_t index ) {
13598 m_streams[index]->copyfmt( m_referenceStream );
13599 m_unused.push_back(index);
13603 ReusableStringStream::ReusableStringStream()
13604 : m_index( Singleton<StringStreams>::getMutable().
add() ),
13605 m_oss( Singleton<StringStreams>::getMutable().m_streams[m_index].get() )
13608 ReusableStringStream::~ReusableStringStream() {
13609 static_cast<std::ostringstream*
>( m_oss )->str(
"");
13611 Singleton<StringStreams>::getMutable().release( m_index );
13614 auto ReusableStringStream::str() const -> std::
string {
13615 return static_cast<std::ostringstream*
>( m_oss )->str();
13620#ifndef CATCH_CONFIG_NOSTDOUT
13621 std::ostream& cout() {
return std::cout; }
13622 std::ostream& cerr() {
return std::cerr; }
13623 std::ostream& clog() {
return std::clog; }
13629#include <algorithm>
13638 char toLowerCh(
char c) {
13639 return static_cast<char>( std::tolower( c ) );
13643 bool startsWith( std::string
const& s, std::string
const& prefix ) {
13644 return s.size() >= prefix.size() && std::equal(prefix.begin(), prefix.end(), s.begin());
13646 bool startsWith( std::string
const& s,
char prefix ) {
13647 return !s.empty() && s[0] == prefix;
13649 bool endsWith( std::string
const& s, std::string
const& suffix ) {
13650 return s.size() >= suffix.size() && std::equal(suffix.rbegin(), suffix.rend(), s.rbegin());
13652 bool endsWith( std::string
const& s,
char suffix ) {
13653 return !s.empty() && s[s.size()-1] == suffix;
13655 bool contains( std::string
const& s, std::string
const& infix ) {
13656 return s.find( infix ) != std::string::npos;
13658 void toLowerInPlace( std::string& s ) {
13659 std::transform( s.begin(), s.end(), s.begin(), toLowerCh );
13661 std::string toLower( std::string
const& s ) {
13662 std::string lc = s;
13663 toLowerInPlace( lc );
13666 std::string trim( std::string
const& str ) {
13667 static char const* whitespaceChars =
"\n\r\t ";
13668 std::string::size_type start = str.find_first_not_of( whitespaceChars );
13669 std::string::size_type end = str.find_last_not_of( whitespaceChars );
13671 return start != std::string::npos ? str.substr( start, 1+end-start ) : std::string();
13674 StringRef trim(StringRef ref) {
13675 const auto is_ws = [](
char c) {
13676 return c ==
' ' || c ==
'\t' || c ==
'\n' || c ==
'\r';
13678 size_t real_begin = 0;
13679 while (real_begin < ref.size() && is_ws(ref[real_begin])) { ++real_begin; }
13680 size_t real_end = ref.size();
13681 while (real_end > real_begin && is_ws(ref[real_end - 1])) { --real_end; }
13683 return ref.substr(real_begin, real_end - real_begin);
13686 bool replaceInPlace( std::string& str, std::string
const& replaceThis, std::string
const& withThis ) {
13687 bool replaced =
false;
13688 std::size_t i = str.find( replaceThis );
13689 while( i != std::string::npos ) {
13691 str = str.substr( 0, i ) + withThis + str.substr( i+replaceThis.size() );
13692 if( i < str.size()-withThis.size() )
13693 i = str.find( replaceThis, i+withThis.size() );
13695 i = std::string::npos;
13700 std::vector<StringRef> splitStringRef( StringRef str,
char delimiter ) {
13701 std::vector<StringRef> subStrings;
13702 std::size_t start = 0;
13703 for(std::size_t pos = 0; pos < str.size(); ++pos ) {
13704 if( str[pos] == delimiter ) {
13705 if( pos - start > 1 )
13706 subStrings.push_back( str.substr( start, pos-start ) );
13710 if( start < str.size() )
13711 subStrings.push_back( str.substr( start, str.size()-start ) );
13715 pluralise::pluralise( std::size_t count, std::string
const& label )
13716 : m_count( count ),
13720 std::ostream& operator << ( std::ostream& os, pluralise
const& pluraliser ) {
13721 os << pluraliser.m_count <<
' ' << pluraliser.m_label;
13722 if( pluraliser.m_count != 1 )
13731#include <algorithm>
13737 StringRef::StringRef(
char const* rawChars ) noexcept
13738 : StringRef( rawChars,
static_cast<StringRef::size_type
>(std::strlen(rawChars) ) )
13741 auto StringRef::c_str() const ->
char const* {
13742 CATCH_ENFORCE(isNullTerminated(),
"Called StringRef::c_str() on a non-null-terminated instance");
13745 auto StringRef::data() const noexcept ->
char const* {
13749 auto StringRef::substr( size_type start, size_type size )
const noexcept -> StringRef {
13750 if (start < m_size) {
13751 return StringRef(m_start + start, (std::min)(m_size - start, size));
13753 return StringRef();
13756 auto StringRef::operator == ( StringRef
const& other )
const noexcept ->
bool {
13757 return m_size == other.m_size
13758 && (std::memcmp( m_start, other.m_start, m_size ) == 0);
13761 auto operator << ( std::ostream& os, StringRef
const& str ) -> std::ostream& {
13762 return os.write(str.data(), str.size());
13765 auto operator+=( std::string& lhs, StringRef
const& rhs ) -> std::string& {
13766 lhs.append(rhs.data(), rhs.size());
13775 TagAlias::TagAlias(std::string
const & _tag, SourceLineInfo _lineInfo): tag(_tag), lineInfo(_lineInfo) {}
13782 RegistrarForTagAliases::RegistrarForTagAliases(
char const* alias,
char const* tag, SourceLineInfo
const& lineInfo) {
13784 getMutableRegistryHub().registerTagAlias(alias, tag, lineInfo);
13785 } CATCH_CATCH_ALL {
13787 getMutableRegistryHub().registerStartupException();
13799 TagAliasRegistry::~TagAliasRegistry() {}
13801 TagAlias
const* TagAliasRegistry::find( std::string
const& alias )
const {
13802 auto it = m_registry.find( alias );
13803 if( it != m_registry.end() )
13804 return &(it->second);
13809 std::string TagAliasRegistry::expandAliases( std::string
const& unexpandedTestSpec )
const {
13810 std::string expandedTestSpec = unexpandedTestSpec;
13811 for(
auto const& registryKvp : m_registry ) {
13812 std::size_t pos = expandedTestSpec.find( registryKvp.first );
13813 if( pos != std::string::npos ) {
13814 expandedTestSpec = expandedTestSpec.substr( 0, pos ) +
13815 registryKvp.second.tag +
13816 expandedTestSpec.substr( pos + registryKvp.first.size() );
13819 return expandedTestSpec;
13822 void TagAliasRegistry::add( std::string
const& alias, std::string
const& tag, SourceLineInfo
const& lineInfo ) {
13823 CATCH_ENFORCE( startsWith(alias,
"[@") && endsWith(alias,
']'),
13824 "error: tag alias, '" << alias <<
"' is not of the form [@alias name].\n" << lineInfo );
13826 CATCH_ENFORCE( m_registry.insert(std::make_pair(alias, TagAlias(tag, lineInfo))).second,
13827 "error: tag alias, '" << alias <<
"' already registered.\n"
13828 <<
"\tFirst seen at: " << find(alias)->lineInfo <<
"\n"
13829 <<
"\tRedefined at: " << lineInfo );
13832 ITagAliasRegistry::~ITagAliasRegistry() {}
13834 ITagAliasRegistry
const& ITagAliasRegistry::get() {
13835 return getRegistryHub().getTagAliasRegistry();
13843#include <exception>
13844#include <algorithm>
13850 TestCaseInfo::SpecialProperties parseSpecialTag( std::string
const& tag ) {
13851 if( startsWith( tag,
'.' ) ||
13853 return TestCaseInfo::IsHidden;
13854 else if( tag ==
"!throws" )
13855 return TestCaseInfo::Throws;
13856 else if( tag ==
"!shouldfail" )
13857 return TestCaseInfo::ShouldFail;
13858 else if( tag ==
"!mayfail" )
13859 return TestCaseInfo::MayFail;
13860 else if( tag ==
"!nonportable" )
13861 return TestCaseInfo::NonPortable;
13862 else if( tag ==
"!benchmark" )
13863 return static_cast<TestCaseInfo::SpecialProperties
>( TestCaseInfo::Benchmark | TestCaseInfo::IsHidden );
13865 return TestCaseInfo::None;
13867 bool isReservedTag( std::string
const& tag ) {
13868 return parseSpecialTag( tag ) == TestCaseInfo::None && tag.size() > 0 && !std::isalnum(
static_cast<unsigned char>(tag[0]) );
13870 void enforceNotReservedTag( std::string
const& tag, SourceLineInfo
const& _lineInfo ) {
13871 CATCH_ENFORCE( !isReservedTag(tag),
13872 "Tag name: [" << tag <<
"] is not allowed.\n"
13873 <<
"Tag names starting with non alphanumeric characters are reserved\n"
13878 TestCase makeTestCase( ITestInvoker* _testCase,
13879 std::string
const& _className,
13880 NameAndTags
const& nameAndTags,
13881 SourceLineInfo
const& _lineInfo )
13883 bool isHidden =
false;
13886 std::vector<std::string> tags;
13887 std::string desc, tag;
13888 bool inTag =
false;
13889 for (
char c : nameAndTags.tags) {
13898 TestCaseInfo::SpecialProperties prop = parseSpecialTag( tag );
13899 if( ( prop & TestCaseInfo::IsHidden ) != 0 )
13901 else if( prop == TestCaseInfo::None )
13902 enforceNotReservedTag( tag, _lineInfo );
13907 if (startsWith(tag,
'.') && tag.size() > 1) {
13910 tags.push_back( tag );
13920 tags.insert( tags.end(), {
".",
"!hide" } );
13923 TestCaseInfo info(
static_cast<std::string
>(nameAndTags.name), _className, desc, tags, _lineInfo );
13924 return TestCase( _testCase, std::move(info) );
13927 void setTags( TestCaseInfo& testCaseInfo, std::vector<std::string> tags ) {
13928 std::sort(begin(tags), end(tags));
13929 tags.erase(std::unique(begin(tags), end(tags)), end(tags));
13930 testCaseInfo.lcaseTags.clear();
13932 for(
auto const& tag : tags ) {
13933 std::string lcaseTag = toLower( tag );
13934 testCaseInfo.properties =
static_cast<TestCaseInfo::SpecialProperties
>( testCaseInfo.properties | parseSpecialTag( lcaseTag ) );
13935 testCaseInfo.lcaseTags.push_back( lcaseTag );
13937 testCaseInfo.tags = std::move(tags);
13940 TestCaseInfo::TestCaseInfo( std::string
const& _name,
13941 std::string
const& _className,
13942 std::string
const& _description,
13943 std::vector<std::string>
const& _tags,
13944 SourceLineInfo
const& _lineInfo )
13946 className( _className ),
13947 description( _description ),
13948 lineInfo( _lineInfo ),
13951 setTags( *
this, _tags );
13954 bool TestCaseInfo::isHidden()
const {
13955 return ( properties & IsHidden ) != 0;
13957 bool TestCaseInfo::throws()
const {
13958 return ( properties & Throws ) != 0;
13960 bool TestCaseInfo::okToFail()
const {
13961 return ( properties & (ShouldFail | MayFail ) ) != 0;
13963 bool TestCaseInfo::expectedToFail()
const {
13964 return ( properties & (ShouldFail ) ) != 0;
13967 std::string TestCaseInfo::tagsAsString()
const {
13970 std::size_t full_size = 2 * tags.size();
13971 for (
const auto& tag : tags) {
13972 full_size += tag.size();
13974 ret.reserve(full_size);
13975 for (
const auto& tag : tags) {
13976 ret.push_back(
'[');
13978 ret.push_back(
']');
13984 TestCase::TestCase( ITestInvoker* testCase, TestCaseInfo&& info ) : TestCaseInfo( std::move(info) ), test( testCase ) {}
13986 TestCase TestCase::withName( std::string
const& _newName )
const {
13987 TestCase other( *
this );
13988 other.name = _newName;
13992 void TestCase::invoke()
const {
13996 bool TestCase::operator == ( TestCase
const& other )
const {
13997 return test.get() == other.test.get() &&
13998 name == other.name &&
13999 className == other.className;
14002 bool TestCase::operator < ( TestCase
const& other )
const {
14003 return name < other.name;
14006 TestCaseInfo
const& TestCase::getTestCaseInfo()
const
14015#include <algorithm>
14021 struct TestHasher {
14030 uint64_t operator()(TestCase
const& t)
const {
14032 static constexpr uint64_t prime = 1099511628211;
14033 uint64_t hash = basis;
14034 for (
const char c : t.name) {
14043 std::vector<TestCase> sortTests( IConfig
const& config, std::vector<TestCase>
const& unsortedTestCases ) {
14044 switch( config.runOrder() ) {
14045 case RunTests::InDeclarationOrder:
14049 case RunTests::InLexicographicalOrder: {
14050 std::vector<TestCase> sorted = unsortedTestCases;
14051 std::sort( sorted.begin(), sorted.end() );
14055 case RunTests::InRandomOrder: {
14057 TestHasher h( rng() );
14059 using hashedTest = std::pair<uint64_t, TestCase const*>;
14060 std::vector<hashedTest> indexed_tests;
14061 indexed_tests.reserve( unsortedTestCases.size() );
14063 for (
auto const& testCase : unsortedTestCases) {
14064 indexed_tests.emplace_back(h(testCase), &testCase);
14067 std::sort(indexed_tests.begin(), indexed_tests.end(),
14068 [](hashedTest
const& lhs, hashedTest
const& rhs) {
14069 if (lhs.first == rhs.first) {
14070 return lhs.second->name < rhs.second->name;
14072 return lhs.first < rhs.first;
14075 std::vector<TestCase> sorted;
14076 sorted.reserve( indexed_tests.size() );
14078 for (
auto const& hashed : indexed_tests) {
14079 sorted.emplace_back(*hashed.second);
14085 return unsortedTestCases;
14088 bool isThrowSafe( TestCase
const& testCase, IConfig
const& config ) {
14089 return !testCase.throws() || config.allowThrows();
14092 bool matchTest( TestCase
const& testCase, TestSpec
const& testSpec, IConfig
const& config ) {
14093 return testSpec.matches( testCase ) && isThrowSafe( testCase, config );
14096 void enforceNoDuplicateTestCases( std::vector<TestCase>
const& functions ) {
14097 std::set<TestCase> seenFunctions;
14098 for(
auto const& function : functions ) {
14099 auto prev = seenFunctions.insert( function );
14100 CATCH_ENFORCE( prev.second,
14101 "error: TEST_CASE( \"" << function.name <<
"\" ) already defined.\n"
14102 <<
"\tFirst seen at " << prev.first->getTestCaseInfo().lineInfo <<
"\n"
14103 <<
"\tRedefined at " << function.getTestCaseInfo().lineInfo );
14107 std::vector<TestCase> filterTests( std::vector<TestCase>
const& testCases, TestSpec
const& testSpec, IConfig
const& config ) {
14108 std::vector<TestCase> filtered;
14109 filtered.reserve( testCases.size() );
14110 for (
auto const& testCase : testCases) {
14111 if ((!testSpec.hasFilters() && !testCase.isHidden()) ||
14112 (testSpec.hasFilters() && matchTest(testCase, testSpec, config))) {
14113 filtered.push_back(testCase);
14118 std::vector<TestCase>
const& getAllTestCasesSorted( IConfig
const& config ) {
14119 return getRegistryHub().getTestCaseRegistry().getAllTestsSorted( config );
14122 void TestRegistry::registerTest( TestCase
const& testCase ) {
14123 std::string name = testCase.getTestCaseInfo().name;
14124 if( name.empty() ) {
14125 ReusableStringStream rss;
14126 rss <<
"Anonymous test case " << ++m_unnamedCount;
14127 return registerTest( testCase.withName( rss.str() ) );
14129 m_functions.push_back( testCase );
14132 std::vector<TestCase>
const& TestRegistry::getAllTests()
const {
14133 return m_functions;
14135 std::vector<TestCase>
const& TestRegistry::getAllTestsSorted( IConfig
const& config )
const {
14136 if( m_sortedFunctions.empty() )
14137 enforceNoDuplicateTestCases( m_functions );
14139 if( m_currentSortOrder != config.runOrder() || m_sortedFunctions.empty() ) {
14140 m_sortedFunctions = sortTests( config, m_functions );
14141 m_currentSortOrder = config.runOrder();
14143 return m_sortedFunctions;
14147 TestInvokerAsFunction::TestInvokerAsFunction(
void(*testAsFunction)() ) noexcept : m_testAsFunction( testAsFunction ) {}
14149 void TestInvokerAsFunction::invoke()
const {
14150 m_testAsFunction();
14153 std::string extractClassName( StringRef
const& classOrQualifiedMethodName ) {
14154 std::string className(classOrQualifiedMethodName);
14155 if( startsWith( className,
'&' ) )
14157 std::size_t lastColons = className.rfind(
"::" );
14158 std::size_t penultimateColons = className.rfind(
"::", lastColons-1 );
14159 if( penultimateColons == std::string::npos )
14160 penultimateColons = 1;
14161 className = className.substr( penultimateColons, lastColons-penultimateColons );
14170#include <algorithm>
14172#include <stdexcept>
14176#if defined(__clang__)
14177# pragma clang diagnostic push
14178# pragma clang diagnostic ignored "-Wexit-time-destructors"
14182namespace TestCaseTracking {
14184 NameAndLocation::NameAndLocation( std::string
const& _name, SourceLineInfo
const& _location )
14186 location( _location )
14189 ITracker::~ITracker() =
default;
14191 ITracker& TrackerContext::startRun() {
14192 m_rootTracker = std::make_shared<SectionTracker>( NameAndLocation(
"{root}", CATCH_INTERNAL_LINEINFO ), *
this,
nullptr );
14193 m_currentTracker =
nullptr;
14194 m_runState = Executing;
14195 return *m_rootTracker;
14198 void TrackerContext::endRun() {
14199 m_rootTracker.reset();
14200 m_currentTracker =
nullptr;
14201 m_runState = NotStarted;
14204 void TrackerContext::startCycle() {
14205 m_currentTracker = m_rootTracker.get();
14206 m_runState = Executing;
14208 void TrackerContext::completeCycle() {
14209 m_runState = CompletedCycle;
14212 bool TrackerContext::completedCycle()
const {
14213 return m_runState == CompletedCycle;
14215 ITracker& TrackerContext::currentTracker() {
14216 return *m_currentTracker;
14218 void TrackerContext::setCurrentTracker( ITracker* tracker ) {
14219 m_currentTracker = tracker;
14222 TrackerBase::TrackerBase( NameAndLocation
const& nameAndLocation, TrackerContext& ctx, ITracker* parent )
14223 : m_nameAndLocation( nameAndLocation ),
14228 NameAndLocation
const& TrackerBase::nameAndLocation()
const {
14229 return m_nameAndLocation;
14231 bool TrackerBase::isComplete()
const {
14232 return m_runState == CompletedSuccessfully || m_runState == Failed;
14234 bool TrackerBase::isSuccessfullyCompleted()
const {
14235 return m_runState == CompletedSuccessfully;
14237 bool TrackerBase::isOpen()
const {
14238 return m_runState != NotStarted && !isComplete();
14240 bool TrackerBase::hasChildren()
const {
14241 return !m_children.empty();
14244 void TrackerBase::addChild( ITrackerPtr
const& child ) {
14245 m_children.push_back( child );
14248 ITrackerPtr TrackerBase::findChild( NameAndLocation
const& nameAndLocation ) {
14249 auto it = std::find_if( m_children.begin(), m_children.end(),
14250 [&nameAndLocation]( ITrackerPtr
const& tracker ){
14252 tracker->nameAndLocation().location == nameAndLocation.location &&
14253 tracker->nameAndLocation().name == nameAndLocation.name;
14255 return( it != m_children.end() )
14259 ITracker& TrackerBase::parent() {
14260 assert( m_parent );
14264 void TrackerBase::openChild() {
14265 if( m_runState != ExecutingChildren ) {
14266 m_runState = ExecutingChildren;
14268 m_parent->openChild();
14272 bool TrackerBase::isSectionTracker()
const {
return false; }
14273 bool TrackerBase::isGeneratorTracker()
const {
return false; }
14275 void TrackerBase::open() {
14276 m_runState = Executing;
14279 m_parent->openChild();
14282 void TrackerBase::close() {
14285 while( &m_ctx.currentTracker() !=
this )
14286 m_ctx.currentTracker().close();
14288 switch( m_runState ) {
14289 case NeedsAnotherRun:
14293 m_runState = CompletedSuccessfully;
14295 case ExecutingChildren:
14296 if( std::all_of(m_children.begin(), m_children.end(), [](ITrackerPtr
const& t){ return t->isComplete(); }) )
14297 m_runState = CompletedSuccessfully;
14301 case CompletedSuccessfully:
14303 CATCH_INTERNAL_ERROR(
"Illogical state: " << m_runState );
14306 CATCH_INTERNAL_ERROR(
"Unknown state: " << m_runState );
14309 m_ctx.completeCycle();
14311 void TrackerBase::fail() {
14312 m_runState = Failed;
14314 m_parent->markAsNeedingAnotherRun();
14316 m_ctx.completeCycle();
14318 void TrackerBase::markAsNeedingAnotherRun() {
14319 m_runState = NeedsAnotherRun;
14322 void TrackerBase::moveToParent() {
14323 assert( m_parent );
14324 m_ctx.setCurrentTracker( m_parent );
14326 void TrackerBase::moveToThis() {
14327 m_ctx.setCurrentTracker(
this );
14330 SectionTracker::SectionTracker( NameAndLocation
const& nameAndLocation, TrackerContext& ctx, ITracker* parent )
14331 : TrackerBase( nameAndLocation, ctx, parent ),
14332 m_trimmed_name(trim(nameAndLocation.name))
14335 while( !parent->isSectionTracker() )
14336 parent = &parent->parent();
14338 SectionTracker& parentSection =
static_cast<SectionTracker&
>( *parent );
14339 addNextFilters( parentSection.m_filters );
14343 bool SectionTracker::isComplete()
const {
14344 bool complete =
true;
14346 if ((m_filters.empty() || m_filters[0] ==
"")
14347 || std::find(m_filters.begin(), m_filters.end(), m_trimmed_name) != m_filters.end()) {
14348 complete = TrackerBase::isComplete();
14353 bool SectionTracker::isSectionTracker()
const {
return true; }
14355 SectionTracker& SectionTracker::acquire( TrackerContext& ctx, NameAndLocation
const& nameAndLocation ) {
14356 std::shared_ptr<SectionTracker> section;
14358 ITracker& currentTracker = ctx.currentTracker();
14359 if( ITrackerPtr childTracker = currentTracker.findChild( nameAndLocation ) ) {
14360 assert( childTracker );
14361 assert( childTracker->isSectionTracker() );
14362 section = std::static_pointer_cast<SectionTracker>( childTracker );
14365 section = std::make_shared<SectionTracker>( nameAndLocation, ctx, ¤tTracker );
14366 currentTracker.addChild( section );
14368 if( !ctx.completedCycle() )
14369 section->tryOpen();
14373 void SectionTracker::tryOpen() {
14374 if( !isComplete() )
14378 void SectionTracker::addInitialFilters( std::vector<std::string>
const& filters ) {
14379 if( !filters.empty() ) {
14380 m_filters.reserve( m_filters.size() + filters.size() + 2 );
14381 m_filters.emplace_back(
"");
14382 m_filters.emplace_back(
"");
14383 m_filters.insert( m_filters.end(), filters.begin(), filters.end() );
14386 void SectionTracker::addNextFilters( std::vector<std::string>
const& filters ) {
14387 if( filters.size() > 1 )
14388 m_filters.insert( m_filters.end(), filters.begin()+1, filters.end() );
14393using TestCaseTracking::ITracker;
14394using TestCaseTracking::TrackerContext;
14395using TestCaseTracking::SectionTracker;
14399#if defined(__clang__)
14400# pragma clang diagnostic pop
14407 auto makeTestInvoker(
void(*testAsFunction)() ) noexcept -> ITestInvoker* {
14408 return new(std::nothrow) TestInvokerAsFunction( testAsFunction );
14411 NameAndTags::NameAndTags( StringRef
const& name_ , StringRef
const& tags_ ) noexcept : name( name_ ), tags( tags_ ) {}
14413 AutoReg::AutoReg( ITestInvoker* invoker, SourceLineInfo
const& lineInfo, StringRef
const& classOrMethod, NameAndTags
const& nameAndTags )
noexcept {
14415 getMutableRegistryHub()
14419 extractClassName( classOrMethod ),
14422 } CATCH_CATCH_ALL {
14424 getMutableRegistryHub().registerStartupException();
14428 AutoReg::~AutoReg() =
default;
14433#include <algorithm>
14440 TestSpec::Pattern::Pattern( std::string
const& name )
14444 TestSpec::Pattern::~Pattern() =
default;
14446 std::string
const& TestSpec::Pattern::name()
const {
14450 TestSpec::NamePattern::NamePattern( std::string
const& name, std::string
const& filterString )
14451 : Pattern( filterString )
14452 , m_wildcardPattern( toLower( name ), CaseSensitive::No )
14455 bool TestSpec::NamePattern::matches( TestCaseInfo
const& testCase )
const {
14456 return m_wildcardPattern.matches( testCase.name );
14459 TestSpec::TagPattern::TagPattern( std::string
const& tag, std::string
const& filterString )
14460 : Pattern( filterString )
14461 , m_tag( toLower( tag ) )
14464 bool TestSpec::TagPattern::matches( TestCaseInfo
const& testCase )
const {
14465 return std::find(begin(testCase.lcaseTags),
14466 end(testCase.lcaseTags),
14467 m_tag) != end(testCase.lcaseTags);
14470 TestSpec::ExcludedPattern::ExcludedPattern( PatternPtr
const& underlyingPattern )
14471 : Pattern( underlyingPattern->name() )
14472 , m_underlyingPattern( underlyingPattern )
14475 bool TestSpec::ExcludedPattern::matches( TestCaseInfo
const& testCase )
const {
14476 return !m_underlyingPattern->matches( testCase );
14479 bool TestSpec::Filter::matches( TestCaseInfo
const& testCase )
const {
14480 return std::all_of( m_patterns.begin(), m_patterns.end(), [&]( PatternPtr
const& p ){ return p->matches( testCase ); } );
14483 std::string TestSpec::Filter::name()
const {
14485 for(
auto const& p : m_patterns )
14490 bool TestSpec::hasFilters()
const {
14491 return !m_filters.empty();
14494 bool TestSpec::matches( TestCaseInfo
const& testCase )
const {
14495 return std::any_of( m_filters.begin(), m_filters.end(), [&]( Filter
const& f ){ return f.matches( testCase ); } );
14498 TestSpec::Matches TestSpec::matchesByFilter( std::vector<TestCase>
const& testCases, IConfig
const& config )
const
14500 Matches matches( m_filters.size() );
14501 std::transform( m_filters.begin(), m_filters.end(), matches.begin(), [&]( Filter
const& filter ){
14502 std::vector<TestCase const*> currentMatches;
14503 for( auto const& test : testCases )
14504 if( isThrowSafe( test, config ) && filter.matches( test ) )
14505 currentMatches.emplace_back( &test );
14506 return FilterMatch{ filter.name(), currentMatches };
14511 const TestSpec::vectorStrings& TestSpec::getInvalidArgs()
const{
14512 return (m_invalidArgs);
14521 TestSpecParser::TestSpecParser( ITagAliasRegistry
const& tagAliases ) : m_tagAliases( &tagAliases ) {}
14523 TestSpecParser& TestSpecParser::parse( std::string
const& arg ) {
14525 m_exclusion =
false;
14526 m_arg = m_tagAliases->expandAliases( arg );
14527 m_escapeChars.clear();
14528 m_substring.reserve(m_arg.size());
14529 m_patternName.reserve(m_arg.size());
14530 m_realPatternPos = 0;
14532 for( m_pos = 0; m_pos < m_arg.size(); ++m_pos )
14534 if( !visitChar( m_arg[m_pos] ) ){
14535 m_testSpec.m_invalidArgs.push_back(arg);
14541 TestSpec TestSpecParser::testSpec() {
14545 bool TestSpecParser::visitChar(
char c ) {
14546 if( (m_mode != EscapedName) && (c ==
'\\') ) {
14548 addCharToPattern(c);
14550 }
else if((m_mode != EscapedName) && (c ==
',') ) {
14556 if( processNoneChar( c ) )
14560 processNameChar( c );
14564 addCharToPattern(c);
14569 if( processOtherChar( c ) )
14575 if( !isControlChar( c ) ) {
14576 m_patternName += c;
14577 m_realPatternPos++;
14583 bool TestSpecParser::processNoneChar(
char c ) {
14588 m_exclusion =
true;
14591 startNewMode(
Tag );
14594 startNewMode( QuotedName );
14597 startNewMode( Name );
14601 void TestSpecParser::processNameChar(
char c ) {
14603 if( m_substring ==
"exclude:" )
14604 m_exclusion =
true;
14607 startNewMode(
Tag );
14610 bool TestSpecParser::processOtherChar(
char c ) {
14611 if( !isControlChar( c ) )
14617 void TestSpecParser::startNewMode( Mode mode ) {
14620 void TestSpecParser::endMode() {
14624 return addNamePattern();
14626 return addTagPattern();
14628 revertBackToLastMode();
14632 return startNewMode( None );
14635 void TestSpecParser::escape() {
14637 m_mode = EscapedName;
14638 m_escapeChars.push_back(m_realPatternPos);
14640 bool TestSpecParser::isControlChar(
char c )
const {
14653 return c ==
'[' || c ==
']';
14657 void TestSpecParser::addFilter() {
14658 if( !m_currentFilter.m_patterns.empty() ) {
14659 m_testSpec.m_filters.push_back( m_currentFilter );
14660 m_currentFilter = TestSpec::Filter();
14664 void TestSpecParser::saveLastMode() {
14668 void TestSpecParser::revertBackToLastMode() {
14672 bool TestSpecParser::separate() {
14673 if( (m_mode==QuotedName) || (m_mode==
Tag) ){
14676 m_pos = m_arg.size();
14677 m_substring.clear();
14678 m_patternName.clear();
14679 m_realPatternPos = 0;
14687 std::string TestSpecParser::preprocessPattern() {
14688 std::string token = m_patternName;
14689 for (std::size_t i = 0; i < m_escapeChars.size(); ++i)
14690 token = token.substr(0, m_escapeChars[i] - i) + token.substr(m_escapeChars[i] - i + 1);
14691 m_escapeChars.clear();
14692 if (startsWith(token,
"exclude:")) {
14693 m_exclusion =
true;
14694 token = token.substr(8);
14697 m_patternName.clear();
14698 m_realPatternPos = 0;
14703 void TestSpecParser::addNamePattern() {
14704 auto token = preprocessPattern();
14706 if (!token.empty()) {
14707 TestSpec::PatternPtr pattern = std::make_shared<TestSpec::NamePattern>(token, m_substring);
14709 pattern = std::make_shared<TestSpec::ExcludedPattern>(pattern);
14710 m_currentFilter.m_patterns.push_back(pattern);
14712 m_substring.clear();
14713 m_exclusion =
false;
14717 void TestSpecParser::addTagPattern() {
14718 auto token = preprocessPattern();
14720 if (!token.empty()) {
14723 if (token.size() > 1 && token[0] ==
'.') {
14724 token.erase(token.begin());
14725 TestSpec::PatternPtr pattern = std::make_shared<TestSpec::TagPattern>(
".", m_substring);
14727 pattern = std::make_shared<TestSpec::ExcludedPattern>(pattern);
14729 m_currentFilter.m_patterns.push_back(pattern);
14732 TestSpec::PatternPtr pattern = std::make_shared<TestSpec::TagPattern>(token, m_substring);
14735 pattern = std::make_shared<TestSpec::ExcludedPattern>(pattern);
14737 m_currentFilter.m_patterns.push_back(pattern);
14739 m_substring.clear();
14740 m_exclusion =
false;
14744 TestSpec parseTestSpec( std::string
const& arg ) {
14745 return TestSpecParser( ITagAliasRegistry::get() ).parse( arg ).testSpec();
14754static const uint64_t nanosecondsInSecond = 1000000000;
14758 auto getCurrentNanosecondsSinceEpoch() -> uint64_t {
14759 return std::chrono::duration_cast<std::chrono::nanoseconds>( std::chrono::high_resolution_clock::now().time_since_epoch() ).count();
14763 auto estimateClockResolution() -> uint64_t {
14765 static const uint64_t iterations = 1000000;
14767 auto startTime = getCurrentNanosecondsSinceEpoch();
14769 for( std::size_t i = 0; i < iterations; ++i ) {
14772 uint64_t baseTicks = getCurrentNanosecondsSinceEpoch();
14774 ticks = getCurrentNanosecondsSinceEpoch();
14775 }
while( ticks == baseTicks );
14777 auto delta = ticks - baseTicks;
14783 if (ticks > startTime + 3 * nanosecondsInSecond) {
14784 return sum / ( i + 1u );
14790 return sum/iterations;
14793 auto getEstimatedClockResolution() -> uint64_t {
14794 static auto s_resolution = estimateClockResolution();
14795 return s_resolution;
14798 void Timer::start() {
14799 m_nanoseconds = getCurrentNanosecondsSinceEpoch();
14801 auto Timer::getElapsedNanoseconds() const -> uint64_t {
14802 return getCurrentNanosecondsSinceEpoch() - m_nanoseconds;
14804 auto Timer::getElapsedMicroseconds() const -> uint64_t {
14805 return getElapsedNanoseconds()/1000;
14807 auto Timer::getElapsedMilliseconds() const ->
unsigned int {
14808 return static_cast<unsigned int>(getElapsedMicroseconds()/1000);
14810 auto Timer::getElapsedSeconds() const ->
double {
14811 return getElapsedMicroseconds()/1000000.0;
14818#if defined(__clang__)
14819# pragma clang diagnostic push
14820# pragma clang diagnostic ignored "-Wexit-time-destructors"
14821# pragma clang diagnostic ignored "-Wglobal-constructors"
14825#if !defined(CATCH_CONFIG_ENABLE_CHRONO_STRINGMAKER)
14826#define CATCH_CONFIG_ENABLE_CHRONO_STRINGMAKER
14836 const std::string unprintableString =
"{?}";
14839 const int hexThreshold = 255;
14841 struct Endianness {
14842 enum Arch { Big, Little };
14844 static Arch which() {
14848 auto value = *
reinterpret_cast<char*
>(&one);
14849 return value ? Little : Big;
14854 std::string rawMemoryToString(
const void *
object, std::size_t size ) {
14856 int i = 0, end =
static_cast<int>( size ), inc = 1;
14857 if( Endianness::which() == Endianness::Little ) {
14862 unsigned char const *bytes =
static_cast<unsigned char const *
>(object);
14863 ReusableStringStream rss;
14864 rss <<
"0x" << std::setfill(
'0') << std::hex;
14865 for( ; i != end; i += inc )
14866 rss << std::setw(2) << static_cast<unsigned>(bytes[i]);
14871template<
typename T>
14872std::string fpToString( T value,
int precision ) {
14873 if (Catch::isnan(value)) {
14877 ReusableStringStream rss;
14878 rss << std::setprecision( precision )
14881 std::string d = rss.str();
14882 std::size_t i = d.find_last_not_of(
'0' );
14883 if( i != std::string::npos && i != d.size()-1 ) {
14886 d = d.substr( 0, i+1 );
14897std::string StringMaker<std::string>::convert(
const std::string& str) {
14898 if (!getCurrentContext().getConfig()->showInvisibles()) {
14899 return '"' + str + '"';
14902 std::string s(
"\"");
14903 for (
char c : str) {
14920#ifdef CATCH_CONFIG_CPP17_STRING_VIEW
14921std::string StringMaker<std::string_view>::convert(std::string_view str) {
14922 return ::Catch::Detail::stringify(std::string{ str });
14926std::string StringMaker<char const*>::convert(
char const* str) {
14928 return ::Catch::Detail::stringify(std::string{ str });
14930 return{
"{null string}" };
14933std::string StringMaker<char*>::convert(
char* str) {
14935 return ::Catch::Detail::stringify(std::string{ str });
14937 return{
"{null string}" };
14941#ifdef CATCH_CONFIG_WCHAR
14942std::string StringMaker<std::wstring>::convert(
const std::wstring& wstr) {
14944 s.reserve(wstr.size());
14945 for (
auto c : wstr) {
14946 s += (c <= 0xff) ? static_cast<char>(c) : '?';
14948 return ::Catch::Detail::stringify(s);
14951# ifdef CATCH_CONFIG_CPP17_STRING_VIEW
14952std::string StringMaker<std::wstring_view>::convert(std::wstring_view str) {
14953 return StringMaker<std::wstring>::convert(std::wstring(str));
14957std::string StringMaker<wchar_t const*>::convert(
wchar_t const * str) {
14959 return ::Catch::Detail::stringify(std::wstring{ str });
14961 return{
"{null string}" };
14964std::string StringMaker<wchar_t *>::convert(
wchar_t * str) {
14966 return ::Catch::Detail::stringify(std::wstring{ str });
14968 return{
"{null string}" };
14973#if defined(CATCH_CONFIG_CPP17_BYTE)
14975std::string StringMaker<std::byte>::convert(std::byte value) {
14976 return ::Catch::Detail::stringify(std::to_integer<unsigned long long>(value));
14980std::string StringMaker<int>::convert(
int value) {
14981 return ::Catch::Detail::stringify(
static_cast<long long>(value));
14983std::string StringMaker<long>::convert(
long value) {
14984 return ::Catch::Detail::stringify(
static_cast<long long>(value));
14986std::string StringMaker<long long>::convert(
long long value) {
14987 ReusableStringStream rss;
14989 if (value > Detail::hexThreshold) {
14990 rss <<
" (0x" << std::hex << value <<
')';
14995std::string StringMaker<unsigned int>::convert(
unsigned int value) {
14996 return ::Catch::Detail::stringify(
static_cast<unsigned long long>(value));
14998std::string StringMaker<unsigned long>::convert(
unsigned long value) {
14999 return ::Catch::Detail::stringify(
static_cast<unsigned long long>(value));
15001std::string StringMaker<unsigned long long>::convert(
unsigned long long value) {
15002 ReusableStringStream rss;
15004 if (value > Detail::hexThreshold) {
15005 rss <<
" (0x" << std::hex << value <<
')';
15010std::string StringMaker<bool>::convert(
bool b) {
15011 return b ?
"true" :
"false";
15014std::string StringMaker<signed char>::convert(
signed char value) {
15015 if (value ==
'\r') {
15017 }
else if (value ==
'\f') {
15019 }
else if (value ==
'\n') {
15021 }
else if (value ==
'\t') {
15023 }
else if (
'\0' <= value && value <
' ') {
15024 return ::Catch::Detail::stringify(
static_cast<unsigned int>(value));
15026 char chstr[] =
"' '";
15031std::string StringMaker<char>::convert(
char c) {
15032 return ::Catch::Detail::stringify(
static_cast<signed char>(c));
15034std::string StringMaker<unsigned char>::convert(
unsigned char c) {
15035 return ::Catch::Detail::stringify(
static_cast<char>(c));
15038std::string StringMaker<std::nullptr_t>::convert(std::nullptr_t) {
15042int StringMaker<float>::precision = 5;
15044std::string StringMaker<float>::convert(
float value) {
15045 return fpToString(value, precision) + 'f';
15048int StringMaker<double>::precision = 10;
15050std::string StringMaker<double>::convert(
double value) {
15051 return fpToString(value, precision);
15054std::string ratio_string<std::atto>::symbol() {
return "a"; }
15055std::string ratio_string<std::femto>::symbol() {
return "f"; }
15056std::string ratio_string<std::pico>::symbol() {
return "p"; }
15057std::string ratio_string<std::nano>::symbol() {
return "n"; }
15058std::string ratio_string<std::micro>::symbol() {
return "u"; }
15059std::string ratio_string<std::milli>::symbol() {
return "m"; }
15063#if defined(__clang__)
15064# pragma clang diagnostic pop
15072 Counts Counts::operator - ( Counts
const& other )
const {
15074 diff.passed = passed - other.passed;
15075 diff.failed = failed - other.failed;
15076 diff.failedButOk = failedButOk - other.failedButOk;
15080 Counts& Counts::operator += ( Counts
const& other ) {
15081 passed += other.passed;
15082 failed += other.failed;
15083 failedButOk += other.failedButOk;
15087 std::size_t Counts::total()
const {
15088 return passed + failed + failedButOk;
15090 bool Counts::allPassed()
const {
15091 return failed == 0 && failedButOk == 0;
15093 bool Counts::allOk()
const {
15094 return failed == 0;
15097 Totals Totals::operator - ( Totals
const& other )
const {
15099 diff.assertions = assertions - other.assertions;
15100 diff.testCases = testCases - other.testCases;
15104 Totals& Totals::operator += ( Totals
const& other ) {
15105 assertions += other.assertions;
15106 testCases += other.testCases;
15110 Totals Totals::delta( Totals
const& prevTotals )
const {
15111 Totals diff = *
this - prevTotals;
15112 if( diff.assertions.failed > 0 )
15113 ++diff.testCases.failed;
15114 else if( diff.assertions.failedButOk > 0 )
15115 ++diff.testCases.failedButOk;
15117 ++diff.testCases.passed;
15125#include <exception>
15128 bool uncaught_exceptions() {
15129#if defined(CATCH_CONFIG_CPP17_UNCAUGHT_EXCEPTIONS)
15130 return std::uncaught_exceptions() > 0;
15132 return std::uncaught_exception();
15144 (
unsigned int _majorVersion,
15145 unsigned int _minorVersion,
15146 unsigned int _patchNumber,
15147 char const *
const _branchName,
15148 unsigned int _buildNumber )
15149 : majorVersion( _majorVersion ),
15150 minorVersion( _minorVersion ),
15151 patchNumber( _patchNumber ),
15152 branchName( _branchName ),
15153 buildNumber( _buildNumber )
15156 std::ostream& operator << ( std::ostream& os, Version
const& version ) {
15157 os << version.majorVersion <<
'.'
15158 << version.minorVersion <<
'.'
15159 << version.patchNumber;
15161 if (version.branchName[0]) {
15162 os <<
'-' << version.branchName
15163 <<
'.' << version.buildNumber;
15168 Version
const& libraryVersion() {
15169 static Version version( 2, 12, 2,
"", 0 );
15179 WildcardPattern::WildcardPattern( std::string
const& pattern,
15180 CaseSensitive::Choice caseSensitivity )
15181 : m_caseSensitivity( caseSensitivity ),
15182 m_pattern( normaliseString( pattern ) )
15184 if( startsWith( m_pattern,
'*' ) ) {
15185 m_pattern = m_pattern.substr( 1 );
15186 m_wildcard = WildcardAtStart;
15188 if( endsWith( m_pattern,
'*' ) ) {
15189 m_pattern = m_pattern.substr( 0, m_pattern.size()-1 );
15190 m_wildcard =
static_cast<WildcardPosition
>( m_wildcard | WildcardAtEnd );
15194 bool WildcardPattern::matches( std::string
const& str )
const {
15195 switch( m_wildcard ) {
15197 return m_pattern == normaliseString( str );
15198 case WildcardAtStart:
15199 return endsWith( normaliseString( str ), m_pattern );
15200 case WildcardAtEnd:
15201 return startsWith( normaliseString( str ), m_pattern );
15202 case WildcardAtBothEnds:
15203 return contains( normaliseString( str ), m_pattern );
15205 CATCH_INTERNAL_ERROR(
"Unknown enum" );
15209 std::string WildcardPattern::normaliseString( std::string
const& str )
const {
15210 return trim( m_caseSensitivity == CaseSensitive::No ? toLower( str ) : str );
15217#include <type_traits>
15223 size_t trailingBytes(
unsigned char c) {
15224 if ((c & 0xE0) == 0xC0) {
15227 if ((c & 0xF0) == 0xE0) {
15230 if ((c & 0xF8) == 0xF0) {
15233 CATCH_INTERNAL_ERROR(
"Invalid multibyte utf-8 start byte encountered");
15236 uint32_t headerValue(
unsigned char c) {
15237 if ((c & 0xE0) == 0xC0) {
15240 if ((c & 0xF0) == 0xE0) {
15243 if ((c & 0xF8) == 0xF0) {
15246 CATCH_INTERNAL_ERROR(
"Invalid multibyte utf-8 start byte encountered");
15249 void hexEscapeChar(std::ostream& os,
unsigned char c) {
15250 std::ios_base::fmtflags f(os.flags());
15252 << std::uppercase << std::hex << std::setfill(
'0') << std::setw(2)
15253 <<
static_cast<int>(c);
15257 bool shouldNewline(XmlFormatting fmt) {
15258 return !!(
static_cast<std::underlying_type<XmlFormatting>::type
>(fmt & XmlFormatting::Newline));
15261 bool shouldIndent(XmlFormatting fmt) {
15262 return !!(
static_cast<std::underlying_type<XmlFormatting>::type
>(fmt & XmlFormatting::Indent));
15267 XmlFormatting operator | (XmlFormatting lhs, XmlFormatting rhs) {
15268 return static_cast<XmlFormatting
>(
15269 static_cast<std::underlying_type<XmlFormatting>::type
>(lhs) |
15270 static_cast<std::underlying_type<XmlFormatting>::type
>(rhs)
15274 XmlFormatting operator & (XmlFormatting lhs, XmlFormatting rhs) {
15275 return static_cast<XmlFormatting
>(
15276 static_cast<std::underlying_type<XmlFormatting>::type
>(lhs) &
15277 static_cast<std::underlying_type<XmlFormatting>::type
>(rhs)
15281 XmlEncode::XmlEncode( std::string
const& str, ForWhat forWhat )
15283 m_forWhat( forWhat )
15286 void XmlEncode::encodeTo( std::ostream& os )
const {
15290 for( std::size_t idx = 0; idx < m_str.size(); ++ idx ) {
15291 unsigned char c = m_str[idx];
15293 case '<': os <<
"<";
break;
15294 case '&': os <<
"&";
break;
15298 if (idx > 2 && m_str[idx - 1] ==
']' && m_str[idx - 2] ==
']')
15305 if (m_forWhat == ForAttributes)
15316 if (c < 0x09 || (c > 0x0D && c < 0x20) || c == 0x7F) {
15317 hexEscapeChar(os, c);
15335 hexEscapeChar(os, c);
15339 auto encBytes = trailingBytes(c);
15341 if (idx + encBytes - 1 >= m_str.size()) {
15342 hexEscapeChar(os, c);
15349 uint32_t value = headerValue(c);
15350 for (std::size_t n = 1; n < encBytes; ++n) {
15351 unsigned char nc = m_str[idx + n];
15352 valid &= ((nc & 0xC0) == 0x80);
15353 value = (value << 6) | (nc & 0x3F);
15361 (0x80 <= value && value < 0x800 && encBytes > 2) ||
15362 (0x800 < value && value < 0x10000 && encBytes > 3) ||
15364 (value >= 0x110000)
15366 hexEscapeChar(os, c);
15371 for (std::size_t n = 0; n < encBytes; ++n) {
15372 os << m_str[idx + n];
15374 idx += encBytes - 1;
15380 std::ostream& operator << ( std::ostream& os, XmlEncode
const& xmlEncode ) {
15381 xmlEncode.encodeTo( os );
15385 XmlWriter::ScopedElement::ScopedElement( XmlWriter* writer, XmlFormatting fmt )
15386 : m_writer( writer ),
15390 XmlWriter::ScopedElement::ScopedElement( ScopedElement&& other ) noexcept
15391 : m_writer( other.m_writer ),
15394 other.m_writer =
nullptr;
15395 other.m_fmt = XmlFormatting::None;
15397 XmlWriter::ScopedElement& XmlWriter::ScopedElement::operator=( ScopedElement&& other )
noexcept {
15399 m_writer->endElement();
15401 m_writer = other.m_writer;
15402 other.m_writer =
nullptr;
15403 m_fmt = other.m_fmt;
15404 other.m_fmt = XmlFormatting::None;
15408 XmlWriter::ScopedElement::~ScopedElement() {
15410 m_writer->endElement(m_fmt);
15414 XmlWriter::ScopedElement& XmlWriter::ScopedElement::writeText( std::string
const& text, XmlFormatting fmt ) {
15415 m_writer->writeText( text, fmt );
15419 XmlWriter::XmlWriter( std::ostream& os ) : m_os( os )
15421 writeDeclaration();
15424 XmlWriter::~XmlWriter() {
15425 while (!m_tags.empty()) {
15428 newlineIfNecessary();
15431 XmlWriter& XmlWriter::startElement( std::string
const& name, XmlFormatting fmt ) {
15433 newlineIfNecessary();
15434 if (shouldIndent(fmt)) {
15438 m_os <<
'<' << name;
15439 m_tags.push_back( name );
15440 m_tagIsOpen =
true;
15441 applyFormatting(fmt);
15445 XmlWriter::ScopedElement XmlWriter::scopedElement( std::string
const& name, XmlFormatting fmt ) {
15446 ScopedElement scoped(
this, fmt );
15447 startElement( name, fmt );
15451 XmlWriter& XmlWriter::endElement(XmlFormatting fmt) {
15452 m_indent = m_indent.substr(0, m_indent.size() - 2);
15454 if( m_tagIsOpen ) {
15456 m_tagIsOpen =
false;
15458 newlineIfNecessary();
15459 if (shouldIndent(fmt)) {
15462 m_os <<
"</" << m_tags.back() <<
">";
15464 m_os << std::flush;
15465 applyFormatting(fmt);
15470 XmlWriter& XmlWriter::writeAttribute( std::string
const& name, std::string
const& attribute ) {
15471 if( !name.empty() && !attribute.empty() )
15472 m_os <<
' ' << name <<
"=\"" << XmlEncode( attribute, XmlEncode::ForAttributes ) <<
'"';
15476 XmlWriter& XmlWriter::writeAttribute( std::string
const& name,
bool attribute ) {
15477 m_os <<
' ' << name <<
"=\"" << ( attribute ?
"true" :
"false" ) <<
'"';
15481 XmlWriter& XmlWriter::writeText( std::string
const& text, XmlFormatting fmt) {
15482 if( !text.empty() ){
15483 bool tagWasOpen = m_tagIsOpen;
15485 if (tagWasOpen && shouldIndent(fmt)) {
15488 m_os << XmlEncode( text );
15489 applyFormatting(fmt);
15494 XmlWriter& XmlWriter::writeComment( std::string
const& text, XmlFormatting fmt) {
15496 if (shouldIndent(fmt)) {
15499 m_os <<
"<!--" << text <<
"-->";
15500 applyFormatting(fmt);
15504 void XmlWriter::writeStylesheetRef( std::string
const& url ) {
15505 m_os <<
"<?xml-stylesheet type=\"text/xsl\" href=\"" << url <<
"\"?>\n";
15508 XmlWriter& XmlWriter::writeBlankLine() {
15514 void XmlWriter::ensureTagClosed() {
15515 if( m_tagIsOpen ) {
15516 m_os <<
'>' << std::flush;
15517 newlineIfNecessary();
15518 m_tagIsOpen =
false;
15522 void XmlWriter::applyFormatting(XmlFormatting fmt) {
15523 m_needsNewline = shouldNewline(fmt);
15526 void XmlWriter::writeDeclaration() {
15527 m_os <<
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n";
15530 void XmlWriter::newlineIfNecessary() {
15531 if( m_needsNewline ) {
15533 m_needsNewline =
false;
15547 void prepareExpandedExpression(AssertionResult& result) {
15548 result.getExpandedExpression();
15553 std::string getFormattedDuration(
double duration ) {
15558 const std::size_t maxDoubleSize = DBL_MAX_10_EXP + 1 + 1 + 3 + 1;
15559 char buffer[maxDoubleSize];
15564 sprintf_s(buffer,
"%.3f", duration);
15566 std::sprintf(buffer,
"%.3f", duration);
15568 return std::string(buffer);
15571 std::string serializeFilters( std::vector<std::string>
const& container ) {
15572 ReusableStringStream oss;
15574 for (
auto&& filter : container)
15586 TestEventListenerBase::TestEventListenerBase(ReporterConfig
const & _config)
15587 :StreamingReporterBase(_config) {}
15589 std::set<Verbosity> TestEventListenerBase::getSupportedVerbosities() {
15590 return { Verbosity::Quiet, Verbosity::Normal, Verbosity::High };
15593 void TestEventListenerBase::assertionStarting(AssertionInfo
const &) {}
15595 bool TestEventListenerBase::assertionEnded(AssertionStats
const &) {
15605#ifdef CATCH_PLATFORM_MAC
15606 const char* failedString() {
return "FAILED"; }
15607 const char* passedString() {
return "PASSED"; }
15609 const char* failedString() {
return "failed"; }
15610 const char* passedString() {
return "passed"; }
15614 Catch::Colour::Code dimColour() {
return Catch::Colour::FileName; }
15616 std::string bothOrAll( std::size_t count ) {
15617 return count == 1 ? std::string() :
15618 count == 2 ?
"both " :
"all " ;
15631void printTotals(std::ostream& out,
const Totals& totals) {
15632 if (totals.testCases.total() == 0) {
15633 out <<
"No tests ran.";
15634 }
else if (totals.testCases.failed == totals.testCases.total()) {
15635 Colour colour(Colour::ResultError);
15636 const std::string qualify_assertions_failed =
15637 totals.assertions.failed == totals.assertions.total() ?
15638 bothOrAll(totals.assertions.failed) : std::string();
15640 "Failed " << bothOrAll(totals.testCases.failed)
15641 << pluralise(totals.testCases.failed,
"test case") <<
", "
15642 "failed " << qualify_assertions_failed <<
15643 pluralise(totals.assertions.failed,
"assertion") <<
'.';
15644 }
else if (totals.assertions.total() == 0) {
15646 "Passed " << bothOrAll(totals.testCases.total())
15647 << pluralise(totals.testCases.total(),
"test case")
15648 <<
" (no assertions).";
15649 }
else if (totals.assertions.failed) {
15650 Colour colour(Colour::ResultError);
15652 "Failed " << pluralise(totals.testCases.failed,
"test case") <<
", "
15653 "failed " << pluralise(totals.assertions.failed,
"assertion") <<
'.';
15655 Colour colour(Colour::ResultSuccess);
15657 "Passed " << bothOrAll(totals.testCases.passed)
15658 << pluralise(totals.testCases.passed,
"test case") <<
15659 " with " << pluralise(totals.assertions.passed,
"assertion") <<
'.';
15664class AssertionPrinter {
15666 AssertionPrinter& operator= (AssertionPrinter
const&) =
delete;
15667 AssertionPrinter(AssertionPrinter
const&) =
delete;
15668 AssertionPrinter(std::ostream& _stream, AssertionStats
const& _stats,
bool _printInfoMessages)
15670 , result(_stats.assertionResult)
15671 , messages(_stats.infoMessages)
15672 , itMessage(_stats.infoMessages.begin())
15673 , printInfoMessages(_printInfoMessages) {}
15678 itMessage = messages.begin();
15680 switch (result.getResultType()) {
15681 case ResultWas::Ok:
15682 printResultType(Colour::ResultSuccess, passedString());
15683 printOriginalExpression();
15684 printReconstructedExpression();
15685 if (!result.hasExpression())
15686 printRemainingMessages(Colour::None);
15688 printRemainingMessages();
15690 case ResultWas::ExpressionFailed:
15692 printResultType(Colour::ResultSuccess, failedString() + std::string(
" - but was ok"));
15694 printResultType(Colour::Error, failedString());
15695 printOriginalExpression();
15696 printReconstructedExpression();
15697 printRemainingMessages();
15699 case ResultWas::ThrewException:
15700 printResultType(Colour::Error, failedString());
15701 printIssue(
"unexpected exception with message:");
15703 printExpressionWas();
15704 printRemainingMessages();
15706 case ResultWas::FatalErrorCondition:
15707 printResultType(Colour::Error, failedString());
15708 printIssue(
"fatal error condition with message:");
15710 printExpressionWas();
15711 printRemainingMessages();
15713 case ResultWas::DidntThrowException:
15714 printResultType(Colour::Error, failedString());
15715 printIssue(
"expected exception, got none");
15716 printExpressionWas();
15717 printRemainingMessages();
15719 case ResultWas::Info:
15720 printResultType(Colour::None,
"info");
15722 printRemainingMessages();
15724 case ResultWas::Warning:
15725 printResultType(Colour::None,
"warning");
15727 printRemainingMessages();
15729 case ResultWas::ExplicitFailure:
15730 printResultType(Colour::Error, failedString());
15731 printIssue(
"explicitly");
15732 printRemainingMessages(Colour::None);
15735 case ResultWas::Unknown:
15736 case ResultWas::FailureBit:
15737 case ResultWas::Exception:
15738 printResultType(Colour::Error,
"** internal error **");
15744 void printSourceInfo()
const {
15745 Colour colourGuard(Colour::FileName);
15746 stream << result.getSourceInfo() <<
':';
15749 void printResultType(Colour::Code colour, std::string
const& passOrFail)
const {
15750 if (!passOrFail.empty()) {
15752 Colour colourGuard(colour);
15753 stream <<
' ' << passOrFail;
15759 void printIssue(std::string
const& issue)
const {
15760 stream <<
' ' << issue;
15763 void printExpressionWas() {
15764 if (result.hasExpression()) {
15767 Colour colour(dimColour());
15768 stream <<
" expression was:";
15770 printOriginalExpression();
15774 void printOriginalExpression()
const {
15775 if (result.hasExpression()) {
15776 stream <<
' ' << result.getExpression();
15780 void printReconstructedExpression()
const {
15781 if (result.hasExpandedExpression()) {
15783 Colour colour(dimColour());
15784 stream <<
" for: ";
15786 stream << result.getExpandedExpression();
15790 void printMessage() {
15791 if (itMessage != messages.end()) {
15792 stream <<
" '" << itMessage->message <<
'\'';
15797 void printRemainingMessages(Colour::Code colour = dimColour()) {
15798 if (itMessage == messages.end())
15801 const auto itEnd = messages.cend();
15802 const auto N =
static_cast<std::size_t
>(std::distance(itMessage, itEnd));
15805 Colour colourGuard(colour);
15806 stream <<
" with " << pluralise(N,
"message") <<
':';
15809 while (itMessage != itEnd) {
15811 if (printInfoMessages || itMessage->type != ResultWas::Info) {
15813 if (itMessage != itEnd) {
15814 Colour colourGuard(dimColour());
15824 std::ostream& stream;
15825 AssertionResult
const& result;
15826 std::vector<MessageInfo> messages;
15827 std::vector<MessageInfo>::const_iterator itMessage;
15828 bool printInfoMessages;
15833 std::string CompactReporter::getDescription() {
15834 return "Reports test results on a single line, suitable for IDEs";
15837 ReporterPreferences CompactReporter::getPreferences()
const {
15838 return m_reporterPrefs;
15841 void CompactReporter::noMatchingTestCases( std::string
const& spec ) {
15842 stream <<
"No test cases matched '" << spec <<
'\'' << std::endl;
15845 void CompactReporter::assertionStarting( AssertionInfo
const& ) {}
15847 bool CompactReporter::assertionEnded( AssertionStats
const& _assertionStats ) {
15848 AssertionResult
const& result = _assertionStats.assertionResult;
15850 bool printInfoMessages =
true;
15853 if( !m_config->includeSuccessfulResults() && result.isOk() ) {
15854 if( result.getResultType() != ResultWas::Warning )
15856 printInfoMessages =
false;
15859 AssertionPrinter printer( stream, _assertionStats, printInfoMessages );
15862 stream << std::endl;
15866 void CompactReporter::sectionEnded(SectionStats
const& _sectionStats) {
15867 if (m_config->showDurations() == ShowDurations::Always) {
15868 stream << getFormattedDuration(_sectionStats.durationInSeconds) <<
" s: " << _sectionStats.sectionInfo.name << std::endl;
15872 void CompactReporter::testRunEnded( TestRunStats
const& _testRunStats ) {
15873 printTotals( stream, _testRunStats.totals );
15874 stream <<
'\n' << std::endl;
15875 StreamingReporterBase::testRunEnded( _testRunStats );
15878 CompactReporter::~CompactReporter() {}
15880 CATCH_REGISTER_REPORTER(
"compact", CompactReporter )
15889#if defined(_MSC_VER)
15890#pragma warning(push)
15891#pragma warning(disable:4061)
15895#if defined(__clang__)
15896# pragma clang diagnostic push
15898# pragma clang diagnostic ignored "-Wunused-function"
15906class ConsoleAssertionPrinter {
15908 ConsoleAssertionPrinter& operator= (ConsoleAssertionPrinter
const&) =
delete;
15909 ConsoleAssertionPrinter(ConsoleAssertionPrinter
const&) =
delete;
15910 ConsoleAssertionPrinter(std::ostream& _stream, AssertionStats
const& _stats,
bool _printInfoMessages)
15913 result(_stats.assertionResult),
15914 colour(Colour::None),
15915 message(result.getMessage()),
15916 messages(_stats.infoMessages),
15917 printInfoMessages(_printInfoMessages) {
15918 switch (result.getResultType()) {
15919 case ResultWas::Ok:
15920 colour = Colour::Success;
15921 passOrFail =
"PASSED";
15923 if (_stats.infoMessages.size() == 1)
15924 messageLabel =
"with message";
15925 if (_stats.infoMessages.size() > 1)
15926 messageLabel =
"with messages";
15928 case ResultWas::ExpressionFailed:
15929 if (result.isOk()) {
15930 colour = Colour::Success;
15931 passOrFail =
"FAILED - but was ok";
15933 colour = Colour::Error;
15934 passOrFail =
"FAILED";
15936 if (_stats.infoMessages.size() == 1)
15937 messageLabel =
"with message";
15938 if (_stats.infoMessages.size() > 1)
15939 messageLabel =
"with messages";
15941 case ResultWas::ThrewException:
15942 colour = Colour::Error;
15943 passOrFail =
"FAILED";
15944 messageLabel =
"due to unexpected exception with ";
15945 if (_stats.infoMessages.size() == 1)
15946 messageLabel += "message";
15947 if (_stats.infoMessages.size() > 1)
15948 messageLabel += "messages";
15950 case ResultWas::FatalErrorCondition:
15951 colour = Colour::Error;
15952 passOrFail =
"FAILED";
15953 messageLabel =
"due to a fatal error condition";
15955 case ResultWas::DidntThrowException:
15956 colour = Colour::Error;
15957 passOrFail =
"FAILED";
15958 messageLabel =
"because no exception was thrown where one was expected";
15960 case ResultWas::Info:
15961 messageLabel =
"info";
15963 case ResultWas::Warning:
15964 messageLabel =
"warning";
15966 case ResultWas::ExplicitFailure:
15967 passOrFail =
"FAILED";
15968 colour = Colour::Error;
15969 if (_stats.infoMessages.size() == 1)
15970 messageLabel =
"explicitly with message";
15971 if (_stats.infoMessages.size() > 1)
15972 messageLabel =
"explicitly with messages";
15975 case ResultWas::Unknown:
15976 case ResultWas::FailureBit:
15977 case ResultWas::Exception:
15978 passOrFail =
"** internal error **";
15979 colour = Colour::Error;
15984 void print()
const {
15986 if (stats.totals.assertions.total() > 0) {
15988 printOriginalExpression();
15989 printReconstructedExpression();
15997 void printResultType()
const {
15998 if (!passOrFail.empty()) {
15999 Colour colourGuard(colour);
16000 stream << passOrFail <<
":\n";
16003 void printOriginalExpression()
const {
16004 if (result.hasExpression()) {
16005 Colour colourGuard(Colour::OriginalExpression);
16007 stream << result.getExpressionInMacro();
16011 void printReconstructedExpression()
const {
16012 if (result.hasExpandedExpression()) {
16013 stream <<
"with expansion:\n";
16014 Colour colourGuard(Colour::ReconstructedExpression);
16015 stream << Column(result.getExpandedExpression()).indent(2) <<
'\n';
16018 void printMessage()
const {
16019 if (!messageLabel.empty())
16020 stream << messageLabel <<
':' <<
'\n';
16021 for (
auto const& msg : messages) {
16023 if (printInfoMessages || msg.type != ResultWas::Info)
16024 stream << Column(msg.message).indent(2) <<
'\n';
16027 void printSourceInfo()
const {
16028 Colour colourGuard(Colour::FileName);
16029 stream << result.getSourceInfo() <<
": ";
16032 std::ostream& stream;
16033 AssertionStats
const& stats;
16034 AssertionResult
const& result;
16035 Colour::Code colour;
16036 std::string passOrFail;
16037 std::string messageLabel;
16038 std::string message;
16039 std::vector<MessageInfo> messages;
16040 bool printInfoMessages;
16043std::size_t makeRatio(std::size_t number, std::size_t total) {
16044 std::size_t ratio = total > 0 ? CATCH_CONFIG_CONSOLE_WIDTH * number / total : 0;
16045 return (ratio == 0 && number > 0) ? 1 : ratio;
16048std::size_t& findMax(std::size_t& i, std::size_t& j, std::size_t& k) {
16049 if (i > j && i > k)
16058 enum Justification { Left, Right };
16061 Justification justification;
16063struct ColumnBreak {};
16075 static const uint64_t s_nanosecondsInAMicrosecond = 1000;
16076 static const uint64_t s_nanosecondsInAMillisecond = 1000 * s_nanosecondsInAMicrosecond;
16077 static const uint64_t s_nanosecondsInASecond = 1000 * s_nanosecondsInAMillisecond;
16078 static const uint64_t s_nanosecondsInAMinute = 60 * s_nanosecondsInASecond;
16080 double m_inNanoseconds;
16084 explicit Duration(
double inNanoseconds, Unit units = Unit::Auto)
16085 : m_inNanoseconds(inNanoseconds),
16087 if (m_units == Unit::Auto) {
16088 if (m_inNanoseconds < s_nanosecondsInAMicrosecond)
16089 m_units = Unit::Nanoseconds;
16090 else if (m_inNanoseconds < s_nanosecondsInAMillisecond)
16091 m_units = Unit::Microseconds;
16092 else if (m_inNanoseconds < s_nanosecondsInASecond)
16093 m_units = Unit::Milliseconds;
16094 else if (m_inNanoseconds < s_nanosecondsInAMinute)
16095 m_units = Unit::Seconds;
16097 m_units = Unit::Minutes;
16102 auto value() const ->
double {
16104 case Unit::Microseconds:
16105 return m_inNanoseconds /
static_cast<double>(s_nanosecondsInAMicrosecond);
16106 case Unit::Milliseconds:
16107 return m_inNanoseconds /
static_cast<double>(s_nanosecondsInAMillisecond);
16108 case Unit::Seconds:
16109 return m_inNanoseconds /
static_cast<double>(s_nanosecondsInASecond);
16110 case Unit::Minutes:
16111 return m_inNanoseconds /
static_cast<double>(s_nanosecondsInAMinute);
16113 return m_inNanoseconds;
16116 auto unitsAsString() const -> std::
string {
16118 case Unit::Nanoseconds:
16120 case Unit::Microseconds:
16122 case Unit::Milliseconds:
16124 case Unit::Seconds:
16126 case Unit::Minutes:
16129 return "** internal error **";
16133 friend auto operator << (std::ostream& os, Duration
const& duration) -> std::ostream& {
16134 return os << duration.value() <<
' ' << duration.unitsAsString();
16139class TablePrinter {
16140 std::ostream& m_os;
16141 std::vector<ColumnInfo> m_columnInfos;
16142 std::ostringstream m_oss;
16143 int m_currentColumn = -1;
16144 bool m_isOpen =
false;
16147 TablePrinter( std::ostream& os, std::vector<ColumnInfo> columnInfos )
16149 m_columnInfos( std::move( columnInfos ) ) {}
16151 auto columnInfos() const -> std::vector<ColumnInfo> const& {
16152 return m_columnInfos;
16158 *
this << RowBreak();
16160 Columns headerCols;
16162 for (
auto const& info : m_columnInfos) {
16163 headerCols += Column(info.name).width(static_cast<std::size_t>(info.width - 2));
16164 headerCols += spacer;
16166 m_os << headerCols <<
'\n';
16168 m_os << Catch::getLineOfChars<
'-'>() <<
'\n';
16173 *
this << RowBreak();
16179 template<
typename T>
16180 friend TablePrinter&
operator << (TablePrinter& tp, T
const& value) {
16185 friend TablePrinter&
operator << (TablePrinter& tp, ColumnBreak) {
16186 auto colStr = tp.m_oss.str();
16187 const auto strSize = colStr.size();
16190 if (tp.m_currentColumn ==
static_cast<int>(tp.m_columnInfos.size() - 1)) {
16191 tp.m_currentColumn = -1;
16194 tp.m_currentColumn++;
16196 auto colInfo = tp.m_columnInfos[tp.m_currentColumn];
16197 auto padding = (strSize + 1 < static_cast<std::size_t>(colInfo.width))
16198 ? std::string(colInfo.width - (strSize + 1), ' ')
16200 if (colInfo.justification == ColumnInfo::Left)
16201 tp.m_os << colStr << padding <<
' ';
16203 tp.m_os << padding << colStr <<
' ';
16207 friend TablePrinter&
operator << (TablePrinter& tp, RowBreak) {
16208 if (tp.m_currentColumn > 0) {
16210 tp.m_currentColumn = -1;
16216ConsoleReporter::ConsoleReporter(ReporterConfig
const& config)
16217 : StreamingReporterBase(config),
16218 m_tablePrinter(new TablePrinter(config.stream(),
16219 [&config]() -> std::vector<ColumnInfo> {
16220 if (config.fullConfig()->benchmarkNoAnalysis())
16223 {
"benchmark name", CATCH_CONFIG_CONSOLE_WIDTH - 43, ColumnInfo::Left },
16224 {
" samples", 14, ColumnInfo::Right },
16225 {
" iterations", 14, ColumnInfo::Right },
16226 {
" mean", 14, ColumnInfo::Right }
16232 {
"benchmark name", CATCH_CONFIG_CONSOLE_WIDTH - 43, ColumnInfo::Left },
16233 {
"samples mean std dev", 14, ColumnInfo::Right },
16234 {
"iterations low mean low std dev", 14, ColumnInfo::Right },
16235 {
"estimated high mean high std dev", 14, ColumnInfo::Right }
16239ConsoleReporter::~ConsoleReporter() =
default;
16241std::string ConsoleReporter::getDescription() {
16242 return "Reports test results as plain lines of text";
16245void ConsoleReporter::noMatchingTestCases(std::string
const& spec) {
16246 stream <<
"No test cases matched '" << spec <<
'\'' << std::endl;
16249void ConsoleReporter::reportInvalidArguments(std::string
const&arg){
16250 stream <<
"Invalid Filter: " << arg << std::endl;
16253void ConsoleReporter::assertionStarting(AssertionInfo
const&) {}
16255bool ConsoleReporter::assertionEnded(AssertionStats
const& _assertionStats) {
16256 AssertionResult
const& result = _assertionStats.assertionResult;
16258 bool includeResults = m_config->includeSuccessfulResults() || !result.isOk();
16261 if (!includeResults && result.getResultType() != ResultWas::Warning)
16266 ConsoleAssertionPrinter printer(stream, _assertionStats, includeResults);
16268 stream << std::endl;
16272void ConsoleReporter::sectionStarting(SectionInfo
const& _sectionInfo) {
16273 m_tablePrinter->close();
16274 m_headerPrinted =
false;
16275 StreamingReporterBase::sectionStarting(_sectionInfo);
16277void ConsoleReporter::sectionEnded(SectionStats
const& _sectionStats) {
16278 m_tablePrinter->close();
16279 if (_sectionStats.missingAssertions) {
16281 Colour colour(Colour::ResultError);
16282 if (m_sectionStack.size() > 1)
16283 stream <<
"\nNo assertions in section";
16285 stream <<
"\nNo assertions in test case";
16286 stream <<
" '" << _sectionStats.sectionInfo.name <<
"'\n" << std::endl;
16288 if (m_config->showDurations() == ShowDurations::Always) {
16289 stream << getFormattedDuration(_sectionStats.durationInSeconds) <<
" s: " << _sectionStats.sectionInfo.name << std::endl;
16291 if (m_headerPrinted) {
16292 m_headerPrinted =
false;
16294 StreamingReporterBase::sectionEnded(_sectionStats);
16297#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
16298void ConsoleReporter::benchmarkPreparing(std::string
const& name) {
16299 lazyPrintWithoutClosingBenchmarkTable();
16301 auto nameCol = Column(name).width(
static_cast<std::size_t
>(m_tablePrinter->columnInfos()[0].width - 2));
16303 bool firstLine =
true;
16304 for (
auto line : nameCol) {
16306 (*m_tablePrinter) << ColumnBreak() << ColumnBreak() << ColumnBreak();
16310 (*m_tablePrinter) << line << ColumnBreak();
16314void ConsoleReporter::benchmarkStarting(BenchmarkInfo
const& info) {
16315 (*m_tablePrinter) << info.samples << ColumnBreak()
16316 << info.iterations << ColumnBreak();
16317 if (!m_config->benchmarkNoAnalysis())
16318 (*m_tablePrinter) << Duration(info.estimatedDuration) << ColumnBreak();
16320void ConsoleReporter::benchmarkEnded(BenchmarkStats<>
const& stats) {
16321 if (m_config->benchmarkNoAnalysis())
16323 (*m_tablePrinter) << Duration(stats.mean.point.count()) << ColumnBreak();
16327 (*m_tablePrinter) << ColumnBreak()
16328 << Duration(stats.mean.point.count()) << ColumnBreak()
16329 << Duration(stats.mean.lower_bound.count()) << ColumnBreak()
16330 << Duration(stats.mean.upper_bound.count()) << ColumnBreak() << ColumnBreak()
16331 << Duration(stats.standardDeviation.point.count()) << ColumnBreak()
16332 << Duration(stats.standardDeviation.lower_bound.count()) << ColumnBreak()
16333 << Duration(stats.standardDeviation.upper_bound.count()) << ColumnBreak() << ColumnBreak() << ColumnBreak() << ColumnBreak() << ColumnBreak();
16337void ConsoleReporter::benchmarkFailed(std::string
const& error) {
16338 Colour colour(Colour::Red);
16340 <<
"Benchmark failed (" << error <<
')'
16341 << ColumnBreak() << RowBreak();
16345void ConsoleReporter::testCaseEnded(TestCaseStats
const& _testCaseStats) {
16346 m_tablePrinter->close();
16347 StreamingReporterBase::testCaseEnded(_testCaseStats);
16348 m_headerPrinted =
false;
16350void ConsoleReporter::testGroupEnded(TestGroupStats
const& _testGroupStats) {
16351 if (currentGroupInfo.used) {
16352 printSummaryDivider();
16353 stream <<
"Summary for group '" << _testGroupStats.groupInfo.name <<
"':\n";
16354 printTotals(_testGroupStats.totals);
16355 stream <<
'\n' << std::endl;
16357 StreamingReporterBase::testGroupEnded(_testGroupStats);
16359void ConsoleReporter::testRunEnded(TestRunStats
const& _testRunStats) {
16360 printTotalsDivider(_testRunStats.totals);
16361 printTotals(_testRunStats.totals);
16362 stream << std::endl;
16363 StreamingReporterBase::testRunEnded(_testRunStats);
16365void ConsoleReporter::testRunStarting(TestRunInfo
const& _testInfo) {
16366 StreamingReporterBase::testRunStarting(_testInfo);
16367 printTestFilters();
16370void ConsoleReporter::lazyPrint() {
16372 m_tablePrinter->close();
16373 lazyPrintWithoutClosingBenchmarkTable();
16376void ConsoleReporter::lazyPrintWithoutClosingBenchmarkTable() {
16378 if (!currentTestRunInfo.used)
16379 lazyPrintRunInfo();
16380 if (!currentGroupInfo.used)
16381 lazyPrintGroupInfo();
16383 if (!m_headerPrinted) {
16384 printTestCaseAndSectionHeader();
16385 m_headerPrinted =
true;
16388void ConsoleReporter::lazyPrintRunInfo() {
16389 stream << '\n' << getLineOfChars<'~'>() <<
'\n';
16390 Colour colour(Colour::SecondaryText);
16391 stream << currentTestRunInfo->name
16392 <<
" is a Catch v" << libraryVersion() <<
" host application.\n"
16393 <<
"Run with -? for options\n\n";
16395 if (m_config->rngSeed() != 0)
16396 stream <<
"Randomness seeded to: " << m_config->rngSeed() <<
"\n\n";
16398 currentTestRunInfo.used =
true;
16400void ConsoleReporter::lazyPrintGroupInfo() {
16401 if (!currentGroupInfo->name.empty() && currentGroupInfo->groupsCounts > 1) {
16402 printClosedHeader(
"Group: " + currentGroupInfo->name);
16403 currentGroupInfo.used =
true;
16406void ConsoleReporter::printTestCaseAndSectionHeader() {
16407 assert(!m_sectionStack.empty());
16408 printOpenHeader(currentTestCaseInfo->name);
16410 if (m_sectionStack.size() > 1) {
16411 Colour colourGuard(Colour::Headers);
16414 it = m_sectionStack.begin() + 1,
16415 itEnd = m_sectionStack.end();
16416 for (; it != itEnd; ++it)
16417 printHeaderString(it->name, 2);
16420 SourceLineInfo lineInfo = m_sectionStack.back().lineInfo;
16422 stream << getLineOfChars<
'-'>() <<
'\n';
16423 Colour colourGuard(Colour::FileName);
16424 stream << lineInfo <<
'\n';
16425 stream << getLineOfChars<
'.'>() <<
'\n' << std::endl;
16428void ConsoleReporter::printClosedHeader(std::string
const& _name) {
16429 printOpenHeader(_name);
16430 stream << getLineOfChars<
'.'>() <<
'\n';
16432void ConsoleReporter::printOpenHeader(std::string
const& _name) {
16433 stream << getLineOfChars<
'-'>() <<
'\n';
16435 Colour colourGuard(Colour::Headers);
16436 printHeaderString(_name);
16442void ConsoleReporter::printHeaderString(std::string
const& _string, std::size_t indent) {
16443 std::size_t i = _string.find(
": ");
16444 if (i != std::string::npos)
16448 stream << Column(_string).indent(indent + i).initialIndent(indent) <<
'\n';
16451struct SummaryColumn {
16453 SummaryColumn( std::string _label, Colour::Code _colour )
16454 : label( std::move( _label ) ),
16455 colour( _colour ) {}
16456 SummaryColumn addRow( std::size_t count ) {
16457 ReusableStringStream rss;
16459 std::string row = rss.str();
16460 for (
auto& oldRow : rows) {
16461 while (oldRow.size() < row.size())
16462 oldRow =
' ' + oldRow;
16463 while (oldRow.size() > row.size())
16466 rows.push_back(row);
16471 Colour::Code colour;
16472 std::vector<std::string> rows;
16476void ConsoleReporter::printTotals( Totals
const& totals ) {
16477 if (totals.testCases.total() == 0) {
16478 stream << Colour(Colour::Warning) <<
"No tests ran\n";
16479 }
else if (totals.assertions.total() > 0 && totals.testCases.allPassed()) {
16480 stream << Colour(Colour::ResultSuccess) <<
"All tests passed";
16482 << pluralise(totals.assertions.passed,
"assertion") <<
" in "
16483 << pluralise(totals.testCases.passed,
"test case") <<
')'
16487 std::vector<SummaryColumn> columns;
16488 columns.push_back(SummaryColumn(
"", Colour::None)
16489 .addRow(totals.testCases.total())
16490 .addRow(totals.assertions.total()));
16491 columns.push_back(SummaryColumn(
"passed", Colour::Success)
16492 .addRow(totals.testCases.passed)
16493 .addRow(totals.assertions.passed));
16494 columns.push_back(SummaryColumn(
"failed", Colour::ResultError)
16495 .addRow(totals.testCases.failed)
16496 .addRow(totals.assertions.failed));
16497 columns.push_back(SummaryColumn(
"failed as expected", Colour::ResultExpectedFailure)
16498 .addRow(totals.testCases.failedButOk)
16499 .addRow(totals.assertions.failedButOk));
16501 printSummaryRow(
"test cases", columns, 0);
16502 printSummaryRow(
"assertions", columns, 1);
16505void ConsoleReporter::printSummaryRow(std::string
const& label, std::vector<SummaryColumn>
const& cols, std::size_t row) {
16506 for (
auto col : cols) {
16507 std::string value = col.rows[row];
16508 if (col.label.empty()) {
16509 stream << label <<
": ";
16513 stream << Colour(Colour::Warning) <<
"- none -";
16514 }
else if (value !=
"0") {
16515 stream << Colour(Colour::LightGrey) <<
" | ";
16516 stream << Colour(col.colour)
16517 << value <<
' ' << col.label;
16523void ConsoleReporter::printTotalsDivider(Totals
const& totals) {
16524 if (totals.testCases.total() > 0) {
16525 std::size_t failedRatio = makeRatio(totals.testCases.failed, totals.testCases.total());
16526 std::size_t failedButOkRatio = makeRatio(totals.testCases.failedButOk, totals.testCases.total());
16527 std::size_t passedRatio = makeRatio(totals.testCases.passed, totals.testCases.total());
16528 while (failedRatio + failedButOkRatio + passedRatio < CATCH_CONFIG_CONSOLE_WIDTH - 1)
16529 findMax(failedRatio, failedButOkRatio, passedRatio)++;
16530 while (failedRatio + failedButOkRatio + passedRatio > CATCH_CONFIG_CONSOLE_WIDTH - 1)
16531 findMax(failedRatio, failedButOkRatio, passedRatio)--;
16533 stream << Colour(Colour::Error) << std::string(failedRatio,
'=');
16534 stream << Colour(Colour::ResultExpectedFailure) << std::string(failedButOkRatio,
'=');
16535 if (totals.testCases.allPassed())
16536 stream << Colour(Colour::ResultSuccess) << std::string(passedRatio,
'=');
16538 stream << Colour(Colour::Success) << std::string(passedRatio,
'=');
16540 stream << Colour(Colour::Warning) << std::string(CATCH_CONFIG_CONSOLE_WIDTH - 1,
'=');
16544void ConsoleReporter::printSummaryDivider() {
16545 stream << getLineOfChars<
'-'>() <<
'\n';
16548void ConsoleReporter::printTestFilters() {
16549 if (m_config->testSpec().hasFilters()) {
16550 Colour guard(Colour::BrightYellow);
16551 stream <<
"Filters: " << serializeFilters(m_config->getTestsOrTags()) <<
'\n';
16555CATCH_REGISTER_REPORTER(
"console", ConsoleReporter)
16559#if defined(_MSC_VER)
16560#pragma warning(pop)
16563#if defined(__clang__)
16564# pragma clang diagnostic pop
16572#include <algorithm>
16577 std::string getCurrentTimestamp() {
16581 std::time(&rawtime);
16582 auto const timeStampSize =
sizeof(
"2017-01-16T17:06:45Z");
16585 std::tm timeInfo = {};
16586 gmtime_s(&timeInfo, &rawtime);
16589 timeInfo = std::gmtime(&rawtime);
16592 char timeStamp[timeStampSize];
16593 const char *
const fmt =
"%Y-%m-%dT%H:%M:%SZ";
16596 std::strftime(timeStamp, timeStampSize, fmt, &timeInfo);
16598 std::strftime(timeStamp, timeStampSize, fmt, timeInfo);
16600 return std::string(timeStamp);
16603 std::string fileNameTag(
const std::vector<std::string> &tags) {
16604 auto it = std::find_if(begin(tags),
16606 [] (std::string
const& tag) {
return tag.front() ==
'#'; });
16607 if (it != tags.end())
16608 return it->substr(1);
16609 return std::string();
16613 JunitReporter::JunitReporter( ReporterConfig
const& _config )
16614 : CumulativeReporterBase( _config ),
16615 xml( _config.stream() )
16617 m_reporterPrefs.shouldRedirectStdOut =
true;
16618 m_reporterPrefs.shouldReportAllAssertions =
true;
16621 JunitReporter::~JunitReporter() {}
16623 std::string JunitReporter::getDescription() {
16624 return "Reports test results in an XML format that looks like Ant's junitreport target";
16627 void JunitReporter::noMatchingTestCases( std::string
const& ) {}
16629 void JunitReporter::testRunStarting( TestRunInfo
const& runInfo ) {
16630 CumulativeReporterBase::testRunStarting( runInfo );
16631 xml.startElement(
"testsuites" );
16634 void JunitReporter::testGroupStarting( GroupInfo
const& groupInfo ) {
16635 suiteTimer.start();
16636 stdOutForSuite.clear();
16637 stdErrForSuite.clear();
16638 unexpectedExceptions = 0;
16639 CumulativeReporterBase::testGroupStarting( groupInfo );
16642 void JunitReporter::testCaseStarting( TestCaseInfo
const& testCaseInfo ) {
16643 m_okToFail = testCaseInfo.okToFail();
16646 bool JunitReporter::assertionEnded( AssertionStats
const& assertionStats ) {
16647 if( assertionStats.assertionResult.getResultType() == ResultWas::ThrewException && !m_okToFail )
16648 unexpectedExceptions++;
16649 return CumulativeReporterBase::assertionEnded( assertionStats );
16652 void JunitReporter::testCaseEnded( TestCaseStats
const& testCaseStats ) {
16653 stdOutForSuite += testCaseStats.stdOut;
16654 stdErrForSuite += testCaseStats.stdErr;
16655 CumulativeReporterBase::testCaseEnded( testCaseStats );
16658 void JunitReporter::testGroupEnded( TestGroupStats
const& testGroupStats ) {
16659 double suiteTime = suiteTimer.getElapsedSeconds();
16660 CumulativeReporterBase::testGroupEnded( testGroupStats );
16661 writeGroup( *m_testGroups.back(), suiteTime );
16664 void JunitReporter::testRunEndedCumulative() {
16668 void JunitReporter::writeGroup( TestGroupNode
const& groupNode,
double suiteTime ) {
16669 XmlWriter::ScopedElement e = xml.scopedElement(
"testsuite" );
16671 TestGroupStats
const& stats = groupNode.value;
16672 xml.writeAttribute(
"name", stats.groupInfo.name );
16673 xml.writeAttribute(
"errors", unexpectedExceptions );
16674 xml.writeAttribute(
"failures", stats.totals.assertions.failed-unexpectedExceptions );
16675 xml.writeAttribute(
"tests", stats.totals.assertions.total() );
16676 xml.writeAttribute(
"hostname",
"tbd" );
16677 if( m_config->showDurations() == ShowDurations::Never )
16678 xml.writeAttribute(
"time",
"" );
16680 xml.writeAttribute(
"time", suiteTime );
16681 xml.writeAttribute(
"timestamp", getCurrentTimestamp() );
16684 if (m_config->hasTestFilters() || m_config->rngSeed() != 0) {
16685 auto properties = xml.scopedElement(
"properties");
16686 if (m_config->hasTestFilters()) {
16687 xml.scopedElement(
"property")
16688 .writeAttribute(
"name",
"filters")
16689 .writeAttribute(
"value", serializeFilters(m_config->getTestsOrTags()));
16691 if (m_config->rngSeed() != 0) {
16692 xml.scopedElement(
"property")
16693 .writeAttribute(
"name",
"random-seed")
16694 .writeAttribute(
"value", m_config->rngSeed());
16699 for(
auto const& child : groupNode.children )
16700 writeTestCase( *child );
16702 xml.scopedElement(
"system-out" ).writeText( trim( stdOutForSuite ), XmlFormatting::Newline );
16703 xml.scopedElement(
"system-err" ).writeText( trim( stdErrForSuite ), XmlFormatting::Newline );
16706 void JunitReporter::writeTestCase( TestCaseNode
const& testCaseNode ) {
16707 TestCaseStats
const& stats = testCaseNode.value;
16711 assert( testCaseNode.children.size() == 1 );
16712 SectionNode
const& rootSection = *testCaseNode.children.front();
16714 std::string className = stats.testInfo.className;
16716 if( className.empty() ) {
16717 className = fileNameTag(stats.testInfo.tags);
16718 if ( className.empty() )
16719 className =
"global";
16722 if ( !m_config->name().empty() )
16723 className = m_config->name() + "." + className;
16725 writeSection( className,
"", rootSection );
16728 void JunitReporter::writeSection( std::string
const& className,
16729 std::string
const& rootName,
16730 SectionNode
const& sectionNode ) {
16731 std::string name = trim( sectionNode.stats.sectionInfo.name );
16732 if( !rootName.empty() )
16733 name = rootName + '/' + name;
16735 if( !sectionNode.assertions.empty() ||
16736 !sectionNode.stdOut.empty() ||
16737 !sectionNode.stdErr.empty() ) {
16738 XmlWriter::ScopedElement e = xml.scopedElement(
"testcase" );
16739 if( className.empty() ) {
16740 xml.writeAttribute(
"classname", name );
16741 xml.writeAttribute(
"name",
"root" );
16744 xml.writeAttribute(
"classname", className );
16745 xml.writeAttribute(
"name", name );
16747 xml.writeAttribute(
"time", ::Catch::Detail::stringify( sectionNode.stats.durationInSeconds ) );
16752 xml.writeAttribute(
"status",
"run" );
16754 writeAssertions( sectionNode );
16756 if( !sectionNode.stdOut.empty() )
16757 xml.scopedElement(
"system-out" ).writeText( trim( sectionNode.stdOut ), XmlFormatting::Newline );
16758 if( !sectionNode.stdErr.empty() )
16759 xml.scopedElement(
"system-err" ).writeText( trim( sectionNode.stdErr ), XmlFormatting::Newline );
16761 for(
auto const& childNode : sectionNode.childSections )
16762 if( className.empty() )
16763 writeSection( name,
"", *childNode );
16765 writeSection( className, name, *childNode );
16768 void JunitReporter::writeAssertions( SectionNode
const& sectionNode ) {
16769 for(
auto const& assertion : sectionNode.assertions )
16770 writeAssertion( assertion );
16773 void JunitReporter::writeAssertion( AssertionStats
const& stats ) {
16774 AssertionResult
const& result = stats.assertionResult;
16775 if( !result.isOk() ) {
16776 std::string elementName;
16777 switch( result.getResultType() ) {
16778 case ResultWas::ThrewException:
16779 case ResultWas::FatalErrorCondition:
16780 elementName =
"error";
16782 case ResultWas::ExplicitFailure:
16783 case ResultWas::ExpressionFailed:
16784 case ResultWas::DidntThrowException:
16785 elementName =
"failure";
16789 case ResultWas::Info:
16790 case ResultWas::Warning:
16791 case ResultWas::Ok:
16792 case ResultWas::Unknown:
16793 case ResultWas::FailureBit:
16794 case ResultWas::Exception:
16795 elementName =
"internalError";
16799 XmlWriter::ScopedElement e = xml.scopedElement( elementName );
16801 xml.writeAttribute(
"message", result.getExpression() );
16802 xml.writeAttribute(
"type", result.getTestMacroName() );
16804 ReusableStringStream rss;
16805 if (stats.totals.assertions.total() > 0) {
16806 rss <<
"FAILED" <<
":\n";
16807 if (result.hasExpression()) {
16809 rss << result.getExpressionInMacro();
16812 if (result.hasExpandedExpression()) {
16813 rss <<
"with expansion:\n";
16814 rss << Column(result.getExpandedExpression()).indent(2) <<
'\n';
16820 if( !result.getMessage().empty() )
16821 rss << result.getMessage() <<
'\n';
16822 for(
auto const& msg : stats.infoMessages )
16823 if( msg.type == ResultWas::Info )
16824 rss << msg.message <<
'\n';
16826 rss <<
"at " << result.getSourceInfo();
16827 xml.writeText( rss.str(), XmlFormatting::Newline );
16831 CATCH_REGISTER_REPORTER(
"junit", JunitReporter )
16841 ListeningReporter::ListeningReporter() {
16843 m_preferences.shouldReportAllAssertions =
true;
16846 void ListeningReporter::addListener( IStreamingReporterPtr&& listener ) {
16847 m_listeners.push_back( std::move( listener ) );
16850 void ListeningReporter::addReporter(IStreamingReporterPtr&& reporter) {
16851 assert(!m_reporter &&
"Listening reporter can wrap only 1 real reporter");
16852 m_reporter = std::move( reporter );
16853 m_preferences.shouldRedirectStdOut = m_reporter->getPreferences().shouldRedirectStdOut;
16856 ReporterPreferences ListeningReporter::getPreferences()
const {
16857 return m_preferences;
16860 std::set<Verbosity> ListeningReporter::getSupportedVerbosities() {
16861 return std::set<Verbosity>{ };
16864 void ListeningReporter::noMatchingTestCases( std::string
const& spec ) {
16865 for (
auto const& listener : m_listeners ) {
16866 listener->noMatchingTestCases( spec );
16868 m_reporter->noMatchingTestCases( spec );
16871 void ListeningReporter::reportInvalidArguments(std::string
const&arg){
16872 for (
auto const& listener : m_listeners ) {
16873 listener->reportInvalidArguments( arg );
16875 m_reporter->reportInvalidArguments( arg );
16878#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
16879 void ListeningReporter::benchmarkPreparing( std::string
const& name ) {
16880 for (
auto const& listener : m_listeners) {
16881 listener->benchmarkPreparing(name);
16883 m_reporter->benchmarkPreparing(name);
16885 void ListeningReporter::benchmarkStarting( BenchmarkInfo
const& benchmarkInfo ) {
16886 for (
auto const& listener : m_listeners ) {
16887 listener->benchmarkStarting( benchmarkInfo );
16889 m_reporter->benchmarkStarting( benchmarkInfo );
16891 void ListeningReporter::benchmarkEnded( BenchmarkStats<>
const& benchmarkStats ) {
16892 for (
auto const& listener : m_listeners ) {
16893 listener->benchmarkEnded( benchmarkStats );
16895 m_reporter->benchmarkEnded( benchmarkStats );
16898 void ListeningReporter::benchmarkFailed( std::string
const& error ) {
16899 for (
auto const& listener : m_listeners) {
16900 listener->benchmarkFailed(error);
16902 m_reporter->benchmarkFailed(error);
16906 void ListeningReporter::testRunStarting( TestRunInfo
const& testRunInfo ) {
16907 for (
auto const& listener : m_listeners ) {
16908 listener->testRunStarting( testRunInfo );
16910 m_reporter->testRunStarting( testRunInfo );
16913 void ListeningReporter::testGroupStarting( GroupInfo
const& groupInfo ) {
16914 for (
auto const& listener : m_listeners ) {
16915 listener->testGroupStarting( groupInfo );
16917 m_reporter->testGroupStarting( groupInfo );
16920 void ListeningReporter::testCaseStarting( TestCaseInfo
const& testInfo ) {
16921 for (
auto const& listener : m_listeners ) {
16922 listener->testCaseStarting( testInfo );
16924 m_reporter->testCaseStarting( testInfo );
16927 void ListeningReporter::sectionStarting( SectionInfo
const& sectionInfo ) {
16928 for (
auto const& listener : m_listeners ) {
16929 listener->sectionStarting( sectionInfo );
16931 m_reporter->sectionStarting( sectionInfo );
16934 void ListeningReporter::assertionStarting( AssertionInfo
const& assertionInfo ) {
16935 for (
auto const& listener : m_listeners ) {
16936 listener->assertionStarting( assertionInfo );
16938 m_reporter->assertionStarting( assertionInfo );
16942 bool ListeningReporter::assertionEnded( AssertionStats
const& assertionStats ) {
16943 for(
auto const& listener : m_listeners ) {
16944 static_cast<void>( listener->assertionEnded( assertionStats ) );
16946 return m_reporter->assertionEnded( assertionStats );
16949 void ListeningReporter::sectionEnded( SectionStats
const& sectionStats ) {
16950 for (
auto const& listener : m_listeners ) {
16951 listener->sectionEnded( sectionStats );
16953 m_reporter->sectionEnded( sectionStats );
16956 void ListeningReporter::testCaseEnded( TestCaseStats
const& testCaseStats ) {
16957 for (
auto const& listener : m_listeners ) {
16958 listener->testCaseEnded( testCaseStats );
16960 m_reporter->testCaseEnded( testCaseStats );
16963 void ListeningReporter::testGroupEnded( TestGroupStats
const& testGroupStats ) {
16964 for (
auto const& listener : m_listeners ) {
16965 listener->testGroupEnded( testGroupStats );
16967 m_reporter->testGroupEnded( testGroupStats );
16970 void ListeningReporter::testRunEnded( TestRunStats
const& testRunStats ) {
16971 for (
auto const& listener : m_listeners ) {
16972 listener->testRunEnded( testRunStats );
16974 m_reporter->testRunEnded( testRunStats );
16977 void ListeningReporter::skipTest( TestCaseInfo
const& testInfo ) {
16978 for (
auto const& listener : m_listeners ) {
16979 listener->skipTest( testInfo );
16981 m_reporter->skipTest( testInfo );
16984 bool ListeningReporter::isMulti()
const {
16992#if defined(_MSC_VER)
16993#pragma warning(push)
16994#pragma warning(disable:4061)
17000 XmlReporter::XmlReporter( ReporterConfig
const& _config )
17001 : StreamingReporterBase( _config ),
17002 m_xml(_config.stream())
17004 m_reporterPrefs.shouldRedirectStdOut =
true;
17005 m_reporterPrefs.shouldReportAllAssertions =
true;
17008 XmlReporter::~XmlReporter() =
default;
17010 std::string XmlReporter::getDescription() {
17011 return "Reports test results as an XML document";
17014 std::string XmlReporter::getStylesheetRef()
const {
17015 return std::string();
17018 void XmlReporter::writeSourceInfo( SourceLineInfo
const& sourceInfo ) {
17020 .writeAttribute(
"filename", sourceInfo.file )
17021 .writeAttribute(
"line", sourceInfo.line );
17024 void XmlReporter::noMatchingTestCases( std::string
const& s ) {
17025 StreamingReporterBase::noMatchingTestCases( s );
17028 void XmlReporter::testRunStarting( TestRunInfo
const& testInfo ) {
17029 StreamingReporterBase::testRunStarting( testInfo );
17030 std::string stylesheetRef = getStylesheetRef();
17031 if( !stylesheetRef.empty() )
17032 m_xml.writeStylesheetRef( stylesheetRef );
17033 m_xml.startElement(
"Catch" );
17034 if( !m_config->name().empty() )
17035 m_xml.writeAttribute(
"name", m_config->name() );
17036 if (m_config->testSpec().hasFilters())
17037 m_xml.writeAttribute(
"filters", serializeFilters( m_config->getTestsOrTags() ) );
17038 if( m_config->rngSeed() != 0 )
17039 m_xml.scopedElement(
"Randomness" )
17040 .writeAttribute(
"seed", m_config->rngSeed() );
17043 void XmlReporter::testGroupStarting( GroupInfo
const& groupInfo ) {
17044 StreamingReporterBase::testGroupStarting( groupInfo );
17045 m_xml.startElement(
"Group" )
17046 .writeAttribute(
"name", groupInfo.name );
17049 void XmlReporter::testCaseStarting( TestCaseInfo
const& testInfo ) {
17050 StreamingReporterBase::testCaseStarting(testInfo);
17051 m_xml.startElement(
"TestCase" )
17052 .writeAttribute(
"name", trim( testInfo.name ) )
17053 .writeAttribute(
"description", testInfo.description )
17054 .writeAttribute(
"tags", testInfo.tagsAsString() );
17056 writeSourceInfo( testInfo.lineInfo );
17058 if ( m_config->showDurations() == ShowDurations::Always )
17059 m_testCaseTimer.start();
17060 m_xml.ensureTagClosed();
17063 void XmlReporter::sectionStarting( SectionInfo
const& sectionInfo ) {
17064 StreamingReporterBase::sectionStarting( sectionInfo );
17065 if( m_sectionDepth++ > 0 ) {
17066 m_xml.startElement(
"Section" )
17067 .writeAttribute(
"name", trim( sectionInfo.name ) );
17068 writeSourceInfo( sectionInfo.lineInfo );
17069 m_xml.ensureTagClosed();
17073 void XmlReporter::assertionStarting( AssertionInfo
const& ) { }
17075 bool XmlReporter::assertionEnded( AssertionStats
const& assertionStats ) {
17077 AssertionResult
const& result = assertionStats.assertionResult;
17079 bool includeResults = m_config->includeSuccessfulResults() || !result.isOk();
17081 if( includeResults || result.getResultType() == ResultWas::Warning ) {
17083 for(
auto const& msg : assertionStats.infoMessages ) {
17084 if( msg.type == ResultWas::Info && includeResults ) {
17085 m_xml.scopedElement(
"Info" )
17086 .writeText( msg.message );
17087 }
else if ( msg.type == ResultWas::Warning ) {
17088 m_xml.scopedElement(
"Warning" )
17089 .writeText( msg.message );
17095 if( !includeResults && result.getResultType() != ResultWas::Warning )
17099 if( result.hasExpression() ) {
17100 m_xml.startElement(
"Expression" )
17101 .writeAttribute(
"success", result.succeeded() )
17102 .writeAttribute(
"type", result.getTestMacroName() );
17104 writeSourceInfo( result.getSourceInfo() );
17106 m_xml.scopedElement(
"Original" )
17107 .writeText( result.getExpression() );
17108 m_xml.scopedElement(
"Expanded" )
17109 .writeText( result.getExpandedExpression() );
17113 switch( result.getResultType() ) {
17114 case ResultWas::ThrewException:
17115 m_xml.startElement(
"Exception" );
17116 writeSourceInfo( result.getSourceInfo() );
17117 m_xml.writeText( result.getMessage() );
17118 m_xml.endElement();
17120 case ResultWas::FatalErrorCondition:
17121 m_xml.startElement(
"FatalErrorCondition" );
17122 writeSourceInfo( result.getSourceInfo() );
17123 m_xml.writeText( result.getMessage() );
17124 m_xml.endElement();
17126 case ResultWas::Info:
17127 m_xml.scopedElement(
"Info" )
17128 .writeText( result.getMessage() );
17130 case ResultWas::Warning:
17133 case ResultWas::ExplicitFailure:
17134 m_xml.startElement(
"Failure" );
17135 writeSourceInfo( result.getSourceInfo() );
17136 m_xml.writeText( result.getMessage() );
17137 m_xml.endElement();
17143 if( result.hasExpression() )
17144 m_xml.endElement();
17149 void XmlReporter::sectionEnded( SectionStats
const& sectionStats ) {
17150 StreamingReporterBase::sectionEnded( sectionStats );
17151 if( --m_sectionDepth > 0 ) {
17152 XmlWriter::ScopedElement e = m_xml.scopedElement(
"OverallResults" );
17153 e.writeAttribute(
"successes", sectionStats.assertions.passed );
17154 e.writeAttribute(
"failures", sectionStats.assertions.failed );
17155 e.writeAttribute(
"expectedFailures", sectionStats.assertions.failedButOk );
17157 if ( m_config->showDurations() == ShowDurations::Always )
17158 e.writeAttribute(
"durationInSeconds", sectionStats.durationInSeconds );
17160 m_xml.endElement();
17164 void XmlReporter::testCaseEnded( TestCaseStats
const& testCaseStats ) {
17165 StreamingReporterBase::testCaseEnded( testCaseStats );
17166 XmlWriter::ScopedElement e = m_xml.scopedElement(
"OverallResult" );
17167 e.writeAttribute(
"success", testCaseStats.totals.assertions.allOk() );
17169 if ( m_config->showDurations() == ShowDurations::Always )
17170 e.writeAttribute(
"durationInSeconds", m_testCaseTimer.getElapsedSeconds() );
17172 if( !testCaseStats.stdOut.empty() )
17173 m_xml.scopedElement(
"StdOut" ).writeText( trim( testCaseStats.stdOut ), XmlFormatting::Newline );
17174 if( !testCaseStats.stdErr.empty() )
17175 m_xml.scopedElement(
"StdErr" ).writeText( trim( testCaseStats.stdErr ), XmlFormatting::Newline );
17177 m_xml.endElement();
17180 void XmlReporter::testGroupEnded( TestGroupStats
const& testGroupStats ) {
17181 StreamingReporterBase::testGroupEnded( testGroupStats );
17183 m_xml.scopedElement(
"OverallResults" )
17184 .writeAttribute(
"successes", testGroupStats.totals.assertions.passed )
17185 .writeAttribute(
"failures", testGroupStats.totals.assertions.failed )
17186 .writeAttribute(
"expectedFailures", testGroupStats.totals.assertions.failedButOk );
17187 m_xml.endElement();
17190 void XmlReporter::testRunEnded( TestRunStats
const& testRunStats ) {
17191 StreamingReporterBase::testRunEnded( testRunStats );
17192 m_xml.scopedElement(
"OverallResults" )
17193 .writeAttribute(
"successes", testRunStats.totals.assertions.passed )
17194 .writeAttribute(
"failures", testRunStats.totals.assertions.failed )
17195 .writeAttribute(
"expectedFailures", testRunStats.totals.assertions.failedButOk );
17196 m_xml.endElement();
17199#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
17200 void XmlReporter::benchmarkPreparing(std::string
const& name) {
17201 m_xml.startElement(
"BenchmarkResults")
17202 .writeAttribute(
"name", name);
17205 void XmlReporter::benchmarkStarting(BenchmarkInfo
const &info) {
17206 m_xml.writeAttribute(
"samples", info.samples)
17207 .writeAttribute(
"resamples", info.resamples)
17208 .writeAttribute(
"iterations", info.iterations)
17209 .writeAttribute(
"clockResolution", info.clockResolution)
17210 .writeAttribute(
"estimatedDuration", info.estimatedDuration)
17211 .writeComment(
"All values in nano seconds");
17214 void XmlReporter::benchmarkEnded(BenchmarkStats<>
const& benchmarkStats) {
17215 m_xml.startElement(
"mean")
17216 .writeAttribute(
"value", benchmarkStats.mean.point.count())
17217 .writeAttribute(
"lowerBound", benchmarkStats.mean.lower_bound.count())
17218 .writeAttribute(
"upperBound", benchmarkStats.mean.upper_bound.count())
17219 .writeAttribute(
"ci", benchmarkStats.mean.confidence_interval);
17220 m_xml.endElement();
17221 m_xml.startElement(
"standardDeviation")
17222 .writeAttribute(
"value", benchmarkStats.standardDeviation.point.count())
17223 .writeAttribute(
"lowerBound", benchmarkStats.standardDeviation.lower_bound.count())
17224 .writeAttribute(
"upperBound", benchmarkStats.standardDeviation.upper_bound.count())
17225 .writeAttribute(
"ci", benchmarkStats.standardDeviation.confidence_interval);
17226 m_xml.endElement();
17227 m_xml.startElement(
"outliers")
17228 .writeAttribute(
"variance", benchmarkStats.outlierVariance)
17229 .writeAttribute(
"lowMild", benchmarkStats.outliers.low_mild)
17230 .writeAttribute(
"lowSevere", benchmarkStats.outliers.low_severe)
17231 .writeAttribute(
"highMild", benchmarkStats.outliers.high_mild)
17232 .writeAttribute(
"highSevere", benchmarkStats.outliers.high_severe);
17233 m_xml.endElement();
17234 m_xml.endElement();
17237 void XmlReporter::benchmarkFailed(std::string
const &error) {
17238 m_xml.scopedElement(
"failed").
17239 writeAttribute(
"message", error);
17240 m_xml.endElement();
17244 CATCH_REGISTER_REPORTER(
"xml", XmlReporter )
17248#if defined(_MSC_VER)
17249#pragma warning(pop)
17254 LeakDetector leakDetector;
17258#pragma clang diagnostic pop
17264#ifdef CATCH_CONFIG_MAIN
17269#if defined(CATCH_CONFIG_WCHAR) && defined(CATCH_PLATFORM_WINDOWS) && defined(_UNICODE) && !defined(DO_NOT_USE_WMAIN)
17271extern "C" int wmain (
int argc,
wchar_t * argv[],
wchar_t * []) {
17274int main (
int argc,
char * argv[]) {
17277 return Catch::Session().run( argc, argv );
17283int main (
int argc,
char *
const argv[]) {
17284#if !CATCH_ARC_ENABLED
17285 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
17288 Catch::registerTestMethods();
17289 int result = Catch::Session().run( argc, (
char**)argv );
17291#if !CATCH_ARC_ENABLED
17303#if !defined(CATCH_CONFIG_IMPL_ONLY)
17305#ifdef CLARA_CONFIG_MAIN_NOT_DEFINED
17306# undef CLARA_CONFIG_MAIN
17309#if !defined(CATCH_CONFIG_DISABLE)
17312#ifdef CATCH_CONFIG_PREFIX_ALL
17314#define CATCH_REQUIRE( ... ) INTERNAL_CATCH_TEST( "CATCH_REQUIRE", Catch::ResultDisposition::Normal, __VA_ARGS__ )
17315#define CATCH_REQUIRE_FALSE( ... ) INTERNAL_CATCH_TEST( "CATCH_REQUIRE_FALSE", Catch::ResultDisposition::Normal | Catch::ResultDisposition::FalseTest, __VA_ARGS__ )
17317#define CATCH_REQUIRE_THROWS( ... ) INTERNAL_CATCH_THROWS( "CATCH_REQUIRE_THROWS", Catch::ResultDisposition::Normal, __VA_ARGS__ )
17318#define CATCH_REQUIRE_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( "CATCH_REQUIRE_THROWS_AS", exceptionType, Catch::ResultDisposition::Normal, expr )
17319#define CATCH_REQUIRE_THROWS_WITH( expr, matcher ) INTERNAL_CATCH_THROWS_STR_MATCHES( "CATCH_REQUIRE_THROWS_WITH", Catch::ResultDisposition::Normal, matcher, expr )
17320#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
17321#define CATCH_REQUIRE_THROWS_MATCHES( expr, exceptionType, matcher ) INTERNAL_CATCH_THROWS_MATCHES( "CATCH_REQUIRE_THROWS_MATCHES", exceptionType, Catch::ResultDisposition::Normal, matcher, expr )
17323#define CATCH_REQUIRE_NOTHROW( ... ) INTERNAL_CATCH_NO_THROW( "CATCH_REQUIRE_NOTHROW", Catch::ResultDisposition::Normal, __VA_ARGS__ )
17325#define CATCH_CHECK( ... ) INTERNAL_CATCH_TEST( "CATCH_CHECK", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
17326#define CATCH_CHECK_FALSE( ... ) INTERNAL_CATCH_TEST( "CATCH_CHECK_FALSE", Catch::ResultDisposition::ContinueOnFailure | Catch::ResultDisposition::FalseTest, __VA_ARGS__ )
17327#define CATCH_CHECKED_IF( ... ) INTERNAL_CATCH_IF( "CATCH_CHECKED_IF", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
17328#define CATCH_CHECKED_ELSE( ... ) INTERNAL_CATCH_ELSE( "CATCH_CHECKED_ELSE", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
17329#define CATCH_CHECK_NOFAIL( ... ) INTERNAL_CATCH_TEST( "CATCH_CHECK_NOFAIL", Catch::ResultDisposition::ContinueOnFailure | Catch::ResultDisposition::SuppressFail, __VA_ARGS__ )
17331#define CATCH_CHECK_THROWS( ... ) INTERNAL_CATCH_THROWS( "CATCH_CHECK_THROWS", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
17332#define CATCH_CHECK_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( "CATCH_CHECK_THROWS_AS", exceptionType, Catch::ResultDisposition::ContinueOnFailure, expr )
17333#define CATCH_CHECK_THROWS_WITH( expr, matcher ) INTERNAL_CATCH_THROWS_STR_MATCHES( "CATCH_CHECK_THROWS_WITH", Catch::ResultDisposition::ContinueOnFailure, matcher, expr )
17334#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
17335#define CATCH_CHECK_THROWS_MATCHES( expr, exceptionType, matcher ) INTERNAL_CATCH_THROWS_MATCHES( "CATCH_CHECK_THROWS_MATCHES", exceptionType, Catch::ResultDisposition::ContinueOnFailure, matcher, expr )
17337#define CATCH_CHECK_NOTHROW( ... ) INTERNAL_CATCH_NO_THROW( "CATCH_CHECK_NOTHROW", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
17339#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
17340#define CATCH_CHECK_THAT( arg, matcher ) INTERNAL_CHECK_THAT( "CATCH_CHECK_THAT", matcher, Catch::ResultDisposition::ContinueOnFailure, arg )
17342#define CATCH_REQUIRE_THAT( arg, matcher ) INTERNAL_CHECK_THAT( "CATCH_REQUIRE_THAT", matcher, Catch::ResultDisposition::Normal, arg )
17345#define CATCH_INFO( msg ) INTERNAL_CATCH_INFO( "CATCH_INFO", msg )
17346#define CATCH_UNSCOPED_INFO( msg ) INTERNAL_CATCH_UNSCOPED_INFO( "CATCH_UNSCOPED_INFO", msg )
17347#define CATCH_WARN( msg ) INTERNAL_CATCH_MSG( "CATCH_WARN", Catch::ResultWas::Warning, Catch::ResultDisposition::ContinueOnFailure, msg )
17348#define CATCH_CAPTURE( ... ) INTERNAL_CATCH_CAPTURE( INTERNAL_CATCH_UNIQUE_NAME(capturer), "CATCH_CAPTURE",__VA_ARGS__ )
17350#define CATCH_TEST_CASE( ... ) INTERNAL_CATCH_TESTCASE( __VA_ARGS__ )
17351#define CATCH_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEST_CASE_METHOD( className, __VA_ARGS__ )
17352#define CATCH_METHOD_AS_TEST_CASE( method, ... ) INTERNAL_CATCH_METHOD_AS_TEST_CASE( method, __VA_ARGS__ )
17353#define CATCH_REGISTER_TEST_CASE( Function, ... ) INTERNAL_CATCH_REGISTER_TESTCASE( Function, __VA_ARGS__ )
17354#define CATCH_SECTION( ... ) INTERNAL_CATCH_SECTION( __VA_ARGS__ )
17355#define CATCH_DYNAMIC_SECTION( ... ) INTERNAL_CATCH_DYNAMIC_SECTION( __VA_ARGS__ )
17356#define CATCH_FAIL( ... ) INTERNAL_CATCH_MSG( "CATCH_FAIL", Catch::ResultWas::ExplicitFailure, Catch::ResultDisposition::Normal, __VA_ARGS__ )
17357#define CATCH_FAIL_CHECK( ... ) INTERNAL_CATCH_MSG( "CATCH_FAIL_CHECK", Catch::ResultWas::ExplicitFailure, Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
17358#define CATCH_SUCCEED( ... ) INTERNAL_CATCH_MSG( "CATCH_SUCCEED", Catch::ResultWas::Ok, Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
17360#define CATCH_ANON_TEST_CASE() INTERNAL_CATCH_TESTCASE()
17362#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
17363#define CATCH_TEMPLATE_TEST_CASE( ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE( __VA_ARGS__ )
17364#define CATCH_TEMPLATE_TEST_CASE_SIG( ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_SIG( __VA_ARGS__ )
17365#define CATCH_TEMPLATE_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ )
17366#define CATCH_TEMPLATE_TEST_CASE_METHOD_SIG( className, ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_SIG( className, __VA_ARGS__ )
17367#define CATCH_TEMPLATE_PRODUCT_TEST_CASE( ... ) INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE( __VA_ARGS__ )
17368#define CATCH_TEMPLATE_PRODUCT_TEST_CASE_SIG( ... ) INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_SIG( __VA_ARGS__ )
17369#define CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, __VA_ARGS__ )
17370#define CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG( className, ... ) INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG( className, __VA_ARGS__ )
17372#define CATCH_TEMPLATE_TEST_CASE( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE( __VA_ARGS__ ) )
17373#define CATCH_TEMPLATE_TEST_CASE_SIG( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_SIG( __VA_ARGS__ ) )
17374#define CATCH_TEMPLATE_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ ) )
17375#define CATCH_TEMPLATE_TEST_CASE_METHOD_SIG( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_SIG( className, __VA_ARGS__ ) )
17376#define CATCH_TEMPLATE_PRODUCT_TEST_CASE( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE( __VA_ARGS__ ) )
17377#define CATCH_TEMPLATE_PRODUCT_TEST_CASE_SIG( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_SIG( __VA_ARGS__ ) )
17378#define CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, __VA_ARGS__ ) )
17379#define CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG( className, __VA_ARGS__ ) )
17382#if !defined(CATCH_CONFIG_RUNTIME_STATIC_REQUIRE)
17383#define CATCH_STATIC_REQUIRE( ... ) static_assert( __VA_ARGS__ , #__VA_ARGS__ ); CATCH_SUCCEED( #__VA_ARGS__ )
17384#define CATCH_STATIC_REQUIRE_FALSE( ... ) static_assert( !(__VA_ARGS__), "!(" #__VA_ARGS__ ")" ); CATCH_SUCCEED( #__VA_ARGS__ )
17386#define CATCH_STATIC_REQUIRE( ... ) CATCH_REQUIRE( __VA_ARGS__ )
17387#define CATCH_STATIC_REQUIRE_FALSE( ... ) CATCH_REQUIRE_FALSE( __VA_ARGS__ )
17391#define CATCH_SCENARIO( ... ) CATCH_TEST_CASE( "Scenario: " __VA_ARGS__ )
17392#define CATCH_SCENARIO_METHOD( className, ... ) INTERNAL_CATCH_TEST_CASE_METHOD( className, "Scenario: " __VA_ARGS__ )
17393#define CATCH_GIVEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " Given: " << desc )
17394#define CATCH_AND_GIVEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( "And given: " << desc )
17395#define CATCH_WHEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " When: " << desc )
17396#define CATCH_AND_WHEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " And when: " << desc )
17397#define CATCH_THEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " Then: " << desc )
17398#define CATCH_AND_THEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " And: " << desc )
17400#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
17401#define CATCH_BENCHMARK(...) \
17402 INTERNAL_CATCH_BENCHMARK(INTERNAL_CATCH_UNIQUE_NAME(____C_A_T_C_H____B_E_N_C_H____), INTERNAL_CATCH_GET_1_ARG(__VA_ARGS__,,), INTERNAL_CATCH_GET_2_ARG(__VA_ARGS__,,))
17403#define CATCH_BENCHMARK_ADVANCED(name) \
17404 INTERNAL_CATCH_BENCHMARK_ADVANCED(INTERNAL_CATCH_UNIQUE_NAME(____C_A_T_C_H____B_E_N_C_H____), name)
17410#define REQUIRE( ... ) INTERNAL_CATCH_TEST( "REQUIRE", Catch::ResultDisposition::Normal, __VA_ARGS__ )
17411#define REQUIRE_FALSE( ... ) INTERNAL_CATCH_TEST( "REQUIRE_FALSE", Catch::ResultDisposition::Normal | Catch::ResultDisposition::FalseTest, __VA_ARGS__ )
17413#define REQUIRE_THROWS( ... ) INTERNAL_CATCH_THROWS( "REQUIRE_THROWS", Catch::ResultDisposition::Normal, __VA_ARGS__ )
17414#define REQUIRE_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( "REQUIRE_THROWS_AS", exceptionType, Catch::ResultDisposition::Normal, expr )
17415#define REQUIRE_THROWS_WITH( expr, matcher ) INTERNAL_CATCH_THROWS_STR_MATCHES( "REQUIRE_THROWS_WITH", Catch::ResultDisposition::Normal, matcher, expr )
17416#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
17417#define REQUIRE_THROWS_MATCHES( expr, exceptionType, matcher ) INTERNAL_CATCH_THROWS_MATCHES( "REQUIRE_THROWS_MATCHES", exceptionType, Catch::ResultDisposition::Normal, matcher, expr )
17419#define REQUIRE_NOTHROW( ... ) INTERNAL_CATCH_NO_THROW( "REQUIRE_NOTHROW", Catch::ResultDisposition::Normal, __VA_ARGS__ )
17421#define CHECK( ... ) INTERNAL_CATCH_TEST( "CHECK", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
17422#define CHECK_FALSE( ... ) INTERNAL_CATCH_TEST( "CHECK_FALSE", Catch::ResultDisposition::ContinueOnFailure | Catch::ResultDisposition::FalseTest, __VA_ARGS__ )
17423#define CHECKED_IF( ... ) INTERNAL_CATCH_IF( "CHECKED_IF", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
17424#define CHECKED_ELSE( ... ) INTERNAL_CATCH_ELSE( "CHECKED_ELSE", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
17425#define CHECK_NOFAIL( ... ) INTERNAL_CATCH_TEST( "CHECK_NOFAIL", Catch::ResultDisposition::ContinueOnFailure | Catch::ResultDisposition::SuppressFail, __VA_ARGS__ )
17427#define CHECK_THROWS( ... ) INTERNAL_CATCH_THROWS( "CHECK_THROWS", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
17428#define CHECK_THROWS_AS( expr, exceptionType ) INTERNAL_CATCH_THROWS_AS( "CHECK_THROWS_AS", exceptionType, Catch::ResultDisposition::ContinueOnFailure, expr )
17429#define CHECK_THROWS_WITH( expr, matcher ) INTERNAL_CATCH_THROWS_STR_MATCHES( "CHECK_THROWS_WITH", Catch::ResultDisposition::ContinueOnFailure, matcher, expr )
17430#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
17431#define CHECK_THROWS_MATCHES( expr, exceptionType, matcher ) INTERNAL_CATCH_THROWS_MATCHES( "CHECK_THROWS_MATCHES", exceptionType, Catch::ResultDisposition::ContinueOnFailure, matcher, expr )
17433#define CHECK_NOTHROW( ... ) INTERNAL_CATCH_NO_THROW( "CHECK_NOTHROW", Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
17435#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
17436#define CHECK_THAT( arg, matcher ) INTERNAL_CHECK_THAT( "CHECK_THAT", matcher, Catch::ResultDisposition::ContinueOnFailure, arg )
17438#define REQUIRE_THAT( arg, matcher ) INTERNAL_CHECK_THAT( "REQUIRE_THAT", matcher, Catch::ResultDisposition::Normal, arg )
17441#define INFO( msg ) INTERNAL_CATCH_INFO( "INFO", msg )
17442#define UNSCOPED_INFO( msg ) INTERNAL_CATCH_UNSCOPED_INFO( "UNSCOPED_INFO", msg )
17443#define WARN( msg ) INTERNAL_CATCH_MSG( "WARN", Catch::ResultWas::Warning, Catch::ResultDisposition::ContinueOnFailure, msg )
17444#define CAPTURE( ... ) INTERNAL_CATCH_CAPTURE( INTERNAL_CATCH_UNIQUE_NAME(capturer), "CAPTURE",__VA_ARGS__ )
17446#define TEST_CASE( ... ) INTERNAL_CATCH_TESTCASE( __VA_ARGS__ )
17447#define TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEST_CASE_METHOD( className, __VA_ARGS__ )
17448#define METHOD_AS_TEST_CASE( method, ... ) INTERNAL_CATCH_METHOD_AS_TEST_CASE( method, __VA_ARGS__ )
17449#define REGISTER_TEST_CASE( Function, ... ) INTERNAL_CATCH_REGISTER_TESTCASE( Function, __VA_ARGS__ )
17450#define SECTION( ... ) INTERNAL_CATCH_SECTION( __VA_ARGS__ )
17451#define DYNAMIC_SECTION( ... ) INTERNAL_CATCH_DYNAMIC_SECTION( __VA_ARGS__ )
17452#define FAIL( ... ) INTERNAL_CATCH_MSG( "FAIL", Catch::ResultWas::ExplicitFailure, Catch::ResultDisposition::Normal, __VA_ARGS__ )
17453#define FAIL_CHECK( ... ) INTERNAL_CATCH_MSG( "FAIL_CHECK", Catch::ResultWas::ExplicitFailure, Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
17454#define SUCCEED( ... ) INTERNAL_CATCH_MSG( "SUCCEED", Catch::ResultWas::Ok, Catch::ResultDisposition::ContinueOnFailure, __VA_ARGS__ )
17455#define ANON_TEST_CASE() INTERNAL_CATCH_TESTCASE()
17457#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
17458#define TEMPLATE_TEST_CASE( ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE( __VA_ARGS__ )
17459#define TEMPLATE_TEST_CASE_SIG( ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_SIG( __VA_ARGS__ )
17460#define TEMPLATE_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ )
17461#define TEMPLATE_TEST_CASE_METHOD_SIG( className, ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_SIG( className, __VA_ARGS__ )
17462#define TEMPLATE_PRODUCT_TEST_CASE( ... ) INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE( __VA_ARGS__ )
17463#define TEMPLATE_PRODUCT_TEST_CASE_SIG( ... ) INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_SIG( __VA_ARGS__ )
17464#define TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, __VA_ARGS__ )
17465#define TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG( className, ... ) INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG( className, __VA_ARGS__ )
17466#define TEMPLATE_LIST_TEST_CASE( ... ) INTERNAL_CATCH_TEMPLATE_LIST_TEST_CASE(__VA_ARGS__)
17467#define TEMPLATE_LIST_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEMPLATE_LIST_TEST_CASE_METHOD( className, __VA_ARGS__ )
17469#define TEMPLATE_TEST_CASE( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE( __VA_ARGS__ ) )
17470#define TEMPLATE_TEST_CASE_SIG( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_SIG( __VA_ARGS__ ) )
17471#define TEMPLATE_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ ) )
17472#define TEMPLATE_TEST_CASE_METHOD_SIG( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_SIG( className, __VA_ARGS__ ) )
17473#define TEMPLATE_PRODUCT_TEST_CASE( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE( __VA_ARGS__ ) )
17474#define TEMPLATE_PRODUCT_TEST_CASE_SIG( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_SIG( __VA_ARGS__ ) )
17475#define TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, __VA_ARGS__ ) )
17476#define TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG( className, __VA_ARGS__ ) )
17477#define TEMPLATE_LIST_TEST_CASE( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_LIST_TEST_CASE( __VA_ARGS__ ) )
17478#define TEMPLATE_LIST_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_LIST_TEST_CASE_METHOD( className, __VA_ARGS__ ) )
17481#if !defined(CATCH_CONFIG_RUNTIME_STATIC_REQUIRE)
17482#define STATIC_REQUIRE( ... ) static_assert( __VA_ARGS__, #__VA_ARGS__ ); SUCCEED( #__VA_ARGS__ )
17483#define STATIC_REQUIRE_FALSE( ... ) static_assert( !(__VA_ARGS__), "!(" #__VA_ARGS__ ")" ); SUCCEED( "!(" #__VA_ARGS__ ")" )
17485#define STATIC_REQUIRE( ... ) REQUIRE( __VA_ARGS__ )
17486#define STATIC_REQUIRE_FALSE( ... ) REQUIRE_FALSE( __VA_ARGS__ )
17491#define CATCH_TRANSLATE_EXCEPTION( signature ) INTERNAL_CATCH_TRANSLATE_EXCEPTION( signature )
17494#define SCENARIO( ... ) TEST_CASE( "Scenario: " __VA_ARGS__ )
17495#define SCENARIO_METHOD( className, ... ) INTERNAL_CATCH_TEST_CASE_METHOD( className, "Scenario: " __VA_ARGS__ )
17497#define GIVEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " Given: " << desc )
17498#define AND_GIVEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( "And given: " << desc )
17499#define WHEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " When: " << desc )
17500#define AND_WHEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " And when: " << desc )
17501#define THEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " Then: " << desc )
17502#define AND_THEN( desc ) INTERNAL_CATCH_DYNAMIC_SECTION( " And: " << desc )
17504#if defined(CATCH_CONFIG_ENABLE_BENCHMARKING)
17505#define BENCHMARK(...) \
17506 INTERNAL_CATCH_BENCHMARK(INTERNAL_CATCH_UNIQUE_NAME(____C_A_T_C_H____B_E_N_C_H____), INTERNAL_CATCH_GET_1_ARG(__VA_ARGS__,,), INTERNAL_CATCH_GET_2_ARG(__VA_ARGS__,,))
17507#define BENCHMARK_ADVANCED(name) \
17508 INTERNAL_CATCH_BENCHMARK_ADVANCED(INTERNAL_CATCH_UNIQUE_NAME(____C_A_T_C_H____B_E_N_C_H____), name)
17517#ifdef CATCH_CONFIG_PREFIX_ALL
17519#define CATCH_REQUIRE( ... ) (void)(0)
17520#define CATCH_REQUIRE_FALSE( ... ) (void)(0)
17522#define CATCH_REQUIRE_THROWS( ... ) (void)(0)
17523#define CATCH_REQUIRE_THROWS_AS( expr, exceptionType ) (void)(0)
17524#define CATCH_REQUIRE_THROWS_WITH( expr, matcher ) (void)(0)
17525#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
17526#define CATCH_REQUIRE_THROWS_MATCHES( expr, exceptionType, matcher ) (void)(0)
17528#define CATCH_REQUIRE_NOTHROW( ... ) (void)(0)
17530#define CATCH_CHECK( ... ) (void)(0)
17531#define CATCH_CHECK_FALSE( ... ) (void)(0)
17532#define CATCH_CHECKED_IF( ... ) if (__VA_ARGS__)
17533#define CATCH_CHECKED_ELSE( ... ) if (!(__VA_ARGS__))
17534#define CATCH_CHECK_NOFAIL( ... ) (void)(0)
17536#define CATCH_CHECK_THROWS( ... ) (void)(0)
17537#define CATCH_CHECK_THROWS_AS( expr, exceptionType ) (void)(0)
17538#define CATCH_CHECK_THROWS_WITH( expr, matcher ) (void)(0)
17539#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
17540#define CATCH_CHECK_THROWS_MATCHES( expr, exceptionType, matcher ) (void)(0)
17542#define CATCH_CHECK_NOTHROW( ... ) (void)(0)
17544#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
17545#define CATCH_CHECK_THAT( arg, matcher ) (void)(0)
17547#define CATCH_REQUIRE_THAT( arg, matcher ) (void)(0)
17550#define CATCH_INFO( msg ) (void)(0)
17551#define CATCH_UNSCOPED_INFO( msg ) (void)(0)
17552#define CATCH_WARN( msg ) (void)(0)
17553#define CATCH_CAPTURE( msg ) (void)(0)
17555#define CATCH_TEST_CASE( ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ))
17556#define CATCH_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ))
17557#define CATCH_METHOD_AS_TEST_CASE( method, ... )
17558#define CATCH_REGISTER_TEST_CASE( Function, ... ) (void)(0)
17559#define CATCH_SECTION( ... )
17560#define CATCH_DYNAMIC_SECTION( ... )
17561#define CATCH_FAIL( ... ) (void)(0)
17562#define CATCH_FAIL_CHECK( ... ) (void)(0)
17563#define CATCH_SUCCEED( ... ) (void)(0)
17565#define CATCH_ANON_TEST_CASE() INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ))
17567#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
17568#define CATCH_TEMPLATE_TEST_CASE( ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_NO_REGISTRATION(__VA_ARGS__)
17569#define CATCH_TEMPLATE_TEST_CASE_SIG( ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_SIG_NO_REGISTRATION(__VA_ARGS__)
17570#define CATCH_TEMPLATE_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_NO_REGISTRATION(className, __VA_ARGS__)
17571#define CATCH_TEMPLATE_TEST_CASE_METHOD_SIG( className, ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_SIG_NO_REGISTRATION(className, __VA_ARGS__ )
17572#define CATCH_TEMPLATE_PRODUCT_TEST_CASE( ... ) CATCH_TEMPLATE_TEST_CASE( __VA_ARGS__ )
17573#define CATCH_TEMPLATE_PRODUCT_TEST_CASE_SIG( ... ) CATCH_TEMPLATE_TEST_CASE( __VA_ARGS__ )
17574#define CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, ... ) CATCH_TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ )
17575#define CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG( className, ... ) CATCH_TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ )
17577#define CATCH_TEMPLATE_TEST_CASE( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_NO_REGISTRATION(__VA_ARGS__) )
17578#define CATCH_TEMPLATE_TEST_CASE_SIG( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_SIG_NO_REGISTRATION(__VA_ARGS__) )
17579#define CATCH_TEMPLATE_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_NO_REGISTRATION(className, __VA_ARGS__ ) )
17580#define CATCH_TEMPLATE_TEST_CASE_METHOD_SIG( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_SIG_NO_REGISTRATION(className, __VA_ARGS__ ) )
17581#define CATCH_TEMPLATE_PRODUCT_TEST_CASE( ... ) CATCH_TEMPLATE_TEST_CASE( __VA_ARGS__ )
17582#define CATCH_TEMPLATE_PRODUCT_TEST_CASE_SIG( ... ) CATCH_TEMPLATE_TEST_CASE( __VA_ARGS__ )
17583#define CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, ... ) CATCH_TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ )
17584#define CATCH_TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG( className, ... ) CATCH_TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ )
17588#define CATCH_SCENARIO( ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ))
17589#define CATCH_SCENARIO_METHOD( className, ... ) INTERNAL_CATCH_TESTCASE_METHOD_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ), className )
17590#define CATCH_GIVEN( desc )
17591#define CATCH_AND_GIVEN( desc )
17592#define CATCH_WHEN( desc )
17593#define CATCH_AND_WHEN( desc )
17594#define CATCH_THEN( desc )
17595#define CATCH_AND_THEN( desc )
17597#define CATCH_STATIC_REQUIRE( ... ) (void)(0)
17598#define CATCH_STATIC_REQUIRE_FALSE( ... ) (void)(0)
17603#define REQUIRE( ... ) (void)(0)
17604#define REQUIRE_FALSE( ... ) (void)(0)
17606#define REQUIRE_THROWS( ... ) (void)(0)
17607#define REQUIRE_THROWS_AS( expr, exceptionType ) (void)(0)
17608#define REQUIRE_THROWS_WITH( expr, matcher ) (void)(0)
17609#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
17610#define REQUIRE_THROWS_MATCHES( expr, exceptionType, matcher ) (void)(0)
17612#define REQUIRE_NOTHROW( ... ) (void)(0)
17614#define CHECK( ... ) (void)(0)
17615#define CHECK_FALSE( ... ) (void)(0)
17616#define CHECKED_IF( ... ) if (__VA_ARGS__)
17617#define CHECKED_ELSE( ... ) if (!(__VA_ARGS__))
17618#define CHECK_NOFAIL( ... ) (void)(0)
17620#define CHECK_THROWS( ... ) (void)(0)
17621#define CHECK_THROWS_AS( expr, exceptionType ) (void)(0)
17622#define CHECK_THROWS_WITH( expr, matcher ) (void)(0)
17623#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
17624#define CHECK_THROWS_MATCHES( expr, exceptionType, matcher ) (void)(0)
17626#define CHECK_NOTHROW( ... ) (void)(0)
17628#if !defined(CATCH_CONFIG_DISABLE_MATCHERS)
17629#define CHECK_THAT( arg, matcher ) (void)(0)
17631#define REQUIRE_THAT( arg, matcher ) (void)(0)
17634#define INFO( msg ) (void)(0)
17635#define UNSCOPED_INFO( msg ) (void)(0)
17636#define WARN( msg ) (void)(0)
17637#define CAPTURE( msg ) (void)(0)
17639#define TEST_CASE( ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ))
17640#define TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ))
17641#define METHOD_AS_TEST_CASE( method, ... )
17642#define REGISTER_TEST_CASE( Function, ... ) (void)(0)
17643#define SECTION( ... )
17644#define DYNAMIC_SECTION( ... )
17645#define FAIL( ... ) (void)(0)
17646#define FAIL_CHECK( ... ) (void)(0)
17647#define SUCCEED( ... ) (void)(0)
17648#define ANON_TEST_CASE() INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ))
17650#ifndef CATCH_CONFIG_TRADITIONAL_MSVC_PREPROCESSOR
17651#define TEMPLATE_TEST_CASE( ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_NO_REGISTRATION(__VA_ARGS__)
17652#define TEMPLATE_TEST_CASE_SIG( ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_SIG_NO_REGISTRATION(__VA_ARGS__)
17653#define TEMPLATE_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_NO_REGISTRATION(className, __VA_ARGS__)
17654#define TEMPLATE_TEST_CASE_METHOD_SIG( className, ... ) INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_SIG_NO_REGISTRATION(className, __VA_ARGS__ )
17655#define TEMPLATE_PRODUCT_TEST_CASE( ... ) TEMPLATE_TEST_CASE( __VA_ARGS__ )
17656#define TEMPLATE_PRODUCT_TEST_CASE_SIG( ... ) TEMPLATE_TEST_CASE( __VA_ARGS__ )
17657#define TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, ... ) TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ )
17658#define TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG( className, ... ) TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ )
17660#define TEMPLATE_TEST_CASE( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_NO_REGISTRATION(__VA_ARGS__) )
17661#define TEMPLATE_TEST_CASE_SIG( ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_SIG_NO_REGISTRATION(__VA_ARGS__) )
17662#define TEMPLATE_TEST_CASE_METHOD( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_NO_REGISTRATION(className, __VA_ARGS__ ) )
17663#define TEMPLATE_TEST_CASE_METHOD_SIG( className, ... ) INTERNAL_CATCH_EXPAND_VARGS( INTERNAL_CATCH_TEMPLATE_TEST_CASE_METHOD_SIG_NO_REGISTRATION(className, __VA_ARGS__ ) )
17664#define TEMPLATE_PRODUCT_TEST_CASE( ... ) TEMPLATE_TEST_CASE( __VA_ARGS__ )
17665#define TEMPLATE_PRODUCT_TEST_CASE_SIG( ... ) TEMPLATE_TEST_CASE( __VA_ARGS__ )
17666#define TEMPLATE_PRODUCT_TEST_CASE_METHOD( className, ... ) TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ )
17667#define TEMPLATE_PRODUCT_TEST_CASE_METHOD_SIG( className, ... ) TEMPLATE_TEST_CASE_METHOD( className, __VA_ARGS__ )
17670#define STATIC_REQUIRE( ... ) (void)(0)
17671#define STATIC_REQUIRE_FALSE( ... ) (void)(0)
17675#define CATCH_TRANSLATE_EXCEPTION( signature ) INTERNAL_CATCH_TRANSLATE_EXCEPTION_NO_REG( INTERNAL_CATCH_UNIQUE_NAME( catch_internal_ExceptionTranslator ), signature )
17678#define SCENARIO( ... ) INTERNAL_CATCH_TESTCASE_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ) )
17679#define SCENARIO_METHOD( className, ... ) INTERNAL_CATCH_TESTCASE_METHOD_NO_REGISTRATION(INTERNAL_CATCH_UNIQUE_NAME( ____C_A_T_C_H____T_E_S_T____ ), className )
17681#define GIVEN( desc )
17682#define AND_GIVEN( desc )
17683#define WHEN( desc )
17684#define AND_WHEN( desc )
17685#define THEN( desc )
17686#define AND_THEN( desc )
17699# pragma warning(pop)
17701# pragma clang diagnostic pop
17703#elif defined __GNUC__
17704# pragma GCC diagnostic pop
std::ostream & operator<<(std::ostream &out, const CellType celltype)
Allow Standard c++ streams to print out our enum values as text.
Definition: Cell.cpp:1438
Definition: diagrams_c.h:5
Definition: catch.hpp:2552
Definition: catch.hpp:2228
Definition: catch.hpp:2656
Definition: catch.hpp:3082
Definition: catch.hpp:1568
Definition: catch.hpp:3025
Definition: catch.hpp:2342
Definition: catch.hpp:3923
Definition: catch.hpp:4290
Definition: catch.hpp:4154
Definition: catch.hpp:3971
Definition: catch.hpp:3849
Definition: catch.hpp:3990
Definition: catch.hpp:4014
Definition: catch.hpp:4704
Definition: catch.hpp:4249
Definition: catch.hpp:4595
Definition: catch.hpp:4617
Definition: catch.hpp:4659
Definition: catch.hpp:4193
Definition: catch.hpp:3957
Definition: catch.hpp:4118
Definition: catch.hpp:2530
Definition: catch.hpp:3774
Definition: catch.hpp:3403
Definition: catch.hpp:3499
Definition: catch.hpp:3247
Definition: catch.hpp:495
Definition: catch.hpp:4402
Definition: catch.hpp:1444
Definition: catch.hpp:2645
Definition: catch.hpp:2915
Definition: catch.hpp:4550
A non-owning string class (similar to the forthcoming std::string_view) Note that,...
Definition: catch.hpp:610
Definition: catch.hpp:4799
Definition: catch.hpp:966
Definition: catch.hpp:2898
Definition: catch.hpp:2304
Definition: diagrams_e.h:4
A class that is inherited from the external class Test.
Definition: tag.cpp:5
void func()
function in group 1
Definition: group.cpp:13
Coord add(Coord c1, Coord c2)
This function returns the addition of c1 and c2, i.e: (c1.x+c2.x,c1.y+c2.y)
Definition: restypedef.cpp:23
Definition: catch.hpp:1401
Definition: catch.hpp:2547
Definition: catch.hpp:990
Definition: catch.hpp:490
Definition: catch.hpp:2833
Definition: catch.hpp:2418
Definition: catch.hpp:1470
Definition: catch.hpp:3945
Definition: catch.hpp:4064
Definition: catch.hpp:4505
Definition: catch.hpp:4352
Definition: catch.hpp:3019
Definition: catch.hpp:3014
Definition: catch.hpp:3863
Definition: catch.hpp:4361
Definition: catch.hpp:1480
Definition: catch.hpp:2980
Definition: catch.hpp:2969
Definition: catch.hpp:2462
Definition: catch.hpp:4832
Definition: catch.hpp:1437
Definition: catch.hpp:584
Definition: catch.hpp:576
Definition: catch.hpp:2206
Definition: catch.hpp:3433
Definition: catch.hpp:3458
Definition: catch.hpp:3442
Definition: catch.hpp:3292
Definition: catch.hpp:3325
Definition: catch.hpp:3360
Definition: catch.hpp:3284
Definition: catch.hpp:3266
Definition: catch.hpp:3543
Definition: catch.hpp:3564
Definition: catch.hpp:3572
Definition: catch.hpp:3560
Definition: catch.hpp:3577
Definition: catch.hpp:3568
Definition: catch.hpp:3552
Definition: catch.hpp:3685
Definition: catch.hpp:3611
Definition: catch.hpp:3632
Definition: catch.hpp:3662
Definition: catch.hpp:3721
Definition: catch.hpp:2631
Definition: catch.hpp:2603
Definition: catch.hpp:2620
Definition: catch.hpp:553
Definition: catch.hpp:1381
Definition: catch.hpp:1357
Definition: catch.hpp:4486
Definition: catch.hpp:2880
Definition: catch.hpp:2864
Definition: catch.hpp:4481
Definition: catch.hpp:506
Definition: catch.hpp:538
Definition: catch.hpp:1619
Definition: catch.hpp:4764
Definition: catch.hpp:2525
Definition: catch.hpp:2846
Definition: catch.hpp:4491
Definition: catch.hpp:4496
Definition: catch.hpp:4475
Definition: catch.hpp:929
Definition: catch.hpp:2002
Definition: catch.hpp:1997
Definition: catch.hpp:932
Definition: catch.hpp:940
Definition: catch.hpp:2011
Definition: catch.hpp:3220
Definition: catch.hpp:931
Definition: catch.hpp:485
int open(const char *, int)
Opens a file descriptor.
int errno
Contains the last error code.
Definition: structcmd.h:53
int close(int)
Closes the file descriptor fd.
size_t write(int, const char *, size_t)
Writes count bytes from buf to the filedescriptor fd.