replaced some tabs with spaces
[senf.git] / Scheduler / Console / Parse.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 Parse.test unit tests */
25
26 //#include "Parse.test.hh"
27 //#include "Parse.test.ih"
28
29 // #define BOOST_SPIRIT_DEBUG
30 // #define BOOST_SPIRIT_DEBUG_TRACENODE 0
31
32 // Custom includes
33 #include <sstream>
34 #include "Parse.hh"
35 #include "Parse.ih"
36 #include "../../Utils/String.hh"
37
38 #include "../../Utils/auto_unit_test.hh"
39 #include <boost/test/test_tools.hpp>
40
41 #define prefix_
42 ///////////////////////////////cc.p////////////////////////////////////////
43
44 namespace 
45 {
46     struct TestParseDispatcher 
47     {
48         TestParseDispatcher(std::ostream & os) : os_ (os) {}
49
50         std::ostream & os_;
51
52         void pushDirectory(std::vector<senf::console::Token> const & path)
53             { os_ << "pushDirectory( " << senf::stringJoin(path, "/") << " )\n"; }
54         void popDirectory()
55             { os_ << "popDirectory()\n"; }
56
57         void beginCommand(std::vector<senf::console::Token> const & command) 
58             { os_ << "beginCommand( " << senf::stringJoin(command, "/") << " )\n"; }
59         void endCommand() 
60             { os_ << "endCommand()\n"; }
61         
62         void pushToken(senf::console::Token token)
63             { os_ << "pushToken( " << token << " )\n"; }
64
65         void builtin_cd(std::vector<senf::console::Token> const & path)
66             { os_ << "builtin_cd( " << senf::stringJoin(path, "/") << " )\n"; }
67         void builtin_ls(std::vector<senf::console::Token> const & path)
68             { os_ << "builtin_ls( " << senf::stringJoin(path, "/") << " )\n"; }
69         void builtin_exit()
70             { os_ << "builtin_exit()\n"; }
71         void builtin_help(std::vector<senf::console::Token> const & path)
72             { os_ << "builtin_help( " << senf::stringJoin(path, "/") << " )\n"; }
73     };
74 }
75
76 BOOST_AUTO_UNIT_TEST(commandGrammar)
77 {
78     senf::console::detail::CommandGrammar<TestParseDispatcher>::Context context;
79     std::stringstream ss;
80     TestParseDispatcher dispatcher (ss);
81     
82     typedef senf::console::detail::CommandGrammar<TestParseDispatcher> Grammar;
83     Grammar grammar (dispatcher, context);
84
85     {
86         static char text[] = 
87             "# Comment\n"
88             "doo / bii / doo arg"
89             "                flab::blub"
90             "                123.434>a"
91             "                (a,b;c (huhu/{haha}))"
92             "                \"foo\\\"bar\" #\n"
93             "                x\"01 02 # Inner comment\n"
94             "                   0304\";";
95
96         BOOST_CHECK( boost::spirit::parse( 
97                          text, 
98                          grammar.use_parser<Grammar::CommandParser>(), 
99                          grammar.use_parser<Grammar::SkipParser>() ) . full );
100         BOOST_CHECK_EQUAL( ss.str(), 
101                            "beginCommand( Word('doo')/Word('bii')/Word('doo') )\n"
102                            "pushToken( Word('arg') )\n"
103                            "pushToken( Word('flab::blub') )\n"
104                            "pushToken( Word('123.434>a') )\n"
105                            "pushToken( ArgumentGroupOpen('(') )\n"
106                            "pushToken( Word('a') )\n"
107                            "pushToken( OtherPunctuation(',') )\n"
108                            "pushToken( Word('b') )\n"
109                            "pushToken( CommandTerminator(';') )\n"
110                            "pushToken( Word('c') )\n"
111                            "pushToken( ArgumentGroupOpen('(') )\n"
112                            "pushToken( Word('huhu') )\n"
113                            "pushToken( PathSeparator('/') )\n"
114                            "pushToken( DirectoryGroupOpen('{') )\n"
115                            "pushToken( Word('haha') )\n"
116                            "pushToken( DirectoryGroupClose('}') )\n"
117                            "pushToken( ArgumentGroupClose(')') )\n"
118                            "pushToken( ArgumentGroupClose(')') )\n"
119                            "pushToken( BasicString('foo\"bar') )\n"
120                            "pushToken( HexString('\x01\x02\x03\x04') )\n"
121                            "endCommand()\n" );
122     }
123
124     {
125         ss.str("");
126         BOOST_CHECK( boost::spirit::parse( 
127                          "ls /foo/bar;", 
128                          grammar.use_parser<Grammar::CommandParser>(), 
129                          grammar.use_parser<Grammar::SkipParser>() ) . full );
130         BOOST_CHECK_EQUAL( ss.str(), "builtin_ls( None('')/Word('foo')/Word('bar') )\n" );
131     }
132
133     {
134         ss.str("");
135         BOOST_CHECK( boost::spirit::parse( 
136                          "cd /foo/bar;", 
137                          grammar.use_parser<Grammar::CommandParser>(), 
138                          grammar.use_parser<Grammar::SkipParser>() ) . full );
139         BOOST_CHECK_EQUAL( ss.str(), "builtin_cd( None('')/Word('foo')/Word('bar') )\n" );
140     }
141
142     {
143         ss.str("");
144         BOOST_CHECK( boost::spirit::parse( 
145                          "exit;", 
146                          grammar.use_parser<Grammar::CommandParser>(), 
147                          grammar.use_parser<Grammar::SkipParser>() ) . full );
148         BOOST_CHECK_EQUAL( ss.str(), "builtin_exit()\n" );
149     }
150
151     {
152         ss.str("");
153         BOOST_CHECK( boost::spirit::parse( 
154                          "foo/bar/ {", 
155                          grammar.use_parser<Grammar::CommandParser>(), 
156                          grammar.use_parser<Grammar::SkipParser>() ) . full );
157         BOOST_CHECK_EQUAL( ss.str(), "pushDirectory( Word('foo')/Word('bar')/None('') )\n" );
158     }
159
160     {
161         ss.str("");
162         BOOST_CHECK( boost::spirit::parse( 
163                          "}", 
164                          grammar.use_parser<Grammar::CommandParser>(), 
165                          grammar.use_parser<Grammar::SkipParser>() ) . full );
166         BOOST_CHECK_EQUAL( ss.str(), "popDirectory()\n" );
167     }
168
169     {
170         ss.str("");
171         BOOST_CHECK( boost::spirit::parse( 
172                          "help /foo/bar", 
173                          grammar.use_parser<Grammar::CommandParser>(), 
174                          grammar.use_parser<Grammar::SkipParser>() ) . full );
175         BOOST_CHECK_EQUAL( ss.str(), "builtin_help( None('')/Word('foo')/Word('bar') )\n" );
176     }
177 }
178
179 namespace {
180     std::vector<senf::console::ParseCommandInfo> commands;
181     void setInfo(senf::console::ParseCommandInfo const & i)
182     { commands.push_back(i); }
183 }
184
185 BOOST_AUTO_UNIT_TEST(commandParser)
186 {
187     senf::console::CommandParser parser;
188
189     char const text[] = 
190         "# Comment\n"
191         "doo / bii / doo arg"
192         "                flab::blub"
193         "                123.434>a"
194         "                (a,b,c (huhu))"
195         "                \"foo\\\"bar\" #\n"
196         "                x\"01 02 # Inner comment\n"
197         "                   0304\";"
198         "ls /foo/bar; ";
199
200     BOOST_CHECK_NO_THROW( parser.parse(text, &setInfo) );
201     BOOST_CHECK_EQUAL( commands.size(), 2u );
202
203     {
204         senf::console::ParseCommandInfo const & info (commands.front());
205
206         senf::console::Token path[] = { 
207             senf::console::Token(senf::console::Token::Word, "doo"), 
208             senf::console::Token(senf::console::Token::Word, "bii"),
209             senf::console::Token(senf::console::Token::Word, "doo")
210         };
211
212         BOOST_CHECK_EQUAL_COLLECTIONS( info.commandPath().begin(), info.commandPath().end(),
213                                        path, path + sizeof(path)/sizeof(path[0]) );
214         BOOST_CHECK_EQUAL( unsigned(info.tokens().size()), 15u );
215         
216         char const * tokens[] = { "arg", 
217                                   "flab::blub", 
218                                   "123.434>a", 
219                                   "(", "a", ",", "b", ",", "c", "(", "huhu", ")", ")",
220                                   "foo\"bar",
221                                   "\x01\x02\x03\x04" };
222
223         senf::console::ParseCommandInfo::argument_iterator args (info.arguments().begin());
224         BOOST_REQUIRE( args != info.arguments().end() );
225         BOOST_REQUIRE_EQUAL( unsigned(args->size()), 1u );
226         BOOST_CHECK_EQUAL( args->begin()->value(), tokens[0] );
227         
228         ++ args;
229         BOOST_REQUIRE( args != info.arguments().end() );
230         BOOST_REQUIRE_EQUAL( args->size(), 1u );
231         BOOST_CHECK_EQUAL( args->begin()->value(), tokens[1] );
232         
233         ++ args;
234         BOOST_REQUIRE( args != info.arguments().end() );
235         BOOST_REQUIRE_EQUAL( args->size(), 1u );
236         BOOST_CHECK_EQUAL( args->begin()->value(), tokens[2] );
237         
238         ++ args;
239         BOOST_REQUIRE( args != info.arguments().end() );
240         BOOST_REQUIRE_EQUAL( args->size(), 8u );
241         for (unsigned i (0); i<8; ++i)
242             BOOST_CHECK_EQUAL( args->begin()[i].value(), tokens[4+i] );
243         
244         ++ args;
245         BOOST_REQUIRE( args != info.arguments().end() );
246         BOOST_REQUIRE_EQUAL( args->size(), 1u );
247         BOOST_CHECK_EQUAL( args->begin()->value(), tokens[13] );
248         
249         ++ args;
250         BOOST_REQUIRE( args != info.arguments().end() );
251         BOOST_REQUIRE_EQUAL( args->size(), 1u );
252         BOOST_CHECK_EQUAL( args->begin()->value(), tokens[14] );
253         
254         ++ args;
255         BOOST_CHECK( args == info.arguments().end() );
256     }
257
258     commands.clear();
259 }
260
261 namespace {
262     void parseArgs(senf::console::ParseCommandInfo::ArgumentsRange const & args)
263     {
264         senf::console::CheckedArgumentIteratorWrapper arg (args);
265         senf::console::ParseCommandInfo::TokensRange arg1 (*(arg++));
266         senf::console::ParseCommandInfo::TokensRange arg2 (*(arg++));
267     }
268 }
269
270 BOOST_AUTO_UNIT_TEST(checkedArgumentIterator)
271 {
272     senf::console::CommandParser parser;
273
274     BOOST_CHECK_NO_THROW( parser.parse("foo a", &setInfo) );
275     BOOST_CHECK_THROW( parseArgs(commands.back().arguments()), 
276                        senf::console::SyntaxErrorException );
277
278     BOOST_CHECK_NO_THROW( parser.parse("foo a b", &setInfo) );
279     BOOST_CHECK_NO_THROW( parseArgs(commands.back().arguments()) );
280
281     BOOST_CHECK_NO_THROW( parser.parse("foo a b c", &setInfo) );
282     BOOST_CHECK_THROW( parseArgs(commands.back().arguments()), 
283                        senf::console::SyntaxErrorException );
284     
285     senf::console::CheckedArgumentIteratorWrapper arg (commands.back().arguments());
286     BOOST_CHECK( arg == commands.back().arguments().begin() );
287     BOOST_CHECK( arg != commands.back().arguments().end() );
288     BOOST_CHECK( arg );
289     ++ arg;
290     BOOST_CHECK( arg );
291     arg.clear();
292     BOOST_CHECK( arg.done() );
293
294     senf::console::ParseCommandInfo::ArgumentIterator i (arg);
295     BOOST_CHECK( i == commands.back().arguments().end() );
296
297     commands.clear();
298 }
299
300 BOOST_AUTO_UNIT_TEST(parseIncremental)
301 {
302     senf::console::CommandParser parser;
303
304     BOOST_CHECK_EQUAL( parser.parseIncremental("foo a", &setInfo), 0u );
305     BOOST_CHECK_EQUAL( parser.parseIncremental("foo a; cd", &setInfo), 7u );
306     BOOST_CHECK_EQUAL( parser.parseIncremental("foo a; cd /bar", &setInfo), 7u );
307     BOOST_CHECK_EQUAL( parser.parseIncremental("foo a; cd /bar; ", &setInfo), 16u );
308     BOOST_CHECK_EQUAL( parser.parseIncremental(" ", &setInfo), 1u );
309     BOOST_CHECK_EQUAL( commands.size(), 4u );
310
311     commands.clear();
312 }
313
314 namespace {
315     std::string parseErrorMessage(std::string const & msg)
316     {
317         std::string::size_type i (msg.find("-- \n"));
318         return i == std::string::npos ? msg : msg.substr(i+4);
319     }
320 }
321
322 BOOST_AUTO_UNIT_TEST(parseExceptions)
323 {
324     senf::console::CommandParser parser;
325     std::string msg;
326
327 #   define CheckParseEx(c, e)                                                                     \
328         commands.clear();                                                                         \
329         msg.clear();                                                                              \
330         try { parser.parse(c, &setInfo); }                                                        \
331         catch (std::exception & ex) { msg = parseErrorMessage(ex.what()); }                       \
332         BOOST_CHECK_EQUAL( msg, e )
333
334     CheckParseEx( "/foo/bar;\n  ()", "path expected\nat <unknown>:2:3" );
335     CheckParseEx( "cd /foo/bar foo/bar", "end of statement expected\nat <unknown>:1:13" );
336     CheckParseEx( "/foo/bar foo /", "end of statement expected\nat <unknown>:1:14" );
337     CheckParseEx( "cd \"foo\"", "path expected\nat <unknown>:1:4" );
338     CheckParseEx( "/foo/bar \"string", "'\"' expected\nat <unknown>:1:17" );
339     CheckParseEx( "/foo/bar x\"hi\"", "'\"' expected\nat <unknown>:1:12" );
340     CheckParseEx( "/foo/bar (", "')' expected\nat <unknown>:1:11" );
341 }
342
343 ///////////////////////////////cc.e////////////////////////////////////////
344 #undef prefix_
345
346 \f
347 // Local Variables:
348 // mode: c++
349 // fill-column: 100
350 // comment-column: 40
351 // c-file-style: "senf"
352 // indent-tabs-mode: nil
353 // ispell-local-dictionary: "american"
354 // compile-command: "scons -u test"
355 // End: