mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 13:26:10 +01:00
Tag Alias registry is part of registry hub instead of it’s own singleton
- should now be cleaned up properly
This commit is contained in:
parent
e7984e3711
commit
4ec8d53e91
@ -20,12 +20,15 @@ namespace Catch {
|
|||||||
struct IExceptionTranslator;
|
struct IExceptionTranslator;
|
||||||
struct IReporterRegistry;
|
struct IReporterRegistry;
|
||||||
struct IReporterFactory;
|
struct IReporterFactory;
|
||||||
|
struct ITagAliasRegistry;
|
||||||
|
|
||||||
struct IRegistryHub {
|
struct IRegistryHub {
|
||||||
virtual ~IRegistryHub();
|
virtual ~IRegistryHub();
|
||||||
|
|
||||||
virtual IReporterRegistry const& getReporterRegistry() const = 0;
|
virtual IReporterRegistry const& getReporterRegistry() const = 0;
|
||||||
virtual ITestCaseRegistry const& getTestCaseRegistry() const = 0;
|
virtual ITestCaseRegistry const& getTestCaseRegistry() const = 0;
|
||||||
|
virtual ITagAliasRegistry const& getTagAliasRegistry() const = 0;
|
||||||
|
|
||||||
virtual IExceptionTranslatorRegistry& getExceptionTranslatorRegistry() = 0;
|
virtual IExceptionTranslatorRegistry& getExceptionTranslatorRegistry() = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -35,6 +38,7 @@ namespace Catch {
|
|||||||
virtual void registerListener( Ptr<IReporterFactory> const& factory ) = 0;
|
virtual void registerListener( Ptr<IReporterFactory> const& factory ) = 0;
|
||||||
virtual void registerTest( TestCase const& testInfo ) = 0;
|
virtual void registerTest( TestCase const& testInfo ) = 0;
|
||||||
virtual void registerTranslator( const IExceptionTranslator* translator ) = 0;
|
virtual void registerTranslator( const IExceptionTranslator* translator ) = 0;
|
||||||
|
virtual void registerTagAlias( std::string const& alias, std::string const& tag, SourceLineInfo const& lineInfo ) = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
IRegistryHub& getRegistryHub();
|
IRegistryHub& getRegistryHub();
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
#include "catch_test_case_registry_impl.hpp"
|
#include "catch_test_case_registry_impl.hpp"
|
||||||
#include "catch_reporter_registry.hpp"
|
#include "catch_reporter_registry.hpp"
|
||||||
#include "catch_exception_translator_registry.hpp"
|
#include "catch_exception_translator_registry.hpp"
|
||||||
|
#include "catch_tag_alias_registry.h"
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
|
||||||
@ -35,6 +36,10 @@ namespace Catch {
|
|||||||
virtual IExceptionTranslatorRegistry& getExceptionTranslatorRegistry() CATCH_OVERRIDE {
|
virtual IExceptionTranslatorRegistry& getExceptionTranslatorRegistry() CATCH_OVERRIDE {
|
||||||
return m_exceptionTranslatorRegistry;
|
return m_exceptionTranslatorRegistry;
|
||||||
}
|
}
|
||||||
|
virtual ITagAliasRegistry const& getTagAliasRegistry() const CATCH_OVERRIDE {
|
||||||
|
return m_tagAliasRegistry;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public: // IMutableRegistryHub
|
public: // IMutableRegistryHub
|
||||||
virtual void registerReporter( std::string const& name, Ptr<IReporterFactory> const& factory ) CATCH_OVERRIDE {
|
virtual void registerReporter( std::string const& name, Ptr<IReporterFactory> const& factory ) CATCH_OVERRIDE {
|
||||||
@ -49,11 +54,15 @@ namespace Catch {
|
|||||||
virtual void registerTranslator( const IExceptionTranslator* translator ) CATCH_OVERRIDE {
|
virtual void registerTranslator( const IExceptionTranslator* translator ) CATCH_OVERRIDE {
|
||||||
m_exceptionTranslatorRegistry.registerTranslator( translator );
|
m_exceptionTranslatorRegistry.registerTranslator( translator );
|
||||||
}
|
}
|
||||||
|
virtual void registerTagAlias( std::string const& alias, std::string const& tag, SourceLineInfo const& lineInfo ) CATCH_OVERRIDE {
|
||||||
|
m_tagAliasRegistry.add( alias, tag, lineInfo );
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
TestRegistry m_testCaseRegistry;
|
TestRegistry m_testCaseRegistry;
|
||||||
ReporterRegistry m_reporterRegistry;
|
ReporterRegistry m_reporterRegistry;
|
||||||
ExceptionTranslatorRegistry m_exceptionTranslatorRegistry;
|
ExceptionTranslatorRegistry m_exceptionTranslatorRegistry;
|
||||||
|
TagAliasRegistry m_tagAliasRegistry;
|
||||||
};
|
};
|
||||||
|
|
||||||
// Single, global, instance
|
// Single, global, instance
|
||||||
|
@ -19,8 +19,7 @@ namespace Catch {
|
|||||||
virtual ~TagAliasRegistry();
|
virtual ~TagAliasRegistry();
|
||||||
virtual Option<TagAlias> find( std::string const& alias ) const;
|
virtual Option<TagAlias> find( std::string const& alias ) const;
|
||||||
virtual std::string expandAliases( std::string const& unexpandedTestSpec ) const;
|
virtual std::string expandAliases( std::string const& unexpandedTestSpec ) const;
|
||||||
void add( char const* alias, char const* tag, SourceLineInfo const& lineInfo );
|
void add( std::string const& alias, std::string const& tag, SourceLineInfo const& lineInfo );
|
||||||
static TagAliasRegistry& get();
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
std::map<std::string, TagAlias> m_registry;
|
std::map<std::string, TagAlias> m_registry;
|
||||||
|
@ -10,6 +10,8 @@
|
|||||||
|
|
||||||
#include "catch_tag_alias_registry.h"
|
#include "catch_tag_alias_registry.h"
|
||||||
#include "catch_console_colour.hpp"
|
#include "catch_console_colour.hpp"
|
||||||
|
#include "catch_interfaces_registry_hub.h"
|
||||||
|
#include "catch_stream.h"
|
||||||
|
|
||||||
namespace Catch {
|
namespace Catch {
|
||||||
|
|
||||||
@ -38,7 +40,7 @@ namespace Catch {
|
|||||||
return expandedTestSpec;
|
return expandedTestSpec;
|
||||||
}
|
}
|
||||||
|
|
||||||
void TagAliasRegistry::add( char const* alias, char const* tag, SourceLineInfo const& lineInfo ) {
|
void TagAliasRegistry::add( std::string const& alias, std::string const& tag, SourceLineInfo const& lineInfo ) {
|
||||||
|
|
||||||
if( !startsWith( alias, "[@" ) || !endsWith( alias, ']' ) ) {
|
if( !startsWith( alias, "[@" ) || !endsWith( alias, ']' ) ) {
|
||||||
std::ostringstream oss;
|
std::ostringstream oss;
|
||||||
@ -54,19 +56,15 @@ namespace Catch {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
TagAliasRegistry& TagAliasRegistry::get() {
|
|
||||||
static TagAliasRegistry instance;
|
|
||||||
return instance;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
ITagAliasRegistry::~ITagAliasRegistry() {}
|
ITagAliasRegistry::~ITagAliasRegistry() {}
|
||||||
ITagAliasRegistry const& ITagAliasRegistry::get() { return TagAliasRegistry::get(); }
|
|
||||||
|
|
||||||
|
ITagAliasRegistry const& ITagAliasRegistry::get() {
|
||||||
|
return getRegistryHub().getTagAliasRegistry();
|
||||||
|
}
|
||||||
|
|
||||||
RegistrarForTagAliases::RegistrarForTagAliases( char const* alias, char const* tag, SourceLineInfo const& lineInfo ) {
|
RegistrarForTagAliases::RegistrarForTagAliases( char const* alias, char const* tag, SourceLineInfo const& lineInfo ) {
|
||||||
try {
|
try {
|
||||||
TagAliasRegistry::get().add( alias, tag, lineInfo );
|
getMutableRegistryHub().registerTagAlias( alias, tag, lineInfo );
|
||||||
}
|
}
|
||||||
catch( std::exception& ex ) {
|
catch( std::exception& ex ) {
|
||||||
Colour colourGuard( Colour::Red );
|
Colour colourGuard( Colour::Red );
|
||||||
|
Loading…
Reference in New Issue
Block a user