ecb77a4f66e67c6ac8495646b8e8cabf23249649
[alexxy/gromacs.git] / src / gromacs / commandline / tests / cmdlinemodulemanagertest.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2012,2013,2014,2015, by the GROMACS development team, led by
5  * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6  * and including many others, as listed in the AUTHORS file in the
7  * top-level source directory and at http://www.gromacs.org.
8  *
9  * GROMACS is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public License
11  * as published by the Free Software Foundation; either version 2.1
12  * of the License, or (at your option) any later version.
13  *
14  * GROMACS is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with GROMACS; if not, see
21  * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA.
23  *
24  * If you want to redistribute modifications to GROMACS, please
25  * consider that scientific software is very special. Version
26  * control is crucial - bugs must be traceable. We will be happy to
27  * consider code for inclusion in the official distribution, but
28  * derived work must not be called official GROMACS. Details are found
29  * in the README & COPYING files - if they are missing, get the
30  * official version at http://www.gromacs.org.
31  *
32  * To help us fund GROMACS development, we humbly ask that you cite
33  * the research papers on the package. Check out http://www.gromacs.org.
34  */
35 /*! \internal \file
36  * \brief
37  * Test fixture and helper classes for tests using gmx::CommandLineModuleManager.
38  *
39  * \author Teemu Murtola <teemu.murtola@gmail.com>
40  * \ingroup module_commandline
41  */
42 #ifndef GMX_COMMANDLINE_CMDLINEMODULEMANAGERTEST_H
43 #define GMX_COMMANDLINE_CMDLINEMODULEMANAGERTEST_H
44
45 #include <string>
46
47 #include <gmock/gmock.h>
48
49 #include "gromacs/commandline/cmdlinehelpcontext.h"
50 #include "gromacs/commandline/cmdlinemodule.h"
51 #include "gromacs/commandline/cmdlineoptionsmodule.h"
52 #include "gromacs/utility/classhelpers.h"
53
54 #include "testutils/stringtest.h"
55
56 namespace gmx
57 {
58 namespace test
59 {
60
61 class CommandLine;
62 class MockHelpTopic;
63 class TestFileOutputRedirector;
64
65 /*! \internal \brief
66  * Mock implementation of gmx::CommandLineModuleInterface.
67  *
68  * \ingroup module_commandline
69  */
70 class MockModule : public gmx::CommandLineModuleInterface
71 {
72     public:
73         //! Creates a mock module with the given name and description.
74         MockModule(const char *name, const char *description);
75         ~MockModule();
76
77         virtual const char *name() const { return name_; }
78         virtual const char *shortDescription() const { return descr_; }
79
80         MOCK_METHOD1(init, void(gmx::CommandLineModuleSettings *settings));
81         MOCK_METHOD2(run, int(int argc, char *argv[]));
82         MOCK_CONST_METHOD1(writeHelp, void(const gmx::CommandLineHelpContext &context));
83
84         //! Sets the expected display name for writeHelp() calls.
85         void setExpectedDisplayName(const char *expected)
86         {
87             expectedDisplayName_ = expected;
88         }
89
90     private:
91         //! Checks the context passed to writeHelp().
92         void checkHelpContext(const gmx::CommandLineHelpContext &context) const;
93
94         const char             *name_;
95         const char             *descr_;
96         std::string             expectedDisplayName_;
97 };
98
99 /*! \internal \brief
100  * Mock implementation of gmx::CommandLineOptionsModuleInterface.
101  *
102  * \ingroup module_commandline
103  */
104 class MockOptionsModule : public gmx::CommandLineOptionsModuleInterface
105 {
106     public:
107         MockOptionsModule();
108         ~MockOptionsModule();
109
110         MOCK_METHOD1(init, void(gmx::CommandLineModuleSettings *settings));
111         MOCK_METHOD1(initOptions, void(gmx::Options *options));
112         MOCK_METHOD1(optionsFinished, void(gmx::Options *options));
113         MOCK_METHOD0(run, int());
114 };
115
116 /*! \internal \brief
117  * Test fixture for tests using gmx::CommandLineModuleManager.
118  *
119  * \ingroup module_commandline
120  */
121 class CommandLineModuleManagerTestBase : public gmx::test::StringTestBase
122 {
123     public:
124         CommandLineModuleManagerTestBase();
125         ~CommandLineModuleManagerTestBase();
126
127         //! Creates the manager to run the given command line.
128         void initManager(const CommandLine &args, const char *realBinaryName);
129         //! Adds a mock module to the manager.
130         MockModule               &addModule(const char *name, const char *description);
131         //! Adds a mock module using gmx::Options to the manager.
132         MockOptionsModule        &addOptionsModule(const char *name, const char *description);
133         //! Adds a mock help topic to the manager.
134         MockHelpTopic            &addHelpTopic(const char *name, const char *title);
135
136         /*! \brief
137          * Returns the manager for this test.
138          *
139          * initManager() must have been called.
140          */
141         CommandLineModuleManager &manager();
142
143         /*! \brief
144          * Checks all output from the manager using reference data.
145          *
146          * Both output to `stdout` and to files is checked.
147          *
148          * The manager is put into quiet mode by default, so the manager will
149          * only print out information if, e.g., help is explicitly requested.
150          */
151         void checkRedirectedOutput();
152
153     private:
154         class Impl;
155
156         PrivateImplPointer<Impl> impl_;
157 };
158
159 } // namespace test
160 } // namespace gmx
161
162 #endif