switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Packets / VectorParser.test.cc
index 9c7185b..604df81 100644 (file)
@@ -2,23 +2,28 @@
 //
 // Copyright (C) 2006
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
-// Competence Center NETwork research (NET), St. Augustin, GERMANY
-//     Stefan Bund <g0dil@berlios.de>
 //
-// This program is free software; you can redistribute it and/or modify
-// it under the terms of the GNU General Public License as published by
-// the Free Software Foundation; either version 2 of the License, or
-// (at your option) any later version.
+// The contents of this file are subject to the Fraunhofer FOKUS Public License
+// Version 1.0 (the "License"); you may not use this file except in compliance
+// with the License. You may obtain a copy of the License at 
+// http://senf.berlios.de/license.html
 //
-// This program is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-// GNU General Public License for more details.
+// The Fraunhofer FOKUS Public License Version 1.0 is based on, 
+// but modifies the Mozilla Public License Version 1.1.
+// See the full license text for the amendments.
 //
-// You should have received a copy of the GNU General Public License
-// along with this program; if not, write to the
-// Free Software Foundation, Inc.,
-// 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
+// Software distributed under the License is distributed on an "AS IS" basis, 
+// WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
+// for the specific language governing rights and limitations under the License.
+//
+// The Original Code is Fraunhofer FOKUS code.
+//
+// The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
+// (registered association), Hansastraße 27 c, 80686 Munich, Germany.
+// All Rights Reserved.
+//
+// Contributor(s):
+//   Stefan Bund <g0dil@berlios.de>
 
 /** \file
     \brief VectorParser unit tests */
 #include <senf/Utils/auto_unit_test.hh>
 #include <boost/test/test_tools.hpp>
 #include <boost/assign.hpp>
+#include <boost/foreach.hpp>
 
 #define prefix_
-///////////////////////////////cc.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 namespace {
     struct VoidPacket : public senf::PacketTypeBase
@@ -54,7 +60,7 @@ SENF_AUTO_UNIT_TEST(VectorParser)
 
     {
         UInt16VectorParser v (boost::next(p->data().begin(), 1), &p->data());
-        
+
         BOOST_CHECK_EQUAL( v[0], 0x1011 );
         BOOST_CHECK_EQUAL( v[2], 0x1415 );
         BOOST_CHECK_EQUAL( v.size(), 3u );
@@ -63,7 +69,7 @@ SENF_AUTO_UNIT_TEST(VectorParser)
         p->data()[0] = 0x06;
         BOOST_CHECK_EQUAL( v.size(), 6u );
         BOOST_CHECK_EQUAL( v.bytes(), 12u );
-        
+
         UInt16VectorParser::iterator b (v.begin());
         UInt16VectorParser::iterator e (v.end());
         BOOST_CHECK_EQUAL(std::distance(b,e), UInt16VectorParser::difference_type(v.size()));
@@ -85,7 +91,7 @@ SENF_AUTO_UNIT_TEST(VectorParser)
         v.push_back_space() = 37u;
         BOOST_CHECK_EQUAL( v.size(), 9u );
         BOOST_CHECK_EQUAL( v[8], 37u );
-        
+
         v.push_front(0xf3f4u);
         BOOST_CHECK_EQUAL( v.size(), 10u );
         BOOST_CHECK_EQUAL( v[0], 0xf3f4u );
@@ -134,7 +140,7 @@ SENF_AUTO_UNIT_TEST(VectorParser_wrapper)
     BOOST_CHECK_EQUAL( w.size(), 3u );
     p->data()[0] = 0x06;
     BOOST_CHECK_EQUAL( w.size(), 6u );
-    BOOST_CHECK_EQUAL( std::distance(w.begin(),w.end()), 
+    BOOST_CHECK_EQUAL( std::distance(w.begin(),w.end()),
                        UInt16VectorParser::difference_type(w.size()) );
 
     w.shift(w.begin()+1);
@@ -188,7 +194,7 @@ SENF_AUTO_UNIT_TEST(dynamicPolicyVector)
     UInt16VectorParser v (senf::UInt8Parser(p->data().begin(), &p->data()),
                           boost::next(p->data().begin(),1), &p->data());
     UInt16VectorParser::container w (v);
-    
+
     BOOST_CHECK_EQUAL( v.size(), 3u );
     BOOST_CHECK_EQUAL( w.size(), 3u );
 
@@ -208,7 +214,7 @@ namespace {
         static unsigned set(unsigned v) { return v+2; }
     };
 
-    struct TestVectorParser 
+    struct TestVectorParser
         : public senf::PacketParserBase
     {
 #       include SENF_PARSER()
@@ -221,7 +227,7 @@ namespace {
 
         SENF_PARSER_FINALIZE( TestVectorParser );
     };
-        
+
     struct TestVectorPacketType
         : public senf::PacketTypeBase,
           public senf::PacketTypeMixin<TestVectorPacketType>
@@ -231,7 +237,7 @@ namespace {
 
         using mixin::nextPacketRange;
         using mixin::init;
-        using mixin::initSize;        
+        using mixin::initSize;
     };
     typedef senf::ConcretePacket<TestVectorPacketType> TestVectorPacket;
 
@@ -250,7 +256,7 @@ SENF_AUTO_UNIT_TEST(vectorMacro_parse)
 
     senf::DataPacket p (senf::DataPacket::create(data));
     TestVectorParser parser (p.data().begin(), &p.data());
-    
+
     BOOST_CHECK_EQUAL( parser.vec1().size(), 3u );
     BOOST_CHECK_EQUAL( parser.vec2().size(), 2u );
     BOOST_CHECK_EQUAL( parser.dummy(), 0x01020304u );
@@ -259,6 +265,7 @@ SENF_AUTO_UNIT_TEST(vectorMacro_parse)
     BOOST_CHECK_EQUAL( parser.vec1()[2], 0x090Au );
     BOOST_CHECK_EQUAL( parser.vec2()[0], 0x0B0Cu );
     BOOST_CHECK_EQUAL( parser.vec2()[1], 0x0D0Eu );
+
 }
 
 SENF_AUTO_UNIT_TEST(vectorMacro_create)
@@ -271,8 +278,8 @@ SENF_AUTO_UNIT_TEST(vectorMacro_create)
     p->vec2().push_back( 0x0B0Cu);
     p->vec2().push_back( 0x0D0Eu);
     p.finalizeAll();
-    
-    unsigned char data[] = { 
+
+    unsigned char data[] = {
             0x05,                   // size1
             0x04,                   // size2
             0x01, 0x02, 0x03, 0x04, // dummy
@@ -282,13 +289,13 @@ SENF_AUTO_UNIT_TEST(vectorMacro_create)
             0x0B, 0x0C,             // vec2[0]
             0x0D, 0x0E              // vec2[1]
     };
-    SENF_CHECK_EQUAL_COLLECTIONS( 
+    SENF_CHECK_EQUAL_COLLECTIONS(
             data, data+sizeof(data), p.data().begin(), p.data().end() );
 }
 
 namespace {
-    
-    struct TestVectorBaseParser 
+
+    struct TestVectorBaseParser
         : public senf::PacketParserBase
     {
 #       include SENF_PARSER()
@@ -307,7 +314,7 @@ namespace {
 
         SENF_PARSER_INHERIT(TestVectorBaseParser);
 
-        SENF_PARSER_VECTOR        ( vec1  , transform(TestTransform, size1) , senf::UInt16Parser );
+        SENF_PARSER_VECTOR        ( vec1  , transform(TestTransform, size1) , senf::UInt8Parser );
         SENF_PARSER_VECTOR        ( vec2  , bytes(size2) , senf::UInt16Parser );
 
         SENF_PARSER_FINALIZE( TestVectorDerivedParser );
@@ -317,26 +324,27 @@ namespace {
 
 SENF_AUTO_UNIT_TEST(vectorMacro_inherit)
 {
-    unsigned char data[] = { 0x05,                   // size1
+    unsigned char data[] = { 0x08,                   // size1
                              0x04,                   // size2
                              0x01, 0x02, 0x03, 0x04, // dummy
-                             0x05, 0x06,             // vec1[0]
-                             0x07, 0x08,             // vec1[1]
-                             0x09, 0x0A,             // vec1[2]
+                             0x05, 0x06,             // vec1[0], vec1[1]
+                             0x07, 0x08,             // vec1[2], vec1[3]
+                             0x09, 0x0A,             // vec1[4], vec1[5]
                              0x0B, 0x0C,             // vec2[0]
                              0x0D, 0x0E };           // vec2[1]
 
     senf::DataPacket p (senf::DataPacket::create(data));
     TestVectorDerivedParser parser (p.data().begin(), &p.data());
-    
-    BOOST_CHECK_EQUAL( parser.vec1().size(), 3u );
+
+    BOOST_CHECK_EQUAL( parser.vec1().size(), 6u );
     BOOST_CHECK_EQUAL( parser.vec2().size(), 2u );
     BOOST_CHECK_EQUAL( parser.dummy(), 0x01020304u );
-    BOOST_CHECK_EQUAL( parser.vec1()[0], 0x0506u );
-    BOOST_CHECK_EQUAL( parser.vec1()[1], 0x0708u );
-    BOOST_CHECK_EQUAL( parser.vec1()[2], 0x090Au );
     BOOST_CHECK_EQUAL( parser.vec2()[0], 0x0B0Cu );
     BOOST_CHECK_EQUAL( parser.vec2()[1], 0x0D0Eu );
+    boost::uint8_t c = 0x05;
+    BOOST_FOREACH( boost::uint8_t v, parser.vec1() ) {
+        BOOST_CHECK_EQUAL( v, c++ );
+    }
 }
 
 namespace {
@@ -347,7 +355,7 @@ namespace {
 #       include SENF_PARSER()
 
         SENF_PARSER_VECTOR        ( vec   , packetSize() , senf::UInt16Parser );
-        
+
         SENF_PARSER_FINALIZE( TestPacketSizeVectorParser );
     };
 
@@ -371,7 +379,7 @@ SENF_AUTO_UNIT_TEST(vectorMacro_packetSize)
     // The real functionality is already tested in AuxPolixy.test.cc ...
 }
 
-///////////////////////////////cc.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #undef prefix_
 
 \f