making code work better with dual-stack, preparing for triple-stack
[oweals/gnunet.git] / src / util / test_server_disconnect.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_server_disconnect.c
22  * @brief tests for server.c and client.c,
23  *       specifically client_disconnect
24  */
25 #include "platform.h"
26 #include "gnunet_common.h"
27 #include "gnunet_scheduler_lib.h"
28 #include "gnunet_client_lib.h"
29 #include "gnunet_server_lib.h"
30 #include "gnunet_time_lib.h"
31
32 #define VERBOSE GNUNET_NO
33
34 #define PORT 22335
35
36 #define MY_TYPE 128
37
38
39 static struct GNUNET_SERVER_Handle *server;
40
41 static struct GNUNET_CLIENT_Connection *client;
42
43 static struct GNUNET_SCHEDULER_Handle *sched;
44
45 static struct GNUNET_CONFIGURATION_Handle *cfg;
46
47 static int ok;
48
49 static void
50 send_done (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
51 {
52   struct GNUNET_SERVER_Client *argclient = cls;
53   GNUNET_assert (ok == 3);
54   ok++;
55   GNUNET_SERVER_receive_done (argclient, GNUNET_OK);
56 }
57
58 static void
59 server_disconnect (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
60 {
61   struct GNUNET_SERVER_Client *argclient = cls;
62   GNUNET_assert (ok == 5);
63   ok++;
64   GNUNET_SERVER_client_disconnect (argclient);
65 }
66
67
68 static void
69 recv_cb (void *cls,
70          struct GNUNET_SERVER_Client *argclient,
71          const struct GNUNET_MessageHeader *message)
72 {
73   void *addr;
74   size_t addrlen;
75   struct sockaddr_in sa;
76   struct sockaddr_in *have;
77
78   GNUNET_assert (GNUNET_OK ==
79                  GNUNET_SERVER_client_get_address (argclient,
80                                                    &addr, &addrlen));
81
82   GNUNET_assert (addrlen == sizeof (struct sockaddr_in));
83   have = addr;
84   memset (&sa, 0, sizeof (sa));
85 #if HAVE_SOCKADDR_IN_SIN_LEN
86   sa.sin_len = sizeof (sa);
87 #endif
88   sa.sin_family = AF_INET;
89   sa.sin_port = have->sin_port;
90   sa.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
91   GNUNET_assert (0 == memcmp (&sa, addr, addrlen));
92   GNUNET_free (addr);
93   switch (ok)
94     {
95     case 2:
96       ok++;
97       GNUNET_SCHEDULER_add_delayed (sched,
98                                     GNUNET_TIME_relative_multiply
99                                     (GNUNET_TIME_UNIT_MILLISECONDS, 50),
100                                     &send_done, argclient);
101       break;
102     case 4:
103       ok++;
104       GNUNET_SCHEDULER_add_delayed (sched,
105                                     GNUNET_TIME_relative_multiply
106                                     (GNUNET_TIME_UNIT_MILLISECONDS, 50),
107                                     &server_disconnect, argclient);
108       GNUNET_SERVER_receive_done (argclient, GNUNET_OK);
109       break;
110     default:
111       GNUNET_assert (0);
112     }
113
114 }
115
116 static void
117 disconnect_notify (void *cls, const struct GNUNET_MessageHeader *msg)
118 {
119   GNUNET_assert (msg == NULL);
120   GNUNET_assert (ok == 7);
121   ok = 0;
122   GNUNET_CLIENT_disconnect (client);
123   client = NULL;
124   GNUNET_SERVER_destroy (server);
125   server = NULL;
126   GNUNET_CONFIGURATION_destroy (cfg);
127   cfg = NULL;
128 }
129
130
131 /**
132  * Functions with this signature are called whenever a client
133  * is disconnected on the network level.
134  *
135  * @param cls closure
136  * @param client identification of the client
137  */
138 static void
139 notify_disconnect (void *cls, struct GNUNET_SERVER_Client *clientarg)
140 {
141   GNUNET_assert (ok == 6);
142   ok++;
143   GNUNET_CLIENT_receive (client,
144                          &disconnect_notify,
145                          NULL, GNUNET_TIME_UNIT_FOREVER_REL);
146 }
147
148
149 static size_t
150 notify_ready (void *cls, size_t size, void *buf)
151 {
152   struct GNUNET_MessageHeader *msg;
153
154   GNUNET_assert (size >= 256);
155   GNUNET_assert (1 == ok);
156   ok++;
157   msg = buf;
158   msg->type = htons (MY_TYPE);
159   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
160   msg++;
161   msg->type = htons (MY_TYPE);
162   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
163   return 2 * sizeof (struct GNUNET_MessageHeader);
164 }
165
166
167 static struct GNUNET_SERVER_MessageHandler handlers[] = {
168   {&recv_cb, NULL, MY_TYPE, sizeof (struct GNUNET_MessageHeader)},
169   {NULL, NULL, 0, 0}
170 };
171
172
173 static void
174 task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
175 {
176   struct sockaddr_in sa;
177   struct sockaddr * sap[2];
178   socklen_t slens[2];
179
180   sap[0] = (struct sockaddr*) &sa;
181   slens[0] = sizeof (sa);
182   sap[1] = NULL;
183   slens[1] = 0;
184   sched = tc->sched;
185   memset (&sa, 0, sizeof (sa));
186 #if HAVE_SOCKADDR_IN_SIN_LEN
187   sa.sin_len = sizeof (sa);
188 #endif
189   sa.sin_family = AF_INET;
190   sa.sin_port = htons (PORT);
191   server = GNUNET_SERVER_create (tc->sched,
192                                  NULL,
193                                  NULL,
194                                  sap,
195                                  slens,
196                                  1024,
197                                  GNUNET_TIME_relative_multiply
198                                  (GNUNET_TIME_UNIT_MILLISECONDS, 250),
199                                  GNUNET_NO);
200   GNUNET_assert (server != NULL);
201   handlers[0].callback_cls = cls;
202   GNUNET_SERVER_add_handlers (server, handlers);
203   GNUNET_SERVER_disconnect_notify (server, &notify_disconnect, cls);
204   cfg = GNUNET_CONFIGURATION_create ();
205   GNUNET_CONFIGURATION_set_value_number (cfg, "test", "PORT", PORT);
206   GNUNET_CONFIGURATION_set_value_string (cfg, "test", "HOSTNAME",
207                                          "localhost");
208   GNUNET_CONFIGURATION_set_value_string (cfg, "resolver", "HOSTNAME",
209                                          "localhost");
210   client = GNUNET_CLIENT_connect (tc->sched, "test", cfg);
211   GNUNET_assert (client != NULL);
212   GNUNET_CLIENT_notify_transmit_ready (client,
213                                        256,
214                                        GNUNET_TIME_relative_multiply
215                                        (GNUNET_TIME_UNIT_MILLISECONDS, 250),
216                                        GNUNET_NO, &notify_ready, NULL);
217 }
218
219
220 /**
221  * Main method, starts scheduler with task1,
222  * checks that "ok" is correct at the end.
223  */
224 static int
225 check ()
226 {
227
228   ok = 1;
229   GNUNET_SCHEDULER_run (&task, NULL);
230   return ok;
231 }
232
233
234 int
235 main (int argc, char *argv[])
236 {
237   int ret = 0;
238
239   GNUNET_log_setup ("test_server_disconnect",
240 #if VERBOSE
241                     "DEBUG",
242 #else
243                     "WARNING",
244 #endif
245                     NULL);
246   ret += check ();
247
248   return ret;
249 }
250
251 /* end of test_server_disconnect.c */