Utils: Fix hexump() of nevative values
[senf.git] / Utils / Termlib / Terminfo.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2009 
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 Terminfo.test unit tests */
25
26 //#include "Terminfo.test.hh"
27 //#include "Terminfo.test.ih"
28
29 // Custom includes
30 #include "Terminfo.hh"
31
32 #include "../../Utils/auto_unit_test.hh"
33 #include <boost/test/test_tools.hpp>
34
35 #define prefix_
36 ///////////////////////////////cc.p////////////////////////////////////////
37
38 namespace {
39     typedef std::pair<senf::term::KeyParser::keycode_t, senf::term::KeyParser::size_type> Pair;
40 }
41
42 namespace std {
43
44     std::ostream & operator<<(std::ostream & os, Pair const & pair)
45     {
46         os << '(' << pair.first << ',' << pair.second << ')';
47         return os;
48     }
49 }
50
51 BOOST_AUTO_UNIT_TEST(terminfo)
52 {
53     senf::term::Terminfo ifo ("vt220");
54     senf::term::KeyParser kp (ifo);
55
56     //ifo.dump(std::cout);
57     //kp.dump(std::cout);
58
59     BOOST_CHECK_EQUAL( kp.lookup("\e[5\x7e"), 
60                        Pair(senf::term::KeyParser::PageUp, 4u) );
61     BOOST_CHECK_EQUAL( kp.lookup("\e"),
62                        Pair(senf::term::KeyParser::Incomplete, 1u) );
63     BOOST_CHECK_EQUAL( kp.lookup("\e["),
64                        Pair(senf::term::KeyParser::Incomplete, 2u) );
65     BOOST_CHECK_EQUAL( kp.lookup("\e[A"),
66                        Pair(senf::term::KeyParser::Up, 3u) );
67     BOOST_CHECK_EQUAL( kp.lookup("\e[\e"),
68                        Pair(senf::term::KeyParser::keycode_t('\e'), 1u) );
69     BOOST_CHECK_EQUAL( kp.lookup("a\e[Ab"),
70                        Pair(senf::term::KeyParser::keycode_t('a'), 1u) );
71     BOOST_CHECK_EQUAL( kp.lookup("\e[Ab"),
72                        Pair(senf::term::KeyParser::Up, 3u) );
73     BOOST_CHECK_EQUAL( kp.lookup("b"),
74                        Pair(senf::term::KeyParser::keycode_t('b'), 1u) );
75     BOOST_CHECK_EQUAL( kp.lookup(""),
76                        Pair(senf::term::KeyParser::keycode_t('\0'), 0u) );
77 }
78
79 ///////////////////////////////cc.e////////////////////////////////////////
80 #undef prefix_
81
82 \f
83 // Local Variables:
84 // mode: c++
85 // fill-column: 100
86 // comment-column: 40
87 // c-file-style: "senf"
88 // indent-tabs-mode: nil
89 // ispell-local-dictionary: "american"
90 // compile-command: "scons -u test"
91 // End: