82c18f3f9c86dabb7af95e5a8609d625a9ac16d9
[senf.git] / Socket / ProtocolClientSocketHandle.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2006 
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@fokus.fraunhofer.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 "ProtocolClientSocketHandle.test.hh"
26 //#include "ProtocolClientSocketHandle.test.ih"
27
28 // Custom includes
29 #include "ProtocolClientSocketHandle.hh"
30 #include "SocketProtocol.test.hh"
31
32 #include <boost/test/auto_unit_test.hpp>
33 #include <boost/test/test_tools.hpp>
34
35 #define prefix_
36 ///////////////////////////////cc.p////////////////////////////////////////
37
38 namespace {
39     struct MyProtocol : public senf::test::SomeProtocol
40     {
41         using senf::test::SomeProtocol::init_client;
42         void init_client(char const *,unsigned) const {}
43     };
44 }
45
46 BOOST_AUTO_UNIT_TEST(protocolClientSocketHandle)
47 {
48     typedef senf::ProtocolClientSocketHandle<MyProtocol> MySocketHandle;
49
50     {
51         typedef senf::MakeSocketPolicy<
52             senf::test::SomeFramingPolicy,
53             senf::test::SomeReadPolicy,
54             senf::test::SomeWritePolicy
55             >::policy OtherSocketPolicy;
56         typedef senf::SocketHandle<OtherSocketPolicy> OtherSocketHandle;
57
58         MySocketHandle h;
59         h.protocol();
60         
61         OtherSocketHandle osh (h);
62         h = senf::static_socket_cast<MySocketHandle>(osh);
63     }
64
65     {
66         MySocketHandle hh("foo.bar.c",1234);
67     }
68 }
69
70 ///////////////////////////////cc.e////////////////////////////////////////
71 #undef prefix_
72
73 \f
74 // Local Variables:
75 // mode: c++
76 // c-file-style: "senf"
77 // End: