2010-11-09 23:24:00 +00:00
|
|
|
/*
|
|
|
|
* Created by Phil on 31/10/2010.
|
|
|
|
* Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_RUNNER_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_RUNNER_HPP_INCLUDED
|
|
|
|
|
2012-08-13 07:46:10 +01:00
|
|
|
#include "internal/catch_commandline.hpp"
|
|
|
|
#include "internal/catch_list.hpp"
|
2015-08-05 19:02:17 +01:00
|
|
|
#include "internal/catch_run_context.hpp"
|
2014-05-16 18:28:58 +01:00
|
|
|
#include "internal/catch_test_spec.hpp"
|
2012-11-15 22:15:41 +00:00
|
|
|
#include "internal/catch_version.h"
|
2013-04-19 19:08:32 +01:00
|
|
|
#include "internal/catch_text.h"
|
2012-08-13 07:46:10 +01:00
|
|
|
|
2010-12-31 22:07:47 +00:00
|
|
|
#include <fstream>
|
2011-02-04 09:30:36 +00:00
|
|
|
#include <stdlib.h>
|
2011-03-15 22:41:27 +00:00
|
|
|
#include <limits>
|
2010-12-31 22:07:47 +00:00
|
|
|
|
2012-05-16 15:02:51 +01:00
|
|
|
namespace Catch {
|
|
|
|
|
2015-08-05 19:02:17 +01:00
|
|
|
Ptr<IStreamingReporter> createReporter( std::string const& reporterName, Ptr<Config> const& config ) {
|
2015-07-28 18:55:11 +01:00
|
|
|
Ptr<IStreamingReporter> reporter = getRegistryHub().getReporterRegistry().create( reporterName, config.get() );
|
|
|
|
if( !reporter ) {
|
|
|
|
std::ostringstream oss;
|
|
|
|
oss << "No reporter registered with name: '" << reporterName << "'";
|
|
|
|
throw std::domain_error( oss.str() );
|
|
|
|
}
|
|
|
|
return reporter;
|
|
|
|
}
|
2015-11-04 18:01:28 +00:00
|
|
|
|
2015-08-05 19:02:17 +01:00
|
|
|
Ptr<IStreamingReporter> makeReporter( Ptr<Config> const& config ) {
|
|
|
|
std::vector<std::string> reporters = config->getReporterNames();
|
|
|
|
if( reporters.empty() )
|
|
|
|
reporters.push_back( "console" );
|
|
|
|
|
|
|
|
Ptr<IStreamingReporter> reporter;
|
|
|
|
for( std::vector<std::string>::const_iterator it = reporters.begin(), itEnd = reporters.end();
|
|
|
|
it != itEnd;
|
|
|
|
++it )
|
2015-11-04 18:01:28 +00:00
|
|
|
reporter = addReporter( reporter, createReporter( *it, config ) );
|
2015-08-05 19:02:17 +01:00
|
|
|
return reporter;
|
|
|
|
}
|
2015-09-28 01:09:06 -07:00
|
|
|
Ptr<IStreamingReporter> addListeners( Ptr<IConfig const> const& config, Ptr<IStreamingReporter> reporters ) {
|
2015-08-07 08:20:56 +01:00
|
|
|
IReporterRegistry::Listeners listeners = getRegistryHub().getReporterRegistry().getListeners();
|
|
|
|
for( IReporterRegistry::Listeners::const_iterator it = listeners.begin(), itEnd = listeners.end();
|
|
|
|
it != itEnd;
|
|
|
|
++it )
|
|
|
|
reporters = addReporter(reporters, (*it)->create( ReporterConfig( config ) ) );
|
|
|
|
return reporters;
|
|
|
|
}
|
2015-11-04 18:01:28 +00:00
|
|
|
|
|
|
|
|
2015-07-28 18:55:11 +01:00
|
|
|
Totals runTests( Ptr<Config> const& config ) {
|
2012-08-23 20:08:50 +01:00
|
|
|
|
2015-09-28 01:09:06 -07:00
|
|
|
Ptr<IConfig const> iconfig = config.get();
|
2015-11-04 18:01:28 +00:00
|
|
|
|
2015-07-28 18:55:11 +01:00
|
|
|
Ptr<IStreamingReporter> reporter = makeReporter( config );
|
2015-09-28 01:09:06 -07:00
|
|
|
reporter = addListeners( iconfig, reporter );
|
2015-11-04 18:01:28 +00:00
|
|
|
|
2015-09-28 01:09:06 -07:00
|
|
|
RunContext context( iconfig, reporter );
|
2013-06-05 08:18:52 +01:00
|
|
|
|
2015-07-28 18:55:11 +01:00
|
|
|
Totals totals;
|
2012-08-23 20:08:50 +01:00
|
|
|
|
2015-07-28 18:55:11 +01:00
|
|
|
context.testGroupStarting( config->name(), 1, 1 );
|
2014-05-16 18:24:07 +01:00
|
|
|
|
2015-07-28 18:55:11 +01:00
|
|
|
TestSpec testSpec = config->testSpec();
|
|
|
|
if( !testSpec.hasFilters() )
|
|
|
|
testSpec = TestSpecParser( ITagAliasRegistry::get() ).parse( "~[.]" ).testSpec(); // All not hidden tests
|
2014-04-15 18:44:37 +01:00
|
|
|
|
2015-09-28 01:09:06 -07:00
|
|
|
std::vector<TestCase> const& allTestCases = getAllTestCasesSorted( *iconfig );
|
2015-08-04 23:11:56 +01:00
|
|
|
for( std::vector<TestCase>::const_iterator it = allTestCases.begin(), itEnd = allTestCases.end();
|
2015-07-28 18:55:11 +01:00
|
|
|
it != itEnd;
|
|
|
|
++it ) {
|
2015-09-28 01:09:06 -07:00
|
|
|
if( !context.aborting() && matchTest( *it, testSpec, *iconfig ) )
|
2015-07-28 18:55:11 +01:00
|
|
|
totals += context.runTest( *it );
|
2015-08-04 23:11:56 +01:00
|
|
|
else
|
|
|
|
reporter->skipTest( *it );
|
2012-08-23 20:08:50 +01:00
|
|
|
}
|
2012-08-13 19:27:03 +01:00
|
|
|
|
2015-09-28 01:09:06 -07:00
|
|
|
context.testGroupEnded( iconfig->name(), totals, 1, 1 );
|
2015-07-28 18:55:11 +01:00
|
|
|
return totals;
|
|
|
|
}
|
2015-11-04 18:01:28 +00:00
|
|
|
|
2015-08-04 23:11:56 +01:00
|
|
|
void applyFilenamesAsTags( IConfig const& config ) {
|
|
|
|
std::vector<TestCase> const& tests = getAllTestCasesSorted( config );
|
2015-07-02 08:20:18 +01:00
|
|
|
for(std::size_t i = 0; i < tests.size(); ++i ) {
|
|
|
|
TestCase& test = const_cast<TestCase&>( tests[i] );
|
|
|
|
std::set<std::string> tags = test.tags;
|
2015-11-04 18:01:28 +00:00
|
|
|
|
2015-07-02 08:20:18 +01:00
|
|
|
std::string filename = test.lineInfo.file;
|
2015-07-03 18:07:13 +01:00
|
|
|
std::string::size_type lastSlash = filename.find_last_of( "\\/" );
|
2015-07-02 08:20:18 +01:00
|
|
|
if( lastSlash != std::string::npos )
|
|
|
|
filename = filename.substr( lastSlash+1 );
|
|
|
|
|
|
|
|
std::string::size_type lastDot = filename.find_last_of( "." );
|
|
|
|
if( lastDot != std::string::npos )
|
|
|
|
filename = filename.substr( 0, lastDot );
|
2015-11-04 18:01:28 +00:00
|
|
|
|
2015-07-06 18:46:50 +01:00
|
|
|
tags.insert( "#" + filename );
|
2015-07-02 08:20:18 +01:00
|
|
|
setTags( test, tags );
|
|
|
|
}
|
|
|
|
}
|
2012-08-23 20:08:50 +01:00
|
|
|
|
2014-10-03 08:15:27 +01:00
|
|
|
class Session : NonCopyable {
|
2013-06-05 18:48:18 +01:00
|
|
|
static bool alreadyInstantiated;
|
2013-07-03 19:14:59 +01:00
|
|
|
|
2013-06-05 18:48:18 +01:00
|
|
|
public:
|
2013-07-03 19:14:59 +01:00
|
|
|
|
2013-06-06 18:51:24 +01:00
|
|
|
struct OnUnusedOptions { enum DoWhat { Ignore, Fail }; };
|
|
|
|
|
|
|
|
Session()
|
2013-06-07 18:41:22 +01:00
|
|
|
: m_cli( makeCommandLineParser() ) {
|
2013-06-05 18:48:18 +01:00
|
|
|
if( alreadyInstantiated ) {
|
|
|
|
std::string msg = "Only one instance of Catch::Session can ever be used";
|
2014-10-02 19:08:19 +01:00
|
|
|
Catch::cerr() << msg << std::endl;
|
2013-06-05 18:48:18 +01:00
|
|
|
throw std::logic_error( msg );
|
|
|
|
}
|
|
|
|
alreadyInstantiated = true;
|
|
|
|
}
|
|
|
|
~Session() {
|
|
|
|
Catch::cleanUp();
|
|
|
|
}
|
2013-07-03 19:14:59 +01:00
|
|
|
|
2013-06-06 18:56:43 +01:00
|
|
|
void showHelp( std::string const& processName ) {
|
2017-03-16 11:17:45 -07:00
|
|
|
Catch::cout() << "\nCatch v" << libraryVersion() << "\n";
|
2013-06-06 18:56:43 +01:00
|
|
|
|
2014-10-02 19:08:19 +01:00
|
|
|
m_cli.usage( Catch::cout(), processName );
|
|
|
|
Catch::cout() << "For more detail usage please see the project docs\n" << std::endl;
|
2013-06-06 18:56:43 +01:00
|
|
|
}
|
2013-07-03 19:14:59 +01:00
|
|
|
|
2016-04-23 13:21:29 +01:00
|
|
|
int applyCommandLine( int argc, char const* const* const argv, OnUnusedOptions::DoWhat unusedOptionBehaviour = OnUnusedOptions::Fail ) {
|
2013-06-06 18:51:24 +01:00
|
|
|
try {
|
2013-12-20 19:06:02 +00:00
|
|
|
m_cli.setThrowOnUnrecognisedTokens( unusedOptionBehaviour == OnUnusedOptions::Fail );
|
2016-04-23 13:21:29 +01:00
|
|
|
m_unusedTokens = m_cli.parseInto( Clara::argsToVector( argc, argv ), m_configData );
|
2013-06-07 18:41:22 +01:00
|
|
|
if( m_configData.showHelp )
|
|
|
|
showHelp( m_configData.processName );
|
|
|
|
m_config.reset();
|
2013-06-05 18:48:18 +01:00
|
|
|
}
|
|
|
|
catch( std::exception& ex ) {
|
2013-08-16 18:57:57 +01:00
|
|
|
{
|
|
|
|
Colour colourGuard( Colour::Red );
|
2015-06-29 18:05:23 +01:00
|
|
|
Catch::cerr()
|
|
|
|
<< "\nError(s) in input:\n"
|
|
|
|
<< Text( ex.what(), TextAttributes().setIndent(2) )
|
|
|
|
<< "\n\n";
|
2013-08-16 18:57:57 +01:00
|
|
|
}
|
2014-10-02 19:08:19 +01:00
|
|
|
m_cli.usage( Catch::cout(), m_configData.processName );
|
2013-06-05 18:48:18 +01:00
|
|
|
return (std::numeric_limits<int>::max)();
|
2012-06-08 08:22:56 +01:00
|
|
|
}
|
2013-06-06 18:51:24 +01:00
|
|
|
return 0;
|
2012-06-08 08:22:56 +01:00
|
|
|
}
|
2013-06-06 18:51:24 +01:00
|
|
|
|
|
|
|
void useConfigData( ConfigData const& _configData ) {
|
2013-06-07 18:41:22 +01:00
|
|
|
m_configData = _configData;
|
|
|
|
m_config.reset();
|
2013-06-06 18:51:24 +01:00
|
|
|
}
|
|
|
|
|
2016-04-23 13:21:29 +01:00
|
|
|
int run( int argc, char const* const* const argv ) {
|
2013-06-05 18:48:18 +01:00
|
|
|
|
2013-06-06 18:51:24 +01:00
|
|
|
int returnCode = applyCommandLine( argc, argv );
|
|
|
|
if( returnCode == 0 )
|
|
|
|
returnCode = run();
|
|
|
|
return returnCode;
|
|
|
|
}
|
2013-06-05 18:48:18 +01:00
|
|
|
|
2013-06-06 18:51:24 +01:00
|
|
|
int run() {
|
2013-06-07 18:41:22 +01:00
|
|
|
if( m_configData.showHelp )
|
2013-06-06 18:51:24 +01:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2013-06-07 18:41:22 +01:00
|
|
|
config(); // Force config to be constructed
|
2015-11-04 18:01:28 +00:00
|
|
|
|
2015-07-02 23:02:35 +01:00
|
|
|
seedRng( *m_config );
|
2014-09-15 18:39:31 +01:00
|
|
|
|
2015-08-04 23:11:56 +01:00
|
|
|
if( m_configData.filenamesAsTags )
|
|
|
|
applyFilenamesAsTags( *m_config );
|
2015-11-04 18:01:28 +00:00
|
|
|
|
2013-06-06 18:51:24 +01:00
|
|
|
// Handle list request
|
2013-06-07 18:41:22 +01:00
|
|
|
if( Option<std::size_t> listed = list( config() ) )
|
2013-06-06 22:54:42 +01:00
|
|
|
return static_cast<int>( *listed );
|
2013-06-06 18:51:24 +01:00
|
|
|
|
2015-07-28 18:55:11 +01:00
|
|
|
return static_cast<int>( runTests( m_config ).assertions.failed );
|
2013-06-05 18:48:18 +01:00
|
|
|
}
|
|
|
|
catch( std::exception& ex ) {
|
2014-10-02 19:08:19 +01:00
|
|
|
Catch::cerr() << ex.what() << std::endl;
|
2013-06-05 18:48:18 +01:00
|
|
|
return (std::numeric_limits<int>::max)();
|
|
|
|
}
|
|
|
|
}
|
2013-07-03 19:14:59 +01:00
|
|
|
|
2013-06-07 18:41:22 +01:00
|
|
|
Clara::CommandLine<ConfigData> const& cli() const {
|
|
|
|
return m_cli;
|
|
|
|
}
|
|
|
|
std::vector<Clara::Parser::Token> const& unusedTokens() const {
|
|
|
|
return m_unusedTokens;
|
|
|
|
}
|
|
|
|
ConfigData& configData() {
|
|
|
|
return m_configData;
|
|
|
|
}
|
|
|
|
Config& config() {
|
|
|
|
if( !m_config )
|
|
|
|
m_config = new Config( m_configData );
|
|
|
|
return *m_config;
|
|
|
|
}
|
2013-07-03 19:14:59 +01:00
|
|
|
private:
|
2013-06-07 18:41:22 +01:00
|
|
|
Clara::CommandLine<ConfigData> m_cli;
|
|
|
|
std::vector<Clara::Parser::Token> m_unusedTokens;
|
|
|
|
ConfigData m_configData;
|
|
|
|
Ptr<Config> m_config;
|
2013-06-05 18:48:18 +01:00
|
|
|
};
|
2013-06-06 18:51:24 +01:00
|
|
|
|
2013-06-05 18:48:18 +01:00
|
|
|
bool Session::alreadyInstantiated = false;
|
2013-07-03 19:14:59 +01:00
|
|
|
|
2010-11-09 23:24:00 +00:00
|
|
|
} // end namespace Catch
|
|
|
|
|
2011-02-16 19:02:09 +00:00
|
|
|
#endif // TWOBLUECUBES_CATCH_RUNNER_HPP_INCLUDED
|