switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / Socket / Protocols / INet / net.test.hh
1 // $Id$
2 //
3 // Copyright (C) 2009
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief net.test public header */
30
31 #ifndef HH_SENF_senf_Socket_Protocols_INet_net_test_
32 #define HH_SENF_senf_Socket_Protocols_INet_net_test_ 1
33
34 // Custom includes
35 #include <boost/format.hpp>
36 #include <boost/test/test_tools.hpp>
37
38 //#include "net.test.mpp"
39 //-/////////////////////////////////////////////////////////////////////////////////////////////////
40
41 namespace {
42
43     void error(char const * fn, char const * proc="")
44     {
45         std::cerr << "\n" << proc << ((*proc)?": ":"") << fn << ": " << strerror(errno) << std::endl;
46     }
47
48     void fail(char const * proc, char const * fn)
49     {
50         error(fn,proc);
51         _exit(1);
52     }
53
54     int base_pid = 0;
55     int server_pid = 0;
56
57     void start(void (*fn)())
58     {
59         if (! base_pid)
60             base_pid = ::getpid();
61         server_pid = ::fork();
62         if (server_pid < 0) BOOST_FAIL("fork()");
63         if (server_pid == 0) {
64             signal(SIGCHLD, SIG_IGN);
65             (*fn)();
66             _exit(0);
67         }
68         signal(SIGCHLD, SIG_DFL);
69         sleep(1);
70     }
71
72     void wait()
73     {
74         int status;
75         if (waitpid(server_pid,&status,0)<0)
76             BOOST_FAIL("waitpid()");
77         BOOST_CHECK_EQUAL( status , 0 );
78     }
79
80     void stop()
81     {
82         if (server_pid) {
83             kill(server_pid,9);
84             wait();
85             server_pid = 0;
86         }
87     }
88
89     unsigned port(unsigned i)
90     {
91         if (! base_pid)
92             base_pid = ::getpid();
93         return 23456u + (((base_pid^(base_pid>>8)^(base_pid>>16)^(base_pid>>24))&0xff)<<2) + i;
94     }
95
96     std::string localhost4str(unsigned i)
97     {
98         return (boost::format("localhost:%d") % port(i)).str();
99     }
100
101     std::string localhost6str(unsigned i)
102     {
103         return (boost::format("[::1]:%d") % port(i)).str();
104     }
105
106 }
107
108 //-/////////////////////////////////////////////////////////////////////////////////////////////////
109 //#include "net.test.cci"
110 //#include "net.test.ct"
111 //#include "net.test.cti"
112 #endif
113
114 \f
115 // Local Variables:
116 // mode: c++
117 // fill-column: 100
118 // comment-column: 40
119 // c-file-style: "senf"
120 // indent-tabs-mode: nil
121 // ispell-local-dictionary: "american"
122 // compile-command: "scons -u test"
123 // End: