fa36831cb904867416afb6bc052983ea977d409b
[senf.git] / Packets / DefaultBundle / IPv6Extensions.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2007
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 IPv6Extensions.test unit tests */
25
26 //#include "IPv6Extensions.test.hh"
27 //#include "IPv6Extensions.test.ih"
28
29 // Custom includes
30 #include "IPv6Extensions.hh"
31 #include "IPv6Packet.hh"
32 #include "UDPPacket.hh"
33 #include "../../Socket/Protocols/INet/INetAddressing.hh"
34
35 #include "../../Utils/auto_unit_test.hh"
36 #include <boost/test/test_tools.hpp>
37
38 #define prefix_
39 ///////////////////////////////cc.p////////////////////////////////////////
40
41 BOOST_AUTO_UNIT_TEST(ipv6Extension_Fragment_packet)
42 {
43     // Just for the fun of it, we test a nice chain: A fragment of a fragmented UDP packet
44
45     unsigned char data[] = {
46         // IP header
47         0x60, 0x00, 0x00, 0x00,         // IP Version, class, flow label
48         0, 20,                          // payload length
49         44,                             // next header (IPv6 Fragment)
50         32,                             // hop limit
51         0x20, 0x01, 0, 0, 0, 0, 0, 0,   // source ip = 2001::1
52            0, 0, 0, 0, 0, 0, 0, 0x01,
53         0x20, 0x01, 0, 0, 0, 0, 0, 0,   // destination ip = 2001::2
54            0, 0, 0, 0, 0, 0, 0, 0x02,
55         // IPv6 Fragment header
56         17,                             // next header (UDP)
57         0,                              // reserved
58         0x05, 0x00,                     // fragment offset, last fragment
59         0x01, 0x02, 0x03, 0x04,         // id
60         // UDP header
61         0x10, 0x00,                     // source port
62         0x20, 0x00,                     // destination port
63         0, 12,                          // length
64         0x00, 0x00,                     // CRC (no, I won't calculate this one ...)
65         // Payload data
66         0x11, 0x12, 0x13, 0x14
67     };
68
69     senf::IPv6Packet p (senf::IPv6Packet::create(data));
70
71     BOOST_CHECK_EQUAL( p->version(), 6u );
72     BOOST_CHECK_EQUAL( p->length(), 20u );
73     BOOST_CHECK_EQUAL( p->nextHeader(), 44u );
74     BOOST_CHECK_EQUAL( p->source().value(), senf::INet6Address::from_string("2001::1") );
75     BOOST_CHECK_EQUAL( p->destination().value(), senf::INet6Address::from_string("2001::2") );
76     BOOST_CHECK( p.next().is<senf::IPv6Extension_Fragment>() );
77
78     senf::IPv6Extension_Fragment f (p.next().as<senf::IPv6Extension_Fragment>());
79
80     BOOST_CHECK_EQUAL( f->nextHeader(), 17u );
81     BOOST_CHECK_EQUAL( f->fragmentOffset(), 160u );
82     BOOST_CHECK_EQUAL( f->id(), 0x01020304u );
83     BOOST_CHECK( f.next().is<senf::UDPPacket>() );
84
85     senf::UDPPacket u (f.next().as<senf::UDPPacket>());
86
87     BOOST_CHECK_EQUAL( u->source(), 0x1000u );
88     BOOST_CHECK_EQUAL( u->destination(), 0x2000u );
89     BOOST_CHECK_EQUAL( u->length(), 12u );
90     BOOST_CHECK( u.next().is<senf::DataPacket>() );
91
92     senf::DataPacket d (u.next().as<senf::DataPacket>());
93     senf::PacketData::iterator i (u.next().data().begin());
94     BOOST_CHECK_EQUAL( d.size(), 4u );
95     BOOST_CHECK_EQUAL( d.data()[0], 0x11 );
96 }
97
98 ///////////////////////////////cc.e////////////////////////////////////////
99 #undef prefix_
100
101 \f
102 // Local Variables:
103 // mode: c++
104 // fill-column: 100
105 // c-file-style: "senf"
106 // indent-tabs-mode: nil
107 // ispell-local-dictionary: "american"
108 // compile-command: "scons -u test"
109 // comment-column: 40
110 // End: