Packets: Adjust SENF_PARSER_VARIANT implementation for better public/private support
[senf.git] / Packets / VariantParser.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 //     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 VariantParser.test unit tests */
25
26 //#include "VariantParser.test.hh"
27 //#include "VariantParser.test.ih"
28
29 // Custom includes
30 #include "Packets.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(VariantParser)
39 {
40     typedef senf::ArrayParser<10, senf::UInt8Parser> Array10;
41     typedef senf::VariantParser< senf::detail::FixedAuxParserPolicy<senf::UInt8Parser, 1>,
42         boost::mpl::vector<senf::VoidPacketParser, Array10, senf:: UInt32Parser> > Variant;
43     
44     unsigned char data[] = { 0x01, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,
45                              0x19, 0x1A, 0x1B };
46     senf::DataPacket p (senf::DataPacket::create(data));
47     {
48         Variant v ( boost::next(p.data().begin()), & p.data() );
49         BOOST_REQUIRE_EQUAL( v.variant(), 1u );
50         BOOST_CHECK_EQUAL( senf::bytes(v), 10u );
51         BOOST_CHECK_EQUAL_COLLECTIONS( v.get<1>().begin(), v.get<1>().end(),
52                                        data+1, data+11 );
53         v.init();
54         // The container size should not change in this case but now variant should be 0 ...
55         BOOST_REQUIRE_EQUAL( p.data().size(), 11u );
56         BOOST_REQUIRE_EQUAL( v.variant(), 0u );
57         BOOST_CHECK_EQUAL( senf::bytes(v), 0u );
58         
59         v.init<2>();
60         // v invalidated
61     }
62     {
63         Variant v ( boost::next(p.data().begin()), & p.data() );
64
65         BOOST_CHECK_EQUAL( p.data()[0], 2u );
66         BOOST_REQUIRE_EQUAL( v.variant(), 2u );
67         BOOST_CHECK_EQUAL( senf::bytes(v), 4u );
68
69         unsigned char data2[] = { 0x02, 0x00, 0x00, 0x00, 0x00,
70                                   0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,
71                                   0x19, 0x1A, 0x1B };
72         BOOST_CHECK_EQUAL_COLLECTIONS( p.data().begin(), p.data().end(),
73                                        data2, data2+sizeof(data2) );
74         BOOST_CHECK_EQUAL( v.get<2>().value(), 0u );
75         BOOST_CHECK_EQUAL( p.data().size(), 15u );
76         p.data()[4] = 0x01u;
77         BOOST_CHECK_EQUAL( v.get<2>().value(), 1u );
78     };
79 }
80
81 namespace {
82     
83     struct SubParser : public senf::PacketParserBase
84     { 
85 #       include SENF_FIXED_PARSER()
86
87         SENF_PARSER_FIELD( foo, senf::UInt32Parser );
88         SENF_PARSER_FIELD( bar, senf::Int16Parser );
89
90         SENF_PARSER_FINALIZE(SubParser);
91     };
92
93     struct TestParser : public senf::PacketParserBase
94     {
95 #       include SENF_PARSER()
96
97         SENF_PARSER_SKIP_BITS( 4 );
98         SENF_PARSER_BITFIELD_RO( type, 4, unsigned );
99         SENF_PARSER_VARIANT( content_, type,
100                                          ( novalue( nocontent
101 , key(10, senf::VoidPacketParser)) )
102                                          (      id( content,           SubParser              ) )
103             );
104
105         SENF_PARSER_FINALIZE(TestParser);
106     };
107     
108 }
109
110 BOOST_AUTO_UNIT_TEST(VariantParserMacro)
111 {
112     senf::DataPacket p (senf::DataPacket::create(senf::init_bytes<TestParser>::value));
113     
114     {
115         TestParser v (p.data().begin(), & p.data());
116         v.init();
117         BOOST_CHECK( ! v.has_content() );
118         BOOST_CHECK_EQUAL( senf::bytes(v), 1u );
119         BOOST_CHECK_EQUAL( v.type(), 10u );
120         v.init_content();
121         // Parser invalidated
122     }
123     {
124         TestParser v (p.data().begin(), & p.data());
125         BOOST_CHECK( v.has_content() );
126         BOOST_CHECK_EQUAL( senf::bytes(v), 7u );
127         BOOST_CHECK_EQUAL( v.content().foo(), 0u );
128         BOOST_CHECK_EQUAL( v.type(), 1u );
129         v.nocontent();
130         // Parser invalidated
131     }
132 }
133
134 ///////////////////////////////cc.e////////////////////////////////////////
135 #undef prefix_
136
137 \f
138 // Local Variables:
139 // mode: c++
140 // fill-column: 100
141 // comment-column: 40
142 // c-file-style: "senf"
143 // indent-tabs-mode: nil
144 // ispell-local-dictionary: "american"
145 // compile-command: "scons -u test"
146 // End: