switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Utils / Console / OverloadedCommand.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2008
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief OverloadedCommand unit tests */
30
31 //#include "OverloadedCommand.test.hh"
32 //#include "OverloadedCommand.test.ih"
33
34 // Custom includes
35 #include <sstream>
36 #include "Console.hh"
37
38 #include <senf/Utils/auto_unit_test.hh>
39 #include <boost/test/test_tools.hpp>
40
41 #define prefix_
42 //-/////////////////////////////////////////////////////////////////////////////////////////////////
43
44 namespace {
45
46     void fn1(std::ostream &, senf::console::ParseCommandInfo const &)
47     {
48         throw senf::console::SyntaxErrorException("fn1 error");
49     }
50
51     void fn2(std::ostream &, senf::console::ParseCommandInfo const &)
52     {
53         throw senf::console::SyntaxErrorException("fn2 error");
54     }
55
56     void fn3(std::ostream & os, senf::console::ParseCommandInfo const &)
57     {
58         os << "fn3\n";
59     }
60
61 }
62
63 SENF_AUTO_UNIT_TEST(overladedCommand)
64 {
65     senf::console::OverloadedCommandNode & cmd (
66         senf::console::root()
67             .add("overload", senf::console::OverloadedCommandNode::create())
68             .doc("cmd") );
69     cmd.add(senf::console::SimpleCommandOverload::create(&fn1)).doc("fn1");
70     cmd.add(senf::console::SimpleCommandOverload::create(&fn2)).doc("fn2");
71
72     {
73         senf::console::ParseCommandInfo info;
74         std::stringstream ss;
75         BOOST_CHECK_THROW( senf::console::root()("overload")(ss, info),
76                            senf::console::SyntaxErrorException );
77
78         cmd.add(senf::console::SimpleCommandOverload::create(&fn3)).doc("fn3");
79         SENF_CHECK_NO_THROW( senf::console::root()("overload")(ss, info) );
80         BOOST_CHECK_EQUAL( ss.str(), "fn3\n" );
81     }
82
83     {
84         std::stringstream ss;
85         cmd.help(ss);
86         BOOST_CHECK_EQUAL( ss.str(),
87                            "Usage:\n"
88                            "    1- overload ...\n"
89                            "    2- overload ...\n"
90                            "    3- overload ...\n"
91                            "\n"
92                            "cmd\n"
93                            "\n"
94                            "Variant 1:\n"
95                            "fn1\n"
96                            "\n"
97                            "Variant 2:\n"
98                            "fn2\n"
99                            "\n"
100                            "Variant 3:\n"
101                            "fn3\n" );
102     }
103
104     cmd.unlink();
105 }
106
107 //-/////////////////////////////////////////////////////////////////////////////////////////////////
108 #undef prefix_
109
110 \f
111 // Local Variables:
112 // mode: c++
113 // fill-column: 100
114 // comment-column: 40
115 // c-file-style: "senf"
116 // indent-tabs-mode: nil
117 // ispell-local-dictionary: "american"
118 // compile-command: "scons -u test"
119 // End: