2a1ce58f3a85ba7ee7d344ff377e27e42a05ec77
[oweals/gnunet.git] / src / util / test_connection_timeout.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20 /**
21  * @file util/test_connection_timeout.c
22  * @brief tests for connection.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_connection_lib.h"
27 #include "gnunet_scheduler_lib.h"
28 #include "gnunet_time_lib.h"
29
30 #define VERBOSE GNUNET_NO
31
32 #define PORT 12435
33
34 static struct GNUNET_CONNECTION_Handle *csock;
35
36 static struct GNUNET_CONNECTION_Handle *lsock;
37
38 static struct GNUNET_NETWORK_Handle *ls;
39
40
41 /**
42  * Create and initialize a listen socket for the server.
43  *
44  * @return NULL on error, otherwise the listen socket
45  */
46 static struct GNUNET_NETWORK_Handle *
47 open_listen_socket ()
48 {
49   const static int on = 1;
50   struct sockaddr_in sa;
51   struct GNUNET_NETWORK_Handle *desc;
52
53   memset (&sa, 0, sizeof (sa));
54 #if HAVE_SOCKADDR_IN_SIN_LEN
55   sa.sin_len = sizeof (sa);
56 #endif
57   sa.sin_port = htons (PORT);
58   desc = GNUNET_NETWORK_socket_socket (AF_INET, SOCK_STREAM, 0);
59   GNUNET_assert (desc != NULL);
60   if (GNUNET_NETWORK_socket_setsockopt (desc, SOL_SOCKET, SO_REUSEADDR, &on, sizeof (on)) != GNUNET_OK)
61     GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
62                 "setsockopt");
63   GNUNET_assert (GNUNET_NETWORK_socket_bind (desc, 
64                                              (const struct sockaddr*) &sa, 
65                                              sizeof (sa)) == GNUNET_OK);
66   GNUNET_NETWORK_socket_listen (desc, 5);
67   return desc;
68 }
69
70
71 static size_t
72 send_kilo (void *cls, size_t size, void *buf)
73 {
74   int *ok = cls;
75   if (size == 0)
76     {
77 #if VERBOSE
78       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got the desired timeout!\n");
79 #endif
80       GNUNET_assert (buf == NULL);
81       *ok = 0;
82       GNUNET_CONNECTION_destroy (lsock);
83       GNUNET_CONNECTION_destroy (csock);
84       return 0;
85     }
86 #if VERBOSE
87   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending kilo to fill buffer.\n");
88 #endif
89   GNUNET_assert (size >= 1024);
90   memset (buf, 42, 1024);
91
92   GNUNET_assert (NULL !=
93                  GNUNET_CONNECTION_notify_transmit_ready (csock,
94                                                        1024,
95                                                        GNUNET_TIME_UNIT_SECONDS,
96                                                        &send_kilo, cls));
97   return 1024;
98 }
99
100
101 static void
102 task_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
103 {
104
105   ls = open_listen_socket ();
106   lsock = GNUNET_CONNECTION_create_from_existing (tc->sched, ls, 0);
107   GNUNET_assert (lsock != NULL);
108   csock = GNUNET_CONNECTION_create_from_connect (tc->sched,
109                                                      "localhost", PORT, 1024);
110   GNUNET_assert (csock != NULL);
111   GNUNET_assert (NULL !=
112                  GNUNET_CONNECTION_notify_transmit_ready (csock,
113                                                        1024,
114                                                        GNUNET_TIME_UNIT_SECONDS,
115                                                        &send_kilo, cls));
116 }
117
118
119
120 /**
121  * Main method, starts scheduler with task_timeout.
122  */
123 static int
124 check_timeout ()
125 {
126   int ok;
127
128   ok = 1;
129   GNUNET_SCHEDULER_run (&task_timeout, &ok);
130   return ok;
131 }
132
133 int
134 main (int argc, char *argv[])
135 {
136   int ret = 0;
137
138   GNUNET_log_setup ("test_connection_timeout",
139 #if VERBOSE
140                     "DEBUG",
141 #else
142                     "WARNING",
143 #endif
144                     NULL);
145   ret += check_timeout ();
146   return ret;
147 }
148
149 /* end of test_connection_timeout.c */