2012-08-14 20:35:30 +02:00
|
|
|
/*
|
|
|
|
* Created by Phil on 14/8/2012.
|
|
|
|
* 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_TESTSPEC_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_TESTSPEC_H_INCLUDED
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace Catch {
|
2012-08-23 21:08:50 +02:00
|
|
|
|
|
|
|
struct IfFilterMatches{ enum DoWhat {
|
|
|
|
IncludeTests,
|
|
|
|
ExcludeTests
|
|
|
|
}; };
|
2012-08-14 20:35:30 +02:00
|
|
|
|
2012-08-23 21:08:50 +02:00
|
|
|
class TestCaseFilter {
|
2012-08-14 20:35:30 +02:00
|
|
|
public:
|
2012-08-23 21:08:50 +02:00
|
|
|
TestCaseFilter( const std::string& testSpec, IfFilterMatches::DoWhat matchBehaviour = IfFilterMatches::IncludeTests )
|
|
|
|
: m_testSpec( testSpec ),
|
|
|
|
m_filterType( matchBehaviour ),
|
|
|
|
m_isWildcarded( false )
|
|
|
|
{
|
|
|
|
if( m_testSpec[m_testSpec.size()-1] == '*' ) {
|
|
|
|
m_testSpec = m_testSpec.substr( 0, m_testSpec.size()-1 );
|
2012-08-14 20:35:30 +02:00
|
|
|
m_isWildcarded = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-23 21:08:50 +02:00
|
|
|
IfFilterMatches::DoWhat getFilterType() const {
|
|
|
|
return m_filterType;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool shouldInclude( const TestCaseInfo& testCase ) const {
|
|
|
|
return isMatch( testCase ) == (m_filterType == IfFilterMatches::IncludeTests);
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
|
|
|
|
bool isMatch( const TestCaseInfo& testCase ) const {
|
|
|
|
const std::string& name = testCase.getName();
|
2012-08-14 20:35:30 +02:00
|
|
|
if( !m_isWildcarded )
|
2012-08-23 21:08:50 +02:00
|
|
|
return m_testSpec == name;
|
2012-08-14 20:35:30 +02:00
|
|
|
else
|
2012-08-23 21:08:50 +02:00
|
|
|
return name.size() >= m_testSpec.size() && name.substr( 0, m_testSpec.size() ) == m_testSpec;
|
2012-08-14 20:35:30 +02:00
|
|
|
}
|
|
|
|
|
2012-08-23 21:08:50 +02:00
|
|
|
std::string m_testSpec;
|
|
|
|
IfFilterMatches::DoWhat m_filterType;
|
2012-08-14 20:35:30 +02:00
|
|
|
bool m_isWildcarded;
|
|
|
|
};
|
2012-08-23 21:08:50 +02:00
|
|
|
|
|
|
|
class TestCaseFilters {
|
|
|
|
public:
|
|
|
|
TestCaseFilters( const std::string& name ) : m_name( name ) {}
|
|
|
|
|
|
|
|
std::string getName() const {
|
|
|
|
return m_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
void addFilter( const TestCaseFilter& filter ) {
|
|
|
|
if( filter.getFilterType() == IfFilterMatches::ExcludeTests )
|
|
|
|
m_exclusionFilters.push_back( filter );
|
|
|
|
else
|
|
|
|
m_inclusionFilters.push_back( filter );
|
|
|
|
}
|
|
|
|
|
|
|
|
bool shouldInclude( const TestCaseInfo& testCase ) const {
|
|
|
|
if( !m_inclusionFilters.empty() ) {
|
|
|
|
std::vector<TestCaseFilter>::const_iterator it = m_inclusionFilters.begin();
|
|
|
|
std::vector<TestCaseFilter>::const_iterator itEnd = m_inclusionFilters.end();
|
|
|
|
for(; it != itEnd; ++it )
|
|
|
|
if( it->shouldInclude( testCase ) )
|
|
|
|
break;
|
|
|
|
if( it == itEnd )
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
std::vector<TestCaseFilter>::const_iterator it = m_exclusionFilters.begin();
|
|
|
|
std::vector<TestCaseFilter>::const_iterator itEnd = m_exclusionFilters.end();
|
|
|
|
for(; it != itEnd; ++it )
|
|
|
|
if( !it->shouldInclude( testCase ) )
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
std::vector<TestCaseFilter> m_inclusionFilters;
|
|
|
|
std::vector<TestCaseFilter> m_exclusionFilters;
|
|
|
|
std::string m_name;
|
|
|
|
};
|
|
|
|
|
2012-08-14 20:35:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_TESTSPEC_H_INCLUDED
|