2010-12-31 23:07:47 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 31/12/2010.
|
|
|
|
* Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
2012-09-17 07:42:29 +02:00
|
|
|
#ifndef TWOBLUECUBES_CATCH_INTERFACES_REPORTER_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_INTERFACES_REPORTER_H_INCLUDED
|
2010-12-31 23:07:47 +01:00
|
|
|
|
2013-12-03 19:52:41 +01:00
|
|
|
#include "catch_section_info.h"
|
2010-12-31 23:07:47 +01:00
|
|
|
#include "catch_common.h"
|
2012-02-24 09:59:35 +01:00
|
|
|
#include "catch_totals.hpp"
|
2012-05-04 08:55:11 +02:00
|
|
|
#include "catch_ptr.hpp"
|
2012-08-28 09:20:18 +02:00
|
|
|
#include "catch_config.hpp"
|
2012-11-22 20:17:20 +01:00
|
|
|
#include "catch_test_case_info.h"
|
|
|
|
#include "catch_assertionresult.h"
|
2013-02-02 20:58:04 +01:00
|
|
|
#include "catch_message.h"
|
2012-12-05 09:40:53 +01:00
|
|
|
#include "catch_option.hpp"
|
2010-12-31 23:07:47 +01:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <ostream>
|
2010-12-31 23:21:36 +01:00
|
|
|
#include <map>
|
2010-12-31 23:07:47 +01:00
|
|
|
|
|
|
|
namespace Catch
|
|
|
|
{
|
2012-11-29 21:31:17 +01:00
|
|
|
struct ReporterConfig {
|
2015-09-28 10:09:06 +02:00
|
|
|
explicit ReporterConfig( Ptr<IConfig const> const& _fullConfig )
|
2013-05-28 19:39:32 +02:00
|
|
|
: m_stream( &_fullConfig->stream() ), m_fullConfig( _fullConfig ) {}
|
|
|
|
|
2015-09-28 10:09:06 +02:00
|
|
|
ReporterConfig( Ptr<IConfig const> const& _fullConfig, std::ostream& _stream )
|
2012-11-27 00:28:00 +01:00
|
|
|
: m_stream( &_stream ), m_fullConfig( _fullConfig ) {}
|
2012-09-20 09:17:52 +02:00
|
|
|
|
2013-05-28 19:39:32 +02:00
|
|
|
std::ostream& stream() const { return *m_stream; }
|
2015-09-28 10:09:06 +02:00
|
|
|
Ptr<IConfig const> fullConfig() const { return m_fullConfig; }
|
2012-09-20 09:17:52 +02:00
|
|
|
|
|
|
|
private:
|
2012-11-27 00:28:00 +01:00
|
|
|
std::ostream* m_stream;
|
2015-09-28 10:09:06 +02:00
|
|
|
Ptr<IConfig const> m_fullConfig;
|
2012-08-28 09:20:18 +02:00
|
|
|
};
|
2012-11-22 20:17:20 +01:00
|
|
|
|
2012-11-29 21:31:17 +01:00
|
|
|
struct ReporterPreferences {
|
2012-11-29 10:05:51 +01:00
|
|
|
ReporterPreferences()
|
|
|
|
: shouldRedirectStdOut( false )
|
|
|
|
{}
|
|
|
|
|
|
|
|
bool shouldRedirectStdOut;
|
|
|
|
};
|
|
|
|
|
2013-08-08 09:24:37 +02:00
|
|
|
template<typename T>
|
|
|
|
struct LazyStat : Option<T> {
|
|
|
|
LazyStat() : used( false ) {}
|
|
|
|
LazyStat& operator=( T const& _value ) {
|
|
|
|
Option<T>::operator=( _value );
|
|
|
|
used = false;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
void reset() {
|
|
|
|
Option<T>::reset();
|
|
|
|
used = false;
|
|
|
|
}
|
|
|
|
bool used;
|
|
|
|
};
|
|
|
|
|
2012-12-02 00:49:57 +01:00
|
|
|
struct TestRunInfo {
|
|
|
|
TestRunInfo( std::string const& _name ) : name( _name ) {}
|
|
|
|
std::string name;
|
|
|
|
};
|
|
|
|
struct GroupInfo {
|
2013-01-13 22:51:44 +01:00
|
|
|
GroupInfo( std::string const& _name,
|
|
|
|
std::size_t _groupIndex,
|
|
|
|
std::size_t _groupsCount )
|
|
|
|
: name( _name ),
|
|
|
|
groupIndex( _groupIndex ),
|
|
|
|
groupsCounts( _groupsCount )
|
|
|
|
{}
|
|
|
|
|
2012-12-02 00:49:57 +01:00
|
|
|
std::string name;
|
2013-01-13 22:51:44 +01:00
|
|
|
std::size_t groupIndex;
|
|
|
|
std::size_t groupsCounts;
|
2012-12-02 00:49:57 +01:00
|
|
|
};
|
|
|
|
|
2013-01-03 10:04:46 +01:00
|
|
|
struct AssertionStats {
|
2012-11-29 21:31:17 +01:00
|
|
|
AssertionStats( AssertionResult const& _assertionResult,
|
2013-02-02 20:58:04 +01:00
|
|
|
std::vector<MessageInfo> const& _infoMessages,
|
2012-11-29 21:31:17 +01:00
|
|
|
Totals const& _totals )
|
2012-11-25 22:43:36 +01:00
|
|
|
: assertionResult( _assertionResult ),
|
2013-02-02 20:58:04 +01:00
|
|
|
infoMessages( _infoMessages ),
|
2012-11-25 22:43:36 +01:00
|
|
|
totals( _totals )
|
2013-02-02 20:58:04 +01:00
|
|
|
{
|
|
|
|
if( assertionResult.hasMessage() ) {
|
|
|
|
// Copy message into messages list.
|
|
|
|
// !TBD This should have been done earlier, somewhere
|
|
|
|
MessageBuilder builder( assertionResult.getTestMacroName(), assertionResult.getSourceInfo(), assertionResult.getResultType() );
|
|
|
|
builder << assertionResult.getMessage();
|
2013-06-28 18:09:57 +02:00
|
|
|
builder.m_info.message = builder.m_stream.str();
|
|
|
|
|
|
|
|
infoMessages.push_back( builder.m_info );
|
2013-02-02 20:58:04 +01:00
|
|
|
}
|
|
|
|
}
|
2012-11-30 19:54:06 +01:00
|
|
|
virtual ~AssertionStats();
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2015-05-19 19:37:58 +02:00
|
|
|
# ifdef CATCH_CONFIG_CPP11_GENERATED_METHODS
|
2014-03-20 12:48:19 +01:00
|
|
|
AssertionStats( AssertionStats const& ) = default;
|
|
|
|
AssertionStats( AssertionStats && ) = default;
|
|
|
|
AssertionStats& operator = ( AssertionStats const& ) = default;
|
|
|
|
AssertionStats& operator = ( AssertionStats && ) = default;
|
|
|
|
# endif
|
|
|
|
|
2012-11-22 20:17:20 +01:00
|
|
|
AssertionResult assertionResult;
|
2013-02-02 20:58:04 +01:00
|
|
|
std::vector<MessageInfo> infoMessages;
|
2012-11-22 20:17:20 +01:00
|
|
|
Totals totals;
|
|
|
|
};
|
|
|
|
|
2013-01-03 10:04:46 +01:00
|
|
|
struct SectionStats {
|
2012-11-30 09:58:46 +01:00
|
|
|
SectionStats( SectionInfo const& _sectionInfo,
|
|
|
|
Counts const& _assertions,
|
2013-08-07 19:56:35 +02:00
|
|
|
double _durationInSeconds,
|
2012-11-30 09:58:46 +01:00
|
|
|
bool _missingAssertions )
|
|
|
|
: sectionInfo( _sectionInfo ),
|
|
|
|
assertions( _assertions ),
|
2013-08-07 19:56:35 +02:00
|
|
|
durationInSeconds( _durationInSeconds ),
|
2012-11-30 09:58:46 +01:00
|
|
|
missingAssertions( _missingAssertions )
|
|
|
|
{}
|
2012-11-30 19:54:06 +01:00
|
|
|
virtual ~SectionStats();
|
2015-05-19 19:37:58 +02:00
|
|
|
# ifdef CATCH_CONFIG_CPP11_GENERATED_METHODS
|
2014-03-20 12:48:19 +01:00
|
|
|
SectionStats( SectionStats const& ) = default;
|
|
|
|
SectionStats( SectionStats && ) = default;
|
|
|
|
SectionStats& operator = ( SectionStats const& ) = default;
|
|
|
|
SectionStats& operator = ( SectionStats && ) = default;
|
|
|
|
# endif
|
2012-11-30 19:54:06 +01:00
|
|
|
|
2012-11-29 21:31:17 +01:00
|
|
|
SectionInfo sectionInfo;
|
2012-11-30 09:58:46 +01:00
|
|
|
Counts assertions;
|
2013-08-07 19:56:35 +02:00
|
|
|
double durationInSeconds;
|
2012-11-30 09:58:46 +01:00
|
|
|
bool missingAssertions;
|
2012-11-29 21:31:17 +01:00
|
|
|
};
|
|
|
|
|
2013-01-03 10:04:46 +01:00
|
|
|
struct TestCaseStats {
|
2012-11-29 21:31:17 +01:00
|
|
|
TestCaseStats( TestCaseInfo const& _testInfo,
|
|
|
|
Totals const& _totals,
|
|
|
|
std::string const& _stdOut,
|
|
|
|
std::string const& _stdErr,
|
2012-11-25 22:43:36 +01:00
|
|
|
bool _aborting )
|
|
|
|
: testInfo( _testInfo ),
|
|
|
|
totals( _totals ),
|
|
|
|
stdOut( _stdOut ),
|
|
|
|
stdErr( _stdErr ),
|
|
|
|
aborting( _aborting )
|
|
|
|
{}
|
2012-11-30 19:54:06 +01:00
|
|
|
virtual ~TestCaseStats();
|
2012-11-25 22:43:36 +01:00
|
|
|
|
2015-05-19 19:37:58 +02:00
|
|
|
# ifdef CATCH_CONFIG_CPP11_GENERATED_METHODS
|
2014-03-20 12:48:19 +01:00
|
|
|
TestCaseStats( TestCaseStats const& ) = default;
|
|
|
|
TestCaseStats( TestCaseStats && ) = default;
|
|
|
|
TestCaseStats& operator = ( TestCaseStats const& ) = default;
|
|
|
|
TestCaseStats& operator = ( TestCaseStats && ) = default;
|
|
|
|
# endif
|
|
|
|
|
2012-11-25 22:43:36 +01:00
|
|
|
TestCaseInfo testInfo;
|
2012-11-22 20:17:20 +01:00
|
|
|
Totals totals;
|
|
|
|
std::string stdOut;
|
|
|
|
std::string stdErr;
|
|
|
|
bool aborting;
|
|
|
|
};
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-01-03 10:04:46 +01:00
|
|
|
struct TestGroupStats {
|
2012-12-02 00:49:57 +01:00
|
|
|
TestGroupStats( GroupInfo const& _groupInfo,
|
2012-11-29 21:31:17 +01:00
|
|
|
Totals const& _totals,
|
2012-11-25 22:43:36 +01:00
|
|
|
bool _aborting )
|
2012-12-02 00:49:57 +01:00
|
|
|
: groupInfo( _groupInfo ),
|
2012-11-25 22:43:36 +01:00
|
|
|
totals( _totals ),
|
|
|
|
aborting( _aborting )
|
|
|
|
{}
|
2013-01-03 10:04:46 +01:00
|
|
|
TestGroupStats( GroupInfo const& _groupInfo )
|
|
|
|
: groupInfo( _groupInfo ),
|
|
|
|
aborting( false )
|
|
|
|
{}
|
2012-11-30 19:54:06 +01:00
|
|
|
virtual ~TestGroupStats();
|
2012-11-25 22:43:36 +01:00
|
|
|
|
2015-05-19 19:37:58 +02:00
|
|
|
# ifdef CATCH_CONFIG_CPP11_GENERATED_METHODS
|
2014-03-20 12:48:19 +01:00
|
|
|
TestGroupStats( TestGroupStats const& ) = default;
|
|
|
|
TestGroupStats( TestGroupStats && ) = default;
|
|
|
|
TestGroupStats& operator = ( TestGroupStats const& ) = default;
|
|
|
|
TestGroupStats& operator = ( TestGroupStats && ) = default;
|
|
|
|
# endif
|
|
|
|
|
2012-12-02 00:49:57 +01:00
|
|
|
GroupInfo groupInfo;
|
2012-11-22 20:17:20 +01:00
|
|
|
Totals totals;
|
|
|
|
bool aborting;
|
|
|
|
};
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-01-03 10:04:46 +01:00
|
|
|
struct TestRunStats {
|
2012-12-02 00:49:57 +01:00
|
|
|
TestRunStats( TestRunInfo const& _runInfo,
|
2012-11-29 21:31:17 +01:00
|
|
|
Totals const& _totals,
|
2012-11-25 22:43:36 +01:00
|
|
|
bool _aborting )
|
2012-12-02 00:49:57 +01:00
|
|
|
: runInfo( _runInfo ),
|
2012-11-25 22:43:36 +01:00
|
|
|
totals( _totals ),
|
|
|
|
aborting( _aborting )
|
|
|
|
{}
|
2014-03-20 12:48:19 +01:00
|
|
|
virtual ~TestRunStats();
|
|
|
|
|
2015-05-19 19:37:58 +02:00
|
|
|
# ifndef CATCH_CONFIG_CPP11_GENERATED_METHODS
|
2013-01-03 10:04:46 +01:00
|
|
|
TestRunStats( TestRunStats const& _other )
|
|
|
|
: runInfo( _other.runInfo ),
|
|
|
|
totals( _other.totals ),
|
|
|
|
aborting( _other.aborting )
|
|
|
|
{}
|
2014-03-20 12:48:19 +01:00
|
|
|
# else
|
|
|
|
TestRunStats( TestRunStats const& ) = default;
|
|
|
|
TestRunStats( TestRunStats && ) = default;
|
|
|
|
TestRunStats& operator = ( TestRunStats const& ) = default;
|
|
|
|
TestRunStats& operator = ( TestRunStats && ) = default;
|
|
|
|
# endif
|
2013-01-03 10:04:46 +01:00
|
|
|
|
2012-12-02 00:49:57 +01:00
|
|
|
TestRunInfo runInfo;
|
2012-11-22 20:17:20 +01:00
|
|
|
Totals totals;
|
|
|
|
bool aborting;
|
|
|
|
};
|
|
|
|
|
2016-04-28 08:54:57 +02:00
|
|
|
class MultipleReporters;
|
2013-08-07 19:56:35 +02:00
|
|
|
|
2012-11-22 20:17:20 +01:00
|
|
|
struct IStreamingReporter : IShared {
|
2012-11-25 22:43:36 +01:00
|
|
|
virtual ~IStreamingReporter();
|
2012-12-05 09:40:53 +01:00
|
|
|
|
2013-01-13 22:51:44 +01:00
|
|
|
// Implementing class must also provide the following static method:
|
2012-12-05 09:40:53 +01:00
|
|
|
// static std::string getDescription();
|
|
|
|
|
2012-11-29 10:05:51 +01:00
|
|
|
virtual ReporterPreferences getPreferences() const = 0;
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-03-12 20:06:40 +01:00
|
|
|
virtual void noMatchingTestCases( std::string const& spec ) = 0;
|
2012-11-29 10:05:51 +01:00
|
|
|
|
2012-12-02 00:49:57 +01:00
|
|
|
virtual void testRunStarting( TestRunInfo const& testRunInfo ) = 0;
|
|
|
|
virtual void testGroupStarting( GroupInfo const& groupInfo ) = 0;
|
2012-11-22 20:17:20 +01:00
|
|
|
|
2012-11-29 21:31:17 +01:00
|
|
|
virtual void testCaseStarting( TestCaseInfo const& testInfo ) = 0;
|
2012-11-30 09:58:46 +01:00
|
|
|
virtual void sectionStarting( SectionInfo const& sectionInfo ) = 0;
|
|
|
|
|
2012-11-29 21:31:17 +01:00
|
|
|
virtual void assertionStarting( AssertionInfo const& assertionInfo ) = 0;
|
2012-11-22 20:17:20 +01:00
|
|
|
|
2014-12-19 18:52:33 +01:00
|
|
|
// The return value indicates if the messages buffer should be cleared:
|
2013-06-28 17:25:49 +02:00
|
|
|
virtual bool assertionEnded( AssertionStats const& assertionStats ) = 0;
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2013-01-03 10:04:46 +01:00
|
|
|
virtual void sectionEnded( SectionStats const& sectionStats ) = 0;
|
|
|
|
virtual void testCaseEnded( TestCaseStats const& testCaseStats ) = 0;
|
|
|
|
virtual void testGroupEnded( TestGroupStats const& testGroupStats ) = 0;
|
|
|
|
virtual void testRunEnded( TestRunStats const& testRunStats ) = 0;
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2014-12-22 21:10:33 +01:00
|
|
|
virtual void skipTest( TestCaseInfo const& testInfo ) = 0;
|
2017-01-26 23:13:12 +01:00
|
|
|
|
2016-04-28 08:54:57 +02:00
|
|
|
virtual MultipleReporters* tryAsMulti() { return CATCH_NULL; }
|
2012-11-22 20:17:20 +01:00
|
|
|
};
|
2012-12-05 09:40:53 +01:00
|
|
|
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2015-08-07 09:20:56 +02:00
|
|
|
struct IReporterFactory : IShared {
|
2012-08-13 08:46:10 +02:00
|
|
|
virtual ~IReporterFactory();
|
2012-11-30 20:15:23 +01:00
|
|
|
virtual IStreamingReporter* create( ReporterConfig const& config ) const = 0;
|
2012-05-09 09:17:51 +02:00
|
|
|
virtual std::string getDescription() const = 0;
|
2010-12-31 23:07:47 +01:00
|
|
|
};
|
|
|
|
|
2012-05-09 09:17:51 +02:00
|
|
|
struct IReporterRegistry {
|
2015-08-07 09:20:56 +02:00
|
|
|
typedef std::map<std::string, Ptr<IReporterFactory> > FactoryMap;
|
|
|
|
typedef std::vector<Ptr<IReporterFactory> > Listeners;
|
2010-12-31 23:21:36 +01:00
|
|
|
|
2012-08-13 08:46:10 +02:00
|
|
|
virtual ~IReporterRegistry();
|
2015-09-28 10:09:06 +02:00
|
|
|
virtual IStreamingReporter* create( std::string const& name, Ptr<IConfig const> const& config ) const = 0;
|
2013-04-23 19:58:56 +02:00
|
|
|
virtual FactoryMap const& getFactories() const = 0;
|
2015-08-07 09:20:56 +02:00
|
|
|
virtual Listeners const& getListeners() const = 0;
|
2010-12-31 23:07:47 +01:00
|
|
|
};
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2015-08-05 20:02:17 +02:00
|
|
|
Ptr<IStreamingReporter> addReporter( Ptr<IStreamingReporter> const& existingReporter, Ptr<IStreamingReporter> const& additionalReporter );
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2010-12-31 23:07:47 +01:00
|
|
|
}
|
|
|
|
|
2012-09-17 07:42:29 +02:00
|
|
|
#endif // TWOBLUECUBES_CATCH_INTERFACES_REPORTER_H_INCLUDED
|