12 #ifndef TEST_INTERFACE_OBSSPACE_H_
13 #define TEST_INTERFACE_OBSSPACE_H_
18 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
20 #include <boost/noncopyable.hpp>
22 #include "eckit/config/LocalConfiguration.h"
23 #include "eckit/testing/Test.h"
27 #include "oops/util/DateTime.h"
28 #include "oops/util/Duration.h"
37 typedef ObsTestsFixture<OBS> Test_;
39 for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
40 oops::Log::test() <<
"Testing ObsSpace: " << Test_::obspace()[jj] << std::endl;
41 EXPECT(Test_::obspace()[jj].windowStart() == Test_::tbgn());
42 EXPECT(Test_::obspace()[jj].windowEnd() == Test_::tend());
52 typedef typename ObsSpace_::Parameters_ ObsSpaceParameters_;
55 util::DateTime tmid = Test_::tbgn() + (Test_::tend()-Test_::tbgn())/2;
56 oops::Log::test() <<
"Testing subwindows: " << Test_::tbgn() <<
" to " << tmid <<
" and "
57 << tmid <<
" to " << Test_::tend() << std::endl;
58 for (std::size_t jj = 0; jj < Test_::obspace().size(); ++jj) {
59 eckit::LocalConfiguration obsconfig(Test_::config(jj),
"obs space");
60 ObsSpaceParameters_ obsparams;
61 obsparams.validateAndDeserialize(obsconfig);
66 ObsVector_ ovec(Test_::obspace()[jj]);
67 ObsVector_ ovec1(obspace1);
68 ObsVector_ ovec2(obspace2);
69 oops::Log::test() << Test_::obspace()[jj].obsname() <<
" nobs(all): " << ovec.nobs()
70 <<
" nobs(1st subwindow): " << ovec1.nobs()
71 <<
" nobs(2nd subwindow): " << ovec2.nobs() << std::endl;
72 EXPECT_EQUAL(ovec1.nobs() + ovec2.nobs(), ovec.nobs());
84 std::string
testid()
const override {
return "test::ObsSpace<" + OBS::name() +
">";}
87 std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
89 ts.emplace_back(
CASE(
"interface/ObsSpace/testConstructor")
90 { testConstructor<OBS>(); });
91 ts.emplace_back(
CASE(
"interface/ObsSpace/testSubwindows")
92 { testSubwindows<OBS>(); });
ObsVector class used in oops; subclass of interface class interface::ObsVector.
void register_tests() const override
void clear() const override
ObsTestsFixture< OBS > Test_
std::string testid() const override
const eckit::mpi::Comm & world()
Default communicator with all MPI tasks (ie MPI_COMM_WORLD)
void testSubwindows()
tests that ObsSpaces created on subwindows have the same number obs as ObsSpaces created on the whole...
CASE("test_linearmodelparameterswrapper_valid_name")
void testConstructor()
Tests creation and destruction of ObsErrorCovariances.