mirror of
https://github.com/catchorg/Catch2.git
synced 2025-01-11 20:33:29 +01:00
Allow testing ordering to be specified as declaration, lexicographical, or random. Allow random seed to be specified
This commit is contained in:
parent
ea33961b43
commit
fa0122bf54
@ -170,6 +170,9 @@ namespace Catch {
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
config(); // Force config to be constructed
|
config(); // Force config to be constructed
|
||||||
|
|
||||||
|
std::srand( m_configData.rngSeed );
|
||||||
|
|
||||||
Runner runner( m_config );
|
Runner runner( m_config );
|
||||||
|
|
||||||
// Handle list request
|
// Handle list request
|
||||||
|
2
include/external/clara.h
vendored
2
include/external/clara.h
vendored
@ -791,7 +791,7 @@ namespace Clara {
|
|||||||
if( it == itEnd ) {
|
if( it == itEnd ) {
|
||||||
if( token.type == Parser::Token::Positional || !m_throwOnUnrecognisedTokens )
|
if( token.type == Parser::Token::Positional || !m_throwOnUnrecognisedTokens )
|
||||||
unusedTokens.push_back( token );
|
unusedTokens.push_back( token );
|
||||||
else if( m_throwOnUnrecognisedTokens )
|
else if( errors.empty() && m_throwOnUnrecognisedTokens )
|
||||||
errors.push_back( "unrecognised option: " + token.data );
|
errors.push_back( "unrecognised option: " + token.data );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -29,7 +29,28 @@ namespace Catch {
|
|||||||
config.warnings = static_cast<WarnAbout::What>( config.warnings | WarnAbout::NoAssertions );
|
config.warnings = static_cast<WarnAbout::What>( config.warnings | WarnAbout::NoAssertions );
|
||||||
else
|
else
|
||||||
throw std::runtime_error( "Unrecognised warning: '" + _warning + "'" );
|
throw std::runtime_error( "Unrecognised warning: '" + _warning + "'" );
|
||||||
|
}
|
||||||
|
inline void setOrder( ConfigData& config, std::string const& order ) {
|
||||||
|
if( startsWith( "declared", order ) )
|
||||||
|
config.runOrder = RunTests::InDeclarationOrder;
|
||||||
|
else if( startsWith( "lexical", order ) )
|
||||||
|
config.runOrder = RunTests::InLexicographicalOrder;
|
||||||
|
else if( startsWith( "random", order ) )
|
||||||
|
config.runOrder = RunTests::InRandomOrder;
|
||||||
|
else
|
||||||
|
throw std::runtime_error( "Unrecognised ordering: '" + order + "'" );
|
||||||
|
}
|
||||||
|
inline void setRngSeed( ConfigData& config, std::string const& seed ) {
|
||||||
|
if( seed == "time" ) {
|
||||||
|
config.rngSeed = static_cast<unsigned int>( std::time(0) );
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
std::stringstream ss;
|
||||||
|
ss << seed;
|
||||||
|
ss >> config.rngSeed;
|
||||||
|
if( ss.fail() )
|
||||||
|
throw std::runtime_error( "Argment to --rng-seed should be the word 'time' or a number" );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
inline void setVerbosity( ConfigData& config, int level ) {
|
inline void setVerbosity( ConfigData& config, int level ) {
|
||||||
// !TBD: accept strings?
|
// !TBD: accept strings?
|
||||||
@ -137,10 +158,18 @@ namespace Catch {
|
|||||||
.describe( "list all/matching test cases names only" )
|
.describe( "list all/matching test cases names only" )
|
||||||
.bind( &ConfigData::listTestNamesOnly );
|
.bind( &ConfigData::listTestNamesOnly );
|
||||||
|
|
||||||
cli["--list-reporters"]
|
cli["--list-reporters"]
|
||||||
.describe( "list all reporters" )
|
.describe( "list all reporters" )
|
||||||
.bind( &ConfigData::listReporters );
|
.bind( &ConfigData::listReporters );
|
||||||
|
|
||||||
|
cli["--order"]
|
||||||
|
.describe( "test case order (defaults to decl)" )
|
||||||
|
.bind( &setOrder, "decl|lex|rand" );
|
||||||
|
|
||||||
|
cli["--rng-seed"]
|
||||||
|
.describe( "set a specific seed for random numbers" )
|
||||||
|
.bind( &setRngSeed, "'time'|number" );
|
||||||
|
|
||||||
return cli;
|
return cli;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
#include <ctime>
|
||||||
|
|
||||||
#ifndef CATCH_CONFIG_CONSOLE_WIDTH
|
#ifndef CATCH_CONFIG_CONSOLE_WIDTH
|
||||||
#define CATCH_CONFIG_CONSOLE_WIDTH 80
|
#define CATCH_CONFIG_CONSOLE_WIDTH 80
|
||||||
@ -37,9 +38,11 @@ namespace Catch {
|
|||||||
showHelp( false ),
|
showHelp( false ),
|
||||||
showInvisibles( false ),
|
showInvisibles( false ),
|
||||||
abortAfter( -1 ),
|
abortAfter( -1 ),
|
||||||
|
rngSeed( 0 ),
|
||||||
verbosity( Verbosity::Normal ),
|
verbosity( Verbosity::Normal ),
|
||||||
warnings( WarnAbout::Nothing ),
|
warnings( WarnAbout::Nothing ),
|
||||||
showDurations( ShowDurations::DefaultForReporter )
|
showDurations( ShowDurations::DefaultForReporter ),
|
||||||
|
runOrder( RunTests::InDeclarationOrder )
|
||||||
{}
|
{}
|
||||||
|
|
||||||
bool listTests;
|
bool listTests;
|
||||||
@ -54,10 +57,12 @@ namespace Catch {
|
|||||||
bool showInvisibles;
|
bool showInvisibles;
|
||||||
|
|
||||||
int abortAfter;
|
int abortAfter;
|
||||||
|
unsigned int rngSeed;
|
||||||
|
|
||||||
Verbosity::Level verbosity;
|
Verbosity::Level verbosity;
|
||||||
WarnAbout::What warnings;
|
WarnAbout::What warnings;
|
||||||
ShowDurations::OrNot showDurations;
|
ShowDurations::OrNot showDurations;
|
||||||
|
RunTests::InWhatOrder runOrder;
|
||||||
|
|
||||||
std::string reporterName;
|
std::string reporterName;
|
||||||
std::string outputFilename;
|
std::string outputFilename;
|
||||||
@ -141,7 +146,8 @@ namespace Catch {
|
|||||||
virtual bool includeSuccessfulResults() const { return m_data.showSuccessfulTests; }
|
virtual bool includeSuccessfulResults() const { return m_data.showSuccessfulTests; }
|
||||||
virtual bool warnAboutMissingAssertions() const { return m_data.warnings & WarnAbout::NoAssertions; }
|
virtual bool warnAboutMissingAssertions() const { return m_data.warnings & WarnAbout::NoAssertions; }
|
||||||
virtual ShowDurations::OrNot showDurations() const { return m_data.showDurations; }
|
virtual ShowDurations::OrNot showDurations() const { return m_data.showDurations; }
|
||||||
|
virtual RunTests::InWhatOrder runOrder() const { return m_data.runOrder; }
|
||||||
|
virtual unsigned int rngSeed() const { return m_data.rngSeed; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
ConfigData m_data;
|
ConfigData m_data;
|
||||||
|
@ -32,6 +32,11 @@ namespace Catch {
|
|||||||
Always,
|
Always,
|
||||||
Never
|
Never
|
||||||
}; };
|
}; };
|
||||||
|
struct RunTests { enum InWhatOrder {
|
||||||
|
InDeclarationOrder,
|
||||||
|
InLexicographicalOrder,
|
||||||
|
InRandomOrder
|
||||||
|
}; };
|
||||||
|
|
||||||
class TestSpec;
|
class TestSpec;
|
||||||
|
|
||||||
@ -49,6 +54,8 @@ namespace Catch {
|
|||||||
virtual bool showInvisibles() const = 0;
|
virtual bool showInvisibles() const = 0;
|
||||||
virtual ShowDurations::OrNot showDurations() const = 0;
|
virtual ShowDurations::OrNot showDurations() const = 0;
|
||||||
virtual TestSpec const& testSpec() const = 0;
|
virtual TestSpec const& testSpec() const = 0;
|
||||||
|
virtual RunTests::InWhatOrder runOrder() const = 0;
|
||||||
|
virtual unsigned int rngSeed() const = 0;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -59,7 +59,15 @@ namespace Catch {
|
|||||||
return m_nonHiddenFunctions;
|
return m_nonHiddenFunctions;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
struct LexSort {
|
||||||
|
bool operator() (TestCase i,TestCase j) { return (i<j);}
|
||||||
|
};
|
||||||
|
|
||||||
virtual void getFilteredTests( TestSpec const& testSpec, IConfig const& config, std::vector<TestCase>& matchingTestCases ) const {
|
virtual void getFilteredTests( TestSpec const& testSpec, IConfig const& config, std::vector<TestCase>& matchingTestCases ) const {
|
||||||
|
struct RandomNumberGenerator {
|
||||||
|
int operator()( int n ) { return std::rand() % n; }
|
||||||
|
};
|
||||||
|
|
||||||
for( std::vector<TestCase>::const_iterator it = m_functionsInOrder.begin(),
|
for( std::vector<TestCase>::const_iterator it = m_functionsInOrder.begin(),
|
||||||
itEnd = m_functionsInOrder.end();
|
itEnd = m_functionsInOrder.end();
|
||||||
it != itEnd;
|
it != itEnd;
|
||||||
@ -67,6 +75,17 @@ namespace Catch {
|
|||||||
if( testSpec.matches( *it ) && ( config.allowThrows() || !it->throws() ) )
|
if( testSpec.matches( *it ) && ( config.allowThrows() || !it->throws() ) )
|
||||||
matchingTestCases.push_back( *it );
|
matchingTestCases.push_back( *it );
|
||||||
}
|
}
|
||||||
|
switch( config.runOrder() ) {
|
||||||
|
case RunTests::InLexicographicalOrder:
|
||||||
|
std::sort( matchingTestCases.begin(), matchingTestCases.end(), LexSort() );
|
||||||
|
break;
|
||||||
|
case RunTests::InRandomOrder:
|
||||||
|
std::random_shuffle( matchingTestCases.begin(), matchingTestCases.end(), RandomNumberGenerator() );
|
||||||
|
break;
|
||||||
|
case RunTests::InDeclarationOrder:
|
||||||
|
// already in declaration order
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
@ -271,6 +271,9 @@ namespace Catch {
|
|||||||
stream << " host application.\n"
|
stream << " host application.\n"
|
||||||
<< "Run with -? for options\n\n";
|
<< "Run with -? for options\n\n";
|
||||||
|
|
||||||
|
if( m_config->rngSeed() != 0 )
|
||||||
|
stream << "Randomness seeded to: " << m_config->rngSeed() << "\n\n";
|
||||||
|
|
||||||
currentTestRunInfo.used = true;
|
currentTestRunInfo.used = true;
|
||||||
}
|
}
|
||||||
void lazyPrintGroupInfo() {
|
void lazyPrintGroupInfo() {
|
||||||
|
Loading…
Reference in New Issue
Block a user