Merge branch release-5-1
[alexxy/gromacs.git] / src / testutils / interactivetest.h
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 /*! \libinternal \file
36  * \brief
37  * Provides helper classes for testing interactive prompts.
38  *
39  * \author Teemu Murtola <teemu.murtola@gmail.com>
40  * \inlibraryapi
41  * \ingroup module_testutils
42  */
43 #ifndef GMX_TESTUTILS_INTERACTIVETEST_H
44 #define GMX_TESTUTILS_INTERACTIVETEST_H
45
46 #include "gromacs/utility/arrayref.h"
47 #include "gromacs/utility/classhelpers.h"
48
49 namespace gmx
50 {
51
52 class TextInputStream;
53 class TextOutputStream;
54
55 namespace test
56 {
57
58 class TestReferenceChecker;
59
60 /*! \libinternal \brief
61  * Helper class for testing interactive sessions.
62  *
63  * The calling test can set the user input using setInputLines() (and possibly
64  * setLastNewline()), pass the streams from inputStream() and outputStream() to
65  * the code that executes the interactive session, and then call checkSession()
66  * after the session is finished.
67  * The input is provided from the array set with setInputLines(), and all
68  * output is checked using the reference data framework.
69  * The reference XML data can be viewed with the XSLT stylesheet to show
70  * exactly how the session went.
71  *
72  * \inlibraryapi
73  * \ingroup module_testutils
74  */
75 class InteractiveTestHelper
76 {
77     public:
78         /*! \brief
79          * Initializes the helper.
80          *
81          * \param[in] checker  Parent reference checker to use.
82          *
83          * The helper creates a compound item under \p checker for the
84          * interactive session it tests.
85          */
86         explicit InteractiveTestHelper(gmx::test::TestReferenceChecker checker);
87         ~InteractiveTestHelper();
88
89         //! Sets whether the last input line contains a newline (by default, it does).
90         void setLastNewline(bool bInclude);
91         /*! \brief
92          * Sets the input lines for the interactive session.
93          *
94          * Calls to TextInputStream::readLine() will return strings from this
95          * array in sequence.
96          * Newlines are added at the end automatically (except for the last
97          * line if `setLastNewLine(false)` has been called).
98          * If there are more `readLine()` calls than there are input lines,
99          * the remaining calls return end-of-input.
100          */
101         void setInputLines(const ConstArrayRef<const char *> &inputLines);
102
103         //! Returns the input stream for the session.
104         TextInputStream  &inputStream();
105         //! Returns the output stream for the session.
106         TextOutputStream &outputStream();
107
108         /*! \brief
109          * Finalizes the checking for the session.
110          *
111          * This must be called after all input and output from a session has
112          * occurred, as the helper will not otherwise know when output after
113          * the last input has finished.  This method also checks that the
114          * required number of input lines were read in the session.
115          */
116         void checkSession();
117
118     private:
119         class Impl;
120
121         PrivateImplPointer<Impl> impl_;
122 };
123 } // namespace test
124 } // namespace gmx
125
126 #endif