Scheduler/Console: Add missing Node conversion operator for to variable attributor
[senf.git] / Scheduler / 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.test 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 "../../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 BOOST_AUTO_UNIT_TEST(variables)
53 {
54     senf::console::Executor executor;
55     senf::console::CommandParser parser;
56     senf::console::ScopedDirectory<> dir;
57     senf::console::root().add("test", dir);
58
59     int var (5);
60
61     std::stringstream ss;
62     dir.add("var", var)
63         .doc("Current blorg limit")
64         .formatter(&testFormatter)
65         .parser(&testParser)
66         .typeName("number")
67         .onChange(&testCallback);
68     parser.parse("test/var; test/var 10; test/var",
69                  boost::bind<void>( boost::ref(executor), boost::ref(ss), _1 ));
70     BOOST_CHECK_EQUAL( ss.str(), "[5]\n[0]\n" );
71     BOOST_CHECK( changed_ );
72
73     ss.str("");
74     dir("var").help(ss);
75     BOOST_CHECK_EQUAL(ss.str(), 
76                       "Usage:\n"
77                       "    1- var new_value:number\n"
78                       "    2- var\n"
79                       "\n"
80                       "Current blorg limit\n");
81
82     senf::console::CommandNode & refvar (dir.add("refvar", boost::ref(var))
83         .doc("Current blorg limit")
84         .formatter(&testFormatter)
85         .parser(&testParser)
86         .typeName("number"));
87
88     dir.add("crefvar", boost::cref(var))
89         .doc("Current blorg limit")
90         .formatter(&testFormatter);
91 }
92
93 namespace {
94     
95     class Test2
96     {
97     public:
98         senf::console::ScopedDirectory<Test2> dir;
99         
100         Test2() : dir(this), var_(0)
101             { dir.add("var", var_); }
102         
103     private:
104         int var_;
105     };
106   
107 }
108
109 BOOST_AUTO_UNIT_TEST(memberVariables)
110 {
111     Test2 test2ob;
112 }
113
114 #ifdef COMPILE_CHECK
115
116 COMPILE_FAIL(constVariable)
117 {
118     senf::console::ScopedDirectory<> dir;
119     int var;
120     dir.add("var", boost::cref(var))
121         .parser(&testParser);
122 }
123
124 #endif
125
126 ///////////////////////////////cc.e////////////////////////////////////////
127 #undef prefix_
128
129 \f
130 // Local Variables:
131 // mode: c++
132 // fill-column: 100
133 // comment-column: 40
134 // c-file-style: "senf"
135 // indent-tabs-mode: nil
136 // ispell-local-dictionary: "american"
137 // compile-command: "scons -u test"
138 // End: