Console: Complete 'Variable' command implementation
[senf.git] / 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
51 BOOST_AUTO_UNIT_TEST(variables)
52 {
53     senf::console::Executor executor;
54     senf::console::CommandParser parser;
55     senf::console::ScopedDirectory<> dir;
56     senf::console::root().add("test", dir);
57
58     int var (5);
59
60     std::stringstream ss;
61     dir.add("var", var)
62         .doc("Current blorg limit")
63         .formatter(&testFormatter)
64         .parser(&testParser)
65         .typeName("number");
66     parser.parse("test/var; test/var 10; test/var",
67                  boost::bind<void>( boost::ref(executor), boost::ref(ss), _1 ));
68     BOOST_CHECK_EQUAL( ss.str(), "[5]\n[0]\n" );
69
70     ss.str("");
71     dir("var").help(ss);
72     BOOST_CHECK_EQUAL(ss.str(), 
73                       "Usage:\n"
74                       "    1- var new_value:number\n"
75                       "    2- var\n"
76                       "\n"
77                       "Current blorg limit\n");
78
79     dir.add("refvar", boost::ref(var))
80         .doc("Current blorg limit")
81         .formatter(&testFormatter)
82         .parser(&testParser)
83         .typeName("number");
84
85     dir.add("crefvar", boost::cref(var))
86         .doc("Current blorg limit")
87         .formatter(&testFormatter);
88 }
89
90 #ifdef COMPILE_CHECK
91
92 COMPILE_FAIL(constVariable)
93 {
94     senf::console::ScopedDirectory<> dir;
95     int var;
96     dir.add("var", boost::cref(var))
97         .parser(&testParser);
98 }
99
100 #endif
101
102 ///////////////////////////////cc.e////////////////////////////////////////
103 #undef prefix_
104
105 \f
106 // Local Variables:
107 // mode: c++
108 // fill-column: 100
109 // comment-column: 40
110 // c-file-style: "senf"
111 // indent-tabs-mode: nil
112 // ispell-local-dictionary: "american"
113 // compile-command: "scons -u test"
114 // End: