asserts
[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, GNUNET_YES);
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   if (clientarg == NULL)
142     return;
143   GNUNET_assert (ok == 6);
144   ok++;
145   GNUNET_CLIENT_receive (client,
146                          &disconnect_notify,
147                          NULL, GNUNET_TIME_UNIT_FOREVER_REL);
148 }
149
150
151 static size_t
152 notify_ready (void *cls, size_t size, void *buf)
153 {
154   struct GNUNET_MessageHeader *msg;
155
156   GNUNET_assert (size >= 256);
157   GNUNET_assert (1 == ok);
158   ok++;
159   msg = buf;
160   msg->type = htons (MY_TYPE);
161   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
162   msg++;
163   msg->type = htons (MY_TYPE);
164   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
165   return 2 * sizeof (struct GNUNET_MessageHeader);
166 }
167
168
169 static struct GNUNET_SERVER_MessageHandler handlers[] = {
170   {&recv_cb, NULL, MY_TYPE, sizeof (struct GNUNET_MessageHeader)},
171   {NULL, NULL, 0, 0}
172 };
173
174
175 static void
176 task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
177 {
178   struct sockaddr_in sa;
179   struct sockaddr * sap[2];
180   socklen_t slens[2];
181
182   sap[0] = (struct sockaddr*) &sa;
183   slens[0] = sizeof (sa);
184   sap[1] = NULL;
185   slens[1] = 0;
186   sched = tc->sched;
187   memset (&sa, 0, sizeof (sa));
188 #if HAVE_SOCKADDR_IN_SIN_LEN
189   sa.sin_len = sizeof (sa);
190 #endif
191   sa.sin_family = AF_INET;
192   sa.sin_port = htons (PORT);
193   server = GNUNET_SERVER_create (tc->sched,
194                                  NULL,
195                                  NULL,
196                                  sap,
197                                  slens,
198                                  1024,
199                                  GNUNET_TIME_relative_multiply
200                                  (GNUNET_TIME_UNIT_MILLISECONDS, 250),
201                                  GNUNET_NO);
202   GNUNET_assert (server != NULL);
203   handlers[0].callback_cls = cls;
204   GNUNET_SERVER_add_handlers (server, handlers);
205   GNUNET_SERVER_disconnect_notify (server, &notify_disconnect, cls);
206   cfg = GNUNET_CONFIGURATION_create ();
207   GNUNET_CONFIGURATION_set_value_number (cfg, "test", "PORT", PORT);
208   GNUNET_CONFIGURATION_set_value_string (cfg, "test", "HOSTNAME",
209                                          "localhost");
210   GNUNET_CONFIGURATION_set_value_string (cfg, "resolver", "HOSTNAME",
211                                          "localhost");
212   client = GNUNET_CLIENT_connect (tc->sched, "test", cfg);
213   GNUNET_assert (client != NULL);
214   GNUNET_CLIENT_notify_transmit_ready (client,
215                                        256,
216                                        GNUNET_TIME_relative_multiply
217                                        (GNUNET_TIME_UNIT_MILLISECONDS, 250),
218                                        GNUNET_NO, &notify_ready, NULL);
219 }
220
221
222 /**
223  * Main method, starts scheduler with task1,
224  * checks that "ok" is correct at the end.
225  */
226 static int
227 check ()
228 {
229
230   ok = 1;
231   GNUNET_SCHEDULER_run (&task, NULL);
232   return ok;
233 }
234
235
236 int
237 main (int argc, char *argv[])
238 {
239   int ret = 0;
240
241   GNUNET_log_setup ("test_server_disconnect",
242 #if VERBOSE
243                     "DEBUG",
244 #else
245                     "WARNING",
246 #endif
247                     NULL);
248   ret += check ();
249
250   return ret;
251 }
252
253 /* end of test_server_disconnect.c */