2010-11-09 18:24:00 -05: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 02:46:10 -04:00
|
|
|
#include "internal/catch_commandline.hpp"
|
|
|
|
#include "internal/catch_list.hpp"
|
|
|
|
#include "internal/catch_runner_impl.hpp"
|
2014-05-16 13:28:58 -04:00
|
|
|
#include "internal/catch_test_spec.hpp"
|
2012-11-15 17:15:41 -05:00
|
|
|
#include "internal/catch_version.h"
|
2013-04-19 14:08:32 -04:00
|
|
|
#include "internal/catch_text.h"
|
2012-08-13 02:46:10 -04:00
|
|
|
|
2010-12-31 17:07:47 -05:00
|
|
|
#include <fstream>
|
2011-02-04 04:30:36 -05:00
|
|
|
#include <stdlib.h>
|
2011-03-15 18:41:27 -04:00
|
|
|
#include <limits>
|
2010-12-31 17:07:47 -05:00
|
|
|
|
2012-05-16 10:02:51 -04:00
|
|
|
namespace Catch {
|
|
|
|
|
2013-06-05 03:18:52 -04:00
|
|
|
class Runner {
|
2012-08-23 15:08:50 -04:00
|
|
|
|
|
|
|
public:
|
2013-06-05 03:18:52 -04:00
|
|
|
Runner( Ptr<Config> const& config )
|
2013-05-29 02:59:01 -04:00
|
|
|
: m_config( config )
|
2012-08-23 15:08:50 -04:00
|
|
|
{
|
2012-09-26 13:36:58 -04:00
|
|
|
openStream();
|
2012-08-23 15:08:50 -04:00
|
|
|
makeReporter();
|
2012-07-17 03:04:19 -04:00
|
|
|
}
|
2012-08-23 15:08:50 -04:00
|
|
|
|
|
|
|
Totals runTests() {
|
|
|
|
|
2013-06-05 03:18:52 -04:00
|
|
|
RunContext context( m_config.get(), m_reporter );
|
|
|
|
|
2012-08-23 15:08:50 -04:00
|
|
|
Totals totals;
|
|
|
|
|
2014-09-08 03:14:22 -04:00
|
|
|
context.testGroupStarting( "all tests", 1, 1 ); // deprecated?
|
2014-05-16 13:24:07 -04:00
|
|
|
|
|
|
|
TestSpec testSpec = m_config->testSpec();
|
|
|
|
if( !testSpec.hasFilters() )
|
2014-06-30 02:33:17 -04:00
|
|
|
testSpec = TestSpecParser( ITagAliasRegistry::get() ).parse( "~[.]" ).testSpec(); // All not hidden tests
|
2014-04-15 13:44:37 -04:00
|
|
|
|
|
|
|
std::vector<TestCase> testCases;
|
2014-05-16 13:24:07 -04:00
|
|
|
getRegistryHub().getTestCaseRegistry().getFilteredTests( testSpec, *m_config, testCases );
|
2014-04-15 13:44:37 -04:00
|
|
|
|
2012-08-23 15:08:50 -04:00
|
|
|
int testsRunForGroup = 0;
|
2014-04-15 13:44:37 -04:00
|
|
|
for( std::vector<TestCase>::const_iterator it = testCases.begin(), itEnd = testCases.end();
|
|
|
|
it != itEnd;
|
|
|
|
++it ) {
|
|
|
|
testsRunForGroup++;
|
|
|
|
if( m_testsAlreadyRun.find( *it ) == m_testsAlreadyRun.end() ) {
|
2012-08-13 14:27:03 -04:00
|
|
|
|
2014-04-15 13:44:37 -04:00
|
|
|
if( context.aborting() )
|
|
|
|
break;
|
2010-11-09 18:24:00 -05:00
|
|
|
|
2014-04-15 13:44:37 -04:00
|
|
|
totals += context.runTest( *it );
|
|
|
|
m_testsAlreadyRun.insert( *it );
|
2012-08-23 15:08:50 -04:00
|
|
|
}
|
|
|
|
}
|
2014-12-22 15:10:33 -05:00
|
|
|
std::vector<TestCase> skippedTestCases;
|
|
|
|
getRegistryHub().getTestCaseRegistry().getFilteredTests( testSpec, *m_config, skippedTestCases, true );
|
|
|
|
|
|
|
|
for( std::vector<TestCase>::const_iterator it = skippedTestCases.begin(), itEnd = skippedTestCases.end();
|
|
|
|
it != itEnd;
|
|
|
|
++it )
|
|
|
|
m_reporter->skipTest( *it );
|
|
|
|
|
2014-09-08 03:14:22 -04:00
|
|
|
context.testGroupEnded( "all tests", totals, 1, 1 );
|
2012-08-23 15:08:50 -04:00
|
|
|
return totals;
|
|
|
|
}
|
2012-08-13 14:27:03 -04:00
|
|
|
|
2012-08-23 15:08:50 -04:00
|
|
|
private:
|
2012-09-26 13:36:58 -04:00
|
|
|
void openStream() {
|
2012-08-23 15:08:50 -04:00
|
|
|
// Open output file, if specified
|
2013-05-28 13:39:32 -04:00
|
|
|
if( !m_config->getFilename().empty() ) {
|
|
|
|
m_ofs.open( m_config->getFilename().c_str() );
|
2012-08-23 15:08:50 -04:00
|
|
|
if( m_ofs.fail() ) {
|
|
|
|
std::ostringstream oss;
|
2013-05-28 13:39:32 -04:00
|
|
|
oss << "Unable to open file: '" << m_config->getFilename() << "'";
|
2012-08-23 15:08:50 -04:00
|
|
|
throw std::domain_error( oss.str() );
|
|
|
|
}
|
2013-05-28 13:39:32 -04:00
|
|
|
m_config->setStreamBuf( m_ofs.rdbuf() );
|
2012-08-23 15:08:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
void makeReporter() {
|
2013-05-28 14:07:29 -04:00
|
|
|
std::string reporterName = m_config->getReporterName().empty()
|
2013-05-28 13:39:32 -04:00
|
|
|
? "console"
|
2013-05-28 14:07:29 -04:00
|
|
|
: m_config->getReporterName();
|
2012-08-13 14:27:03 -04:00
|
|
|
|
2013-05-28 13:39:32 -04:00
|
|
|
m_reporter = getRegistryHub().getReporterRegistry().create( reporterName, m_config.get() );
|
2012-08-23 15:08:50 -04:00
|
|
|
if( !m_reporter ) {
|
|
|
|
std::ostringstream oss;
|
|
|
|
oss << "No reporter registered with name: '" << reporterName << "'";
|
|
|
|
throw std::domain_error( oss.str() );
|
|
|
|
}
|
|
|
|
}
|
2013-07-03 14:14:59 -04:00
|
|
|
|
2012-08-23 15:08:50 -04:00
|
|
|
private:
|
2013-05-28 13:39:32 -04:00
|
|
|
Ptr<Config> m_config;
|
2012-08-23 15:08:50 -04:00
|
|
|
std::ofstream m_ofs;
|
2012-11-30 14:15:23 -05:00
|
|
|
Ptr<IStreamingReporter> m_reporter;
|
2012-11-22 14:17:20 -05:00
|
|
|
std::set<TestCase> m_testsAlreadyRun;
|
2012-08-23 15:08:50 -04:00
|
|
|
};
|
2015-07-02 03:20:18 -04:00
|
|
|
|
|
|
|
void applyFilenamesAsTags() {
|
|
|
|
std::vector<TestCase> const& tests = getRegistryHub().getTestCaseRegistry().getAllTests();
|
|
|
|
for(std::size_t i = 0; i < tests.size(); ++i ) {
|
|
|
|
TestCase& test = const_cast<TestCase&>( tests[i] );
|
|
|
|
std::set<std::string> tags = test.tags;
|
|
|
|
|
|
|
|
std::string filename = test.lineInfo.file;
|
2015-07-03 13:07:13 -04:00
|
|
|
std::string::size_type lastSlash = filename.find_last_of( "\\/" );
|
2015-07-02 03:20:18 -04: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-07-06 13:46:50 -04:00
|
|
|
tags.insert( "#" + filename );
|
2015-07-02 03:20:18 -04:00
|
|
|
setTags( test, tags );
|
|
|
|
}
|
|
|
|
}
|
2012-08-23 15:08:50 -04:00
|
|
|
|
2014-10-03 03:15:27 -04:00
|
|
|
class Session : NonCopyable {
|
2013-06-05 13:48:18 -04:00
|
|
|
static bool alreadyInstantiated;
|
2013-07-03 14:14:59 -04:00
|
|
|
|
2013-06-05 13:48:18 -04:00
|
|
|
public:
|
2013-07-03 14:14:59 -04:00
|
|
|
|
2013-06-06 13:51:24 -04:00
|
|
|
struct OnUnusedOptions { enum DoWhat { Ignore, Fail }; };
|
|
|
|
|
|
|
|
Session()
|
2013-06-07 13:41:22 -04:00
|
|
|
: m_cli( makeCommandLineParser() ) {
|
2013-06-05 13:48:18 -04:00
|
|
|
if( alreadyInstantiated ) {
|
|
|
|
std::string msg = "Only one instance of Catch::Session can ever be used";
|
2014-10-02 14:08:19 -04:00
|
|
|
Catch::cerr() << msg << std::endl;
|
2013-06-05 13:48:18 -04:00
|
|
|
throw std::logic_error( msg );
|
|
|
|
}
|
|
|
|
alreadyInstantiated = true;
|
|
|
|
}
|
|
|
|
~Session() {
|
|
|
|
Catch::cleanUp();
|
|
|
|
}
|
2013-07-03 14:14:59 -04:00
|
|
|
|
2013-06-06 13:56:43 -04:00
|
|
|
void showHelp( std::string const& processName ) {
|
2015-06-29 13:05:23 -04:00
|
|
|
Catch::cout() << "\nCatch v" << libraryVersion << "\n";
|
2013-06-06 13:56:43 -04:00
|
|
|
|
2014-10-02 14:08:19 -04:00
|
|
|
m_cli.usage( Catch::cout(), processName );
|
|
|
|
Catch::cout() << "For more detail usage please see the project docs\n" << std::endl;
|
2013-06-06 13:56:43 -04:00
|
|
|
}
|
2013-07-03 14:14:59 -04:00
|
|
|
|
2013-06-06 13:51:24 -04:00
|
|
|
int applyCommandLine( int argc, char* const argv[], OnUnusedOptions::DoWhat unusedOptionBehaviour = OnUnusedOptions::Fail ) {
|
|
|
|
try {
|
2013-12-20 14:06:02 -05:00
|
|
|
m_cli.setThrowOnUnrecognisedTokens( unusedOptionBehaviour == OnUnusedOptions::Fail );
|
2013-06-07 13:41:22 -04:00
|
|
|
m_unusedTokens = m_cli.parseInto( argc, argv, m_configData );
|
|
|
|
if( m_configData.showHelp )
|
|
|
|
showHelp( m_configData.processName );
|
|
|
|
m_config.reset();
|
2013-06-05 13:48:18 -04:00
|
|
|
}
|
|
|
|
catch( std::exception& ex ) {
|
2013-08-16 13:57:57 -04:00
|
|
|
{
|
|
|
|
Colour colourGuard( Colour::Red );
|
2015-06-29 13:05:23 -04:00
|
|
|
Catch::cerr()
|
|
|
|
<< "\nError(s) in input:\n"
|
|
|
|
<< Text( ex.what(), TextAttributes().setIndent(2) )
|
|
|
|
<< "\n\n";
|
2013-08-16 13:57:57 -04:00
|
|
|
}
|
2014-10-02 14:08:19 -04:00
|
|
|
m_cli.usage( Catch::cout(), m_configData.processName );
|
2013-06-05 13:48:18 -04:00
|
|
|
return (std::numeric_limits<int>::max)();
|
2012-06-08 03:22:56 -04:00
|
|
|
}
|
2013-06-06 13:51:24 -04:00
|
|
|
return 0;
|
2012-06-08 03:22:56 -04:00
|
|
|
}
|
2013-06-06 13:51:24 -04:00
|
|
|
|
|
|
|
void useConfigData( ConfigData const& _configData ) {
|
2013-06-07 13:41:22 -04:00
|
|
|
m_configData = _configData;
|
|
|
|
m_config.reset();
|
2013-06-06 13:51:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int run( int argc, char* const argv[] ) {
|
2013-06-05 13:48:18 -04:00
|
|
|
|
2013-06-06 13:51:24 -04:00
|
|
|
int returnCode = applyCommandLine( argc, argv );
|
|
|
|
if( returnCode == 0 )
|
|
|
|
returnCode = run();
|
|
|
|
return returnCode;
|
|
|
|
}
|
2013-06-05 13:48:18 -04:00
|
|
|
|
2013-06-06 13:51:24 -04:00
|
|
|
int run() {
|
2013-06-07 13:41:22 -04:00
|
|
|
if( m_configData.showHelp )
|
2013-06-06 13:51:24 -04:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
2013-06-07 13:41:22 -04:00
|
|
|
config(); // Force config to be constructed
|
2014-09-15 13:39:31 -04:00
|
|
|
|
2015-07-02 03:20:18 -04:00
|
|
|
if( m_configData.filenamesAsTags )
|
|
|
|
applyFilenamesAsTags();
|
|
|
|
|
2015-07-02 18:02:35 -04:00
|
|
|
seedRng( *m_config );
|
2014-09-15 13:39:31 -04:00
|
|
|
|
2013-06-07 13:41:22 -04:00
|
|
|
Runner runner( m_config );
|
2013-06-06 13:51:24 -04:00
|
|
|
|
|
|
|
// Handle list request
|
2013-06-07 13:41:22 -04:00
|
|
|
if( Option<std::size_t> listed = list( config() ) )
|
2013-06-06 17:54:42 -04:00
|
|
|
return static_cast<int>( *listed );
|
2013-06-06 13:51:24 -04:00
|
|
|
|
|
|
|
return static_cast<int>( runner.runTests().assertions.failed );
|
2013-06-05 13:48:18 -04:00
|
|
|
}
|
|
|
|
catch( std::exception& ex ) {
|
2014-10-02 14:08:19 -04:00
|
|
|
Catch::cerr() << ex.what() << std::endl;
|
2013-06-05 13:48:18 -04:00
|
|
|
return (std::numeric_limits<int>::max)();
|
|
|
|
}
|
|
|
|
}
|
2013-07-03 14:14:59 -04:00
|
|
|
|
2013-06-07 13:41:22 -04: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 14:14:59 -04:00
|
|
|
|
|
|
|
private:
|
2013-06-07 13:41:22 -04:00
|
|
|
Clara::CommandLine<ConfigData> m_cli;
|
|
|
|
std::vector<Clara::Parser::Token> m_unusedTokens;
|
|
|
|
ConfigData m_configData;
|
|
|
|
Ptr<Config> m_config;
|
2013-06-05 13:48:18 -04:00
|
|
|
};
|
2013-06-06 13:51:24 -04:00
|
|
|
|
2013-06-05 13:48:18 -04:00
|
|
|
bool Session::alreadyInstantiated = false;
|
2013-07-03 14:14:59 -04:00
|
|
|
|
2010-11-09 18:24:00 -05:00
|
|
|
} // end namespace Catch
|
|
|
|
|
2011-02-16 14:02:09 -05:00
|
|
|
#endif // TWOBLUECUBES_CATCH_RUNNER_HPP_INCLUDED
|