unload again
[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_YES,
91                                     GNUNET_SCHEDULER_PRIORITY_KEEP,
92                                     GNUNET_SCHEDULER_NO_TASK,
93                                     GNUNET_TIME_relative_multiply
94                                     (GNUNET_TIME_UNIT_MILLISECONDS, 50),
95                                     &send_done, argclient);
96       break;
97     case 4:
98       ok++;
99       GNUNET_CLIENT_disconnect (client);
100       GNUNET_SERVER_receive_done (argclient, GNUNET_OK);
101       break;
102     default:
103       GNUNET_assert (0);
104     }
105
106 }
107
108
109 /**
110  * Functions with this signature are called whenever a client
111  * is disconnected on the network level.
112  *
113  * @param cls closure
114  * @param client identification of the client
115  */
116 static void
117 notify_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
118 {
119   GNUNET_assert (ok == 5);
120   ok = 0;
121   GNUNET_SCHEDULER_shutdown (sched);
122   GNUNET_CONFIGURATION_destroy (cfg);
123 }
124
125
126 static size_t
127 notify_ready (void *cls, size_t size, void *buf)
128 {
129   struct GNUNET_MessageHeader *msg;
130
131   GNUNET_assert (size >= 256);
132   GNUNET_assert (1 == ok);
133   ok++;
134   msg = buf;
135   msg->type = htons (MY_TYPE);
136   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
137   msg++;
138   msg->type = htons (MY_TYPE);
139   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
140   return 2 * sizeof (struct GNUNET_MessageHeader);
141 }
142
143
144 static struct GNUNET_SERVER_MessageHandler handlers[] = {
145   {&recv_cb, NULL, MY_TYPE, sizeof (struct GNUNET_MessageHeader)},
146   {NULL, NULL, 0, 0}
147 };
148
149
150 static void
151 task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
152 {
153   struct sockaddr_in sa;
154
155   sched = tc->sched;
156   memset (&sa, 0, sizeof (sa));
157 #if HAVE_SOCKADDR_IN_SIN_LEN
158   sa.sin_len = sizeof (sa);
159 #endif
160   sa.sin_family = AF_INET;
161   sa.sin_port = htons (PORT);
162   server = GNUNET_SERVER_create (tc->sched,
163                                  NULL,
164                                  NULL,
165                                  (const struct sockaddr *) &sa,
166                                  sizeof (sa),
167                                  1024,
168                                  GNUNET_TIME_relative_multiply
169                                  (GNUNET_TIME_UNIT_MILLISECONDS, 250),
170                                  GNUNET_NO);
171   GNUNET_assert (server != NULL);
172   handlers[0].callback_cls = cls;
173   GNUNET_SERVER_add_handlers (server, handlers);
174   GNUNET_SERVER_disconnect_notify (server, &notify_disconnect, cls);
175   cfg = GNUNET_CONFIGURATION_create ();
176   GNUNET_CONFIGURATION_set_value_number (cfg, "test", "PORT", PORT);
177   GNUNET_CONFIGURATION_set_value_string (cfg, "test", "HOSTNAME",
178                                          "localhost");
179   GNUNET_CONFIGURATION_set_value_string (cfg, "resolver", "HOSTNAME",
180                                          "localhost");
181   client = GNUNET_CLIENT_connect (tc->sched, "test", cfg);
182   GNUNET_assert (client != NULL);
183   GNUNET_CLIENT_notify_transmit_ready (client,
184                                        256,
185                                        GNUNET_TIME_relative_multiply
186                                        (GNUNET_TIME_UNIT_MILLISECONDS, 250),
187                                        &notify_ready, NULL);
188 }
189
190
191 /**
192  * Main method, starts scheduler with task1,
193  * checks that "ok" is correct at the end.
194  */
195 static int
196 check ()
197 {
198
199   ok = 1;
200   GNUNET_SCHEDULER_run (&task, NULL);
201   return ok;
202 }
203
204
205 int
206 main (int argc, char *argv[])
207 {
208   int ret = 0;
209
210   GNUNET_log_setup ("test_server_with_client",
211 #if VERBOSE
212                     "DEBUG",
213 #else
214                     "WARNING",
215 #endif
216                     NULL);
217   ret += check ();
218
219   return ret;
220 }
221
222 /* end of test_server_with_client.c */