all unit tests: replaced BOOST_AUTO_UNIT_TEST with new SENF_AUTO_UNIT_TEST macro
[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     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     (void) refvar;
89
90     dir.add("crefvar", boost::cref(var))
91         .doc("Current blorg limit")
92         .formatter(&testFormatter);
93 }
94
95 namespace {
96     
97     class Test2
98     {
99     public:
100         senf::console::ScopedDirectory<Test2> dir;
101         
102         Test2() : dir(this), var_(0)
103             { dir.add("var", boost::ref(var_)); }
104         
105     private:
106         int var_;
107     };
108   
109 }
110
111 SENF_AUTO_UNIT_TEST(memberVariables)
112 {
113     Test2 test2ob;
114 }
115
116 #ifdef COMPILE_CHECK
117
118 COMPILE_FAIL(constVariable)
119 {
120     senf::console::ScopedDirectory<> dir;
121     int var;
122     dir.add("var", boost::cref(var))
123         .parser(&testParser);
124 }
125
126 #endif
127
128 ///////////////////////////////cc.e////////////////////////////////////////
129 #undef prefix_
130
131 \f
132 // Local Variables:
133 // mode: c++
134 // fill-column: 100
135 // comment-column: 40
136 // c-file-style: "senf"
137 // indent-tabs-mode: nil
138 // ispell-local-dictionary: "american"
139 // compile-command: "scons -u test"
140 // End: