Socket/Protocols/INet: Fix INet6Address in6_addr constructor
[senf.git] / Console / OverloadedCommand.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 OverloadedCommand.test unit tests */
25
26 //#include "OverloadedCommand.test.hh"
27 //#include "OverloadedCommand.test.ih"
28
29 // Custom includes
30 #include <sstream>
31 #include "OverloadedCommand.hh"
32
33 #include <boost/test/auto_unit_test.hpp>
34 #include <boost/test/test_tools.hpp>
35
36 #define prefix_
37 ///////////////////////////////cc.p////////////////////////////////////////
38
39 namespace {
40
41     void fn1(std::ostream &, senf::console::CommandOverload::Arguments const &)
42     {
43         throw senf::console::SyntaxErrorException("fn1 error");
44     }
45
46     void fn2(std::ostream &, senf::console::CommandOverload::Arguments const &)
47     {
48         throw senf::console::SyntaxErrorException("fn2 error");
49     }
50
51     void fn3(std::ostream & os, senf::console::CommandOverload::Arguments const &)
52     {
53         os << "fn3\n";
54     }
55
56 }
57
58 BOOST_AUTO_UNIT_TEST(overladedCommand)
59 {
60     senf::console::OverloadedCommandNode & cmd (
61         senf::console::root().add("overload", senf::console::OverloadedCommandNode::create()));
62     cmd.add(senf::console::SimpleCommandOverload::create(&fn1));
63     cmd.add(senf::console::SimpleCommandOverload::create(&fn2));
64
65     senf::console::ParseCommandInfo info;
66     std::stringstream ss;
67     BOOST_CHECK_THROW( senf::console::root()("overload")(ss, info.arguments()),
68                        senf::console::SyntaxErrorException );
69
70     cmd.add(senf::console::SimpleCommandOverload::create(&fn3));
71     BOOST_CHECK_NO_THROW( senf::console::root()("overload")(ss, info.arguments()) );
72     BOOST_CHECK_EQUAL( ss.str(), "fn3\n" );
73
74     cmd.unlink();
75 }
76
77 ///////////////////////////////cc.e////////////////////////////////////////
78 #undef prefix_
79
80 \f
81 // Local Variables:
82 // mode: c++
83 // fill-column: 100
84 // comment-column: 40
85 // c-file-style: "senf"
86 // indent-tabs-mode: nil
87 // ispell-local-dictionary: "american"
88 // compile-command: "scons -u test"
89 // End: