OOPS
test/base/Variables.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2009-2016 ECMWF.
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  * In applying this licence, ECMWF does not waive the privileges and immunities
7  * granted to it by virtue of its status as an intergovernmental organisation nor
8  * does it submit to any jurisdiction.
9  */
10 
11 #ifndef TEST_BASE_VARIABLES_H_
12 #define TEST_BASE_VARIABLES_H_
13 
14 #include <memory>
15 #include <string>
16 #include <vector>
17 
18 #define ECKIT_TESTING_SELF_REGISTER_CASES 0
19 
20 #include "eckit/config/LocalConfiguration.h"
21 #include "eckit/testing/Test.h"
22 #include "oops/base/Variables.h"
23 #include "oops/runs/Test.h"
24 #include "test/base/Fortran.h"
25 #include "test/TestEnvironment.h"
26 
27 namespace test {
28 
29 // -----------------------------------------------------------------------------
30 
31 void testConstructor() {
32  std::unique_ptr<oops::Variables> vars(new oops::Variables());
33  EXPECT(vars.get());
34 
35  {
36  const std::vector<std::string> varnames{"bt", "emiss"};
37  const std::vector<int> channels{1, 2, 3, 4};
38  std::unique_ptr<oops::Variables> other(new oops::Variables(varnames, channels));
39  EXPECT(other.get());
40  const std::vector<std::string> expectedVariables{"bt_1", "bt_2", "bt_3", "bt_4",
41  "emiss_1", "emiss_2", "emiss_3", "emiss_4"};
42  EXPECT(other->variables() == expectedVariables);
43  EXPECT(other->channels() == channels);
44  }
45 
46  {
47  const std::vector<std::string> varnames{"bt", "emiss"};
48  const std::vector<int> channels{};
49  std::unique_ptr<oops::Variables> other(new oops::Variables(varnames, channels));
50  EXPECT(other.get());
51  EXPECT(other->variables() == varnames);
52  EXPECT(other->channels() == channels);
53  }
54 
55  {
56  const std::vector<std::string> varnames{};
57  const std::vector<int> channels{};
58  oops::Variables other(TestEnvironment::config(), "empty variables");
59  EXPECT(other.variables() == varnames);
60  EXPECT(other.channels() == channels);
61  }
62 
63  vars.reset();
64  EXPECT(!vars.get());
65 
66  // Test construction from an eckit::Configuration entry that does not exist
67  EXPECT_THROWS_AS(auto bad_vars = oops::Variables(TestEnvironment::config(), "FOO"),
68  eckit::BadParameter);
69 }
70 
71 // -----------------------------------------------------------------------------
72 
74  eckit::LocalConfiguration conf(TestEnvironment::config());
75  std::unique_ptr<oops::Variables> vars(new oops::Variables(conf, "test variables"));
76  EXPECT(vars.get());
77 
78  std::unique_ptr<oops::Variables> other(new oops::Variables(*vars));
79  EXPECT(other.get());
80 
81  other.reset();
82  EXPECT(!other.get());
83 
84  EXPECT(vars.get());
85 }
86 
87 // -----------------------------------------------------------------------------
88 
90  oops::Variables vars;
91 
93 
94  // test content of variable list
95  std::vector<std::string> vars_check = TestEnvironment::config().getStringVector("test variables");
96 
97  // The fortran routine tests the push_back_vector method, with the variables
98  // from the config file, as well as the push of a single variable name.
99  // So, if both were successful, vars should contain one extra item in
100  // the variable list
101  EXPECT(vars.size() == vars_check.size()+1);
102 
103  for (std::size_t jvar = 0; jvar < vars_check.size(); ++jvar) {
104  EXPECT(vars[jvar] == vars_check[jvar]);
105  }
106 }
107 
108 // -----------------------------------------------------------------------------
109 
110 class Variables : public oops::Test {
111  public:
113  virtual ~Variables() {}
114  private:
115  std::string testid() const override {return "test::Variables";}
116 
117  void register_tests() const override {
118  std::vector<eckit::testing::Test>& ts = eckit::testing::specification();
119 
120  ts.emplace_back(CASE("Variables/testConstructor")
121  { testConstructor(); });
122  ts.emplace_back(CASE("Variables/testCopyConstructor")
123  { testCopyConstructor(); });
124  ts.emplace_back(CASE("Variables/testFortranInterface")
125  { testFortranInterface(); });
126  }
127 
128  void clear() const override {}
129 };
130 
131 } // namespace test
132 
133 #endif // TEST_BASE_VARIABLES_H_
const std::vector< std::string > & variables() const
size_t size() const
const std::vector< int > & channels() const
static const eckit::Configuration & config()
void register_tests() const override
void clear() const override
std::string testid() const override
void testCopyConstructor()
void test_vars_interface_f(const eckit::Configuration &, oops::Variables &)
This is intended as a general interface for testing objects in the util namespace from Fortran.
void testFortranInterface()
CASE("test_linearmodelparameterswrapper_valid_name")
void testConstructor()
Tests creation and destruction of ObsErrorCovariances.