catch2/include/internal/catch_config.hpp

164 lines
4.1 KiB
C++
Raw Normal View History

/*
* Created by Phil on 08/11/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_CATCH_RUNNERCONFIG_HPP_INCLUDED
#define TWOBLUECUBES_CATCH_RUNNERCONFIG_HPP_INCLUDED
#include "catch_interfaces_reporter.h"
#include "catch_context.h"
#include <memory>
#include <vector>
#include <string>
2011-01-05 22:04:13 +01:00
#include <iostream>
2012-05-16 00:58:23 +02:00
namespace Catch {
struct Include { enum WhichResults {
FailedOnly,
SuccessfulResults
}; };
struct List{ enum What {
None = 0,
Reports = 1,
Tests = 2,
All = 3,
WhatMask = 0xf,
AsText = 0x10,
AsXml = 0x11,
AsMask = 0xf0
}; };
2012-06-08 09:22:56 +02:00
struct ConfigData {
ConfigData()
: listSpec( List::None ),
shouldDebugBreak( false ),
includeWhichResults( Include::FailedOnly ),
cutoff( -1 ),
allowThrows( true )
{}
std::string reporter;
std::string outputFilename;
List::What listSpec;
std::vector<std::string> testSpecs;
bool shouldDebugBreak;
std::string stream;
Include::WhichResults includeWhichResults;
std::string name;
int cutoff;
bool allowThrows;
};
2012-07-20 20:07:42 +02:00
class Config : public IConfig {
private:
Config( const Config& other );
Config& operator = ( const Config& other );
public:
Config()
2012-06-08 09:22:56 +02:00
: m_streambuf( NULL ),
m_os( std::cout.rdbuf() )
{}
Config( const ConfigData& data )
: m_data( data ),
m_streambuf( NULL ),
2012-06-08 09:22:56 +02:00
m_os( std::cout.rdbuf() )
{}
2012-05-16 00:58:23 +02:00
~Config() {
m_os.rdbuf( std::cout.rdbuf() );
delete m_streambuf;
}
2012-06-08 09:22:56 +02:00
void setFilename( const std::string& filename ) {
m_data.outputFilename = filename;
}
2011-01-18 20:49:00 +01:00
2012-05-16 00:58:23 +02:00
bool testsSpecified() const {
2012-06-08 09:22:56 +02:00
return !m_data.testSpecs.empty();
2011-01-18 20:49:00 +01:00
}
2012-05-16 00:58:23 +02:00
const std::vector<std::string>& getTestSpecs() const {
2012-06-08 09:22:56 +02:00
return m_data.testSpecs;
2011-01-18 20:49:00 +01:00
}
2012-05-16 00:58:23 +02:00
List::What getListSpec( void ) const {
2012-06-08 09:22:56 +02:00
return m_data.listSpec;
2011-01-18 20:49:00 +01:00
}
2011-01-11 20:48:48 +01:00
2012-05-16 00:58:23 +02:00
const std::string& getFilename() const {
2012-06-08 09:22:56 +02:00
return m_data.outputFilename ;
}
2012-05-16 00:58:23 +02:00
List::What listWhat() const {
2012-06-08 09:22:56 +02:00
return static_cast<List::What>( m_data.listSpec & List::WhatMask );
2011-01-11 20:48:48 +01:00
}
2012-05-16 00:58:23 +02:00
List::What listAs() const {
2012-06-08 09:22:56 +02:00
return static_cast<List::What>( m_data.listSpec & List::AsMask );
}
2012-05-16 00:58:23 +02:00
std::string getName() const {
2012-06-08 09:22:56 +02:00
return m_data.name;
}
2012-05-16 00:58:23 +02:00
bool shouldDebugBreak() const {
2012-06-08 09:22:56 +02:00
return m_data.shouldDebugBreak;
2010-12-30 19:51:02 +01:00
}
2012-05-16 00:58:23 +02:00
virtual std::ostream& stream() const {
return m_os;
}
2012-05-16 00:58:23 +02:00
void setStreamBuf( std::streambuf* buf ) {
m_os.rdbuf( buf ? buf : std::cout.rdbuf() );
}
2012-05-16 00:58:23 +02:00
void useStream( const std::string& streamName ) {
std::streambuf* newBuf = createStreamBuf( streamName );
setStreamBuf( newBuf );
delete m_streambuf;
m_streambuf = newBuf;
}
2012-05-16 00:58:23 +02:00
virtual bool includeSuccessfulResults() const {
2012-06-08 09:22:56 +02:00
return m_data.includeWhichResults == Include::SuccessfulResults;
}
int getCutoff() const {
2012-06-08 09:22:56 +02:00
return m_data.cutoff;
}
2012-06-08 09:22:56 +02:00
virtual bool allowThrows() const {
return m_data.allowThrows;
}
2012-06-08 09:22:56 +02:00
ConfigData& data() {
return m_data;
}
2011-01-18 20:49:00 +01:00
private:
2012-06-08 09:22:56 +02:00
ConfigData m_data;
// !TBD Move these out of here
std::streambuf* m_streambuf;
mutable std::ostream m_os;
};
2012-06-08 09:22:56 +02:00
} // end namespace Catch
#endif // TWOBLUECUBES_CATCH_RUNNERCONFIG_HPP_INCLUDED