LArSoft  v10_04_05
Liquid Argon Software toolkit - https://larsoft.org/
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
testing::BasicTesterEnvironment< ConfigurationClass > Class Template Reference

Environment for a test. More...

#include "unit_test_base.h"

Inheritance diagram for testing::BasicTesterEnvironment< ConfigurationClass >:
testing::TesterEnvironment< ConfigurationClass > testing::GeometryTesterEnvironment< ConfigurationClass, ObjectSorter >

Classes

struct  Options_t
 Test environment options. More...
 

Public Types

using Configuration_t = ConfigurationClass
 

Public Member Functions

 BasicTesterEnvironment (bool bSetup=true)
 Constructor: sets everything up and declares the test started. More...
 
virtual ~BasicTesterEnvironment ()
 Destructor: closing remarks. More...
 
 BasicTesterEnvironment (Configuration_t const &configurer, bool bSetup=true)
 Setup from a configuration. More...
 
 BasicTesterEnvironment (Configuration_t &&configurer, bool bSetup=true)
 Setup from a configuration. More...
 
Configuration retrieval
fhicl::ParameterSet const & Parameters () const
 Returns the full configuration. More...
 
fhicl::ParameterSet ServiceParameters (std::string service_name) const
 Returns the configuration of the specified service. More...
 
fhicl::ParameterSet TesterParameters (std::string test_name) const
 Returns the configuration of the specified test. More...
 
fhicl::ParameterSet TesterParameters () const
 Returns the configuration of the main test (undefined if no main test) More...
 

Static Public Member Functions

static fhicl::ParameterSet CompileParameterSet (std::string cfg)
 Compiles a parameter set from a string. More...
 

Protected Member Functions

Configuration_t const & Config () const
 Returns a read-only version of the configuration. More...
 
virtual void Setup ()
 The complete initialization, ran at construction by default. More...
 
virtual void Configure ()
 Reads and translates the configuration. More...
 
virtual fhicl::ParameterSet DefaultParameters () const
 Creates a full configuration for the test. More...
 
virtual void SetupMessageFacility (fhicl::ParameterSet const &pset, std::string appl_name="") const
 Sets up the message facility. More...
 
virtual void SetupMessageFacility () const
 Sets up the message facility. More...
 

Static Protected Member Functions

static fhicl::ParameterSet ParseParameters (std::string config_path)
 Fills the test configuration from file or from default. More...
 

Private Member Functions

void ParseEnvironmentOptions ()
 Parses the configuration, looking for the test environment options. More...
 

Private Attributes

Configuration_t config
 instance of the configurer More...
 
Options_t options
 options for the test environment More...
 
fhicl::ParameterSet params
 full configuration of the test More...
 

Detailed Description

template<typename ConfigurationClass>
class testing::BasicTesterEnvironment< ConfigurationClass >

Environment for a test.


Template Parameters
ConfigurationClassa class providing compile-time configuration

The test environment is set up on construction.

The environment provides:

This class or a derived one can be used as global fixture for unit tests.

Unfortunately Boost does not give any control on the initialization of the object, so everything must be ready to go as hard coded. The ConfigurationClass class tries to alleviate that. That is another, small static class that BasicTesterEnvironment uses to get its parameters.

The requirements for the ConfigurationClass are:

  • std::string ApplicationName(): the application name
  • std::string ConfigurationPath(): path to the configuration file
  • std::string MainTesterParameterSetName(): name of the configuration of the main test (commodity)
  • std::string DefaultTesterConfiguration() returning a FHiCL string to be parsed to extract the default test configuration

Whether the configuration comes from a file or from the two provided defaults, it is always expected within the parameter set paths: the default configuration must also contain that path.

Note that there is no room for polymorphism here since the setup happens on construction. Some methods are declared virtual in order to allow to tweak some steps of the set up, but it's not trivial to create a derived class that works correctly: the derived class must declare a new default constructor, and that default constructor must call the protected constructor (BasicTesterEnvironment<ConfigurationClass>(no_setup))

Definition at line 558 of file unit_test_base.h.

Member Typedef Documentation

template<typename ConfigurationClass >
using testing::BasicTesterEnvironment< ConfigurationClass >::Configuration_t = ConfigurationClass

Definition at line 561 of file unit_test_base.h.

Constructor & Destructor Documentation

template<typename ConfigurationClass >
testing::BasicTesterEnvironment< ConfigurationClass >::BasicTesterEnvironment ( bool  bSetup = true)
inline

Constructor: sets everything up and declares the test started.

Parameters
bSetup(default: true) call Setup() after construction

The configuration is from a default-constructed ConfigurationClass. This is suitable for use as Boost unit test fixture.

Definition at line 570 of file unit_test_base.h.

571  {
572  if (bSetup) Setup();
573  }
virtual void Setup()
The complete initialization, ran at construction by default.
template<typename ConfigurationClass >
testing::BasicTesterEnvironment< ConfigurationClass >::BasicTesterEnvironment ( Configuration_t const &  configurer,
bool  bSetup = true 
)
inline

Setup from a configuration.

Parameters
configureran instance of ConfigurationClass
bSetup(default: true) call Setup() after construction

The configuration is from the specified configurer class.

This constructor allows to use a non-default-constructed configuration. This can't be used (at best of my knowledge) when using this class as Boost unit test fixture.

In the r-value-reference constructor, the configurer is moved.

Definition at line 589 of file unit_test_base.h.

590  : config(configurer)
591  {
592  if (bSetup) Setup();
593  }
Configuration_t config
instance of the configurer
virtual void Setup()
The complete initialization, ran at construction by default.
template<typename ConfigurationClass >
testing::BasicTesterEnvironment< ConfigurationClass >::BasicTesterEnvironment ( Configuration_t &&  configurer,
bool  bSetup = true 
)
inline

Setup from a configuration.

Parameters
configureran instance of ConfigurationClass
bSetup(default: true) call Setup() after construction

The configuration is from the specified configurer class.

This constructor allows to use a non-default-constructed configuration. This can't be used (at best of my knowledge) when using this class as Boost unit test fixture.

In the r-value-reference constructor, the configurer is moved.

Definition at line 594 of file unit_test_base.h.

594  : config(configurer)
595  {
596  if (bSetup) Setup();
597  }
Configuration_t config
instance of the configurer
virtual void Setup()
The complete initialization, ran at construction by default.
template<typename ConfigurationClass >
testing::BasicTesterEnvironment< ConfigurationClass >::~BasicTesterEnvironment ( )
virtual

Destructor: closing remarks.

Definition at line 1025 of file unit_test_base.h.

1026  {
1027  mf::LogInfo("Test") << config.ApplicationName() << " completed.";
1028  }
MaybeLogger_< ELseverityLevel::ELsev_info, false > LogInfo
Configuration_t config
instance of the configurer

Member Function Documentation

template<typename ConfigurationClass >
fhicl::ParameterSet testing::BasicTesterEnvironment< ConfigurationClass >::CompileParameterSet ( std::string  cfg)
static

Compiles a parameter set from a string.


Returns
a parameters set with the complete configuration

Definition at line 1035 of file unit_test_base.h.

References fhicl::ParameterSet::make().

1037  {
1038  fhicl::ParameterSet global_pset;
1039  global_pset = fhicl::ParameterSet::make(cfg);
1040  return global_pset;
1041  }
static ParameterSet make(intermediate_table const &tbl)
Definition: ParameterSet.cc:68
template<typename ConfigurationClass >
Configuration_t const& testing::BasicTesterEnvironment< ConfigurationClass >::Config ( ) const
inlineprotected

Returns a read-only version of the configuration.

Definition at line 636 of file unit_test_base.h.

636 { return config; }
Configuration_t config
instance of the configurer
template<typename ConfigurationClass >
void testing::BasicTesterEnvironment< ConfigurationClass >::Configure ( )
protectedvirtual

Reads and translates the configuration.

Fills the configuration.


The complete configuration (message facility and services) is read and saved, hence accessible by Parameters() method.

The configuration file path is taken by default from the first argument of the test. If that first argument is not present or empty, the default configuration path is received from the configurer. If the configuration path is still empty, a hard-coded configuration is used; otherwise, the FHiCL file specified in that path is parsed and used as full configuration.

Definition at line 1077 of file unit_test_base.h.

1078  {
1079  std::string config_path = config.ConfigurationPath();
1080  params = config_path.empty() ? DefaultParameters() : ParseParameters(config_path);
1081  }
fhicl::ParameterSet params
full configuration of the test
static fhicl::ParameterSet ParseParameters(std::string config_path)
Fills the test configuration from file or from default.
virtual fhicl::ParameterSet DefaultParameters() const
Creates a full configuration for the test.
Configuration_t config
instance of the configurer
template<typename ConfigurationClass >
virtual fhicl::ParameterSet testing::BasicTesterEnvironment< ConfigurationClass >::DefaultParameters ( ) const
inlineprotectedvirtual

Creates a full configuration for the test.

Returns
a parameters set with the complete configuration

Definition at line 648 of file unit_test_base.h.

References lar::standalone::SetupMessageFacility().

649  {
650  return CompileParameterSet(config.DefaultConfiguration());
651  }
Configuration_t config
instance of the configurer
static fhicl::ParameterSet CompileParameterSet(std::string cfg)
Compiles a parameter set from a string.
template<typename ConfigurationClass >
fhicl::ParameterSet const& testing::BasicTesterEnvironment< ConfigurationClass >::Parameters ( ) const
inline

Returns the full configuration.

Definition at line 607 of file unit_test_base.h.

607 { return params; }
fhicl::ParameterSet params
full configuration of the test
template<typename ConfigurationClass >
void testing::BasicTesterEnvironment< ConfigurationClass >::ParseEnvironmentOptions ( )
private

Parses the configuration, looking for the test environment options.

Definition at line 1140 of file unit_test_base.h.

References fhicl::ParameterSet::get().

1141  {
1142 
1143  struct OptionsFromConfig_t {
1144  fhicl::Atom<bool> messageLevels{
1145  fhicl::Name("messageLevels"),
1146  fhicl::Comment("prints a message per level (to verify the visible ones"),
1147  false // default: no
1148  };
1149  fhicl::Atom<bool> printOptions{
1150  fhicl::Name("printOptions"),
1151  fhicl::Comment("prints a the list of options (this is one of them!)"),
1152  false // default: no
1153  };
1154  }; // OptionsFromConfig_t
1155 
1156  struct ValidationHelper {
1157  static void printDummy(std::ostream& out)
1158  {
1160  fhicl::Comment("Test environment options"))
1161  .print_allowed_configuration(out);
1162  } // printDummy()
1163 
1164  static fhicl::Table<OptionsFromConfig_t> validate(fhicl::ParameterSet const& pset)
1165  {
1166  try {
1167  return fhicl::Table<OptionsFromConfig_t>(pset, {});
1168  }
1169  catch (...) {
1170  std::cerr << "Error parsing environment test options! Valid options:" << std::endl;
1171  ValidationHelper::printDummy(std::cerr);
1172  throw;
1173  }
1174  } // validate()
1175  };
1176 
1177  fhicl::ParameterSet pset = params.get<fhicl::ParameterSet>("test", {});
1178 
1179  // automatically performs validation
1180  fhicl::Table<OptionsFromConfig_t> configTable(ValidationHelper::validate(pset));
1181 
1182  if (configTable().printOptions()) {
1183  std::cout << "The following options can be passed to the test environment"
1184  << " by putting them in the \"test: {}\" table of the configuration file:"
1185  << std::endl;
1186  ValidationHelper::printDummy(std::cout);
1187  }
1188 
1189  options.MessageLevels = configTable().messageLevels();
1190  } // BasicTesterEnvironment<>::ParseEnvironmentOptions()
fhicl::ParameterSet params
full configuration of the test
Options_t options
options for the test environment
T get(std::string const &key) const
Definition: ParameterSet.h:314
bool MessageLevels
print message levels on screen
template<typename ConfigurationClass >
fhicl::ParameterSet testing::BasicTesterEnvironment< ConfigurationClass >::ParseParameters ( std::string  config_path)
staticprotected

Fills the test configuration from file or from default.

Returns the configuration from a FHiCL file.

If a FHiCL configuration file is specified, the configuration of the test is read from it according to the parameter set path of the test. Otherwise, it is parsed from the default one provided by the configurer.Parses from file and returns a FHiCL data structure


Parameters
config_pathfull path of the FHiCL configuration file
Returns
a parameters set with the complete configuration from the file

Definition at line 1049 of file unit_test_base.h.

References fhicl::ParameterSet::make(), and fhicl::parse_document().

1051  {
1052  // configuration file lookup policy
1053  char const* fhicl_env = getenv("FHICL_FILE_PATH");
1054  std::string search_path = fhicl_env ? std::string(fhicl_env) + ":" : ".:";
1055  cet::filepath_first_absolute_or_lookup_with_dot policy(search_path);
1056 
1057  // parse a configuration file; obtain intermediate form
1058  auto table = fhicl::parse_document(config_path, policy);
1059  return fhicl::ParameterSet::make(table);
1060  }
static ParameterSet make(intermediate_table const &tbl)
Definition: ParameterSet.cc:68
intermediate_table parse_document(std::string const &filename, cet::filepath_maker &maker)
Definition: parse.cc:709
template<typename ConfigurationClass >
fhicl::ParameterSet testing::BasicTesterEnvironment< ConfigurationClass >::ServiceParameters ( std::string  service_name) const
inline

Returns the configuration of the specified service.

Definition at line 610 of file unit_test_base.h.

References fhicl::ParameterSet::get().

611  {
612  return params.get<fhicl::ParameterSet>(config.ServiceParameterSetPath(service_name));
613  }
fhicl::ParameterSet params
full configuration of the test
Configuration_t config
instance of the configurer
T get(std::string const &key) const
Definition: ParameterSet.h:314
template<typename ConfigurationClass >
void testing::BasicTesterEnvironment< ConfigurationClass >::Setup ( )
protectedvirtual

The complete initialization, ran at construction by default.

Reimplemented in testing::GeometryTesterEnvironment< ConfigurationClass, ObjectSorter >.

Definition at line 1120 of file unit_test_base.h.

References lar::standalone::SetupMessageFacility().

1121  {
1122  Configure();
1125 
1126  // Optionally print the configuration
1127  {
1128  mf::LogInfo msg("Configuration");
1129  msg << "Complete configuration (";
1130  if (config.ConfigurationPath().empty())
1131  msg << "default";
1132  else
1133  msg << "'" << config.ConfigurationPath() << "'";
1134  msg << "):\n" << Parameters().to_indented_string(1);
1135  }
1136  mf::LogInfo("Test") << config.ApplicationName() << " base setup complete.";
1137  }
fhicl::ParameterSet const & Parameters() const
Returns the full configuration.
MaybeLogger_< ELseverityLevel::ELsev_info, false > LogInfo
Configuration_t config
instance of the configurer
virtual void Configure()
Reads and translates the configuration.
void ParseEnvironmentOptions()
Parses the configuration, looking for the test environment options.
std::string to_indented_string() const
virtual void SetupMessageFacility() const
Sets up the message facility.
template<typename ConfigurationClass >
void testing::BasicTesterEnvironment< ConfigurationClass >::SetupMessageFacility ( fhicl::ParameterSet const &  pset,
std::string  appl_name = "" 
) const
protectedvirtual

Sets up the message facility.

Sets the message facility up.


Message facility configuration is expected in "services.message" parameter set. If not there, the default configuration is used.

Definition at line 1090 of file unit_test_base.h.

References fhicl::ParameterSet::get_if_present(), MF_LOG_TRACE, mf::SetApplicationName(), mf::SetContextIteration(), mf::SetContextSinglet(), mf::StartMessageFacility(), and fhicl::ParameterSet::to_indented_string().

1093  {
1094  fhicl::ParameterSet mf_pset;
1095 
1096  if (!pset.get_if_present(config.ServiceParameterSetPath("message"), mf_pset)) {
1097  mf_pset = CompileParameterSet(config.DefaultServiceConfiguration("message"));
1098  std::cout << "Using default message facility configuration:\n"
1099  << mf_pset.to_indented_string(1) << std::endl;
1100  } // if no configuration is available
1101 
1102  mf::StartMessageFacility(mf_pset);
1103  if (!appl_name.empty()) mf::SetApplicationName(appl_name);
1104  mf::SetContextIteration("Initialization");
1105  if (options.MessageLevels) {
1106  std::cout << "Printing message levels in 'MessageFacility' category." << std::endl;
1107 
1108  mf::LogProblem("MessageFacility") << "Error messages are shown.";
1109  mf::LogPrint("MessageFacility") << "Warning messages are shown.";
1110  mf::LogVerbatim("MessageFacility") << "Info messages are shown.";
1111  mf::LogTrace("MessageFacility") << "Debug messages are shown.";
1112  MF_LOG_TRACE("MessageFacility")
1113  << "MF_LOG_TRACE/MF_LOG_DEBUG messages are not compiled away.";
1114  } // if print message levels
1115  mf::LogInfo("MessageFacility") << "MessageFacility started.";
1116  mf::SetContextSinglet("main");
1117  }
MaybeLogger_< ELseverityLevel::ELsev_info, true > LogVerbatim
Options_t options
options for the test environment
MaybeLogger_< ELseverityLevel::ELsev_info, false > LogInfo
Configuration_t config
instance of the configurer
void SetContextIteration(string const &val)
MaybeLogger_< ELseverityLevel::ELsev_error, true > LogProblem
void StartMessageFacility(fhicl::ParameterSet const &pset, string const &applicationName)
#define MF_LOG_TRACE(id)
std::string to_indented_string() const
bool MessageLevels
print message levels on screen
void SetContextSinglet(string const &val)
MaybeLogger_< ELseverityLevel::ELsev_success, true > LogTrace
static fhicl::ParameterSet CompileParameterSet(std::string cfg)
Compiles a parameter set from a string.
void SetApplicationName(string const &applicationName)
MaybeLogger_< ELseverityLevel::ELsev_warning, true > LogPrint
template<typename ConfigurationClass >
virtual void testing::BasicTesterEnvironment< ConfigurationClass >::SetupMessageFacility ( ) const
inlineprotectedvirtual

Sets up the message facility.

Sets the message facility up.


Message facility configuration is expected in "services.message" parameter set. If not there, the default configuration is used.

Definition at line 657 of file unit_test_base.h.

References lar::standalone::SetupMessageFacility().

658  {
659  SetupMessageFacility(Parameters(), config.ApplicationName());
660  }
fhicl::ParameterSet const & Parameters() const
Returns the full configuration.
Configuration_t config
instance of the configurer
virtual void SetupMessageFacility() const
Sets up the message facility.
template<typename ConfigurationClass >
fhicl::ParameterSet testing::BasicTesterEnvironment< ConfigurationClass >::TesterParameters ( std::string  test_name) const
inline

Returns the configuration of the specified test.

Definition at line 616 of file unit_test_base.h.

References fhicl::ParameterSet::get().

617  {
618  return params.get<fhicl::ParameterSet>(config.TesterParameterSetPath(test_name));
619  }
fhicl::ParameterSet params
full configuration of the test
Configuration_t config
instance of the configurer
T get(std::string const &key) const
Definition: ParameterSet.h:314
template<typename ConfigurationClass >
fhicl::ParameterSet testing::BasicTesterEnvironment< ConfigurationClass >::TesterParameters ( ) const
inline

Returns the configuration of the main test (undefined if no main test)

Definition at line 622 of file unit_test_base.h.

623  {
624  if (config.MainTesterParameterSetName().empty())
625  return {};
626  else
627  return TesterParameters(config.MainTesterParameterSetName());
628  }
Configuration_t config
instance of the configurer
fhicl::ParameterSet TesterParameters() const
Returns the configuration of the main test (undefined if no main test)

Member Data Documentation

template<typename ConfigurationClass >
Configuration_t testing::BasicTesterEnvironment< ConfigurationClass >::config
private

instance of the configurer

Definition at line 679 of file unit_test_base.h.

template<typename ConfigurationClass >
Options_t testing::BasicTesterEnvironment< ConfigurationClass >::options
private

options for the test environment

Definition at line 680 of file unit_test_base.h.

template<typename ConfigurationClass >
fhicl::ParameterSet testing::BasicTesterEnvironment< ConfigurationClass >::params
private

full configuration of the test

Definition at line 685 of file unit_test_base.h.


The documentation for this class was generated from the following file: