9b43f924dc80f40d4f9a29ead5cc87483f7f3ef0
[oweals/gnunet.git] / src / util / test_service.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 3, 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_service.c
22  * @brief tests for service.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_client_lib.h"
27 #include "gnunet_getopt_lib.h"
28 #include "gnunet_program_lib.h"
29 #include "gnunet_service_lib.h"
30 #include "gnunet_scheduler_lib.h"
31 #include "gnunet_time_lib.h"
32
33
34 #define VERBOSE GNUNET_YES
35
36 #define PORT 12435
37
38 #define MY_TYPE 256
39
40 static struct GNUNET_SERVICE_Context *sctx;
41
42 static int ok = 1;
43
44 static struct GNUNET_CLIENT_Connection *client;
45
46
47
48
49 static void
50 do_stop (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
51 {
52   if (NULL != client)
53   {
54     GNUNET_CLIENT_disconnect (client);
55     client = NULL;
56   }
57   if (NULL != sctx)
58   {
59     GNUNET_SERVICE_stop (sctx);
60     sctx = NULL;
61   }
62   else
63   {
64     GNUNET_SCHEDULER_shutdown ();
65   }
66 }
67
68
69 static size_t
70 build_msg (void *cls, size_t size, void *buf)
71 {
72   struct GNUNET_MessageHeader *msg = buf;
73
74   if (size < sizeof (struct GNUNET_MessageHeader))
75   {
76     /* timeout */
77     GNUNET_break (0);
78     GNUNET_SCHEDULER_add_now (&do_stop, NULL);
79     ok = 1;
80     return 0;
81   }
82
83   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Client connected, transmitting\n");
84   GNUNET_assert (size >= sizeof (struct GNUNET_MessageHeader));
85   msg->type = htons (MY_TYPE);
86   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
87   return sizeof (struct GNUNET_MessageHeader);
88 }
89
90
91 static void
92 ready (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
93 {
94   const struct GNUNET_CONFIGURATION_Handle *cfg = cls;
95
96   GNUNET_assert (0 != (tc->reason & GNUNET_SCHEDULER_REASON_PREREQ_DONE));
97   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Service confirmed running\n");
98   client = GNUNET_CLIENT_connect ("test_service", cfg);
99   GNUNET_assert (client != NULL);
100   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
101               "Client connecting, waiting to transmit\n");
102   GNUNET_CLIENT_notify_transmit_ready (client,
103                                        sizeof (struct GNUNET_MessageHeader),
104                                        GNUNET_TIME_UNIT_SECONDS, GNUNET_NO,
105                                        &build_msg, NULL);
106 }
107
108
109 static void
110 recv_cb (void *cls, struct GNUNET_SERVER_Client *sc,
111          const struct GNUNET_MessageHeader *message)
112 {
113   if (NULL == message)
114     return;
115   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Receiving client message...\n");
116   GNUNET_SERVER_receive_done (sc, GNUNET_OK);
117   GNUNET_SCHEDULER_add_now (&do_stop, NULL);
118   ok = 0;
119 }
120
121
122 static struct GNUNET_SERVER_MessageHandler myhandlers[] = {
123   {&recv_cb, NULL, MY_TYPE, sizeof (struct GNUNET_MessageHeader)},
124   {NULL, NULL, 0, 0}
125 };
126
127
128 static void
129 runner (void *cls, struct GNUNET_SERVER_Handle *server,
130         const struct GNUNET_CONFIGURATION_Handle *cfg)
131 {
132   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Service initializing\n");
133   GNUNET_SERVER_add_handlers (server, myhandlers);
134   GNUNET_CLIENT_service_test ("test_service", cfg, GNUNET_TIME_UNIT_SECONDS,
135                               &ready, (void *) cfg);
136 }
137
138
139 /**
140  * Main method, starts scheduler with task1,
141  * checks that "ok" is correct at the end.
142  */
143 static int
144 check ()
145 {
146   ok = 1;
147   char *const argv[] = {
148     "test_service",
149     "-c",
150     "test_service_data.conf",
151     "-L",
152 #if VERBOSE
153     "DEBUG",
154 #else
155     "WARNING",
156 #endif
157     NULL
158   };
159   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting service\n");
160   GNUNET_assert (GNUNET_OK ==
161                  GNUNET_SERVICE_run (5, argv, "test_service",
162                                      GNUNET_SERVICE_OPTION_NONE, &runner, &ok));
163   GNUNET_assert (0 == ok);
164   return ok;
165 }
166
167 static void
168 ready6 (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
169 {
170   const struct GNUNET_CONFIGURATION_Handle *cfg = cls;
171
172   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "V6 ready\n");
173   GNUNET_assert (0 != (tc->reason & GNUNET_SCHEDULER_REASON_PREREQ_DONE));
174   client = GNUNET_CLIENT_connect ("test_service6", cfg);
175   GNUNET_assert (client != NULL);
176   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "V6 client connected\n");
177   GNUNET_CLIENT_notify_transmit_ready (client,
178                                        sizeof (struct GNUNET_MessageHeader),
179                                        GNUNET_TIME_UNIT_SECONDS, GNUNET_NO,
180                                        &build_msg, NULL);
181 }
182
183 static void
184 runner6 (void *cls, struct GNUNET_SERVER_Handle *server,
185          const struct GNUNET_CONFIGURATION_Handle *cfg)
186 {
187   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Initializing v6 service\n");
188   GNUNET_SERVER_add_handlers (server, myhandlers);
189   GNUNET_CLIENT_service_test ("test_service6", cfg, GNUNET_TIME_UNIT_SECONDS,
190                               &ready6, (void *) cfg);
191 }
192
193 /**
194  * Main method, starts scheduler with task1,
195  * checks that "ok" is correct at the end.
196  */
197 static int
198 check6 ()
199 {
200   char *const argv[] = {
201     "test_service6",
202     "-c",
203     "test_service_data.conf",
204     "-L",
205 #if VERBOSE
206     "DEBUG",
207 #else
208     "WARNING",
209 #endif
210     NULL
211   };
212   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting v6 service\n");
213   GNUNET_assert (GNUNET_OK ==
214                  GNUNET_SERVICE_run (5, argv, "test_service6",
215                                      GNUNET_SERVICE_OPTION_NONE, &runner6,
216                                      &ok));
217   GNUNET_assert (0 == ok);
218   return ok;
219 }
220
221
222
223 static void
224 start_stop_main (void *cls, char *const *args, const char *cfgfile,
225                  const struct GNUNET_CONFIGURATION_Handle *cfg)
226 {
227   int *ret = cls;
228
229   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting service using start method\n");
230   sctx = GNUNET_SERVICE_start ("test_service", cfg, GNUNET_SERVICE_OPTION_NONE);
231   GNUNET_assert (NULL != sctx);
232   runner (cls, GNUNET_SERVICE_get_server (sctx), cfg);
233   *ret = 0;
234 }
235
236
237 static int
238 check_start_stop ()
239 {
240   char *const argv[] = {
241     "test-service-program",
242     "-c",
243     "test_service_data.conf",
244     "-L",
245 #if VERBOSE
246     "DEBUG",
247 #else
248     "WARNING",
249 #endif
250     NULL
251   };
252   const struct GNUNET_GETOPT_CommandLineOption options[] = {
253     GNUNET_GETOPT_OPTION_END
254   };
255   int ret = 1;
256
257   GNUNET_assert (GNUNET_OK ==
258                  GNUNET_PROGRAM_run (5, argv, "test-service-program", "no help",
259                                      options, &start_stop_main, &ret));
260
261   GNUNET_break (0 == ret);
262   return ret;
263 }
264
265
266 int
267 main (int argc, char *argv[])
268 {
269   int ret = 0;
270   struct GNUNET_NETWORK_Handle *s = NULL;
271
272   GNUNET_log_setup ("test-service",
273 #if VERBOSE
274                     "DEBUG",
275 #else
276                     "WARNING",
277 #endif
278                     NULL);
279   ret += check ();
280   ret += check ();
281   // FIXME
282 #ifndef MINGW
283   s = GNUNET_NETWORK_socket_create (PF_INET6, SOCK_STREAM, 0);
284 #endif
285   if (NULL == s)
286   {
287     if ((errno == ENOBUFS) || (errno == ENOMEM) || (errno == ENFILE) ||
288         (errno == EACCES))
289     {
290       GNUNET_log_strerror (GNUNET_ERROR_TYPE_ERROR, "socket");
291       return 1;
292     }
293     FPRINTF (stderr,
294              "IPv6 support seems to not be available (%s), not testing it!\n",
295              strerror (errno));
296   }
297   else
298   {
299     GNUNET_break (GNUNET_OK == GNUNET_NETWORK_socket_close (s));
300     ret += check6 ();
301   }
302   ret += check_start_stop ();
303   return ret;
304 }
305
306 /* end of test_service.c */