2011-01-07 11:22:24 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 7/1/2011
|
|
|
|
* 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_TEST_CASE_REGISTRY_IMPL_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_TEST_CASE_REGISTRY_IMPL_HPP_INCLUDED
|
|
|
|
|
2011-01-07 11:22:24 +01:00
|
|
|
#include "catch_test_registry.hpp"
|
2012-08-14 20:30:30 +02:00
|
|
|
#include "catch_test_case_info.h"
|
2014-05-16 19:28:58 +02:00
|
|
|
#include "catch_test_spec.hpp"
|
2012-05-10 08:58:48 +02:00
|
|
|
#include "catch_context.h"
|
2011-01-07 11:22:24 +01:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <set>
|
2011-01-18 21:09:21 +01:00
|
|
|
#include <sstream>
|
2012-05-11 19:55:19 +02:00
|
|
|
#include <iostream>
|
2014-09-16 00:32:13 +02:00
|
|
|
#include <algorithm>
|
2011-01-07 11:22:24 +01:00
|
|
|
|
2012-05-16 09:02:20 +02:00
|
|
|
namespace Catch {
|
|
|
|
|
2012-05-10 22:46:46 +02:00
|
|
|
class TestRegistry : public ITestCaseRegistry {
|
2014-09-18 19:24:41 +02:00
|
|
|
struct LexSort {
|
|
|
|
bool operator() (TestCase i,TestCase j) const { return (i<j);}
|
|
|
|
};
|
|
|
|
struct RandomNumberGenerator {
|
|
|
|
int operator()( int n ) const { return std::rand() % n; }
|
|
|
|
};
|
|
|
|
|
2011-01-07 11:22:24 +01:00
|
|
|
public:
|
2012-05-10 22:46:46 +02:00
|
|
|
TestRegistry() : m_unnamedCount( 0 ) {}
|
2012-08-13 08:46:10 +02:00
|
|
|
virtual ~TestRegistry();
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-04-23 19:58:56 +02:00
|
|
|
virtual void registerTest( TestCase const& testCase ) {
|
2012-11-25 12:19:55 +01:00
|
|
|
std::string name = testCase.getTestCaseInfo().name;
|
|
|
|
if( name == "" ) {
|
2011-01-18 21:09:21 +01:00
|
|
|
std::ostringstream oss;
|
2013-03-16 21:18:52 +01:00
|
|
|
oss << "Anonymous test case " << ++m_unnamedCount;
|
2012-11-25 12:19:55 +01:00
|
|
|
return registerTest( testCase.withName( oss.str() ) );
|
2011-01-18 21:09:21 +01:00
|
|
|
}
|
2012-05-10 22:46:46 +02:00
|
|
|
|
2012-11-25 12:19:55 +01:00
|
|
|
if( m_functions.find( testCase ) == m_functions.end() ) {
|
|
|
|
m_functions.insert( testCase );
|
|
|
|
m_functionsInOrder.push_back( testCase );
|
|
|
|
if( !testCase.isHidden() )
|
|
|
|
m_nonHiddenFunctions.push_back( testCase );
|
2011-01-07 11:22:24 +01:00
|
|
|
}
|
2012-05-10 22:46:46 +02:00
|
|
|
else {
|
2013-04-23 19:58:56 +02:00
|
|
|
TestCase const& prev = *m_functions.find( testCase );
|
2014-04-15 19:44:37 +02:00
|
|
|
{
|
|
|
|
Colour colourGuard( Colour::Red );
|
2014-10-02 20:08:19 +02:00
|
|
|
Catch::cerr() << "error: TEST_CASE( \"" << name << "\" ) already defined.\n"
|
2014-04-15 19:44:37 +02:00
|
|
|
<< "\tFirst seen at " << prev.getTestCaseInfo().lineInfo << "\n"
|
|
|
|
<< "\tRedefined at " << testCase.getTestCaseInfo().lineInfo << std::endl;
|
|
|
|
}
|
2012-02-09 09:34:01 +01:00
|
|
|
exit(1);
|
|
|
|
}
|
2011-01-07 11:22:24 +01:00
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-04-23 19:58:56 +02:00
|
|
|
virtual std::vector<TestCase> const& getAllTests() const {
|
2011-01-07 11:22:24 +01:00
|
|
|
return m_functionsInOrder;
|
|
|
|
}
|
2011-03-11 20:44:59 +01:00
|
|
|
|
2013-04-23 19:58:56 +02:00
|
|
|
virtual std::vector<TestCase> const& getAllNonHiddenTests() const {
|
2012-08-15 20:12:51 +02:00
|
|
|
return m_nonHiddenFunctions;
|
|
|
|
}
|
|
|
|
|
2014-12-22 21:10:33 +01:00
|
|
|
virtual void getFilteredTests( TestSpec const& testSpec, IConfig const& config, std::vector<TestCase>& matchingTestCases, bool negated = false ) const {
|
2014-09-15 19:39:31 +02:00
|
|
|
|
2014-04-15 19:44:37 +02:00
|
|
|
for( std::vector<TestCase>::const_iterator it = m_functionsInOrder.begin(),
|
|
|
|
itEnd = m_functionsInOrder.end();
|
|
|
|
it != itEnd;
|
|
|
|
++it ) {
|
2014-12-22 21:10:33 +01:00
|
|
|
bool includeTest = testSpec.matches( *it ) && ( config.allowThrows() || !it->throws() );
|
|
|
|
if( includeTest != negated )
|
2014-04-15 19:44:37 +02:00
|
|
|
matchingTestCases.push_back( *it );
|
2011-03-11 20:44:59 +01:00
|
|
|
}
|
2014-12-22 21:10:33 +01:00
|
|
|
sortTests( config, matchingTestCases );
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
static void sortTests( IConfig const& config, std::vector<TestCase>& matchingTestCases ) {
|
|
|
|
|
2014-09-15 19:39:31 +02:00
|
|
|
switch( config.runOrder() ) {
|
|
|
|
case RunTests::InLexicographicalOrder:
|
|
|
|
std::sort( matchingTestCases.begin(), matchingTestCases.end(), LexSort() );
|
|
|
|
break;
|
|
|
|
case RunTests::InRandomOrder:
|
2014-12-22 21:10:33 +01:00
|
|
|
{
|
|
|
|
RandomNumberGenerator rng;
|
|
|
|
std::random_shuffle( matchingTestCases.begin(), matchingTestCases.end(), rng );
|
|
|
|
}
|
2014-09-15 19:39:31 +02:00
|
|
|
break;
|
|
|
|
case RunTests::InDeclarationOrder:
|
|
|
|
// already in declaration order
|
|
|
|
break;
|
|
|
|
}
|
2011-03-11 20:44:59 +01:00
|
|
|
}
|
2012-11-22 20:17:20 +01:00
|
|
|
std::set<TestCase> m_functions;
|
|
|
|
std::vector<TestCase> m_functionsInOrder;
|
2013-07-03 20:14:59 +02:00
|
|
|
std::vector<TestCase> m_nonHiddenFunctions;
|
2011-01-18 21:09:21 +01:00
|
|
|
size_t m_unnamedCount;
|
2011-01-07 11:22:24 +01:00
|
|
|
};
|
2011-01-28 19:56:26 +01:00
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2012-08-14 09:38:22 +02:00
|
|
|
class FreeFunctionTestCase : public SharedImpl<ITestCase> {
|
2012-05-10 22:46:46 +02:00
|
|
|
public:
|
|
|
|
|
|
|
|
FreeFunctionTestCase( TestFunction fun ) : m_fun( fun ) {}
|
2012-08-14 09:38:22 +02:00
|
|
|
|
2012-05-10 22:46:46 +02:00
|
|
|
virtual void invoke() const {
|
2011-01-31 11:10:20 +01:00
|
|
|
m_fun();
|
2011-01-07 11:22:24 +01:00
|
|
|
}
|
2012-08-14 09:38:22 +02:00
|
|
|
|
2011-01-07 11:22:24 +01:00
|
|
|
private:
|
2012-08-14 09:38:22 +02:00
|
|
|
virtual ~FreeFunctionTestCase();
|
|
|
|
|
2011-01-31 11:10:20 +01:00
|
|
|
TestFunction m_fun;
|
2011-01-07 11:22:24 +01:00
|
|
|
};
|
2012-11-04 22:11:59 +01:00
|
|
|
|
2013-04-23 19:58:56 +02:00
|
|
|
inline std::string extractClassName( std::string const& classOrQualifiedMethodName ) {
|
2012-11-04 22:11:59 +01:00
|
|
|
std::string className = classOrQualifiedMethodName;
|
2013-09-07 13:07:38 +02:00
|
|
|
if( startsWith( className, "&" ) )
|
2012-11-04 22:11:59 +01:00
|
|
|
{
|
|
|
|
std::size_t lastColons = className.rfind( "::" );
|
|
|
|
std::size_t penultimateColons = className.rfind( "::", lastColons-1 );
|
|
|
|
if( penultimateColons == std::string::npos )
|
|
|
|
penultimateColons = 1;
|
|
|
|
className = className.substr( penultimateColons, lastColons-penultimateColons );
|
|
|
|
}
|
|
|
|
return className;
|
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2011-01-07 11:22:24 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-03-16 21:18:52 +01:00
|
|
|
AutoReg::AutoReg( TestFunction function,
|
|
|
|
SourceLineInfo const& lineInfo,
|
|
|
|
NameAndDesc const& nameAndDesc ) {
|
2013-08-15 19:39:55 +02:00
|
|
|
registerTestCase( new FreeFunctionTestCase( function ), "", nameAndDesc, lineInfo );
|
2013-07-03 20:14:59 +02:00
|
|
|
}
|
|
|
|
|
2012-05-10 22:46:46 +02:00
|
|
|
AutoReg::~AutoReg() {}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2012-11-04 22:11:59 +01:00
|
|
|
void AutoReg::registerTestCase( ITestCase* testCase,
|
2013-03-16 21:18:52 +01:00
|
|
|
char const* classOrQualifiedMethodName,
|
|
|
|
NameAndDesc const& nameAndDesc,
|
|
|
|
SourceLineInfo const& lineInfo ) {
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2013-03-16 21:18:52 +01:00
|
|
|
getMutableRegistryHub().registerTest
|
|
|
|
( makeTestCase( testCase,
|
|
|
|
extractClassName( classOrQualifiedMethodName ),
|
|
|
|
nameAndDesc.name,
|
|
|
|
nameAndDesc.description,
|
|
|
|
lineInfo ) );
|
2011-01-07 11:22:24 +01:00
|
|
|
}
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2011-01-07 11:22:24 +01:00
|
|
|
} // end namespace Catch
|
|
|
|
|
2012-09-17 07:42:29 +02:00
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_TEST_CASE_REGISTRY_IMPL_HPP_INCLUDED
|