916da235ef1f5267ba5f6ec38a41dfc540bba1a6
[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 // The non-inherited Version is extensively tested in PaseInt.test.hh
40
41 BOOST_AUTO_UNIT_TEST(parserBase_inherited)
42 {
43     /** \todo Implement */
44 }
45
46 namespace {
47
48     template <class Iterator=senf::nil, class IPacket=senf::nil>
49     struct Parse_Test : public senf::ParserBase<Iterator,IPacket>
50     {
51         template <class I=senf::nil, class P=senf::nil>
52         struct rebind { typedef Parse_Test<I,P> parser; };
53         typedef Iterator byte_iterator;
54         
55         Parse_Test() {}
56         Parse_Test(Iterator const & i) : senf::ParserBase<Iterator,IPacket>(i) {}
57         
58         static unsigned bytes() { return 14; }
59
60         ///////////////////////////////////////////////////////////////////////////
61
62     };
63
64     template <class Iterator=senf::nil, class IPacket=senf::nil>
65     struct Parse_Test2 : public senf::ParserBase<Iterator,IPacket>
66     {
67         template <class I=senf::nil, class P=senf::nil>
68         struct rebind { typedef Parse_Test<I,P> parser; };
69         typedef Iterator byte_iterator;
70         
71         Parse_Test2() {}
72         Parse_Test2(Iterator const & i) : senf::ParserBase<Iterator,IPacket>(i) {}
73         
74         unsigned bytes() const { return 14; }
75         static unsigned check(Iterator a, Iterator b)
76             { return true; }
77         static unsigned min_bytes() { return 10; }
78
79         ///////////////////////////////////////////////////////////////////////////
80
81     };
82
83 }
84
85 BOOST_AUTO_UNIT_TEST(parserBase_construction)
86 {
87     BOOST_STATIC_ASSERT( senf::Parser_traits< Parse_Test<> >::fixed_size );
88     BOOST_STATIC_ASSERT( ! senf::Parser_traits< Parse_Test2<> >::fixed_size );
89
90     BOOST_CHECK_EQUAL( senf::min_bytes< Parse_Test<int> >(), 14u );
91     BOOST_CHECK( senf::check< Parse_Test<int> >(0,14) );
92     BOOST_CHECK( ! senf::check< Parse_Test<int> >(2,15) );
93
94     BOOST_CHECK_EQUAL( senf::min_bytes< Parse_Test2<int> >(), 10u );
95     BOOST_CHECK( senf::check< Parse_Test2<int> >(2,13) );
96     BOOST_CHECK( senf::check< Parse_Test2<int> >(2,12) );
97 }
98
99 ///////////////////////////////cc.e////////////////////////////////////////
100 #undef prefix_
101
102 \f
103 // Local Variables:
104 // mode: c++
105 // c-file-style: "senf"
106 // End: