48f5500ff7099d31116a558c6a7f773b63c67aaa
[senf.git] / Packets / DefaultBundle / EthernetPacket.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 "EthernetPacket.test.hh"
26 //#include "EthernetPacket.test.ih"
27
28 // Custom includes
29 #include "EthernetPacket.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 BOOST_AUTO_UNIT_TEST(ethernetPacket_packet)
38 {
39     senf::PacketData::byte data[] = 
40         { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,  // destination MAC
41           0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C,  // source MAC
42           0x10, 0x11 };                        // EtherType
43     senf::EthernetPacket p (senf::EthernetPacket::create(data));
44
45     BOOST_CHECK_EQUAL( p->destination()[3], 0x04 );
46     BOOST_CHECK_EQUAL( p->source()[0], 0x07 );
47     BOOST_CHECK_EQUAL( p->type(), 0x1011 );
48 }
49
50 BOOST_AUTO_UNIT_TEST(ethernetPacket_chain)
51 {
52     unsigned char data[] = { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06,  // destination MAC
53                              0x07, 0x08, 0x09, 0x0A, 0x0B, 0x0C,  // source MAC
54                              0x81, 0x00,                          // EtherType: VLan
55                              0x92, 0x34,                          // VLAN prio, cfi, id
56                              0xab, 0xcd,                          // EtherType
57                              0xf0, 0xf1, 0xf2, 0xf3, 0xf4 };      // Payload
58
59     senf::EthernetPacket p (senf::EthernetPacket::create(data));
60
61     BOOST_REQUIRE( p.next().is<senf::EthVLanPacket>() );
62     senf::EthVLanPacket v (p.next().as<senf::EthVLanPacket>());
63     BOOST_CHECK_EQUAL( v->priority(), 4u );
64     BOOST_CHECK( v->cfi() );
65     BOOST_CHECK_EQUAL( v->vlanId(), 0x234u );
66     BOOST_CHECK_EQUAL( v->type(), 0xabcd );
67     BOOST_CHECK( v.next().is<senf::DataPacket>() );
68     BOOST_CHECK_EQUAL( *v.next().data().begin(), 0xf0 );
69 }
70
71 ///////////////////////////////cc.e////////////////////////////////////////
72 #undef prefix_
73
74 \f
75 // Local Variables:
76 // mode: c++
77 // fill-column: 100
78 // c-file-style: "senf"
79 // indent-tabs-mode: nil
80 // ispell-local-dictionary: "american"
81 // compile-command: "scons -u test"
82 // comment-column: 40
83 // End: