0f9d9e7d209d0ead123ac46c21f8a01d6bf4ec15
[senf.git] / Packets / ParseArray.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 "ParseArray.test.hh"
26 //#include "ParseArray.test.ih"
27
28 // Custom includes
29 #include "ParseArray.hh"
30 #include "ParseInt.hh"
31
32 #include <boost/test/auto_unit_test.hpp>
33 #include <boost/test/test_tools.hpp>
34
35 #define prefix_
36 ///////////////////////////////cc.p////////////////////////////////////////
37
38 using namespace senf;
39
40 BOOST_AUTO_UNIT_TEST(parseArray_test)
41 {
42     unsigned char data[] = { 0x00, 0x01, 0x02, 0x03, 0x04, 0x05 };
43     typedef unsigned char * iterator;
44     typedef Parse_Array<6,Parse_UInt8<>,iterator> Parse_UInt8Array6;
45     Parse_UInt8Array6 v (data);
46     BOOST_CHECK_EQUAL( v[0], 0x00 );
47     BOOST_CHECK_EQUAL( v[5], 0x05 );
48     BOOST_CHECK_EQUAL( *v.begin(), 0x00 );
49     Parse_UInt8Array6::iterator i1 (v.begin());
50     Parse_UInt8Array6::iterator i2 (v.begin());
51     ++i1;
52     BOOST_CHECK_EQUAL( *i1, 0x01 );
53     BOOST_CHECK_EQUAL( i1[-1], 0x00 );
54     BOOST_CHECK_EQUAL( i1-i2, 1 );
55     BOOST_CHECK_EQUAL( i2-i1, -1 );
56     --i1;
57     BOOST_CHECK( i1==i2 );
58 }
59
60 ///////////////////////////////cc.e////////////////////////////////////////
61 #undef prefix_
62
63 \f
64 // Local Variables:
65 // mode: c++
66 // c-file-style: "senf"
67 // End: