Merged revisions 262,264-265,267-282,284-298,300-311 via svnmerge from
[senf.git] / Packets / DefaultBundle / IpV4Packet.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 "IpV4Packet.test.hh"
26 //#include "IpV4Packet.test.ih"
27
28 // Custom includes
29 #include "IpV4Packet.hh"
30
31 #include <boost/test/auto_unit_test.hpp>
32 #include <boost/test/test_tools.hpp>
33
34 #define prefix_
35 ///////////////////////////////cc.p////////////////////////////////////////
36
37 using namespace senf;
38
39 BOOST_AUTO_UNIT_TEST(ipV4Packet_packet)
40 {
41
42     unsigned char data[] = { 0x01, 0x02, 0x03, 0x04,
43                              0x05, 0x06, 0x07, 0x08,
44                              0x09, 0x0A, 0x0B, 0x0C,
45                              0x11, 0x12, 0x13, 0x14,
46                              0x15, 0x16, 0x17, 0x18
47                            };
48
49     senf::IpV4Packet p (senf::IpV4Packet::create(data));
50
51     BOOST_CHECK_EQUAL( p->version(),     0x00u       );
52     BOOST_CHECK_EQUAL( p->ihl(),         0x01u       );
53     BOOST_CHECK_EQUAL( p->tos(),         0x02u       );
54     BOOST_CHECK_EQUAL( p->length(),      0x0304u     );
55     BOOST_CHECK_EQUAL( p->identifier(),  0x0506u     );
56     BOOST_CHECK_EQUAL( p->reserved(),    0           );
57     BOOST_CHECK_EQUAL( p->df(),          0           );
58     BOOST_CHECK_EQUAL( p->mf(),          0           );
59     BOOST_CHECK_EQUAL( p->frag(),        0x0708u     );
60     BOOST_CHECK_EQUAL( p->ttl(),         0x09u       );
61     BOOST_CHECK_EQUAL( p->protocol(),    0x0Au       );
62     BOOST_CHECK_EQUAL( p->crc(),         0x0B0Cu     );
63     BOOST_CHECK_EQUAL( p->source(),      0x11121314u );
64     BOOST_CHECK_EQUAL( p->destination(), 0x15161718u );
65 }
66
67 ///////////////////////////////cc.e////////////////////////////////////////
68 #undef prefix_
69
70 \f
71 // Local Variables:
72 // mode: c++
73 // fill-column: 100
74 // c-file-style: "senf"
75 // indent-tabs-mode: nil
76 // ispell-local-dictionary: "american"
77 // compile-command: "scons -u test"
78 // comment-column: 40
79 // End: