Enable compiling CUDA device code with clang
[gromacs/AngularHB.git] / src / testutils / tests / xvgtest_tests.cpp
blob37a336b89b678a058755699b5b947bac3b293baa
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2015,2016, 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 * Tests utilities for testing xvg files
39 * \author David van der Spoel <david.vanderspoel@icm.uu.se>
40 * \ingroup module_testutils
42 #include "gmxpre.h"
44 #include "testutils/xvgtest.h"
46 #include <vector>
48 #include <gtest/gtest.h>
49 #include <gtest/gtest-spi.h>
51 #include "gromacs/utility/arrayref.h"
52 #include "gromacs/utility/stringstream.h"
54 #include "testutils/refdata.h"
55 #include "testutils/testasserts.h"
57 namespace
60 using gmx::test::checkXvgFile;
61 using gmx::test::XvgMatchSettings;
63 //! Input testing data - an inline xvg file.
64 const char * const input[] = {
65 "0 2905.86 -410.199",
66 "0.2 6656.67 -430.437",
67 "0.4 5262.44 -409.399",
68 "0.6 5994.69 -405.763",
69 "0.8 5941.37 -408.337",
70 "1 5869.87 -411.124"
73 TEST(XvgTests, CreateFile)
76 // Create new data
77 gmx::test::TestReferenceData data(gmx::test::erefdataUpdateAll);
78 gmx::test::TestReferenceChecker checker(data.rootChecker());
79 // Convert char array to a stream and add it to the checker
80 gmx::StringInputStream sis(input);
81 checkXvgFile(&sis, &checker, XvgMatchSettings());
84 // Now read it back
85 gmx::test::TestReferenceData data(gmx::test::erefdataCompare);
86 gmx::test::TestReferenceChecker checker(data.rootChecker());
87 // Convert char array to a stream and add it to the checker
88 gmx::StringInputStream sis(input);
89 checkXvgFile(&sis, &checker, XvgMatchSettings());
93 TEST(XvgTests, CheckMissing)
96 // Create new data
97 gmx::test::TestReferenceData data(gmx::test::erefdataUpdateAll);
98 gmx::test::TestReferenceChecker checker(data.rootChecker());
99 // Convert char array to a stream and add it to the checker
100 gmx::StringInputStream sis(input);
101 checkXvgFile(&sis, &checker, XvgMatchSettings());
104 const char * const input[] = {
105 "0 2905.86 -410.199",
106 "0.2 6656.67 -430.437",
107 "0.4 5262.44 -409.399"
109 // Now check with missing data
110 gmx::test::TestReferenceData data(gmx::test::erefdataCompare);
111 gmx::test::TestReferenceChecker checker(data.rootChecker());
112 gmx::StringInputStream sis(input);
113 EXPECT_NONFATAL_FAILURE(checkXvgFile(&sis, &checker, XvgMatchSettings()), "not used in test");
117 TEST(XvgTests, CheckExtra)
120 // Create new data
121 gmx::test::TestReferenceData data(gmx::test::erefdataUpdateAll);
122 gmx::test::TestReferenceChecker checker(data.rootChecker());
123 // Convert char array to a stream and add it to the checker
124 gmx::StringInputStream sis(input);
125 checkXvgFile(&sis, &checker, XvgMatchSettings());
128 const char * const input[] = {
129 "0 2905.86 -410.199",
130 "0.2 6656.67 -430.437",
131 "0.4 5262.44 -409.399",
132 "0.6 5994.69 -405.763",
133 "0.8 5941.37 -408.337",
134 "1 5869.87 -411.124",
135 "1.2 5889.87 -413.124"
137 // Now check with missing data
138 gmx::test::TestReferenceData data(gmx::test::erefdataCompare);
139 gmx::test::TestReferenceChecker checker(data.rootChecker());
140 gmx::StringInputStream sis(input);
141 EXPECT_NONFATAL_FAILURE(checkXvgFile(&sis, &checker, XvgMatchSettings()), "Row6");
145 TEST(XvgTests, ReadIncorrect)
148 // Create new data
149 gmx::test::TestReferenceData data(gmx::test::erefdataUpdateAll);
150 gmx::test::TestReferenceChecker checker(data.rootChecker());
151 // Convert char array to a stream and add it to the checker
152 gmx::StringInputStream sis(input);
153 checkXvgFile(&sis, &checker, XvgMatchSettings());
156 const char * const input[] = {
157 "0 2905.86 -410.199",
158 "0.2 6656.67 -430.437",
159 "0.4 5262.44 -409.399",
160 "0.6 5994.69 -405.763",
161 "0.8 5941.37 -408.337",
162 "1 5869.87 -421.124"
164 // Now check with incorrect data
165 gmx::test::TestReferenceData data(gmx::test::erefdataCompare);
166 gmx::test::TestReferenceChecker checker(data.rootChecker());
167 gmx::StringInputStream sis(input);
168 EXPECT_NONFATAL_FAILURE(checkXvgFile(&sis, &checker, XvgMatchSettings()), "-411");
172 } // namespace