catch2/include/internal/catch_test_case_info.hpp

122 lines
3.8 KiB
C++
Raw Normal View History

/*
2012-08-14 20:30:30 +02:00
* Created by Phil on 14/08/2012.
* Copyright 2012 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_TEST_CASE_INFO_HPP_INCLUDED
#define TWOBLUECUBES_CATCH_TEST_CASE_INFO_HPP_INCLUDED
#include "catch_tags.hpp"
2012-08-14 20:30:30 +02:00
#include "catch_test_case_info.h"
#include "catch_interfaces_testcase.h"
2013-03-22 20:00:42 +01:00
#include "catch_common.h"
2012-05-16 00:58:23 +02:00
namespace Catch {
TestCase makeTestCase( ITestCase* _testCase,
const std::string& _className,
const std::string& _name,
const std::string& _descOrTags,
const SourceLineInfo& _lineInfo )
2012-09-15 18:53:27 +02:00
{
std::string desc = _descOrTags;
bool isHidden( startsWith( _name, "./" ) );
std::set<std::string> tags;
TagExtracter( tags ).parse( desc );
if( tags.find( "hide" ) != tags.end() )
isHidden = true;
TestCaseInfo info( _name, _className, desc, tags, isHidden, _lineInfo );
return TestCase( _testCase, info );
2012-09-15 18:53:27 +02:00
}
TestCaseInfo::TestCaseInfo( const std::string& _name,
const std::string& _className,
const std::string& _description,
const std::set<std::string>& _tags,
bool _isHidden,
const SourceLineInfo& _lineInfo )
: name( _name ),
className( _className ),
description( _description ),
tags( _tags ),
lineInfo( _lineInfo ),
isHidden( _isHidden )
2012-08-14 20:30:30 +02:00
{}
2012-08-14 09:38:22 +02:00
TestCaseInfo::TestCaseInfo( const TestCaseInfo& other )
: name( other.name ),
className( other.className ),
description( other.description ),
tags( other.tags ),
lineInfo( other.lineInfo ),
isHidden( other.isHidden )
2012-08-14 20:30:30 +02:00
{}
TestCase::TestCase( ITestCase* testCase, const TestCaseInfo& info ) : TestCaseInfo( info ), test( testCase ) {}
2012-11-22 20:17:20 +01:00
TestCase::TestCase( const TestCase& other )
: TestCaseInfo( other ),
test( other.test )
{}
TestCase TestCase::withName( const std::string& _newName ) const {
TestCase other( *this );
other.name = _newName;
return other;
2012-08-14 20:30:30 +02:00
}
void TestCase::invoke() const {
test->invoke();
2012-08-14 20:30:30 +02:00
}
2012-11-22 20:17:20 +01:00
bool TestCase::isHidden() const {
return TestCaseInfo::isHidden;
2012-08-14 20:30:30 +02:00
}
2012-11-22 20:17:20 +01:00
bool TestCase::hasTag( const std::string& tag ) const {
2013-03-22 20:00:42 +01:00
return tags.find( toLower( tag ) ) != tags.end();
2012-09-15 18:53:27 +02:00
}
2012-11-22 20:17:20 +01:00
bool TestCase::matchesTags( const std::string& tagPattern ) const {
TagExpression exp;
TagExpressionParser( exp ).parse( tagPattern );
return exp.matches( tags );
}
2012-11-22 20:17:20 +01:00
const std::set<std::string>& TestCase::getTags() const {
return tags;
2012-09-15 18:53:27 +02:00
}
2012-11-22 20:17:20 +01:00
void TestCase::swap( TestCase& other ) {
test.swap( other.test );
className.swap( other.className );
name.swap( other.name );
description.swap( other.description );
std::swap( lineInfo, other.lineInfo );
2012-08-14 20:30:30 +02:00
}
2012-11-22 20:17:20 +01:00
bool TestCase::operator == ( const TestCase& other ) const {
return test.get() == other.test.get() &&
name == other.name &&
className == other.className;
2012-08-14 20:30:30 +02:00
}
2012-11-22 20:17:20 +01:00
bool TestCase::operator < ( const TestCase& other ) const {
return name < other.name;
2012-08-14 20:30:30 +02:00
}
2012-11-22 20:17:20 +01:00
TestCase& TestCase::operator = ( const TestCase& other ) {
TestCase temp( other );
swap( temp );
return *this;
}
const TestCaseInfo& TestCase::getTestCaseInfo() const
{
return *this;
}
} // end namespace Catch
#endif // TWOBLUECUBES_CATCH_TEST_CASE_INFO_HPP_INCLUDED