Merge release-4-6 into master
[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,2013, 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 #include "testutils/testasserts.h"
55
56 namespace
57 {
58
59 using gmx::test::CommandLine;
60
61 class CommandLineParserTest : public ::testing::Test
62 {
63     public:
64         CommandLineParserTest();
65
66         gmx::Options            options_;
67         gmx::CommandLineParser  parser_;
68         bool                    flag_;
69         std::vector<int>        ivalues_;
70         std::vector<double>     dvalues_;
71 };
72
73 CommandLineParserTest::CommandLineParserTest()
74     : options_(NULL, NULL), parser_(&options_),
75       flag_(false)
76 {
77     using gmx::BooleanOption;
78     using gmx::IntegerOption;
79     using gmx::DoubleOption;
80     options_.addOption(BooleanOption("flag").store(&flag_));
81     options_.addOption(IntegerOption("mvi").storeVector(&ivalues_).multiValue());
82     options_.addOption(DoubleOption("mvd").storeVector(&dvalues_).allowMultiple());
83 }
84
85 TEST_F(CommandLineParserTest, HandlesSingleValues)
86 {
87     const char *const cmdline[] = {
88         "test", "-flag", "yes", "-mvi", "2", "-mvd", "2.7"
89     };
90     CommandLine       args(CommandLine::create(cmdline));
91     ASSERT_NO_THROW_GMX(parser_.parse(&args.argc(), args.argv()));
92     ASSERT_NO_THROW_GMX(options_.finish());
93
94     EXPECT_TRUE(flag_);
95     ASSERT_EQ(1U, ivalues_.size());
96     EXPECT_EQ(2, ivalues_[0]);
97     ASSERT_EQ(1U, dvalues_.size());
98     EXPECT_DOUBLE_EQ(2.7, dvalues_[0]);
99 }
100
101 TEST_F(CommandLineParserTest, HandlesNegativeNumbers)
102 {
103     const char *const cmdline[] = {
104         "test", "-mvi", "1", "-2", "-mvd", "-2.7"
105     };
106     CommandLine       args(CommandLine::create(cmdline));
107     ASSERT_NO_THROW_GMX(parser_.parse(&args.argc(), args.argv()));
108     ASSERT_NO_THROW_GMX(options_.finish());
109
110     ASSERT_EQ(2U, ivalues_.size());
111     EXPECT_EQ(1, ivalues_[0]);
112     EXPECT_EQ(-2, ivalues_[1]);
113     ASSERT_EQ(1U, dvalues_.size());
114     EXPECT_DOUBLE_EQ(-2.7, dvalues_[0]);
115 }
116
117 } // namespace