7b35647ea8c7aa0e8f3ea5a983866c2b5abcf489
[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
178   sched = tc->sched;
179   memset (&sa, 0, sizeof (sa));
180 #if HAVE_SOCKADDR_IN_SIN_LEN
181   sa.sin_len = sizeof (sa);
182 #endif
183   sa.sin_family = AF_INET;
184   sa.sin_port = htons (PORT);
185   server = GNUNET_SERVER_create (tc->sched,
186                                  NULL,
187                                  NULL,
188                                  (const struct sockaddr *) &sa,
189                                  sizeof (sa),
190                                  1024,
191                                  GNUNET_TIME_relative_multiply
192                                  (GNUNET_TIME_UNIT_MILLISECONDS, 250),
193                                  GNUNET_NO);
194   GNUNET_assert (server != NULL);
195   handlers[0].callback_cls = cls;
196   GNUNET_SERVER_add_handlers (server, handlers);
197   GNUNET_SERVER_disconnect_notify (server, &notify_disconnect, cls);
198   cfg = GNUNET_CONFIGURATION_create ();
199   GNUNET_CONFIGURATION_set_value_number (cfg, "test", "PORT", PORT);
200   GNUNET_CONFIGURATION_set_value_string (cfg, "test", "HOSTNAME",
201                                          "localhost");
202   GNUNET_CONFIGURATION_set_value_string (cfg, "resolver", "HOSTNAME",
203                                          "localhost");
204   client = GNUNET_CLIENT_connect (tc->sched, "test", cfg);
205   GNUNET_assert (client != NULL);
206   GNUNET_CLIENT_notify_transmit_ready (client,
207                                        256,
208                                        GNUNET_TIME_relative_multiply
209                                        (GNUNET_TIME_UNIT_MILLISECONDS, 250),
210                                        GNUNET_NO, &notify_ready, NULL);
211 }
212
213
214 /**
215  * Main method, starts scheduler with task1,
216  * checks that "ok" is correct at the end.
217  */
218 static int
219 check ()
220 {
221
222   ok = 1;
223   GNUNET_SCHEDULER_run (&task, NULL);
224   return ok;
225 }
226
227
228 int
229 main (int argc, char *argv[])
230 {
231   int ret = 0;
232
233   GNUNET_log_setup ("test_server_disconnect",
234 #if VERBOSE
235                     "DEBUG",
236 #else
237                     "WARNING",
238 #endif
239                     NULL);
240   ret += check ();
241
242   return ret;
243 }
244
245 /* end of test_server_disconnect.c */