switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Packets / DefaultBundle / LlcSnapPacket.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Thorsten Horstmann <tho@berlios.de>
27
28 /** \file
29     \brief LlcSnapPacket unit tests */
30
31 //#include "LlcSnapPacket.test.hh"
32 //#include "LlcSnapPacket.test.ih"
33
34 // Custom includes
35 #include "LlcSnapPacket.hh"
36 #include "EthernetPacket.hh"
37
38 #include <senf/Utils/auto_unit_test.hh>
39 #include <boost/test/test_tools.hpp>
40
41 #define prefix_
42 //-/////////////////////////////////////////////////////////////////////////////////////////////////
43
44 SENF_AUTO_UNIT_TEST(llcsnap_parse)
45 {
46     senf::PacketData::byte data[] = {
47         0xaa,             // DSAP
48         0xaa,             // SSAP
49         0x03,             // ctrl
50         0x00, 0x00, 0x00, // Protocol Identification Field
51         0x10, 0x11        // EtherType / Length
52     };
53     senf::LlcSnapPacket p (senf::LlcSnapPacket::create(data));
54
55     BOOST_CHECK_EQUAL( p->dsap(), 0xaa );
56     BOOST_CHECK_EQUAL( p->ssap(), 0xaa );
57     BOOST_CHECK_EQUAL( p->ctrl(), 0x03 );
58     BOOST_CHECK_EQUAL( p->protocolId(), 0x000000u );
59     BOOST_CHECK_EQUAL( p->type_length(), 0x1011 );
60
61     std::ostringstream oss (std::ostringstream::out);
62     SENF_CHECK_NO_THROW( p.dump( oss));
63 }
64
65 SENF_AUTO_UNIT_TEST(llcSnapPacket_ethernet)
66 {
67     senf::LlcSnapPacket llcsnap (senf::LlcSnapPacket::create());
68     senf::EthernetPacket eth (senf::EthernetPacket::createAfter(llcsnap));
69     senf::DataPacket payload  (senf::DataPacket::createAfter(
70             eth, std::string("Hello, world!")));
71     llcsnap.finalizeAll();
72
73     BOOST_CHECK_EQUAL( llcsnap->dsap(), 0xaa );
74     BOOST_CHECK_EQUAL( llcsnap->ssap(), 0xaa );
75     BOOST_CHECK_EQUAL( llcsnap->ctrl(), 0x03 );
76     BOOST_CHECK_EQUAL( llcsnap->protocolId(), 0x000000u );
77     BOOST_CHECK_EQUAL( llcsnap->type_length(), 14 + 13);
78 }
79
80
81 //-/////////////////////////////////////////////////////////////////////////////////////////////////
82 #undef prefix_
83
84 \f
85 // Local Variables:
86 // mode: c++
87 // fill-column: 100
88 // c-file-style: "senf"
89 // indent-tabs-mode: nil
90 // ispell-local-dictionary: "american"
91 // compile-command: "scons -u test"
92 // comment-column: 40
93 // End: