Fix copyright notices for new C++ code.
[alexxy/gromacs.git] / src / gromacs / commandline / tests / cmdlineparser.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2010,2011,2012, by the GROMACS development team, led by
5  * David van der Spoel, Berk Hess, Erik Lindahl, and including many
6  * others, as listed in the AUTHORS file in the top-level source
7  * 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 gmx::CommandLineParser.
38  *
39  * These tests exercise a large fraction of the code, so they may
40  * catch errors in other parts than just in command-line parsing.
41  *
42  * \author Teemu Murtola <teemu.murtola@gmail.com>
43  * \ingroup module_commandline
44  */
45 #include <vector>
46
47 #include <gtest/gtest.h>
48
49 #include "gromacs/commandline/cmdlineparser.h"
50 #include "gromacs/options/basicoptions.h"
51 #include "gromacs/options/options.h"
52
53 #include "testutils/cmdlinetest.h"
54
55 namespace
56 {
57
58 using gmx::test::CommandLine;
59
60 class CommandLineParserTest : public ::testing::Test
61 {
62     public:
63         CommandLineParserTest();
64
65         gmx::Options            options_;
66         gmx::CommandLineParser  parser_;
67         bool                    flag_;
68         std::vector<int>        ivalues_;
69         std::vector<double>     dvalues_;
70 };
71
72 CommandLineParserTest::CommandLineParserTest()
73     : options_(NULL, NULL), parser_(&options_),
74       flag_(false)
75 {
76     using gmx::BooleanOption;
77     using gmx::IntegerOption;
78     using gmx::DoubleOption;
79     options_.addOption(BooleanOption("flag").store(&flag_));
80     options_.addOption(IntegerOption("mvi").storeVector(&ivalues_).multiValue());
81     options_.addOption(DoubleOption("mvd").storeVector(&dvalues_).allowMultiple());
82 }
83
84 TEST_F(CommandLineParserTest, HandlesSingleValues)
85 {
86     const char *const cmdline[] = {
87         "test", "-flag", "yes", "-mvi", "2", "-mvd", "2.7"
88     };
89     CommandLine       args(CommandLine::create(cmdline));
90     ASSERT_NO_THROW(parser_.parse(&args.argc(), args.argv()));
91     ASSERT_NO_THROW(options_.finish());
92
93     EXPECT_TRUE(flag_);
94     ASSERT_EQ(1U, ivalues_.size());
95     EXPECT_EQ(2, ivalues_[0]);
96     ASSERT_EQ(1U, dvalues_.size());
97     EXPECT_DOUBLE_EQ(2.7, dvalues_[0]);
98 }
99
100 TEST_F(CommandLineParserTest, HandlesNegativeNumbers)
101 {
102     const char *const cmdline[] = {
103         "test", "-mvi", "1", "-2", "-mvd", "-2.7"
104     };
105     CommandLine       args(CommandLine::create(cmdline));
106     ASSERT_NO_THROW(parser_.parse(&args.argc(), args.argv()));
107     ASSERT_NO_THROW(options_.finish());
108
109     ASSERT_EQ(2U, ivalues_.size());
110     EXPECT_EQ(1, ivalues_[0]);
111     EXPECT_EQ(-2, ivalues_[1]);
112     ASSERT_EQ(1U, dvalues_.size());
113     EXPECT_DOUBLE_EQ(-2.7, dvalues_[0]);
114 }
115
116 } // namespace