149342c73c9210c41299589c009955e9d44e7778
[senf.git] / Socket / ProtocolServerSocketHandle.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 "ProtocolServerSocketHandle.test.hh"
26 //#include "ProtocolServerSocketHandle.test.ih"
27
28 // Custom includes
29 #include "ProtocolServerSocketHandle.hh"
30 #include "SocketProtocol.test.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 namespace {
39
40     struct MyProtocol : public senf::test::SomeProtocol
41     {
42         using senf::test::SomeProtocol::init_server;
43         void init_server(char const *,unsigned) const {}
44     };
45 }
46
47 BOOST_AUTO_UNIT_TEST(protocolServerSocketHandle)
48 {
49     typedef senf::ProtocolServerSocketHandle<MyProtocol> MySocketHandle;
50
51     {
52         typedef senf::MakeSocketPolicy<
53             senf::test::SomeFramingPolicy,
54             senf::test::SomeReadPolicy,
55             senf::test::SomeWritePolicy
56             >::policy OtherSocketPolicy;
57         typedef senf::SocketHandle<OtherSocketPolicy> OtherSocketHandle;
58
59         MySocketHandle h;
60         h.protocol();
61
62         OtherSocketHandle osh (h);
63         h = senf::static_socket_cast<MySocketHandle>(osh);
64
65         MySocketHandle::ClientSocketHandle client = h.accept();
66         BOOST_CHECK_EQUAL( client.fd(), -1 );
67
68         BOOST_CHECK_EQUAL( h.dumpState(),
69                            "file.handle: -1\n"
70                            "file.refcount: 2\n"
71                            "handle: senf::ProtocolServerSocketHandle<(anonymous namespace)::MyProtocol>\n"
72                            "socket.protocol: (anonymous namespace)::MyProtocol\n"
73                            "socket.protocol.policy: senf::SocketPolicy<senf::test::SomeAddressingPolicy, senf::test::SomeFramingPolicy, senf::test::SomeCommunicationPolicy, senf::test::SomeReadPolicy, senf::test::SomeWritePolicy>\n"
74                            "socket.server: true\n" );
75
76     }
77
78     {
79         MySocketHandle h("foo.bar.c",1234);
80     }
81 }
82
83 ///////////////////////////////cc.e////////////////////////////////////////
84 #undef prefix_
85
86 \f
87 // Local Variables:
88 // mode: c++
89 // fill-column: 100
90 // c-file-style: "senf"
91 // indent-tabs-mode: nil
92 // ispell-local-dictionary: "american"
93 // compile-command: "scons -u test"
94 // comment-column: 40
95 // End: