Move sourcecode into 'senf/' directory
[senf.git] / senf / Utils / Console / STLSupport.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2009 
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief STLSupport unit tests */
25
26 //#include "STLSupport.test.hh"
27 //#include "STLSupport.test.ih"
28
29 // Custom includes
30 #include <boost/assign/list_of.hpp>
31 #include "STLSupport.hh"
32 #include "ParsedCommand.hh"
33 #include "Executor.hh"
34 #include "Parse.hh"
35 #include "ScopedDirectory.hh"
36
37 #include "../../Utils/auto_unit_test.hh"
38 #include <boost/test/test_tools.hpp>
39
40 #define prefix_
41 ///////////////////////////////cc.p////////////////////////////////////////
42
43 namespace {
44
45     int vectorTest(std::vector<int> const & data)
46     {
47         int sum (0);
48         for (std::vector<int>::const_iterator i (data.begin()); i != data.end(); ++i)
49             sum += *i;
50         return sum;
51     }
52
53     int listTest(std::list<int> const & data)
54     {
55         int sum (0);
56         for (std::list<int>::const_iterator i (data.begin()); i != data.end(); ++i)
57             sum += *i;
58         return sum;
59     }
60
61 }
62
63 BOOST_AUTO_UNIT_TEST(vectorSupport)
64 {
65     senf::console::Executor executor;
66     senf::console::CommandParser parser;
67     senf::console::ScopedDirectory<> dir;
68     senf::console::root().add("test", dir);
69
70     std::vector<int> defv (boost::assign::list_of(7)(2).to_container(defv));
71     dir.add("test", &vectorTest)
72         .arg("data", "test data", senf::console::kw::default_value = defv);
73     std::stringstream ss;
74
75     SENF_CHECK_NO_THROW(
76         parser.parse("test/test; test/test (); test/test 5; test/test (13); test/test (4 5 8)",
77                      boost::bind<void>( boost::ref(executor), boost::ref(ss), _1 )) );
78     BOOST_CHECK_EQUAL( ss.str(), "9\n" "0\n" "5\n" "13\n" "17\n" );
79
80     ss.str("");
81     SENF_CHECK_NO_THROW( 
82         parser.parse("help test/test",
83                      boost::bind<void>( boost::ref(executor), boost::ref(ss), _1 )) );
84     BOOST_CHECK_EQUAL(
85         ss.str(), 
86         "Usage:\n"
87         "    test [data:vector<int>]\n"
88         "\n"
89         "With:\n"
90         "    data      test data\n"
91         "        default: (7 2)\n" );
92 }
93
94 BOOST_AUTO_UNIT_TEST(listSupport)
95 {
96     senf::console::Executor executor;
97     senf::console::CommandParser parser;
98     senf::console::ScopedDirectory<> dir;
99     senf::console::root().add("test", dir);
100
101     std::list<int> defv (boost::assign::list_of(7)(2).to_container(defv));
102     dir.add("test", &listTest)
103         .arg("data", "test data", senf::console::kw::default_value = defv);
104     std::stringstream ss;
105
106     SENF_CHECK_NO_THROW(
107         parser.parse("test/test; test/test (); test/test 5; test/test (13); test/test (4 5 8)",
108                      boost::bind<void>( boost::ref(executor), boost::ref(ss), _1 )) );
109     BOOST_CHECK_EQUAL( ss.str(), "9\n" "0\n" "5\n" "13\n" "17\n" );
110
111     ss.str("");
112     SENF_CHECK_NO_THROW( 
113         parser.parse("help test/test",
114                      boost::bind<void>( boost::ref(executor), boost::ref(ss), _1 )) );
115     BOOST_CHECK_EQUAL(
116         ss.str(), 
117         "Usage:\n"
118         "    test [data:list<int>]\n"
119         "\n"
120         "With:\n"
121         "    data      test data\n"
122         "        default: (7 2)\n" );
123 }
124
125 ///////////////////////////////cc.e////////////////////////////////////////
126 #undef prefix_
127
128 \f
129 // Local Variables:
130 // mode: c++
131 // fill-column: 100
132 // comment-column: 40
133 // c-file-style: "senf"
134 // indent-tabs-mode: nil
135 // ispell-local-dictionary: "american"
136 // compile-command: "scons -u test"
137 // End: