catch2/include/internal/catch_context_impl.hpp

113 lines
3.5 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-07 11:22:24 +01:00
#include "catch_test_case_registry_impl.hpp"
2011-01-11 10:13:31 +01:00
#include "catch_runner_impl.hpp"
#include "catch_generators_impl.hpp"
#include "catch_console_colour_impl.hpp"
2012-05-10 09:17:06 +02:00
#include "catch_exception_translator_registry.hpp"
#include "catch_context.h"
#include "catch_reporter_registry.hpp"
#include "catch_stream.hpp"
namespace Catch
{
Context::Context()
2011-01-07 11:01:40 +01:00
: m_reporterRegistry( new ReporterRegistry ),
2011-04-20 16:40:40 +02:00
m_testCaseRegistry( new TestRegistry ),
m_exceptionTranslatorRegistry( new ExceptionTranslatorRegistry )
{}
2011-01-11 10:13:31 +01:00
Context& Context::me() {
Context*& hub = singleInstance();
if( !hub )
hub = new Context();
return *hub;
}
void Context::cleanUp() {
Context*& hub = singleInstance();
delete hub;
hub = NULL;
}
Context*& Context::singleInstance() {
static Context* hub = NULL;
2011-01-07 11:01:40 +01:00
return hub;
}
void Context::setRunner( IRunner* runner ) {
2011-01-11 10:13:31 +01:00
me().m_runner = runner;
}
void Context::setResultCapture( IResultCapture* resultCapture ) {
2011-01-11 10:13:31 +01:00
me().m_resultCapture = resultCapture;
}
IResultCapture& Context::getResultCapture() {
2011-01-11 10:13:31 +01:00
return *me().m_resultCapture;
}
IRunner& Context::getRunner() {
2011-01-11 10:13:31 +01:00
return *me().m_runner;
}
IReporterRegistry& Context::getReporterRegistry() {
return *me().m_reporterRegistry.get();
}
2011-01-07 11:01:40 +01:00
ITestCaseRegistry& Context::getTestCaseRegistry() {
2011-01-07 11:22:24 +01:00
return *me().m_testCaseRegistry.get();
2011-01-07 11:01:40 +01:00
}
IExceptionTranslatorRegistry& Context::getExceptionTranslatorRegistry() {
2011-04-20 16:40:40 +02:00
return *me().m_exceptionTranslatorRegistry.get();
}
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
GeneratorsForTest* Context::findGeneratorsForCurrentTest() {
2011-01-27 00:23:33 +01:00
std::string testName = getResultCapture().getCurrentTestName();
std::map<std::string, GeneratorsForTest*>::const_iterator it =
m_generatorsByTestName.find( testName );
return it != m_generatorsByTestName.end()
? it->second
: NULL;
}
GeneratorsForTest& Context::getGeneratorsForCurrentTest() {
2011-01-27 00:23:33 +01:00
GeneratorsForTest* generators = findGeneratorsForCurrentTest();
if( !generators )
{
std::string testName = getResultCapture().getCurrentTestName();
generators = new GeneratorsForTest();
m_generatorsByTestName.insert( std::make_pair( testName, generators ) );
}
return *generators;
}
size_t Context::getGeneratorIndex( const std::string& fileInfo, size_t totalSize )
2011-01-27 00:23:33 +01:00
{
return me().getGeneratorsForCurrentTest()
.getGeneratorInfo( fileInfo, totalSize )
.getCurrentIndex();
}
bool Context::advanceGeneratorsForCurrentTest() {
2011-01-27 00:23:33 +01:00
GeneratorsForTest* generators = me().findGeneratorsForCurrentTest();
return generators && generators->moveNext();
}
}