Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Packets / SafeIterator.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2008
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@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 SafeIterator unit tests */
25
26 //#include "SafeIterator.test.hh"
27 //#include "SafeIterator.test.ih"
28
29 // Custom includes
30 #include "Packets.hh"
31
32 #include <senf/Utils/auto_unit_test.hh>
33 #include <boost/test/test_tools.hpp>
34
35 #define prefix_
36 //-/////////////////////////////////////////////////////////////////////////////////////////////////
37
38 namespace {
39     struct VoidPacket : public senf::PacketTypeBase {};
40 }
41
42 SENF_AUTO_UNIT_TEST(safePacketParser)
43 {
44     senf::PacketInterpreter<VoidPacket>::ptr pi (senf::PacketInterpreter<VoidPacket>::create(
45             senf::PacketInterpreterBase::size_type(6u)));
46     senf::SafePacketParserWrapper<senf::UInt16Parser> p;
47
48     BOOST_CHECK( !p );
49
50     p =  senf::UInt16Parser(pi->data().begin(),&pi->data());
51
52     BOOST_CHECK( p );
53     (*p) = 0x1234u;
54
55     BOOST_CHECK_EQUAL( (*p), 0x1234u );
56     BOOST_CHECK_EQUAL( p->data()[0], 0x12u );
57
58     p->data().resize(1024u);
59     BOOST_CHECK_EQUAL( (*p), 0x1234u );
60     (*p) = 0x2345u;
61     BOOST_CHECK_EQUAL( p->data()[0], 0x23u );
62 }
63
64 //-/////////////////////////////////////////////////////////////////////////////////////////////////
65 #undef prefix_
66
67 \f
68 // Local Variables:
69 // mode: c++
70 // fill-column: 100
71 // comment-column: 40
72 // c-file-style: "senf"
73 // indent-tabs-mode: nil
74 // ispell-local-dictionary: "american"
75 // compile-command: "scons -u test"
76 // End: