2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2012,2013,2014,2015,2018 by the GROMACS development team.
5 * Copyright (c) 2019,2020, by the GROMACS development team, led by
6 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
7 * and including many others, as listed in the AUTHORS file in the
8 * top-level source directory and at http://www.gromacs.org.
10 * GROMACS is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public License
12 * as published by the Free Software Foundation; either version 2.1
13 * of the License, or (at your option) any later version.
15 * GROMACS is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with GROMACS; if not, see
22 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
23 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 * If you want to redistribute modifications to GROMACS, please
26 * consider that scientific software is very special. Version
27 * control is crucial - bugs must be traceable. We will be happy to
28 * consider code for inclusion in the official distribution, but
29 * derived work must not be called official GROMACS. Details are found
30 * in the README & COPYING files - if they are missing, get the
31 * official version at http://www.gromacs.org.
33 * To help us fund GROMACS development, we humbly ask that you cite
34 * the research papers on the package. Check out http://www.gromacs.org.
38 * Test fixture and helper classes for tests using gmx::CommandLineModuleManager.
40 * \author Teemu Murtola <teemu.murtola@gmail.com>
41 * \ingroup module_commandline
43 #ifndef GMX_COMMANDLINE_CMDLINEMODULEMANAGERTEST_H
44 #define GMX_COMMANDLINE_CMDLINEMODULEMANAGERTEST_H
48 #include <gmock/gmock.h>
50 #include "gromacs/commandline/cmdlinehelpcontext.h"
51 #include "gromacs/commandline/cmdlinemodule.h"
52 #include "gromacs/commandline/cmdlineoptionsmodule.h"
53 #include "gromacs/utility/classhelpers.h"
55 #include "testutils/stringtest.h"
64 class TestFileOutputRedirector
;
67 * Mock implementation of gmx::ICommandLineModule.
69 * \ingroup module_commandline
71 class MockModule
: public gmx::ICommandLineModule
74 //! Creates a mock module with the given name and description.
75 MockModule(const char* name
, const char* description
);
76 ~MockModule() override
;
78 const char* name() const override
{ return name_
; }
79 const char* shortDescription() const override
{ return descr_
; }
81 MOCK_METHOD1(init
, void(gmx::CommandLineModuleSettings
* settings
));
82 MOCK_METHOD2(run
, int(int argc
, char* argv
[]));
83 MOCK_CONST_METHOD1(writeHelp
, void(const gmx::CommandLineHelpContext
& context
));
85 //! Sets the expected display name for writeHelp() calls.
86 void setExpectedDisplayName(const char* expected
) { expectedDisplayName_
= expected
; }
89 //! Checks the context passed to writeHelp().
90 void checkHelpContext(const gmx::CommandLineHelpContext
& context
) const;
94 std::string expectedDisplayName_
;
98 * Mock implementation of gmx::ICommandLineOptionsModule.
100 * \ingroup module_commandline
102 class MockOptionsModule
: public gmx::ICommandLineOptionsModule
106 ~MockOptionsModule() override
;
108 MOCK_METHOD1(init
, void(gmx::CommandLineModuleSettings
* settings
));
109 MOCK_METHOD2(initOptions
,
110 void(gmx::IOptionsContainer
* options
, gmx::ICommandLineOptionsModuleSettings
* settings
));
111 MOCK_METHOD0(optionsFinished
, void());
112 MOCK_METHOD0(run
, int());
116 * Test fixture for tests using gmx::CommandLineModuleManager.
118 * \ingroup module_commandline
120 class CommandLineModuleManagerTestBase
: public gmx::test::StringTestBase
123 CommandLineModuleManagerTestBase();
124 ~CommandLineModuleManagerTestBase() override
;
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
);
136 * Returns the manager for this test.
138 * initManager() must have been called.
140 CommandLineModuleManager
& manager();
143 * Checks all output from the manager using reference data.
145 * Both output to `stdout` and to files is checked.
147 * The manager is put into quiet mode by default, so the manager will
148 * only print out information if, e.g., help is explicitly requested.
150 void checkRedirectedOutput();
155 PrivateImplPointer
<Impl
> impl_
;