c156561606b01a59fecd095c6c88743e23042bdc
[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
64 /*! \internal \brief
65  * Mock implementation of gmx::CommandLineModuleInterface.
66  *
67  * \ingroup module_commandline
68  */
69 class MockModule : public gmx::CommandLineModuleInterface
70 {
71     public:
72         //! Creates a mock module with the given name and description.
73         MockModule(const char *name, const char *description);
74         ~MockModule();
75
76         virtual const char *name() const { return name_; }
77         virtual const char *shortDescription() const { return descr_; }
78
79         MOCK_METHOD1(init, void(gmx::CommandLineModuleSettings *settings));
80         MOCK_METHOD2(run, int(int argc, char *argv[]));
81         MOCK_CONST_METHOD1(writeHelp, void(const gmx::CommandLineHelpContext &context));
82
83         //! Sets the expected display name for writeHelp() calls.
84         void setExpectedDisplayName(const char *expected)
85         {
86             expectedDisplayName_ = expected;
87         }
88
89     private:
90         //! Checks the context passed to writeHelp().
91         void checkHelpContext(const gmx::CommandLineHelpContext &context) const;
92
93         const char             *name_;
94         const char             *descr_;
95         std::string             expectedDisplayName_;
96 };
97
98 /*! \internal \brief
99  * Mock implementation of gmx::CommandLineOptionsModuleInterface.
100  *
101  * \ingroup module_commandline
102  */
103 class MockOptionsModule : public gmx::CommandLineOptionsModuleInterface
104 {
105     public:
106         MockOptionsModule();
107         ~MockOptionsModule();
108
109         MOCK_METHOD1(init, void(gmx::CommandLineModuleSettings *settings));
110         MOCK_METHOD1(initOptions, void(gmx::Options *options));
111         MOCK_METHOD1(optionsFinished, void(gmx::Options *options));
112         MOCK_METHOD0(run, int());
113 };
114
115 /*! \internal \brief
116  * Test fixture for tests using gmx::CommandLineModuleManager.
117  *
118  * \ingroup module_commandline
119  */
120 class CommandLineModuleManagerTestBase : public gmx::test::StringTestBase
121 {
122     public:
123         CommandLineModuleManagerTestBase();
124         ~CommandLineModuleManagerTestBase();
125
126         //! Creates the manager to run the given command line.
127         void initManager(const CommandLine &args, const char *realBinaryName);
128         //! Adds a mock module to the manager.
129         MockModule               &addModule(const char *name, const char *description);
130         //! Adds a mock module using gmx::Options to the manager.
131         MockOptionsModule        &addOptionsModule(const char *name, const char *description);
132         //! Adds a mock help topic to the manager.
133         MockHelpTopic            &addHelpTopic(const char *name, const char *title);
134
135         /*! \brief
136          * Returns the manager for this test.
137          *
138          * initManager() must have been called.
139          */
140         CommandLineModuleManager &manager();
141
142         /*! \brief
143          * Redirects all manager output to files.
144          *
145          * Can be used to silence tests that would otherwise print out
146          * something, and/or checkRedirectedFileContents() from the base class
147          * can be used to check the output.
148          *
149          * The manager is put into quiet mode by default, so the manager will
150          * only print out information if, e.g., help is explicitly requested.
151          */
152         void redirectManagerOutput();
153
154     private:
155         class Impl;
156
157         PrivateImplPointer<Impl> impl_;
158 };
159
160 } // namespace test
161 } // namespace gmx
162
163 #endif