Update SENF to compile using g++ 4.3.2 (Ubuntu 8.10)
[senf.git] / Socket / SocketHandle.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2006
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 // Unit tests
24
25 //#include "SocketHandle.test.hh"
26 //#include "SocketHandle.test.ih"
27
28 // Custom includes
29 #include "SocketHandle.hh"
30 #include "SocketProtocol.test.hh"
31 #include "AddressingPolicy.hh"
32
33 #include "../Utils/auto_unit_test.hh"
34 #include <boost/test/test_tools.hpp>
35
36 #define prefix_
37 ///////////////////////////////cc.p////////////////////////////////////////
38
39 namespace {
40
41     class MySocketHandle
42         : public senf::SocketHandle<senf::test::SomeSocketProtocol::Policy>
43     {
44     public:
45         MySocketHandle()
46             : senf::SocketHandle<senf::test::SomeSocketProtocol::Policy>(
47                 std::auto_ptr<senf::SocketBody>(
48                     new senf::ProtocolSocketBody<senf::test::SomeSocketProtocol>(false, 0)))
49             {}
50     };
51
52     class FDHandle
53         : public senf::FileHandle
54     {
55     public:
56         FDHandle() : senf::FileHandle(std::auto_ptr<senf::FileBody>(new senf::FileBody())) {}
57     };
58
59 }
60
61 BOOST_AUTO_UNIT_TEST(socketHandle)
62 {
63     typedef senf::MakeSocketPolicy<
64         senf::test::SomeCommunicationPolicy,
65         senf::test::SomeReadPolicy
66         >::policy OtherSocketPolicy;
67     typedef senf::SocketHandle<OtherSocketPolicy> OtherSocketHandle;
68
69     typedef senf::MakeSocketPolicy<
70         senf::test::SomeCommunicationPolicy,
71         senf::test::SomeAddressingPolicy
72         >::policy AnotherSocketPolicy;
73     typedef senf::SocketHandle<AnotherSocketPolicy> AnotherSocketHandle;
74
75     {
76         MySocketHandle myh;
77         OtherSocketHandle osh (myh);
78         osh = myh;
79
80         typedef senf::SocketHandle<senf::test::SomeSocketProtocol::Policy> SomeSocketHandle;
81         SomeSocketHandle ssh = senf::static_socket_cast<SomeSocketHandle>(osh);
82
83         BOOST_CHECK_NO_THROW( senf::dynamic_socket_cast<SomeSocketHandle>(osh) );
84         BOOST_CHECK_NO_THROW( senf::dynamic_socket_cast<AnotherSocketHandle>(osh) );
85
86         typedef senf::SocketHandle< senf::MakeSocketPolicy<
87             OtherSocketPolicy,
88             senf::NoAddressingPolicy
89             >::policy> SomeOtherSocketHandle;
90
91         BOOST_CHECK_THROW( senf::dynamic_socket_cast<SomeOtherSocketHandle>(osh),
92                            std::bad_cast );
93         BOOST_CHECK_THROW( senf::dynamic_socket_cast<SomeSocketHandle>(
94                                senf::FileHandle(FDHandle())),
95                            std::bad_cast );
96
97         BOOST_CHECK_EQUAL( myh.dumpState(),
98                            "file.handle: 0\n"
99                            "file.refcount: 3\n"
100                            "handle: senf::SocketHandle<senf::SocketPolicy<senf::test::SomeAddressingPolicy, senf::test::SomeFramingPolicy, senf::test::SomeCommunicationPolicy, senf::test::SomeReadPolicy, senf::test::SomeWritePolicy> >\n"
101                            "socket.protocol: senf::test::SomeSocketProtocol\n"
102                            "socket.protocol.policy: senf::SocketPolicy<senf::test::SomeAddressingPolicy, senf::test::SomeFramingPolicy, senf::test::SomeCommunicationPolicy, senf::test::SomeReadPolicy, senf::test::SomeWritePolicy>\n"
103                            "socket.server: false\n" );
104
105         BOOST_CHECK_NO_THROW( myh.facet<senf::test::SomeSocketProtocol>() );
106     }
107     
108     // Ensure, the destructor is called and calls the correct close() implementation
109     BOOST_CHECK_EQUAL( senf::test::SomeSocketProtocol::closeCount(), 1u );
110 }
111
112 ///////////////////////////////cc.e////////////////////////////////////////
113 #undef prefix_
114
115 \f
116 // Local Variables:
117 // mode: c++
118 // fill-column: 100
119 // c-file-style: "senf"
120 // indent-tabs-mode: nil
121 // ispell-local-dictionary: "american"
122 // compile-command: "scons -u test"
123 // comment-column: 40
124 // End: