Console: Implement enum registration and parsing/formatting
[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
49 BOOST_AUTO_UNIT_TEST(enumSupport)
50 {
51     senf::console::Executor executor;
52     senf::console::CommandParser parser;
53     senf::console::ScopedDirectory<> dir;
54     senf::console::root().add("test", dir);
55
56     dir.add("test",&test);
57     
58     std::stringstream ss;
59     BOOST_CHECK_NO_THROW(
60         parser.parse("test/test Foo",
61                      boost::bind<void>( boost::ref(executor), boost::ref(ss), _1 )) );
62     BOOST_CHECK_EQUAL( ss.str(), "Foo\n" );
63
64     ss.str("");
65     BOOST_CHECK_NO_THROW(
66         parser.parse("test/test Bar",
67                      boost::bind<void>( boost::ref(executor), boost::ref(ss), _1 )) );
68     BOOST_CHECK_EQUAL( ss.str(), "Bar\n" );
69
70     BOOST_CHECK_THROW(
71         parser.parse("test/test (Foo Bar)",
72                      boost::bind<void>( boost::ref(executor), boost::ref(ss), _1 )),
73         senf::console::SyntaxErrorException );
74
75     BOOST_CHECK_THROW(
76         parser.parse("test/test Baz",
77                      boost::bind<void>( boost::ref(executor), boost::ref(ss), _1 )),
78         senf::console::SyntaxErrorException );
79 }
80
81
82 ///////////////////////////////cc.e////////////////////////////////////////
83 #undef prefix_
84
85 \f
86 // Local Variables:
87 // mode: c++
88 // fill-column: 100
89 // comment-column: 40
90 // c-file-style: "senf"
91 // indent-tabs-mode: nil
92 // ispell-local-dictionary: "american"
93 // compile-command: "scons -u test"
94 // End: