NEW FILE HEADER / COPYRIGHT FORMAT
[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     namespace sl = senf;
41
42     class MySocketHandle
43         : public sl::SocketHandle<sl::test::SomeProtocol::Policy>
44     {
45     public:
46         MySocketHandle()
47             : sl::SocketHandle<sl::test::SomeProtocol::Policy>(
48                 std::auto_ptr<sl::SocketProtocol>(new sl::test::SomeProtocol()),false)
49             {}
50     };
51
52     class FDHandle
53         : public senf::FileHandle
54     {
55     public:
56         FDHandle()
57             : senf::FileHandle(std::auto_ptr<senf::FileBody>(
58                                           new senf::FileBody())) {}
59     };
60 }
61
62 BOOST_AUTO_UNIT_TEST(socketHandle)
63 {
64     typedef sl::MakeSocketPolicy<
65         sl::test::SomeCommunicationPolicy,
66         sl::test::SomeReadPolicy
67         >::policy OtherSocketPolicy;
68     typedef sl::SocketHandle<OtherSocketPolicy> OtherSocketHandle;
69
70     MySocketHandle myh;
71     OtherSocketHandle osh (myh);
72     osh = myh;
73
74     typedef sl::SocketHandle<sl::test::SomeProtocol::Policy> SomeSocketHandle;
75     SomeSocketHandle ssh = senf::static_socket_cast<SomeSocketHandle>(osh);
76
77     BOOST_CHECK_NO_THROW( senf::dynamic_socket_cast<SomeSocketHandle>(osh) );
78
79     typedef sl::SocketHandle< sl::MakeSocketPolicy<
80         OtherSocketPolicy,
81         senf::NoAddressingPolicy
82         >::policy> SomeOtherSocketHandle;
83
84     BOOST_CHECK_THROW( senf::dynamic_socket_cast<SomeOtherSocketHandle>(osh),
85                        std::bad_cast );
86     BOOST_CHECK_THROW( senf::dynamic_socket_cast<SomeSocketHandle>(
87                            senf::FileHandle(FDHandle())),
88                        std::bad_cast );
89
90     BOOST_CHECK_EQUAL( myh.dumpState(),
91                        "file.handle: -1\n"
92                        "file.refcount: 3\n"
93                        "handle: senf::SocketHandle<senf::SocketPolicy<senf::test::SomeAddressingPolicy, senf::test::SomeFramingPolicy, senf::test::SomeCommunicationPolicy, senf::test::SomeReadPolicy, senf::test::SomeWritePolicy, senf::test::SomeBufferingPolicy> >\n"
94                        "socket.policy: senf::SocketPolicy<senf::test::SomeAddressingPolicy, senf::test::SomeFramingPolicy, senf::test::SomeCommunicationPolicy, senf::test::SomeReadPolicy, senf::test::SomeWritePolicy, senf::test::SomeBufferingPolicy>\n"
95                        "socket.protocol: senf::test::SomeProtocol\n"
96                        "socket.server: false\n" );
97 }
98
99 ///////////////////////////////cc.e////////////////////////////////////////
100 #undef prefix_
101
102 \f
103 // Local Variables:
104 // mode: c++
105 // fill-column: 100
106 // c-file-style: "senf"
107 // indent-tabs-mode: nil
108 // ispell-local-dictionary: "american"
109 // compile-command: "scons -u test"
110 // comment-column: 40
111 // End: