Free topology in non-DD simulations
[gromacs.git] / src / testutils / interactivetest.cpp
blob5874e9dc9160b2bb624f7a5fe45fdf93aa8f365c
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2015,2016,2017,2018, 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.
35 /*! \internal \file
36 * \brief
37 * Implements classes from interactivetest.h.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \ingroup module_testutils
42 #include "gmxpre.h"
44 #include "interactivetest.h"
46 #include <string>
47 #include <utility>
49 #include <gmock/gmock.h>
50 #include <gtest/gtest.h>
52 #include "gromacs/utility/arrayref.h"
53 #include "gromacs/utility/stringutil.h"
54 #include "gromacs/utility/textstream.h"
56 #include "testutils/refdata.h"
57 #include "testutils/stringtest.h"
59 namespace gmx
61 namespace test
64 // These two classes cannot be in an unnamed namespace (easily), since
65 // then their use as members below would trigger warnings.
66 // But if anyone needs these outside this file, they can easily be moved to a
67 // separate header.
69 class MockTextInputStream : public TextInputStream
71 public:
72 MOCK_METHOD1(readLine, bool(std::string *));
73 MOCK_METHOD0(close, void());
76 class MockTextOutputStream : public TextOutputStream
78 public:
79 MOCK_METHOD1(write, void(const char *));
80 MOCK_METHOD0(close, void());
83 class InteractiveTestHelper::Impl
85 public:
86 explicit Impl(TestReferenceChecker checker)
87 : checker_(std::move(checker)), bLastNewline_(true),
88 currentLine_(0), bHasOutput_(false)
90 using ::testing::_;
91 using ::testing::Invoke;
92 EXPECT_CALL(inputStream_, readLine(_))
93 .WillRepeatedly(Invoke(this, &Impl::readInputLine));
94 EXPECT_CALL(inputStream_, close()).Times(0);
95 EXPECT_CALL(outputStream_, write(_))
96 .WillRepeatedly(Invoke(this, &Impl::addOutput));
97 EXPECT_CALL(outputStream_, close()).Times(0);
100 bool readInputLine(std::string *line)
102 checkOutput();
103 line->clear();
104 const bool bPresent = (currentLine_ < index(inputLines_.size()));
105 if (bPresent)
107 line->assign(inputLines_[currentLine_]);
108 if (bLastNewline_ || currentLine_ + 1 < index(inputLines_.size()))
110 line->append("\n");
113 ++currentLine_;
114 const std::string id = formatString("Input%d", static_cast<int>(currentLine_));
115 StringTestBase::checkText(&checker_, *line, id.c_str());
116 return bPresent;
118 void addOutput(const char *str)
120 bHasOutput_ = true;
121 currentOutput_.append(str);
124 void checkOutput()
126 if (bHasOutput_)
128 const std::string id = formatString("Output%d", static_cast<int>(currentLine_));
129 StringTestBase::checkText(&checker_, currentOutput_, id.c_str());
130 bHasOutput_ = false;
132 currentOutput_.clear();
135 TestReferenceChecker checker_;
136 ArrayRef<const char *const> inputLines_;
137 bool bLastNewline_;
138 index currentLine_;
139 bool bHasOutput_;
140 std::string currentOutput_;
141 MockTextInputStream inputStream_;
142 MockTextOutputStream outputStream_;
145 InteractiveTestHelper::InteractiveTestHelper(TestReferenceChecker checker)
146 : impl_(new Impl(checker.checkCompound("InteractiveSession", "Interactive")))
150 InteractiveTestHelper::~InteractiveTestHelper()
154 void InteractiveTestHelper::setLastNewline(bool bInclude)
156 impl_->bLastNewline_ = bInclude;
159 void InteractiveTestHelper::setInputLines(
160 const ArrayRef<const char *const> &inputLines)
162 impl_->inputLines_ = inputLines;
163 impl_->currentLine_ = 0;
166 TextInputStream &InteractiveTestHelper::inputStream()
168 return impl_->inputStream_;
171 TextOutputStream &InteractiveTestHelper::outputStream()
173 return impl_->outputStream_;
176 void InteractiveTestHelper::checkSession()
178 impl_->checkOutput();
179 impl_->checker_.checkUnusedEntries();
182 } // namespace test
183 } // namespace gmx