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