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