catch2/include/internal/catch_context_impl.hpp

98 lines
2.9 KiB
C++
Raw Normal View History

/*
* Created by Phil on 31/12/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)
*/
2011-01-11 10:13:31 +01:00
#include "catch_runner_impl.hpp"
2012-05-10 09:17:06 +02:00
#include "catch_context.h"
#include "catch_stream.hpp"
2012-05-16 09:02:20 +02:00
namespace Catch {
namespace {
2012-06-05 11:13:52 +02:00
Context* currentContext = NULL;
}
IMutableContext& getCurrentMutableContext() {
2012-06-05 11:13:52 +02:00
if( !currentContext )
currentContext = new Context();
return *currentContext;
}
IContext& getCurrentContext() {
return getCurrentMutableContext();
}
Context::Context()
: m_config( NULL )
{}
2011-01-11 10:13:31 +01:00
void Context::cleanUp() {
2012-06-05 11:13:52 +02:00
delete currentContext;
currentContext = NULL;
}
void Context::setRunner( IRunner* runner ) {
m_runner = runner;
2011-01-11 10:13:31 +01:00
}
void Context::setResultCapture( IResultCapture* resultCapture ) {
m_resultCapture = resultCapture;
2011-01-11 10:13:31 +01:00
}
const IConfig* Context::getConfig() const {
return m_config;
}
void Context::setConfig( const IConfig* config ) {
m_config = config;
}
2011-01-11 10:13:31 +01:00
IResultCapture& Context::getResultCapture() {
return *m_resultCapture;
2011-01-11 10:13:31 +01:00
}
IRunner& Context::getRunner() {
return *m_runner;
2011-01-11 10:13:31 +01:00
}
std::streambuf* Context::createStreamBuf( const std::string& streamName ) {
if( streamName == "stdout" ) return std::cout.rdbuf();
if( streamName == "stderr" ) return std::cerr.rdbuf();
if( streamName == "debug" ) return new StreamBufImpl<OutputDebugWriter>;
throw std::domain_error( "Unknown stream: " + streamName );
}
2011-01-27 00:23:33 +01:00
2012-08-07 09:18:48 +02:00
IGeneratorsForTest* Context::findGeneratorsForCurrentTest() {
std::string testName = getResultCapture().getCurrentTestName();
2011-01-27 00:23:33 +01:00
2012-08-07 09:18:48 +02:00
std::map<std::string, IGeneratorsForTest*>::const_iterator it =
2011-01-27 00:23:33 +01:00
m_generatorsByTestName.find( testName );
return it != m_generatorsByTestName.end()
? it->second
: NULL;
}
2012-08-07 09:18:48 +02:00
IGeneratorsForTest& Context::getGeneratorsForCurrentTest() {
IGeneratorsForTest* generators = findGeneratorsForCurrentTest();
2012-05-16 09:02:20 +02:00
if( !generators ) {
std::string testName = getResultCapture().getCurrentTestName();
2012-08-07 09:18:48 +02:00
generators = createGeneratorsForTest();
2011-01-27 00:23:33 +01:00
m_generatorsByTestName.insert( std::make_pair( testName, generators ) );
}
return *generators;
}
2012-05-16 09:02:20 +02:00
size_t Context::getGeneratorIndex( const std::string& fileInfo, size_t totalSize ) {
return getGeneratorsForCurrentTest()
2011-01-27 00:23:33 +01:00
.getGeneratorInfo( fileInfo, totalSize )
.getCurrentIndex();
}
bool Context::advanceGeneratorsForCurrentTest() {
2012-08-07 09:18:48 +02:00
IGeneratorsForTest* generators = findGeneratorsForCurrentTest();
2011-01-27 00:23:33 +01:00
return generators && generators->moveNext();
}
}