Fixes for g++-4
[senf.git] / Packets / ParserBase.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2006 
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@fokus.fraunhofer.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 // Unit tests
24
25 //#include "ParserBase.test.hh"
26 //#include "ParserBase.test.ih"
27
28 // Custom includes
29 #include "ParserBase.hh"
30 #include "Packet.hh"
31 #include <boost/static_assert.hpp>
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 pkf = satcom::pkf;
40
41 // The non-inherited Version is extensively tested in PaseInt.test.hh
42
43 BOOST_AUTO_UNIT_TEST(parserBase_inherited)
44 {
45     // TODO: Implement
46 }
47
48 namespace {
49
50     template <class Iterator=pkf::nil, class IPacket=pkf::nil>
51     struct Parse_Test : public pkf::ParserBase<Iterator,IPacket>
52     {
53         template <class I=pkf::nil, class P=pkf::nil>
54         struct rebind { typedef Parse_Test<I,P> parser; };
55         typedef Iterator byte_iterator;
56         
57         Parse_Test() {}
58         Parse_Test(Iterator const & i) : pkf::ParserBase<Iterator,IPacket>(i) {}
59         
60         static unsigned bytes() { return 14; }
61
62         ///////////////////////////////////////////////////////////////////////////
63
64     };
65
66     template <class Iterator=pkf::nil, class IPacket=pkf::nil>
67     struct Parse_Test2 : public pkf::ParserBase<Iterator,IPacket>
68     {
69         template <class I=pkf::nil, class P=pkf::nil>
70         struct rebind { typedef Parse_Test<I,P> parser; };
71         typedef Iterator byte_iterator;
72         
73         Parse_Test2() {}
74         Parse_Test2(Iterator const & i) : pkf::ParserBase<Iterator,IPacket>(i) {}
75         
76         unsigned bytes() const { return 14; }
77         static unsigned check(Iterator a, Iterator b)
78             { return true; }
79         static unsigned min_bytes() { return 10; }
80
81         ///////////////////////////////////////////////////////////////////////////
82
83     };
84
85 }
86
87 BOOST_AUTO_UNIT_TEST(parserBase_construction)
88 {
89     BOOST_STATIC_ASSERT( pkf::Parser_traits< Parse_Test<> >::fixed_size );
90     BOOST_STATIC_ASSERT( ! pkf::Parser_traits< Parse_Test2<> >::fixed_size );
91
92     BOOST_CHECK_EQUAL( pkf::min_bytes< Parse_Test<int> >(), 14u );
93     BOOST_CHECK( pkf::check< Parse_Test<int> >(0,14) );
94     BOOST_CHECK( ! pkf::check< Parse_Test<int> >(2,15) );
95
96     BOOST_CHECK_EQUAL( pkf::min_bytes< Parse_Test2<int> >(), 10u );
97     BOOST_CHECK( pkf::check< Parse_Test2<int> >(2,13) );
98     BOOST_CHECK( pkf::check< Parse_Test2<int> >(2,12) );
99 }
100
101 ///////////////////////////////cc.e////////////////////////////////////////
102 #undef prefix_
103
104 \f
105 // Local Variables:
106 // mode: c++
107 // c-file-style: "satcom"
108 // End: