cd031fc07ce5959579f08d8fb9de6c062f0f767b
[senf.git] / senf / Packets / extra-tests / AllBundles.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2009
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Thorsten Horstmann <tho@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 AllBundles unit tests */
25
26 // Custom includes
27 #include <senf/Packets/DefaultBundle/EthernetPacket.hh>
28 #include <senf/Packets/DefaultBundle/IPv6Packet.hh>
29
30 #include <senf/Utils/auto_unit_test.hh>
31 #include <boost/test/test_tools.hpp>
32
33 #define prefix_
34 ///////////////////////////////cc.p////////////////////////////////////////
35
36 SENF_AUTO_UNIT_TEST(packetLink)
37 {
38     // This test shall test, if there is now duplicated packet registration in AllBundles.
39     // The test will fail at the start with an assertion error in this case.
40
41     boost::uint8_t data[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,             // source mac
42                               0x00, 0x00, 0x00, 0x00, 0x00, 0x02,             // target mac
43                               0x86, 0xdd,                                     // ethertype
44
45                               0x60, 0x00, 0x00, 0x00,                         // IP version, class,
46                                                                               //          flow label
47                               0x00, 0x00,                                     // payload length
48                               0x3B,                                           // no next header
49                               0x10,                                           // hop limit
50                               0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // source ip
51                               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
52                               0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // target ip
53                               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02 };
54
55     senf::EthernetPacket p (senf::EthernetPacket::create(data));
56
57     BOOST_REQUIRE( p.next() );
58     BOOST_CHECK( p.next().is<senf::IPv6Packet>() );
59 }
60
61 ///////////////////////////////cc.e////////////////////////////////////////
62 #undef prefix_
63
64 \f
65 // Local Variables:
66 // mode: c++
67 // fill-column: 100
68 // comment-column: 40
69 // c-file-style: "senf"
70 // indent-tabs-mode: nil
71 // ispell-local-dictionary: "american"
72 // compile-command: "scons -u test"
73 // End: