quota management and better name for NO_TASK'
[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   sa.sin_family = AF_INET;
78   sa.sin_port = have->sin_port;
79   sa.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
80   GNUNET_assert (0 == memcmp (&sa, addr, addrlen));
81   GNUNET_free (addr);
82   switch (ok)
83     {
84     case 2:
85       ok++;
86       GNUNET_SCHEDULER_add_delayed (sched,
87                                     GNUNET_YES,
88                                     GNUNET_SCHEDULER_PRIORITY_KEEP,
89                                     GNUNET_SCHEDULER_NO_TASK,
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 /**
107  * Functions with this signature are called whenever a client
108  * is disconnected on the network level.
109  *
110  * @param cls closure
111  * @param client identification of the client
112  */
113 static void
114 notify_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
115 {
116   GNUNET_assert (ok == 5);
117   ok = 0;
118   GNUNET_SCHEDULER_shutdown (sched);
119   GNUNET_CONFIGURATION_destroy (cfg);
120 }
121
122
123 static size_t
124 notify_ready (void *cls, size_t size, void *buf)
125 {
126   struct GNUNET_MessageHeader *msg;
127
128   GNUNET_assert (size >= 256);
129   GNUNET_assert (1 == ok);
130   ok++;
131   msg = buf;
132   msg->type = htons (MY_TYPE);
133   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
134   msg++;
135   msg->type = htons (MY_TYPE);
136   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
137   return 2 * sizeof (struct GNUNET_MessageHeader);
138 }
139
140
141 static struct GNUNET_SERVER_MessageHandler handlers[] = {
142   {&recv_cb, NULL, MY_TYPE, sizeof (struct GNUNET_MessageHeader)},
143   {NULL, NULL, 0, 0}
144 };
145
146
147 static void
148 task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
149 {
150   struct sockaddr_in sa;
151
152   sched = tc->sched;
153   memset (&sa, 0, sizeof (sa));
154   sa.sin_family = AF_INET;
155   sa.sin_port = htons (PORT);
156   server = GNUNET_SERVER_create (tc->sched,
157                                  NULL,
158                                  NULL,
159                                  (const struct sockaddr *) &sa,
160                                  sizeof (sa),
161                                  1024,
162                                  GNUNET_TIME_relative_multiply
163                                  (GNUNET_TIME_UNIT_MILLISECONDS, 250),
164                                  GNUNET_NO);
165   GNUNET_assert (server != NULL);
166   handlers[0].callback_cls = cls;
167   GNUNET_SERVER_add_handlers (server, handlers);
168   GNUNET_SERVER_disconnect_notify (server, &notify_disconnect, cls);
169   cfg = GNUNET_CONFIGURATION_create ();
170   GNUNET_CONFIGURATION_set_value_number (cfg, "test", "PORT", PORT);
171   GNUNET_CONFIGURATION_set_value_string (cfg, "test", "HOSTNAME",
172                                          "localhost");
173   client = GNUNET_CLIENT_connect (tc->sched, "test", cfg);
174   GNUNET_assert (client != NULL);
175   GNUNET_CLIENT_notify_transmit_ready (client,
176                                        256,
177                                        GNUNET_TIME_relative_multiply
178                                        (GNUNET_TIME_UNIT_MILLISECONDS, 250),
179                                        &notify_ready, NULL);
180 }
181
182
183 /**
184  * Main method, starts scheduler with task1,
185  * checks that "ok" is correct at the end.
186  */
187 static int
188 check ()
189 {
190
191   ok = 1;
192   GNUNET_SCHEDULER_run (&task, NULL);
193   return ok;
194 }
195
196
197 int
198 main (int argc, char *argv[])
199 {
200   int ret = 0;
201
202   GNUNET_log_setup ("test_server_with_client",
203 #if VERBOSE
204                     "DEBUG",
205 #else
206                     "WARNING",
207 #endif
208                     NULL);
209   ret += check ();
210
211   return ret;
212 }
213
214 /* end of test_server_with_client.c */