OOPS
Test.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 OOPS_RUNS_TEST_H_
12 #define OOPS_RUNS_TEST_H_
13 
14 #include <cmath>
15 #include <cstring>
16 #include <iomanip>
17 #include <limits>
18 #include <string>
19 #include <vector>
20 
21 #include <boost/tokenizer.hpp>
22 
23 #include "eckit/config/Configuration.h"
24 #include "eckit/testing/Test.h"
25 #include "eckit/utils/Tokenizer.h"
26 
27 #include "oops/mpi/mpi.h"
28 #include "oops/runs/Application.h"
29 #include "oops/util/CompareNVectors.h"
30 #include "oops/util/FloatCompare.h"
31 #include "oops/util/Logger.h"
32 #include "oops/util/Printable.h"
33 
34 #include "test/TestEnvironment.h"
35 
36 namespace oops {
37 
38 // -----------------------------------------------------------------------------
39 class Test : public Application {
40  public:
41  explicit Test(const eckit::mpi::Comm & comm = oops::mpi::world()) : Application(comm) {}
42  virtual ~Test() {}
43  int execute(const eckit::Configuration & config) const;
44  private:
45  virtual void register_tests() const = 0;
46  virtual std::string testid() const = 0;
47  virtual void clear() const = 0;
48  static bool init_unit_test() {return true;}
49  std::string appname() const {return "oops::Test running " + testid();}
50 };
51 
52 // -----------------------------------------------------------------------------
53 
54 int Test::execute(const eckit::Configuration & config) const {
55 // Setup configuration for tests
57 
58 // Generate the argc and argv arguments for unit_test_main(...)
59  int argc = 1;
60  char * argv[argc];
61  char dummy[] = "abcde";
62  argv[0] = dummy;
63 
64 // Run the tests
65  Log::trace() << "Registering the unit tests" << std::endl;
67  Log::trace() << "Running the unit tests" << std::endl;
68  int result = eckit::testing::run_tests(argc, argv, false);
69  Log::trace() << "Finished running the unit tests" << std::endl;
70  Log::error() << "Finished running the unit tests, result = " << result << std::endl;
71 
72  this->clear();
73 
74 // Return test status
75  return result;
76 }
77 
78 } // namespace oops
79 #endif // OOPS_RUNS_TEST_H_
virtual ~Test()
Definition: Test.h:42
virtual void register_tests() const =0
virtual std::string testid() const =0
virtual void clear() const =0
int execute(const eckit::Configuration &config) const
Definition: Test.h:54
static bool init_unit_test()
Definition: Test.h:48
std::string appname() const
Definition: Test.h:49
Test(const eckit::mpi::Comm &comm=oops::mpi::world())
Definition: Test.h:41
void setup(const eckit::Configuration &conf)
static TestEnvironment & getInstance()
int error
Definition: compare.py:168
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.