8092d7b2e8e56ef74efe3721bcdd6f4f6ec6febd
[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_GetHandle *get_handle;
55   struct GNUNET_DHT_GetHandle *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 ()
79 {
80   /* do work here */
81   GNUNET_SCHEDULER_cancel (sched, die_task);
82
83   GNUNET_DHT_disconnect (p1.dht_handle);
84
85   die_task = GNUNET_SCHEDULER_NO_TASK;
86   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "DHT disconnected, returning success!\n");
87   ok = 0;
88 }
89
90 static void
91 stop_arm (struct PeerContext *p)
92 {
93 #if START_ARM
94   if (0 != PLIBC_KILL (p->arm_pid, SIGTERM))
95     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
96   GNUNET_OS_process_wait (p->arm_pid);
97 #endif
98   GNUNET_CONFIGURATION_destroy (p->cfg);
99 }
100
101
102 static void
103 end_badly ()
104 {
105   /* do work here */
106 #if VERBOSE
107   fprintf(stderr, "Ending on an unhappy note.\n");
108 #endif
109
110   GNUNET_DHT_disconnect (p1.dht_handle);
111
112   ok = 1;
113   return;
114 }
115
116
117 /**
118  * Signature of the main function of a task.
119  *
120  * @param cls closure
121  * @param tc context information (why was this task triggered now)
122  */
123 void test_put (void *cls,
124                const struct GNUNET_SCHEDULER_TaskContext * tc)
125 {
126   struct PeerContext *peer = cls;
127   GNUNET_HashCode hash;
128   char *data;
129   size_t data_size = 42;
130   memset(&hash, 42, sizeof(GNUNET_HashCode));
131   data = GNUNET_malloc(data_size);
132   memset(data, 43, data_size);
133
134   GNUNET_assert (peer->dht_handle != NULL);
135
136   GNUNET_DHT_put(peer->dht_handle, &hash, 0, data_size, data, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 360), NULL, NULL);
137
138   //GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 1), &test_put, &p1);
139
140   GNUNET_SCHEDULER_add_now(sched, &end, NULL);
141 }
142
143 /**
144  * Signature of the main function of a task.
145  *
146  * @param cls closure
147  * @param tc context information (why was this task triggered now)
148  */
149 void test_get_stop (void *cls,
150                const struct GNUNET_SCHEDULER_TaskContext * tc)
151 {
152   struct PeerContext *peer = cls;
153   GNUNET_HashCode hash;
154   memset(&hash, 42, sizeof(GNUNET_HashCode));
155
156   GNUNET_assert (peer->dht_handle != NULL);
157
158   GNUNET_DHT_get_stop(peer->dht_handle, peer->get_handle);
159
160   GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 1), &test_put, &p1);
161
162 }
163
164 /**
165  * Signature of the main function of a task.
166  *
167  * @param cls closure
168  * @param tc context information (why was this task triggered now)
169  */
170 void test_get (void *cls,
171                const struct GNUNET_SCHEDULER_TaskContext * tc)
172 {
173   struct PeerContext *peer = cls;
174   GNUNET_HashCode hash;
175   memset(&hash, 42, sizeof(GNUNET_HashCode));
176
177   peer->dht_handle = GNUNET_DHT_connect (sched, peer->cfg);
178   GNUNET_assert (peer->dht_handle != NULL);
179
180   peer->get_handle = GNUNET_DHT_get_start(peer->dht_handle, 42, &hash, NULL, NULL);
181
182   if (peer->get_handle == NULL)
183     GNUNET_SCHEDULER_add_now(sched, &end_badly, &p1);
184
185   GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 1), &test_get_stop, &p1);
186 }
187
188 static void
189 setup_peer (struct PeerContext *p, const char *cfgname)
190 {
191   p->cfg = GNUNET_CONFIGURATION_create ();
192 #if START_ARM
193   p->arm_pid = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
194                                         "gnunet-service-arm",
195 #if VERBOSE_ARM
196                                         "-L", "DEBUG",
197 #endif
198                                         "-c", cfgname, NULL);
199 #endif
200   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
201
202 }
203
204 static void
205 run (void *cls,
206      struct GNUNET_SCHEDULER_Handle *s,
207      char *const *args,
208      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
209 {
210   GNUNET_assert (ok == 1);
211   OKPP;
212   sched = s;
213
214   die_task = GNUNET_SCHEDULER_add_delayed (sched,
215       GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 1), &end_badly, NULL);
216
217   setup_peer (&p1, "test_dht_api_peer1.conf");
218
219   GNUNET_SCHEDULER_add_delayed(sched, GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 1), &test_get, &p1);
220 }
221
222 static int
223 check ()
224 {
225
226   char *const argv[] = { "test-dht-api",
227     "-c",
228     "test_dht_api_data.conf",
229 #if VERBOSE
230     "-L", "DEBUG",
231 #endif
232     NULL
233   };
234
235   struct GNUNET_GETOPT_CommandLineOption options[] = {
236     GNUNET_GETOPT_OPTION_END
237   };
238
239   ok = 1;
240   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
241                       argv, "test-dht-api", "nohelp",
242                       options, &run, &ok);
243   stop_arm (&p1);
244   return ok;
245 }
246
247
248 int
249 main (int argc, char *argv[])
250 {
251   int ret;
252 #ifdef MINGW
253   return GNUNET_SYSERR;
254 #endif
255
256   GNUNET_log_setup ("test-dht-api",
257 #if VERBOSE
258                     "DEBUG",
259 #else
260                     "WARNING",
261 #endif
262                     NULL);
263   ret = check ();
264
265   //GNUNET_DISK_directory_remove ("/tmp/test-gnunetd-dht-peer-1");
266
267   return ret;
268 }
269
270 /* end of test_dht_api.c */