Console: Add console logging documentation
[senf.git] / Console / Traits.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 Traits.test unit tests */
25
26 //#include "Traits.test.hh"
27 //#include "Traits.test.ih"
28
29 // Custom includes
30 #include "Traits.hh"
31 #include "ParsedCommand.hh"
32 #include "Executor.hh"
33 #include "Parse.hh"
34 #include "ScopedDirectory.hh"
35
36 #include "../Utils/auto_unit_test.hh"
37 #include <boost/test/test_tools.hpp>
38
39 #define prefix_
40 ///////////////////////////////cc.p////////////////////////////////////////
41
42 namespace {
43     enum TestEnum { Foo, Bar };
44     SENF_CONSOLE_REGISTER_ENUM( TestEnum, (Foo)(Bar) );
45
46     TestEnum test (TestEnum value) { return value; }
47
48     struct TestClass {
49         enum MemberEnum { MemberFoo, MemberBar };
50         static MemberEnum test (MemberEnum value) { return value; }
51     };
52     SENF_CONSOLE_REGISTER_ENUM_MEMBER( TestClass, MemberEnum, (MemberFoo)(MemberBar) );
53     
54 }
55
56 BOOST_AUTO_UNIT_TEST(enumSupport)
57 {
58     senf::console::Executor executor;
59     senf::console::CommandParser parser;
60     senf::console::ScopedDirectory<> dir;
61     senf::console::root().add("test", dir);
62
63     dir.add("test",&test);
64     
65     std::stringstream ss;
66     BOOST_CHECK_NO_THROW(
67         parser.parse("test/test Foo",
68                      boost::bind<void>( boost::ref(executor), boost::ref(ss), _1 )) );
69     BOOST_CHECK_EQUAL( ss.str(), "Foo\n" );
70
71     ss.str("");
72     BOOST_CHECK_NO_THROW(
73         parser.parse("test/test Bar",
74                      boost::bind<void>( boost::ref(executor), boost::ref(ss), _1 )) );
75     BOOST_CHECK_EQUAL( ss.str(), "Bar\n" );
76
77     BOOST_CHECK_THROW(
78         parser.parse("test/test (Foo Bar)",
79                      boost::bind<void>( boost::ref(executor), boost::ref(ss), _1 )),
80         senf::console::SyntaxErrorException );
81
82     BOOST_CHECK_THROW(
83         parser.parse("test/test Baz",
84                      boost::bind<void>( boost::ref(executor), boost::ref(ss), _1 )),
85         senf::console::SyntaxErrorException );
86
87     dir.add("member", &TestClass::test);
88
89     ss.str("");
90     BOOST_CHECK_NO_THROW(
91         parser.parse("test/member MemberFoo",
92                      boost::bind<void>( boost::ref(executor), boost::ref(ss), _1 )) );
93     BOOST_CHECK_EQUAL( ss.str(), "MemberFoo\n" );
94
95     ss.str("");
96     BOOST_CHECK_NO_THROW(
97         parser.parse("test/member MemberBar",
98                      boost::bind<void>( boost::ref(executor), boost::ref(ss), _1 )) );
99     BOOST_CHECK_EQUAL( ss.str(), "MemberBar\n" );
100 }
101
102
103 ///////////////////////////////cc.e////////////////////////////////////////
104 #undef prefix_
105
106 \f
107 // Local Variables:
108 // mode: c++
109 // fill-column: 100
110 // comment-column: 40
111 // c-file-style: "senf"
112 // indent-tabs-mode: nil
113 // ispell-local-dictionary: "american"
114 // compile-command: "scons -u test"
115 // End: