Scheduler/Console: Fix adding variables to ScopedDirectory instances
[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 "Variables.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     void testParser(senf::console::ParseCommandInfo::TokensRange const &, int & value)
45     { value = 0; }
46
47     void testFormatter(int value, std::ostream & os)
48     { os << '[' << value << ']'; }
49
50     static bool changed_ (false);
51     void testCallback(int oldValue)
52     { changed_ = true; }
53 }
54
55 BOOST_AUTO_UNIT_TEST(variables)
56 {
57     senf::console::Executor executor;
58     senf::console::CommandParser parser;
59     senf::console::ScopedDirectory<> dir;
60     senf::console::root().add("test", dir);
61
62     int var (5);
63
64     std::stringstream ss;
65     dir.add("var", var)
66         .doc("Current blorg limit")
67         .formatter(&testFormatter)
68         .parser(&testParser)
69         .typeName("number")
70         .onChange(&testCallback);
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 new_value:number\n"
81                       "    2- var\n"
82                       "\n"
83                       "Current blorg limit\n");
84
85     dir.add("refvar", boost::ref(var))
86         .doc("Current blorg limit")
87         .formatter(&testFormatter)
88         .parser(&testParser)
89         .typeName("number");
90
91     dir.add("crefvar", boost::cref(var))
92         .doc("Current blorg limit")
93         .formatter(&testFormatter);
94 }
95
96 namespace {
97     
98     class Test2
99     {
100     public:
101         senf::console::ScopedDirectory<Test2> dir;
102         
103         Test2() : dir(this), var_(0)
104             { dir.add("var", var_); }
105         
106     private:
107         int var_;
108     };
109   
110 }
111
112 BOOST_AUTO_UNIT_TEST(memberVariables)
113 {
114     Test2 test2ob;
115 }
116
117 #ifdef COMPILE_CHECK
118
119 COMPILE_FAIL(constVariable)
120 {
121     senf::console::ScopedDirectory<> dir;
122     int var;
123     dir.add("var", boost::cref(var))
124         .parser(&testParser);
125 }
126
127 #endif
128
129 ///////////////////////////////cc.e////////////////////////////////////////
130 #undef prefix_
131
132 \f
133 // Local Variables:
134 // mode: c++
135 // fill-column: 100
136 // comment-column: 40
137 // c-file-style: "senf"
138 // indent-tabs-mode: nil
139 // ispell-local-dictionary: "american"
140 // compile-command: "scons -u test"
141 // End: