added better continuation behavior to get start, put, and route start. test case...
[oweals/gnunet.git] / src / dht / test_dht_api.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 dht/test_dht_api.c
22  * @brief base test case for dht api
23  *
24  * This test case tests DHT api to DUMMY DHT service communication.
25  *
26  */
27 #include "platform.h"
28 #include "gnunet_common.h"
29 #include "gnunet_hello_lib.h"
30 #include "gnunet_getopt_lib.h"
31 #include "gnunet_os_lib.h"
32 #include "gnunet_program_lib.h"
33 #include "gnunet_scheduler_lib.h"
34 #include "gnunet_dht_service.h"
35
36 #define VERBOSE GNUNET_YES
37
38 #define VERBOSE_ARM GNUNET_YES
39
40 #define START_ARM GNUNET_YES
41
42 /**
43  * How long until we give up on transmitting the message?
44  */
45 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 50)
46
47 #define MTYPE 12345
48
49 struct PeerContext
50 {
51   struct GNUNET_CONFIGURATION_Handle *cfg;
52   struct GNUNET_DHT_Handle *dht_handle;
53   struct GNUNET_PeerIdentity id;
54   struct GNUNET_DHT_RouteHandle *get_handle;
55   struct GNUNET_DHT_RouteHandle *find_peer_handle;
56
57 #if START_ARM
58   pid_t arm_pid;
59 #endif
60 };
61
62 static struct PeerContext p1;
63
64 static struct GNUNET_SCHEDULER_Handle *sched;
65
66 static int ok;
67
68 GNUNET_SCHEDULER_TaskIdentifier die_task;
69
70 #if VERBOSE
71 #define OKPP do { ok++; fprintf (stderr, "Now at stage %u at %s:%u\n", ok, __FILE__, __LINE__); } while (0)
72 #else
73 #define OKPP do { ok++; } while (0)
74 #endif
75
76
77 static void
78 end (void *cls,
79     const struct GNUNET_SCHEDULER_TaskContext * tc)
80 {
81   /* do work here */
82   GNUNET_SCHEDULER_cancel (sched, die_task);
83
84   GNUNET_DHT_disconnect (p1.dht_handle);
85
86   die_task = GNUNET_SCHEDULER_NO_TASK;
87
88   if (tc->reason == GNUNET_SCHEDULER_REASON_TIMEOUT)
89   {
90     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "DHT disconnected, returning FAIL!\n");
91     ok = 365;
92   }
93   else
94   {
95     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "DHT disconnected, returning success!\n");
96     ok = 0;
97   }
98 }
99
100 static void
101 stop_arm (struct PeerContext *p)
102 {
103 #if START_ARM
104   if (0 != PLIBC_KILL (p->arm_pid, SIGTERM))
105     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
106   GNUNET_OS_process_wait (p->arm_pid);
107 #endif
108   GNUNET_CONFIGURATION_destroy (p->cfg);
109 }
110
111
112 static void
113 end_badly ()
114 {
115   /* do work here */
116 #if VERBOSE
117   fprintf(stderr, "Ending on an unhappy note.\n");
118 #endif
119
120   GNUNET_DHT_disconnect (p1.dht_handle);
121
122   ok = 1;
123   return;
124 }
125
126
127 /**
128  * Signature of the main function of a task.
129  *
130  * @param cls closure
131  * @param tc context information (why was this task triggered now)
132  */
133 void test_put (void *cls,
134                const struct GNUNET_SCHEDULER_TaskContext * tc)
135 {
136   struct PeerContext *peer = cls;
137   GNUNET_HashCode hash;
138   char *data;
139   size_t data_size = 42;
140   memset(&hash, 42, sizeof(GNUNET_HashCode));
141   data = GNUNET_malloc(data_size);
142   memset(data, 43, data_size);
143   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Called test_put!\n");
144   GNUNET_assert (peer->dht_handle != NULL);
145
146   GNUNET_DHT_put(peer->dht_handle, &hash, 0, data_size, data, GNUNET_TIME_relative_to_absolute(GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 360)) ,GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 360), &end, NULL);
147
148   //GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 1), &test_put, &p1);
149
150   //GNUNET_SCHEDULER_add_now(sched, &end, NULL);
151 }
152
153 /**
154  * Signature of the main function of a task.
155  *
156  * @param cls closure
157  * @param tc context information (why was this task triggered now)
158  */
159 void test_get_stop (void *cls,
160                const struct GNUNET_SCHEDULER_TaskContext * tc)
161 {
162   struct PeerContext *peer = cls;
163   GNUNET_HashCode hash;
164   memset(&hash, 42, sizeof(GNUNET_HashCode));
165
166   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Called test_get_stop!\n");
167   if (tc->reason == GNUNET_SCHEDULER_REASON_TIMEOUT)
168     GNUNET_SCHEDULER_add_now(sched, &end_badly, NULL);
169
170   GNUNET_assert (peer->dht_handle != NULL);
171
172   GNUNET_DHT_get_stop(peer->get_handle);
173
174   //GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 1), &test_put, &p1);
175   GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 1), &test_put, &p1);
176
177 }
178
179 /**
180  * Signature of the main function of a task.
181  *
182  * @param cls closure
183  * @param tc context information (why was this task triggered now)
184  */
185 void test_get (void *cls,
186                const struct GNUNET_SCHEDULER_TaskContext * tc)
187 {
188   struct PeerContext *peer = cls;
189   GNUNET_HashCode hash;
190   memset(&hash, 42, sizeof(GNUNET_HashCode));
191
192   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Called test_get!\n");
193   peer->dht_handle = GNUNET_DHT_connect (sched, peer->cfg, 100);
194   GNUNET_assert (peer->dht_handle != NULL);
195
196   peer->get_handle = GNUNET_DHT_get_start(peer->dht_handle, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 100), 42, &hash, NULL, NULL, &test_get_stop, &p1);
197
198   if (peer->get_handle == NULL)
199     GNUNET_SCHEDULER_add_now(sched, &end_badly, &p1);
200
201   //GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 1), &test_get_stop, &p1);
202 }
203
204 static void
205 setup_peer (struct PeerContext *p, const char *cfgname)
206 {
207   p->cfg = GNUNET_CONFIGURATION_create ();
208 #if START_ARM
209   p->arm_pid = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
210                                         "gnunet-service-arm",
211 #if VERBOSE_ARM
212                                         "-L", "DEBUG",
213 #endif
214                                         "-c", cfgname, NULL);
215 #endif
216   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
217
218 }
219
220 static void
221 run (void *cls,
222      struct GNUNET_SCHEDULER_Handle *s,
223      char *const *args,
224      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
225 {
226   GNUNET_assert (ok == 1);
227   OKPP;
228   sched = s;
229
230   die_task = GNUNET_SCHEDULER_add_delayed (sched,
231       GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 1), &end_badly, NULL);
232
233   setup_peer (&p1, "test_dht_api_peer1.conf");
234
235   GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 1), &test_get, &p1);
236 }
237
238 static int
239 check ()
240 {
241
242   char *const argv[] = { "test-dht-api",
243     "-c",
244     "test_dht_api_data.conf",
245 #if VERBOSE
246     "-L", "DEBUG",
247 #endif
248     NULL
249   };
250
251   struct GNUNET_GETOPT_CommandLineOption options[] = {
252     GNUNET_GETOPT_OPTION_END
253   };
254
255   ok = 1;
256   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
257                       argv, "test-dht-api", "nohelp",
258                       options, &run, &ok);
259   stop_arm (&p1);
260   return ok;
261 }
262
263
264 int
265 main (int argc, char *argv[])
266 {
267   int ret;
268 #ifdef MINGW
269   return GNUNET_SYSERR;
270 #endif
271
272   GNUNET_log_setup ("test-dht-api",
273 #if VERBOSE
274                     "DEBUG",
275 #else
276                     "WARNING",
277 #endif
278                     NULL);
279   ret = check ();
280
281   //GNUNET_DISK_directory_remove ("/tmp/test-gnunetd-dht-peer-1");
282
283   return ret;
284 }
285
286 /* end of test_dht_api.c */