7be3fb5ed7e738c8b02d5605beeaca477390a70d
[alexxy/gromacs.git] / src / gromacs / commandline / tests / cmdlinehelpmodule.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 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  * Tests gmx::CommandLineHelpModule through gmx::CommandLineModuleManager.
38  *
39  * \author Teemu Murtola <teemu.murtola@gmail.com>
40  * \ingroup module_commandline
41  */
42 #include "gmxpre.h"
43
44 #include <cstdio>
45
46 #include <gmock/gmock.h>
47
48 #include "gromacs/commandline/cmdlinemodulemanager.h"
49 #include "gromacs/options/basicoptions.h"
50 #include "gromacs/options/options.h"
51 #include "gromacs/utility/file.h"
52
53 #include "gromacs/onlinehelp/tests/mock_helptopic.h"
54 #include "testutils/cmdlinetest.h"
55 #include "testutils/testasserts.h"
56
57 #include "cmdlinemodulemanagertest.h"
58
59 namespace
60 {
61
62 using gmx::test::CommandLine;
63 using gmx::test::MockHelpTopic;
64 using gmx::test::MockModule;
65 using gmx::test::MockOptionsModule;
66
67 //! Test fixture for the tests.
68 typedef gmx::test::CommandLineModuleManagerTestBase CommandLineHelpModuleTest;
69
70 TEST_F(CommandLineHelpModuleTest, PrintsGeneralHelp)
71 {
72     const char *const cmdline[] = {
73         "test"
74     };
75     CommandLine       args(cmdline);
76     initManager(args, "test");
77     addModule("module", "First module");
78     addModule("other", "Second module");
79     addHelpTopic("topic", "Test topic");
80     int rc = 0;
81     ASSERT_NO_THROW_GMX(rc = manager().run(args.argc(), args.argv()));
82     ASSERT_EQ(0, rc);
83     checkRedirectedOutput();
84 }
85
86 TEST_F(CommandLineHelpModuleTest, PrintsHelpOnTopic)
87 {
88     const char *const cmdline[] = {
89         "test", "help", "topic"
90     };
91     CommandLine       args(cmdline);
92     initManager(args, "test");
93     addModule("module", "First module");
94     MockHelpTopic &topic = addHelpTopic("topic", "Test topic");
95     topic.addSubTopic("sub1", "Subtopic 1", "");
96     topic.addSubTopic("sub2", "Subtopic 2", "");
97     using ::testing::_;
98     EXPECT_CALL(topic, writeHelp(_));
99     int rc = 0;
100     ASSERT_NO_THROW_GMX(rc = manager().run(args.argc(), args.argv()));
101     ASSERT_EQ(0, rc);
102     checkRedirectedOutput();
103 }
104
105 /*! \brief
106  * Initializes Options for help export tests.
107  *
108  * \ingroup module_commandline
109  */
110 void initOptionsBasic(gmx::Options *options)
111 {
112     const char *const desc[] = {
113         "Sample description",
114         "for testing [THISMODULE]."
115     };
116     options->setDescription(desc);
117     options->addOption(gmx::IntegerOption("int"));
118 }
119
120 TEST_F(CommandLineHelpModuleTest, ExportsHelp)
121 {
122     const char *const cmdline[] = {
123         "test", "help", "-export", "rst"
124     };
125     // TODO: Find a more elegant solution, or get rid of the links.dat altogether.
126     gmx::File::writeFileFromString("links.dat", "");
127     CommandLine        args(cmdline);
128     initManager(args, "test");
129     MockOptionsModule &mod1 = addOptionsModule("module", "First module");
130     MockOptionsModule &mod2 = addOptionsModule("other", "Second module");
131     {
132         gmx::CommandLineModuleGroup group = manager().addModuleGroup("Group 1");
133         group.addModule("module");
134     }
135     {
136         gmx::CommandLineModuleGroup group = manager().addModuleGroup("Group 2");
137         group.addModule("other");
138     }
139     MockHelpTopic &topic1 = addHelpTopic("topic1", "Test topic");
140     MockHelpTopic &sub1   = topic1.addSubTopic("sub1", "Subtopic 1", "Sub text");
141     MockHelpTopic &sub2   = topic1.addSubTopic("sub2", "Subtopic 2", "Sub text");
142     MockHelpTopic &sub3   = topic1.addSubTopic("other", "Out-of-order subtopic", "Sub text");
143     MockHelpTopic &topic2 = addHelpTopic("topic2", "Another topic");
144     using ::testing::_;
145     using ::testing::Invoke;
146     EXPECT_CALL(mod1, initOptions(_)).WillOnce(Invoke(&initOptionsBasic));
147     EXPECT_CALL(mod2, initOptions(_));
148     EXPECT_CALL(topic1, writeHelp(_));
149     EXPECT_CALL(sub1, writeHelp(_));
150     EXPECT_CALL(sub2, writeHelp(_));
151     EXPECT_CALL(sub3, writeHelp(_));
152     EXPECT_CALL(topic2, writeHelp(_));
153     int rc = 0;
154     ASSERT_NO_THROW_GMX(rc = manager().run(args.argc(), args.argv()));
155     ASSERT_EQ(0, rc);
156     checkRedirectedOutput();
157     std::remove("links.dat");
158 }
159
160 } // namespace