OOPS
ObsTestsFixture.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2020 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
8 #ifndef TEST_INTERFACE_OBSTESTSFIXTURE_H_
9 #define TEST_INTERFACE_OBSTESTSFIXTURE_H_
10 
11 #include <memory>
12 #include <vector>
13 
14 #include <boost/noncopyable.hpp>
15 
16 #include "eckit/config/LocalConfiguration.h"
17 #include "oops/base/ObsSpaces.h"
18 #include "oops/mpi/mpi.h"
19 #include "oops/runs/Test.h"
20 #include "oops/util/DateTime.h"
21 #include "test/TestEnvironment.h"
22 
23 namespace test {
24 
25 // -----------------------------------------------------------------------------
26 /// Fixture for observations-related tests
27 /// Gets created only once per test runs, ObsSpaces, configuration under `observations`
28 /// and window characteristics get saved
29 template <typename OBS>
30 class ObsTestsFixture : private boost::noncopyable {
32 
33  public:
34  /// accessors to observation window
35  static const util::DateTime & tbgn() {return *getInstance().tbgn_;}
36  static const util::DateTime & tend() {return *getInstance().tend_;}
37  /// accessor to a jj-th obs type config
38  static eckit::LocalConfiguration & config(size_t jj) {return getInstance().configs_.at(jj);}
39  /// accessor to a all obs spaces
40  static ObsSpaces_ & obspace() {return *getInstance().ospaces_;}
41  static const eckit::mpi::Comm & comm() {return getInstance().comm_;}
42 
43  static void reset() {
44  obspace().save();
45  getInstance().ospaces_.reset();
46  getInstance().tend_.reset();
47  getInstance().tbgn_.reset();
48  }
49 
50  private:
52  tbgn_.reset(new util::DateTime(TestEnvironment::config().getString("window begin")));
53  tend_.reset(new util::DateTime(TestEnvironment::config().getString("window end")));
54  configs_ = TestEnvironment::config().getSubConfigurations("observations");
55  eckit::LocalConfiguration obsconfig =
56  TestEnvironment::config().getSubConfiguration("observations");
57  ospaces_.reset(new ObsSpaces_(obsconfig, comm_, *tbgn_, *tend_));
58  }
59 
61 
63  static ObsTestsFixture<OBS> theObsTestsFixture;
64  return theObsTestsFixture;
65  }
66 
67  const eckit::mpi::Comm & comm_;
68  std::unique_ptr<const util::DateTime> tbgn_;
69  std::unique_ptr<const util::DateTime> tend_;
70  std::vector<eckit::LocalConfiguration> configs_;
71  std::unique_ptr<ObsSpaces_> ospaces_;
72 };
73 
74 // -----------------------------------------------------------------------------
75 
76 } // namespace test
77 
78 #endif // TEST_INTERFACE_OBSTESTSFIXTURE_H_
void save() const
Save files.
Definition: ObsSpaces.h:114
static ObsSpaces_ & obspace()
accessor to a all obs spaces
std::unique_ptr< ObsSpaces_ > ospaces_
static const util::DateTime & tend()
std::unique_ptr< const util::DateTime > tbgn_
std::vector< eckit::LocalConfiguration > configs_
oops::ObsSpaces< OBS > ObsSpaces_
static eckit::LocalConfiguration & config(size_t jj)
accessor to a jj-th obs type config
static ObsTestsFixture< OBS > & getInstance()
const eckit::mpi::Comm & comm_
static const util::DateTime & tbgn()
accessors to observation window
std::unique_ptr< const util::DateTime > tend_
static const eckit::mpi::Comm & comm()
static const eckit::Configuration & config()
const eckit::mpi::Comm & world()
Default communicator with all MPI tasks (ie MPI_COMM_WORLD)
Definition: oops/mpi/mpi.cc:84
The namespace for the main oops code.