6269b3f38eddb9ca30df0bba78e47fdb28d03f60
[senf.git] / senf / Utils / Console / Variables.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2008
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 Variables unit tests */
25
26 //#include "Variables.test.hh"
27 //#include "Variables.test.ih"
28
29 // Custom includes
30 #include <iostream>
31 #include <sstream>
32 #include "Console.hh"
33
34 #include <senf/Utils/auto_unit_test.hh>
35 #include <boost/test/test_tools.hpp>
36
37 #define prefix_
38 ///////////////////////////////cc.p////////////////////////////////////////
39
40 namespace {
41     void testParser(senf::console::ParseCommandInfo::TokensRange const &, int & value)
42     { value = 0; }
43
44     void testFormatter(int value, std::ostream & os)
45     { os << '[' << value << ']'; }
46
47     static bool changed_ (false);
48     void testCallback(int oldValue)
49     { changed_ = true; }
50 }
51
52 SENF_AUTO_UNIT_TEST(variables)
53 {
54     namespace fty = senf::console::factory;
55
56     senf::console::Executor executor;
57     senf::console::CommandParser parser;
58     senf::console::ScopedDirectory<> dir;
59     senf::console::root().add("test", dir);
60
61     int var (5);
62
63     std::stringstream ss;
64     dir.add("var", fty::Variable(var)
65         .doc("Current blorg limit")
66         .formatter(&testFormatter)
67         .parser(&testParser)
68         .typeName("number")
69         .onChange(&testCallback)
70         );
71     parser.parse("test/var; test/var 10; test/var",
72                  boost::bind<void>( boost::ref(executor), boost::ref(ss), _1 ));
73     BOOST_CHECK_EQUAL( ss.str(), "[5]\n[0]\n" );
74     BOOST_CHECK( changed_ );
75
76     ss.str("");
77     dir("var").help(ss);
78     BOOST_CHECK_EQUAL(ss.str(),
79                       "Usage:\n"
80                       "    1- var\n"
81                       "    2- var new_value:number\n"
82                       "\n"
83                       "Current blorg limit\n");
84
85     senf::console::CommandNode & refvar (dir.add("refvar", fty::Variable(boost::ref(var))
86         .doc("Current blorg limit")
87         .formatter(&testFormatter)
88         .parser(&testParser)
89         .typeName("number")
90     ));
91
92     senf::IGNORE( refvar );
93
94     dir.add("crefvar", fty::Variable(boost::cref(var))
95         .doc("Current blorg limit")
96         .formatter(&testFormatter)
97         );
98 }
99
100 namespace {
101
102     class Test2
103     {
104     public:
105         senf::console::ScopedDirectory<Test2> dir;
106
107         Test2() : dir(this), var_(0)
108             { dir.add("var", senf::console::factory::Variable(boost::ref(var_))); }
109
110     private:
111         int var_;
112     };
113
114 }
115
116 SENF_AUTO_UNIT_TEST(memberVariables)
117 {
118     Test2 test2ob;
119     BOOST_CHECK( true );
120 }
121
122 #ifdef COMPILE_CHECK
123
124 COMPILE_FAIL(constVariable)
125 {
126     senf::console::ScopedDirectory<> dir;
127     int var;
128     dir.add("var", boost::cref(var))
129         .parser(&testParser);
130 }
131
132 #endif
133
134 ///////////////////////////////cc.e////////////////////////////////////////
135 #undef prefix_
136
137 \f
138 // Local Variables:
139 // mode: c++
140 // fill-column: 100
141 // comment-column: 40
142 // c-file-style: "senf"
143 // indent-tabs-mode: nil
144 // ispell-local-dictionary: "american"
145 // compile-command: "scons -u test"
146 // End: