2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2012,2013,2014,2015,2017, 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.
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.
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.
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.
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.
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.
37 * Tests for help topic management and help topic formatting.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \ingroup module_onlinehelp
44 #include "gromacs/onlinehelp/helpmanager.h"
48 #include <gmock/gmock.h>
49 #include <gtest/gtest.h>
51 #include "gromacs/onlinehelp/helptopic.h"
52 #include "gromacs/onlinehelp/helpwritercontext.h"
53 #include "gromacs/utility/exceptions.h"
54 #include "gromacs/utility/stringstream.h"
55 #include "gromacs/utility/textwriter.h"
57 #include "gromacs/onlinehelp/tests/mock_helptopic.h"
58 #include "testutils/stringtest.h"
59 #include "testutils/testasserts.h"
64 using gmx::test::MockHelpTopic
;
66 class HelpTestBase
: public gmx::test::StringTestBase
71 MockHelpTopic rootTopic_
;
72 gmx::StringOutputStream helpFile_
;
73 gmx::TextWriter writer_
;
74 gmx::HelpWriterContext context_
;
75 gmx::HelpManager manager_
;
78 HelpTestBase::HelpTestBase()
79 : rootTopic_("", nullptr, "Root topic text"),
81 context_(&writer_
, gmx::eHelpOutputFormat_Console
),
82 manager_(rootTopic_
, context_
)
86 /********************************************************************
87 * Tests for HelpManager
90 //! Test fixture for gmx::HelpManager.
91 typedef HelpTestBase HelpManagerTest
;
93 TEST_F(HelpManagerTest
, HandlesRootTopic
)
96 EXPECT_CALL(rootTopic_
, writeHelp(_
));
97 manager_
.writeCurrentTopic();
100 TEST_F(HelpManagerTest
, HandlesSubTopics
)
102 MockHelpTopic
&first
=
103 rootTopic_
.addSubTopic("first", "First topic", nullptr);
104 MockHelpTopic
&firstSub
=
105 first
.addSubTopic("firstsub", "First subtopic", nullptr);
106 rootTopic_
.addSubTopic("second", "Second topic", nullptr);
109 EXPECT_CALL(firstSub
, writeHelp(_
));
110 ASSERT_NO_THROW_GMX(manager_
.enterTopic("first"));
111 ASSERT_NO_THROW_GMX(manager_
.enterTopic("firstsub"));
112 manager_
.writeCurrentTopic();
115 TEST_F(HelpManagerTest
, HandlesInvalidTopics
)
117 MockHelpTopic
&first
=
118 rootTopic_
.addSubTopic("first", "First topic", nullptr);
119 first
.addSubTopic("firstsub", "First subtopic", nullptr);
120 rootTopic_
.addSubTopic("second", "Second topic", nullptr);
122 ASSERT_THROW_GMX(manager_
.enterTopic("unknown"), gmx::InvalidInputError
);
123 ASSERT_NO_THROW_GMX(manager_
.enterTopic("first"));
124 ASSERT_THROW_GMX(manager_
.enterTopic("unknown"), gmx::InvalidInputError
);
125 ASSERT_THROW_GMX(manager_
.enterTopic("second"), gmx::InvalidInputError
);
126 ASSERT_NO_THROW_GMX(manager_
.enterTopic("firstsub"));
129 /********************************************************************
130 * Tests for help topic formatting
135 static const char name
[];
136 static const char title
[];
137 static const char *const text
[];
140 const char TestHelpText::name
[] = "testtopic";
141 const char TestHelpText::title
[] = "Topic title";
142 const char *const TestHelpText::text
[] = {
143 "Test topic text.[PAR]",
144 "Another paragraph of text."
147 class HelpTopicFormattingTest
: public HelpTestBase
150 void checkHelpFormatting();
153 void HelpTopicFormattingTest::checkHelpFormatting()
155 ASSERT_NO_THROW_GMX(manager_
.enterTopic("testtopic"));
156 ASSERT_NO_THROW_GMX(manager_
.writeCurrentTopic());
159 checkText(helpFile_
.toString(), "HelpText");
162 TEST_F(HelpTopicFormattingTest
, FormatsSimpleTopic
)
164 rootTopic_
.addSubTopic(gmx::HelpTopicPointer(
165 new gmx::SimpleHelpTopic
<TestHelpText
>));
166 checkHelpFormatting();
169 TEST_F(HelpTopicFormattingTest
, FormatsCompositeTopicWithSubTopics
)
171 gmx::CompositeHelpTopicPointer
topic(new gmx::CompositeHelpTopic
<TestHelpText
>);
172 MockHelpTopic::addSubTopic(topic
.get(), "subtopic", "First subtopic", "Text");
173 MockHelpTopic::addSubTopic(topic
.get(), "other", "Second subtopic", "Text");
174 rootTopic_
.addSubTopic(std::move(topic
));
175 checkHelpFormatting();