gpl3
[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 3, 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 static struct GNUNET_CONFIGURATION_Handle *cfg;
41
42
43 /**
44  * Create and initialize a listen socket for the server.
45  *
46  * @return NULL on error, otherwise the listen socket
47  */
48 static struct GNUNET_NETWORK_Handle *
49 open_listen_socket ()
50 {
51   const static int on = 1;
52   struct sockaddr_in sa;
53   struct GNUNET_NETWORK_Handle *desc;
54
55   memset (&sa, 0, sizeof (sa));
56 #if HAVE_SOCKADDR_IN_SIN_LEN
57   sa.sin_len = sizeof (sa);
58 #endif
59   sa.sin_family = AF_INET;
60   sa.sin_port = htons (PORT);
61   desc = GNUNET_NETWORK_socket_create (AF_INET, SOCK_STREAM, 0);
62   GNUNET_assert (desc != NULL);
63   if (GNUNET_NETWORK_socket_setsockopt
64       (desc, SOL_SOCKET, SO_REUSEADDR, &on, sizeof (on)) != GNUNET_OK)
65     GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
66                 "setsockopt");
67   GNUNET_assert (GNUNET_NETWORK_socket_bind
68                  (desc, (const struct sockaddr *) &sa,
69                   sizeof (sa)) == GNUNET_OK);
70   GNUNET_NETWORK_socket_listen (desc, 5);
71   return desc;
72 }
73
74
75 static size_t
76 send_kilo (void *cls, size_t size, void *buf)
77 {
78   int *ok = cls;
79   if (size == 0)
80     {
81 #if VERBOSE
82       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got the desired timeout!\n");
83 #endif
84       GNUNET_assert (buf == NULL);
85       *ok = 0;
86       GNUNET_CONNECTION_destroy (lsock, GNUNET_YES);
87       GNUNET_CONNECTION_destroy (csock, GNUNET_YES);
88       return 0;
89     }
90 #if VERBOSE
91   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Sending kilo to fill buffer.\n");
92 #endif
93   GNUNET_assert (size >= 1024);
94   memset (buf, 42, 1024);
95
96   GNUNET_assert (NULL !=
97                  GNUNET_CONNECTION_notify_transmit_ready (csock,
98                                                           1024,
99                                                           GNUNET_TIME_UNIT_SECONDS,
100                                                           &send_kilo, cls));
101   return 1024;
102 }
103
104
105 static void
106 task_timeout (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
107 {
108
109   ls = open_listen_socket ();
110   lsock = GNUNET_CONNECTION_create_from_existing (tc->sched, ls, 0);
111   GNUNET_assert (lsock != NULL);
112   csock = GNUNET_CONNECTION_create_from_connect (tc->sched, cfg,
113                                                  "localhost", PORT, 1024);
114   GNUNET_assert (csock != NULL);
115   GNUNET_assert (NULL !=
116                  GNUNET_CONNECTION_notify_transmit_ready (csock,
117                                                           1024,
118                                                           GNUNET_TIME_UNIT_SECONDS,
119                                                           &send_kilo, cls));
120 }
121
122
123
124 /**
125  * Main method, starts scheduler with task_timeout.
126  */
127 static int
128 check_timeout ()
129 {
130   int ok;
131
132   ok = 1;
133   cfg = GNUNET_CONFIGURATION_create ();
134   GNUNET_CONFIGURATION_set_value_string (cfg,
135                                          "resolver", "HOSTNAME", "localhost");
136   GNUNET_SCHEDULER_run (&task_timeout, &ok);
137   GNUNET_CONFIGURATION_destroy (cfg);
138   return ok;
139 }
140
141 int
142 main (int argc, char *argv[])
143 {
144   int ret = 0;
145
146   GNUNET_log_setup ("test_connection_timeout",
147 #if VERBOSE
148                     "DEBUG",
149 #else
150                     "WARNING",
151 #endif
152                     NULL);
153   ret += check_timeout ();
154   return ret;
155 }
156
157 /* end of test_connection_timeout.c */