LArSoft  v09_90_00
Liquid Argon Software toolkit - https://larsoft.org/
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 >

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 560 of file unit_test_base.h.

Member Typedef Documentation

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

Definition at line 563 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 572 of file unit_test_base.h.

573  {
574  if (bSetup) Setup();
575  }
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 591 of file unit_test_base.h.

592  : config(configurer)
593  {
594  if (bSetup) Setup();
595  }
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 596 of file unit_test_base.h.

596  : config(configurer)
597  {
598  if (bSetup) Setup();
599  }
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 1057 of file unit_test_base.h.

1058  {
1059 
1060  mf::LogInfo("Test") << config.ApplicationName() << " completed.";
1061 
1062  } // BasicTesterEnvironment<>::~BasicTesterEnvironment()
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 1069 of file unit_test_base.h.

References fhicl::ParameterSet::make().

1071  {
1072  fhicl::ParameterSet global_pset;
1073  global_pset = fhicl::ParameterSet::make(cfg);
1074  return global_pset;
1075  } // BasicTesterEnvironment<>::CompileParameterSet()
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 638 of file unit_test_base.h.

638 { 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 1117 of file unit_test_base.h.

1118  {
1119  std::string config_path = config.ConfigurationPath();
1120  params = config_path.empty() ? DefaultParameters() : ParseParameters(config_path);
1121  } // BasicTesterEnvironment::Configure()
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 650 of file unit_test_base.h.

References lar::standalone::SetupMessageFacility().

651  {
652  return CompileParameterSet(config.DefaultConfiguration());
653  }
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 609 of file unit_test_base.h.

609 { 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 1196 of file unit_test_base.h.

References fhicl::ParameterSet::get().

1197  {
1198 
1199  struct OptionsFromConfig_t {
1200  fhicl::Atom<bool> messageLevels{
1201  fhicl::Name("messageLevels"),
1202  fhicl::Comment("prints a message per level (to verify the visible ones"),
1203  false // default: no
1204  };
1205  fhicl::Atom<bool> printOptions{
1206  fhicl::Name("printOptions"),
1207  fhicl::Comment("prints a the list of options (this is one of them!)"),
1208  false // default: no
1209  };
1210  }; // OptionsFromConfig_t
1211 
1212  struct ValidationHelper {
1213  static void printDummy(std::ostream& out)
1214  {
1216  fhicl::Comment("Test environment options"))
1217  .print_allowed_configuration(out);
1218  } // printDummy()
1219 
1220  static fhicl::Table<OptionsFromConfig_t> validate(fhicl::ParameterSet const& pset)
1221  {
1222  try {
1223  return fhicl::Table<OptionsFromConfig_t>(pset, {});
1224  }
1225  catch (...) {
1226  std::cerr << "Error parsing environment test options! Valid options:" << std::endl;
1227  ValidationHelper::printDummy(std::cerr);
1228  throw;
1229  }
1230  } // validate()
1231  };
1232 
1233  fhicl::ParameterSet pset = params.get<fhicl::ParameterSet>("test", {});
1234 
1235  // automatically performs validation
1236  fhicl::Table<OptionsFromConfig_t> configTable(ValidationHelper::validate(pset));
1237 
1238  if (configTable().printOptions()) {
1239  std::cout << "The following options can be passed to the test environment"
1240  << " by putting them in the \"test: {}\" table of the configuration file:"
1241  << std::endl;
1242  ValidationHelper::printDummy(std::cout);
1243  }
1244 
1245  options.MessageLevels = configTable().messageLevels();
1246 
1247  } // 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 1083 of file unit_test_base.h.

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

1085  {
1086  // configuration file lookup policy
1087  char const* fhicl_env = getenv("FHICL_FILE_PATH");
1088  std::string search_path = fhicl_env ? std::string(fhicl_env) + ":" : ".:";
1089  details::FirstAbsoluteOrLookupWithDotPolicy policy(search_path);
1090 
1091  // parse a configuration file; obtain intermediate form
1093  table = fhicl::parse_document(config_path, policy);
1094 
1095  // translate into a parameter set
1096  fhicl::ParameterSet global_pset;
1097  global_pset = fhicl::ParameterSet::make(table);
1098 
1099  return global_pset;
1100  } // BasicTesterEnvironment<>::ParseParameters()
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 612 of file unit_test_base.h.

References fhicl::ParameterSet::get().

613  {
614  return params.get<fhicl::ParameterSet>(config.ServiceParameterSetPath(service_name));
615  }
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 >.

Definition at line 1160 of file unit_test_base.h.

References lar::standalone::SetupMessageFacility().

1161  {
1162 
1163  //
1164  // get the configuration
1165  //
1166  Configure();
1167 
1168  //
1169  // parse the options specific to the test environment
1170  //
1172 
1173  //
1174  // set up the message facility
1175  //
1177 
1178  //
1179  // Optionally print the configuration
1180  //
1181  {
1182  mf::LogInfo msg("Configuration");
1183  msg << "Complete configuration (";
1184  if (config.ConfigurationPath().empty())
1185  msg << "default";
1186  else
1187  msg << "'" << config.ConfigurationPath() << "'";
1188  msg << "):\n" << Parameters().to_indented_string(1);
1189  }
1190 
1191  mf::LogInfo("Test") << config.ApplicationName() << " base setup complete.";
1192 
1193  } // BasicTesterEnvironment<>::Setup()
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 1130 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().

1133  {
1134  fhicl::ParameterSet mf_pset;
1135 
1136  if (!pset.get_if_present(config.ServiceParameterSetPath("message"), mf_pset)) {
1137  mf_pset = CompileParameterSet(config.DefaultServiceConfiguration("message"));
1138  std::cout << "Using default message facility configuration:\n"
1139  << mf_pset.to_indented_string(1) << std::endl;
1140  } // if no configuration is available
1141 
1142  mf::StartMessageFacility(mf_pset);
1143  if (!appl_name.empty()) mf::SetApplicationName(appl_name);
1144  mf::SetContextIteration("Initialization");
1145  if (options.MessageLevels) {
1146  std::cout << "Printing message levels in 'MessageFacility' category." << std::endl;
1147 
1148  mf::LogProblem("MessageFacility") << "Error messages are shown.";
1149  mf::LogPrint("MessageFacility") << "Warning messages are shown.";
1150  mf::LogVerbatim("MessageFacility") << "Info messages are shown.";
1151  mf::LogTrace("MessageFacility") << "Debug messages are shown.";
1152  MF_LOG_TRACE("MessageFacility")
1153  << "MF_LOG_TRACE/MF_LOG_DEBUG messages are not compiled away.";
1154  } // if print message levels
1155  mf::LogInfo("MessageFacility") << "MessageFacility started.";
1156  mf::SetContextSinglet("main");
1157  } // BasicTesterEnvironment::SetupMessageFacility()
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 659 of file unit_test_base.h.

References lar::standalone::SetupMessageFacility().

660  {
661  SetupMessageFacility(Parameters(), config.ApplicationName());
662  }
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 618 of file unit_test_base.h.

References fhicl::ParameterSet::get().

619  {
620  return params.get<fhicl::ParameterSet>(config.TesterParameterSetPath(test_name));
621  }
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 624 of file unit_test_base.h.

625  {
626  if (config.MainTesterParameterSetName().empty())
627  return {};
628  else
629  return TesterParameters(config.MainTesterParameterSetName());
630  }
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 681 of file unit_test_base.h.

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

options for the test environment

Definition at line 682 of file unit_test_base.h.

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

full configuration of the test

Definition at line 687 of file unit_test_base.h.


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