Refactor mdrun integration tests
[alexxy/gromacs.git] / src / programs / mdrun / tests / trajectory_writing.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2013,2014, 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
36 /*! \internal \file
37  * \brief
38  * Tests for the .mdp nst*out functionality
39  *
40  * \author Mark Abraham <mark.j.abraham@gmail.com>
41  * \ingroup module_mdrun
42  */
43 #include "gmxpre.h"
44
45 #include "config.h"
46
47 #include <gtest/gtest.h>
48
49 #include "gromacs/options/filenameoption.h"
50 #include "gromacs/utility/stringutil.h"
51
52 #include "moduletest.h"
53
54 namespace
55 {
56
57 // TODO configure these tests so they test all formats for mdrun trajectory writing
58 #ifdef GMX_USE_TNG
59
60 //! Test fixture for mdrun trajectory writing
61 class TrajectoryWritingTest :
62     public gmx::test::MdrunTestFixture,
63     public ::testing::WithParamInterface<const char *>
64 {
65     public:
66         //! The file name of the MDP file
67         std::string theMdpFile;
68
69         //! Execute the trajectory writing test
70         void runTest()
71         {
72             runner_.useStringAsMdpFile(theMdpFile);
73             runner_.useTopGroAndNdxFromDatabase("spc-and-methanol");
74             EXPECT_EQ(0, runner_.callGrompp());
75
76             runner_.fullPrecisionTrajectoryFileName_    = fileManager_.getTemporaryFilePath("spc-and-methanol.tng");
77             runner_.reducedPrecisionTrajectoryFileName_ = fileManager_.getTemporaryFilePath("spc-and-methanol-reduced.tng");
78             ASSERT_EQ(0, runner_.callMdrun());
79             // TODO When there is a way to sense something like the
80             // output of gmx check, compare the result with that from
81             // writing .trr and .xtc and assert the behaviour is
82             // correct. Note that TNG will always write the box, even
83             // when constant - this will be a source of
84             // trajectory-file differences.
85         }
86 };
87
88 //! Helper typedef for naming test cases like sentences
89 typedef TrajectoryWritingTest Trajectories;
90
91 /* This test ensures mdrun can write various quantities at various
92    frequencies */
93 TEST_P(Trajectories, ThatDifferInNstxout)
94 {
95     theMdpFile = gmx::formatString("integrator = md\n"
96                                    "nsteps = 6\n"
97                                    "nstxout = %s\n"
98                                    "nstvout = 2\n"
99                                    "nstfout = 4\n"
100                                    "nstxout-compressed = 5\n"
101                                    "tcoupl = v-rescale\n"
102                                    "tc-grps = System\n"
103                                    "tau-t = 1\n"
104                                    "ref-t = 298\n"
105                                    "compressed-x-grps = Sol\n",
106                                    GetParam());
107     runTest();
108 }
109
110 //! Helper typedef for naming test cases like sentences
111 typedef TrajectoryWritingTest NptTrajectories;
112
113 /* This test ensures mdrun can write trajectories in TNG format from NPT ensembles. */
114 TEST_P(NptTrajectories, WithDifferentPcoupl)
115 {
116     theMdpFile = gmx::formatString("integrator = md\n"
117                                    "nsteps = 2\n"
118                                    "nstxout = 2\n"
119                                    "nstvout = 1\n"
120                                    "pcoupl = %s\n"
121                                    "tau-p = 1\n"
122                                    "ref-p = 1\n"
123                                    "compressibility = 4.5e-5\n"
124                                    "tcoupl = v-rescale\n"
125                                    "tc-grps = System\n"
126                                    "tau-t = 1\n"
127                                    "ref-t = 298\n",
128                                    GetParam());
129     runTest();
130 }
131
132 #ifdef __INTEL_COMPILER
133 #pragma warning( disable : 177 )
134 #endif
135
136 // TODO Consider spamming more of the parameter space when we don't
137 // have to write .mdp and .tpr files to do it.
138 INSTANTIATE_TEST_CASE_P(CanWrite,
139                         Trajectories,
140                             ::testing::Values("1", "2", "3"));
141
142 INSTANTIATE_TEST_CASE_P(CanWrite,
143                         NptTrajectories,
144                             ::testing::Values("no", "Berendsen", "Parrinello-Rahman"));
145
146 #endif
147
148 } // namespace