9206ac34932708f3ccac25c812fd2a96388c3484
[alexxy/gromacs.git] / src / gromacs / fileio / tests / readinp.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 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.
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 /*! \internal \file
36  * \brief
37  * Tests utilities for routines that parse fields e.g. from grompp input
38  *
39  * \author Mark Abraham <mark.j.abraham@gmail.com>
40  */
41 #include "gmxpre.h"
42
43 #include "gromacs/fileio/readinp.h"
44
45 #include <gtest/gtest.h>
46
47 #include "gromacs/fileio/warninp.h"
48 #include "gromacs/utility/smalloc.h"
49 #include "gromacs/utility/unique_cptr.h"
50
51 namespace gmx
52 {
53 namespace testing
54 {
55
56 class ReadTest : public ::testing::Test
57 {
58     public:
59         ReadTest() : inputField_ {{(t_inpfile(0, 0, false, false, false, "test", ""))}},
60         wi_()
61
62         {
63             wi_ = init_warning(FALSE, 0);
64             wiGuard_.reset(wi_);
65         }
66
67         std::vector<t_inpfile>                         inputField_;
68         warninp_t                                      wi_;
69         gmx::unique_cptr<struct warninp, free_warning> wiGuard_;
70 };
71
72 TEST_F(ReadTest, get_eint_ReadsInteger)
73 {
74     inputField_.front().value_.assign("1");
75     ASSERT_EQ(1, get_eint(&inputField_, "test", 2, wi_));
76     ASSERT_FALSE(warning_errors_exist(wi_));
77 }
78
79 TEST_F(ReadTest, get_eint_WarnsAboutFloat)
80 {
81     inputField_.front().value_.assign("0.8");
82     get_eint(&inputField_, "test", 2, wi_);
83     ASSERT_TRUE(warning_errors_exist(wi_));
84 }
85
86 TEST_F(ReadTest, get_eint_WarnsAboutString)
87 {
88     inputField_.front().value_.assign("hello");
89     get_eint(&inputField_, "test", 2, wi_);
90     ASSERT_TRUE(warning_errors_exist(wi_));
91 }
92
93 TEST_F(ReadTest, get_eint64_ReadsInteger)
94 {
95     inputField_.front().value_.assign("1");
96     ASSERT_EQ(1, get_eint64(&inputField_, "test", 2, wi_));
97     ASSERT_FALSE(warning_errors_exist(wi_));
98 }
99
100 TEST_F(ReadTest, get_eint64_WarnsAboutFloat)
101 {
102     inputField_.front().value_.assign("0.8");
103     get_eint64(&inputField_, "test", 2, wi_);
104     ASSERT_TRUE(warning_errors_exist(wi_));
105 }
106
107 TEST_F(ReadTest, get_eint64_WarnsAboutString)
108 {
109     inputField_.front().value_.assign("hello");
110     get_eint64(&inputField_, "test", 2, wi_);
111     ASSERT_TRUE(warning_errors_exist(wi_));
112 }
113
114 TEST_F(ReadTest, get_ereal_ReadsInteger)
115 {
116     inputField_.front().value_.assign("1");
117     ASSERT_EQ(1, get_ereal(&inputField_, "test", 2, wi_));
118     ASSERT_FALSE(warning_errors_exist(wi_));
119 }
120
121 TEST_F(ReadTest, get_ereal_ReadsFloat)
122 {
123     inputField_.front().value_.assign("0.8");
124     ASSERT_EQ(0.8, get_ereal(&inputField_, "test", 2, wi_));
125     ASSERT_FALSE(warning_errors_exist(wi_));
126 }
127
128 TEST_F(ReadTest, get_ereal_WarnsAboutString)
129 {
130     inputField_.front().value_.assign("hello");
131     get_ereal(&inputField_, "test", 2, wi_);
132     ASSERT_TRUE(warning_errors_exist(wi_));
133 }
134
135 } // namespace
136 } // namespace