replaced all BOOST_CHECK_NO_THROW with SENF_CHECK_NO_THROW
[senf.git] / Packets / 80221Bundle / TLVPacket.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 "TLVPacket.test.hh"
26 //#include "TLVPacket.test.ih"
27
28 // Custom includes
29 #include "TLVPacket.hh"
30 #include "../DefaultBundle/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 using namespace senf;
39
40 namespace {
41
42 void check_TLVPacket(GenericTLVPacket &tlvPacket, boost::uint8_t type, boost::uint32_t length)
43 {
44     BOOST_CHECK_EQUAL( tlvPacket->type(),         type   );
45     BOOST_CHECK_EQUAL( tlvPacket->length(),       length );
46     BOOST_CHECK_EQUAL( tlvPacket->value().size(), int(length) );
47     std::ostringstream oss (std::ostringstream::out);
48     SENF_CHECK_NO_THROW( tlvPacket.dump( oss));
49     senf::PacketData::iterator dataIterator (tlvPacket->value().begin());
50     for (unsigned i=0; i<length; i++) {
51         BOOST_CHECK_EQUAL( *dataIterator, i );
52         dataIterator++;
53     }
54 }
55 }
56
57
58 BOOST_AUTO_UNIT_TEST(GenericTLVPacket_parse_packet_with_simple_length)
59 {
60     unsigned char data[] = {
61         0x01, // type
62         0x0A, // first bit not set, length=10
63         0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09 // value
64     };
65     GenericTLVPacket tlvPacket (GenericTLVPacket::create(data));
66     check_TLVPacket( tlvPacket, 0x01, 0x0Au );
67 }
68
69
70 BOOST_AUTO_UNIT_TEST(GenericTLVPacket_parse_packet_with_extended_length)
71 {
72     unsigned char data[] = {
73         0x01, // type
74         0x81, // first and last bit set => one byte length following
75         0x0A, // length (10 bytes value)
76         0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09 // value
77     };
78     GenericTLVPacket tlvPacket (GenericTLVPacket::create(data));
79     check_TLVPacket( tlvPacket, 0x01, 0x0Au );
80 }
81
82
83 BOOST_AUTO_UNIT_TEST(GenericTLVPacket_create_packet_with_simple_length)
84 {
85     unsigned char value[] = {
86            0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09
87     };
88     GenericTLVPacket tlvPacket (GenericTLVPacket::create());
89     tlvPacket->type() = 42u;
90     tlvPacket->value( value);
91     tlvPacket.finalizeThis();
92
93     check_TLVPacket( tlvPacket, 42u, 0x0Au );
94
95     unsigned char data[] = {
96         0x2a, // type
97         0x0A, // first bit not set, length=10
98         0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09 // value
99     };
100     BOOST_CHECK( equal( tlvPacket.data().begin(), tlvPacket.data().end(), data ));
101 }
102
103
104 BOOST_AUTO_UNIT_TEST(GenericTLVPacket_create_packet_with_extended_length)
105 {
106     unsigned char value[255];
107     for (unsigned i=0; i<sizeof(value); i++)
108         value[i] = i;
109     GenericTLVPacket tlvPacket (GenericTLVPacket::create());
110     tlvPacket->maxLengthValue( DynamicTLVLengthParser::max_value);
111     tlvPacket->type() = 42u;
112     tlvPacket->value( value);
113     tlvPacket.finalizeThis();
114
115     check_TLVPacket( tlvPacket, 42u, sizeof(value) );
116
117     unsigned char data[] = {
118         0x2a, // type
119         0x81, // first and last bit set => one byte length following
120         0xff, // length (255 bytes value)
121         0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09 // first bytes of value
122     };
123     BOOST_CHECK( equal(
124             tlvPacket.data().begin(),
125             boost::next( tlvPacket.data().begin(), sizeof(data)),
126             data ));
127 }
128
129
130 BOOST_AUTO_UNIT_TEST(GenericTLVPacket_create_invalid_packet)
131 {
132     GenericTLVPacket tlvPacket (GenericTLVPacket::create());
133     tlvPacket->type() = 42u;
134     tlvPacket.finalizeThis();
135
136     unsigned char value[255];
137     for (unsigned i=0; i<sizeof(value); i++)
138         value[i] = i;
139
140     BOOST_CHECK_THROW( tlvPacket->value( value), TLVLengthException);
141     tlvPacket->maxLengthValue( sizeof(value));
142     tlvPacket->value( value);
143     tlvPacket.finalizeThis();
144     check_TLVPacket( tlvPacket, 42u, sizeof(value) );
145 }
146
147
148 namespace {
149
150     struct TestMacAddressTLVPacketParser : public BaseTLVPacketParser
151     {
152     #   include SENF_PARSER()
153         SENF_PARSER_INHERIT ( BaseTLVPacketParser );
154         SENF_PARSER_VECTOR  ( value, bytes(length), senf::MACAddressParser );
155         SENF_PARSER_FINALIZE( TestMacAddressTLVPacketParser );
156     };
157
158     struct TestMacAddressTLVPacketType
159         : public PacketTypeBase,
160           public PacketTypeMixin<TestMacAddressTLVPacketType>
161     {
162         typedef PacketTypeMixin<TestMacAddressTLVPacketType> mixin;
163         typedef TestMacAddressTLVPacketParser parser;
164
165         using mixin::nextPacketRange;
166         using mixin::init;
167         using mixin::initSize;
168
169         static void finalize(ConcretePacket<TestMacAddressTLVPacketType> p) {
170             p->shrinkLength();
171         }
172     };
173     typedef ConcretePacket<TestMacAddressTLVPacketType> TestMacAddressTLVPacket;
174 }
175
176 BOOST_AUTO_UNIT_TEST(TestMacAddressTLVPacket_create)
177 {
178     TestMacAddressTLVPacket tlvPacket (TestMacAddressTLVPacket::create());
179     tlvPacket->type() = 42;
180     tlvPacket->value().push_back( senf::MACAddress::from_string("01:23:45:67:89:ab") );
181     tlvPacket->value().push_back( senf::MACAddress::from_string("cd:ef:01:23:45:67") );
182     tlvPacket.finalizeThis();
183
184     unsigned char data[] = {
185         0x2a, // type
186         0x0c, // length
187         0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef, 0x01, 0x23, 0x45, 0x67  // value
188     };
189     BOOST_CHECK( equal( tlvPacket.data().begin(), tlvPacket.data().end(), data ));
190 }
191
192
193 ///////////////////////////////cc.e////////////////////////////////////////
194 #undef prefix_
195
196
197 // Local Variables:
198 // mode: c++
199 // fill-column: 100
200 // c-file-style: "senf"
201 // indent-tabs-mode: nil
202 // ispell-local-dictionary: "american"
203 // compile-command: "scons -u test"
204 // comment-column: 40
205 // End: