NEW FILE HEADER / COPYRIGHT FORMAT
[senf.git] / Packets / DefaultBundle / LlcSnapPacket.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 //     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 // Unit tests
24
25 //#include "LlcSnapPacket.test.hh"
26 //#include "LlcSnapPacket.test.ih"
27
28 // Custom includes
29 #include "LlcSnapPacket.hh"
30 #include "EthernetPacket.hh"
31
32 #include "../../Utils/auto_unit_test.hh"
33 #include <boost/test/test_tools.hpp>
34
35 #define prefix_
36 ///////////////////////////////cc.p////////////////////////////////////////
37
38 BOOST_AUTO_UNIT_TEST(llcsnap_parse)
39 {
40     senf::PacketData::byte data[] = {
41         0xaa,             // DSAP
42         0xaa,             // SSAP
43         0x03,             // ctrl
44         0x00, 0x00, 0x00, // Protocol Identification Field
45         0x10, 0x11        // EtherType / Length 
46     };
47     senf::LlcSnapPacket p (senf::LlcSnapPacket::create(data));
48
49     BOOST_CHECK_EQUAL( p->dsap(), 0xaa );
50     BOOST_CHECK_EQUAL( p->ssap(), 0xaa );
51     BOOST_CHECK_EQUAL( p->ctrl(), 0x03 );
52     BOOST_CHECK_EQUAL( p->protocolId(), 0x000000u );
53     BOOST_CHECK_EQUAL( p->type_length(), 0x1011 );
54 }
55
56 BOOST_AUTO_UNIT_TEST(llcSnapPacket_ethernet)
57 {
58     senf::LlcSnapPacket llcsnap (senf::LlcSnapPacket::create());
59     senf::EthernetPacket eth (senf::EthernetPacket::createAfter(llcsnap));
60     senf::DataPacket payload  (senf::DataPacket::createAfter(
61             eth, std::string("Hello, world!")));    
62     llcsnap.finalize();
63
64     BOOST_CHECK_EQUAL( llcsnap->dsap(), 0xaa );
65     BOOST_CHECK_EQUAL( llcsnap->ssap(), 0xaa );
66     BOOST_CHECK_EQUAL( llcsnap->ctrl(), 0x03 );
67     BOOST_CHECK_EQUAL( llcsnap->protocolId(), 0x000000u );
68     BOOST_CHECK_EQUAL( llcsnap->type_length(), 14 + 13);
69 }
70
71
72 ///////////////////////////////cc.e////////////////////////////////////////
73 #undef prefix_
74
75 \f
76 // Local Variables:
77 // mode: c++
78 // fill-column: 100
79 // c-file-style: "senf"
80 // indent-tabs-mode: nil
81 // ispell-local-dictionary: "american"
82 // compile-command: "scons -u test"
83 // comment-column: 40
84 // End: