mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
2a9d8d9e36
- Brought older code up to current convention (with the help of a Python script)
179 lines
4.4 KiB
C++
179 lines
4.4 KiB
C++
/*
|
|
* 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_CONFIG_HPP_INCLUDED
|
|
#define TWOBLUECUBES_CATCH_CONFIG_HPP_INCLUDED
|
|
|
|
#include "catch_test_spec.h"
|
|
#include "catch_context.h"
|
|
#include "catch_interfaces_config.h"
|
|
#include "catch_stream.hpp"
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
#ifndef CATCH_CONFIG_CONSOLE_WIDTH
|
|
#define CATCH_CONFIG_CONSOLE_WIDTH 80
|
|
#endif
|
|
|
|
namespace Catch {
|
|
|
|
struct Include { enum WhichResults {
|
|
FailedOnly,
|
|
SuccessfulResults
|
|
}; };
|
|
|
|
struct List{ enum What {
|
|
None = 0,
|
|
|
|
Reports = 1,
|
|
Tests = 2,
|
|
Tags = 4,
|
|
All = Reports | Tests | Tags,
|
|
|
|
WhatMask = 0xf,
|
|
|
|
AsText = 0x10,
|
|
AsXml = 0x20,
|
|
|
|
AsMask = 0xf0
|
|
}; };
|
|
|
|
struct ConfigData {
|
|
|
|
struct WarnAbout { enum What {
|
|
Nothing = 0x00,
|
|
NoAssertions = 0x01
|
|
}; };
|
|
|
|
ConfigData()
|
|
: listSpec( List::None ),
|
|
shouldDebugBreak( false ),
|
|
includeWhichResults( Include::FailedOnly ),
|
|
cutoff( -1 ),
|
|
allowThrows( true ),
|
|
warnings( WarnAbout::Nothing )
|
|
{}
|
|
|
|
std::string reporter;
|
|
std::string outputFilename;
|
|
List::What listSpec;
|
|
std::vector<TestCaseFilters> filters;
|
|
bool shouldDebugBreak;
|
|
std::string stream;
|
|
Include::WhichResults includeWhichResults;
|
|
std::string name;
|
|
int cutoff;
|
|
bool allowThrows;
|
|
WarnAbout::What warnings;
|
|
};
|
|
|
|
|
|
class Config : public IConfig {
|
|
private:
|
|
Config( Config const& other );
|
|
Config& operator = ( Config const& other );
|
|
virtual void dummy();
|
|
public:
|
|
|
|
Config()
|
|
: m_os( std::cout.rdbuf() )
|
|
{}
|
|
|
|
Config( ConfigData const& data )
|
|
: m_data( data ),
|
|
m_os( std::cout.rdbuf() )
|
|
{}
|
|
|
|
virtual ~Config() {
|
|
m_os.rdbuf( std::cout.rdbuf() );
|
|
m_stream.release();
|
|
}
|
|
|
|
void setFilename( std::string const& filename ) {
|
|
m_data.outputFilename = filename;
|
|
}
|
|
|
|
List::What getListSpec( void ) const {
|
|
return m_data.listSpec;
|
|
}
|
|
|
|
std::string const& getFilename() const {
|
|
return m_data.outputFilename ;
|
|
}
|
|
|
|
List::What listWhat() const {
|
|
return static_cast<List::What>( m_data.listSpec & List::WhatMask );
|
|
}
|
|
|
|
List::What listAs() const {
|
|
return static_cast<List::What>( m_data.listSpec & List::AsMask );
|
|
}
|
|
|
|
std::string getName() const {
|
|
return m_data.name;
|
|
}
|
|
|
|
bool shouldDebugBreak() const {
|
|
return m_data.shouldDebugBreak;
|
|
}
|
|
|
|
virtual std::ostream& stream() const {
|
|
return m_os;
|
|
}
|
|
|
|
void setStreamBuf( std::streambuf* buf ) {
|
|
m_os.rdbuf( buf ? buf : std::cout.rdbuf() );
|
|
}
|
|
|
|
void useStream( std::string const& streamName ) {
|
|
Stream stream = createStream( streamName );
|
|
setStreamBuf( stream.streamBuf );
|
|
m_stream.release();
|
|
m_stream = stream;
|
|
}
|
|
|
|
void addTestSpec( std::string const& testSpec ) {
|
|
TestCaseFilters filters( testSpec );
|
|
filters.addFilter( TestCaseFilter( testSpec ) );
|
|
m_data.filters.push_back( filters );
|
|
}
|
|
|
|
virtual bool includeSuccessfulResults() const {
|
|
return m_data.includeWhichResults == Include::SuccessfulResults;
|
|
}
|
|
|
|
int getCutoff() const {
|
|
return m_data.cutoff;
|
|
}
|
|
|
|
virtual bool allowThrows() const {
|
|
return m_data.allowThrows;
|
|
}
|
|
|
|
ConfigData const& data() const {
|
|
return m_data;
|
|
}
|
|
ConfigData& data() {
|
|
return m_data;
|
|
}
|
|
|
|
private:
|
|
ConfigData m_data;
|
|
|
|
// !TBD Move these out of here
|
|
Stream m_stream;
|
|
mutable std::ostream m_os;
|
|
};
|
|
|
|
|
|
} // end namespace Catch
|
|
|
|
#endif // TWOBLUECUBES_CATCH_CONFIG_HPP_INCLUDED
|