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