2010-11-10 00:24:00 +01:00
|
|
|
/*
|
|
|
|
* catch_runner.hpp
|
|
|
|
* Catch
|
|
|
|
*
|
|
|
|
* Created by Phil on 22/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_INTERNAL_CATCH_RUNNER_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_INTERNAL_CATCH_RUNNER_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include "catch_reporter_registry.hpp"
|
|
|
|
#include "catch_registry.hpp"
|
|
|
|
#include "catch_capture.hpp"
|
|
|
|
|
|
|
|
namespace Catch
|
|
|
|
{
|
|
|
|
class TestSpec
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TestSpec( const std::string& rawSpec )
|
|
|
|
: m_rawSpec( rawSpec ),
|
|
|
|
m_isWildcarded( false )
|
|
|
|
{
|
|
|
|
if( m_rawSpec[m_rawSpec.size()-1] == '*' )
|
|
|
|
{
|
|
|
|
m_rawSpec = m_rawSpec.substr( 0, m_rawSpec.size()-1 );
|
|
|
|
m_isWildcarded = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool matches( const std::string& testName ) const
|
|
|
|
{
|
|
|
|
if( !m_isWildcarded )
|
|
|
|
return m_rawSpec == testName;
|
|
|
|
else
|
|
|
|
return testName.size() >= m_rawSpec.size() && testName.substr( 0, m_rawSpec.size() ) == m_rawSpec;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string m_rawSpec;
|
|
|
|
bool m_isWildcarded;
|
|
|
|
};
|
|
|
|
|
|
|
|
class Runner : public IResultListener
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Runner()
|
|
|
|
: m_successes( 0 ),
|
|
|
|
m_failures( 0 ),
|
|
|
|
m_reporter( 0 )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void setReporter( ITestReporter* reporter )
|
|
|
|
{
|
|
|
|
m_reporter = reporter;
|
|
|
|
}
|
|
|
|
|
|
|
|
void runAll()
|
|
|
|
{
|
|
|
|
std::vector<TestCaseInfo> allTests = TestRegistry::instance().getAllTests();
|
2010-11-11 21:56:38 +01:00
|
|
|
for( std::size_t i=0; i < allTests.size(); ++i )
|
2010-11-10 00:24:00 +01:00
|
|
|
{
|
|
|
|
runTest( allTests[i] );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-11 21:56:38 +01:00
|
|
|
std::size_t runMatching( const std::string& rawTestSpec )
|
2010-11-10 00:24:00 +01:00
|
|
|
{
|
|
|
|
TestSpec testSpec( rawTestSpec );
|
|
|
|
|
|
|
|
std::vector<TestCaseInfo> allTests = TestRegistry::instance().getAllTests();
|
2010-11-11 21:56:38 +01:00
|
|
|
std::size_t testsRun = 0;
|
|
|
|
for( std::size_t i=0; i < allTests.size(); ++i )
|
2010-11-10 00:24:00 +01:00
|
|
|
{
|
|
|
|
if( testSpec.matches( allTests[i].getName() ) )
|
|
|
|
{
|
|
|
|
runTest( allTests[i] );
|
|
|
|
testsRun++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return testsRun;
|
|
|
|
}
|
|
|
|
|
|
|
|
void runTest( const TestCaseInfo& testInfo )
|
|
|
|
{
|
|
|
|
IResultListener* prevListener = ResultsCapture::setListener( this );
|
|
|
|
m_reporter->StartTestCase( testInfo );
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
testInfo.invoke();
|
|
|
|
}
|
2010-11-12 20:32:13 +01:00
|
|
|
catch( TestFailureException& )
|
2010-11-10 00:24:00 +01:00
|
|
|
{
|
|
|
|
// This just means the test was aborted due to failure
|
|
|
|
}
|
|
|
|
catch( std::exception& ex )
|
|
|
|
{
|
|
|
|
ResultsCapture::acceptMessage( ex.what() );
|
|
|
|
ResultsCapture::acceptResult( ResultWas::ThrewException );
|
|
|
|
}
|
|
|
|
catch(...)
|
|
|
|
{
|
|
|
|
ResultsCapture::acceptMessage( "unknown exception" );
|
|
|
|
ResultsCapture::acceptResult( ResultWas::ThrewException );
|
|
|
|
}
|
|
|
|
|
|
|
|
m_reporter->EndTestCase( testInfo );
|
|
|
|
ResultsCapture::setListener( prevListener );
|
|
|
|
}
|
|
|
|
|
2010-11-11 21:56:38 +01:00
|
|
|
std::size_t getSuccessCount() const
|
2010-11-10 00:24:00 +01:00
|
|
|
{
|
|
|
|
return m_successes;
|
|
|
|
}
|
2010-11-12 20:32:13 +01:00
|
|
|
std:: size_t getFailureCount() const
|
2010-11-10 00:24:00 +01:00
|
|
|
{
|
|
|
|
return m_failures;
|
|
|
|
}
|
|
|
|
|
|
|
|
private: // IResultListener
|
|
|
|
|
|
|
|
virtual void testEnded( const ResultInfo& result )
|
|
|
|
{
|
|
|
|
if( result.ok() )
|
|
|
|
m_successes++;
|
|
|
|
else
|
|
|
|
m_failures++;
|
|
|
|
|
|
|
|
m_reporter->Result( result );
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2010-11-11 21:56:38 +01:00
|
|
|
std::size_t m_successes;
|
|
|
|
std::size_t m_failures;
|
2010-11-10 00:24:00 +01:00
|
|
|
ITestReporter* m_reporter;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_INTERNAL_CATCH_RUNNER_HPP_INCLUDED
|