6406201a7ad4fba004efb78815ad32148c308a19
[oweals/gnunet.git] / src / dht / test_dht_monitor.c
1 /*
2      This file is part of GNUnet.
3      (C) 2011 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 dht/test_dht_monitor.c
22  *
23  * @brief Test for the dht service: store, retrieve and monitor in a line.
24  * TODO: update this description
25  * Each peer stores it own ID in the DHT and then a different peer tries to
26  * retrieve that key from it. The GET starts after a first round of PUTS has
27  * been made. Periodically, each peer stores its ID into the DHT. If after
28  * a timeout no result has been returned, the test fails.
29  */
30 #include "platform.h"
31 #include "gnunet_testing_lib.h"
32 #include "gnunet_dht_service.h"
33
34 #define VERBOSE GNUNET_YES
35
36 #define REMOVE_DIR GNUNET_YES
37
38
39 /**
40  * How long until we give up on connecting the peers?
41  */
42 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1500)
43
44 #define GET_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 120)
45
46 #define PUT_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
47
48 static int ok;
49
50 /**
51  * Be verbose
52  */
53 static int verbose;
54
55 /**
56  * Total number of peers in the test.
57  */
58 static unsigned long long num_peers;
59
60 /**
61  * Global configuration file
62  */
63 static struct GNUNET_CONFIGURATION_Handle *testing_cfg;
64
65 /**
66  * Total number of currently running peers.
67  */
68 static unsigned long long peers_running;
69
70 /**
71  * Total number of connections in the whole network.
72  */
73 static unsigned int total_connections;
74
75 /**
76  * The currently running peer group.
77  */
78 static struct GNUNET_TESTING_PeerGroup *pg;
79
80 /**
81  * File to report results to.
82  */
83 static struct GNUNET_DISK_FileHandle *output_file;
84
85 /**
86  * File to log connection info, statistics to.
87  */
88 static struct GNUNET_DISK_FileHandle *data_file;
89
90 /**
91  * Task called to disconnect peers.
92  */
93 static GNUNET_SCHEDULER_TaskIdentifier disconnect_task;
94
95 /**
96  * Task To perform tests
97  */
98 static GNUNET_SCHEDULER_TaskIdentifier test_task;
99
100 /**
101  * Task to do DHT_puts
102  */
103 static GNUNET_SCHEDULER_TaskIdentifier put_task;
104
105 /**
106  * Task called to shutdown test.
107  */
108 static GNUNET_SCHEDULER_TaskIdentifier shutdown_handle;
109
110 static char *topology_file;
111
112 struct GNUNET_TESTING_Daemon *d1;
113
114 struct GNUNET_TESTING_Daemon *d2;
115
116 struct GNUNET_DHT_Handle **hs;
117
118 struct GNUNET_DHT_MonitorHandle **mhs;
119
120 struct GNUNET_DHT_GetHandle *get_h_far;
121
122 const char *id_origin = "FC74";
123 const char *id_far = "2UVH";
124
125 struct GNUNET_TESTING_Daemon *d_far;
126 struct GNUNET_TESTING_Daemon *o;
127
128 unsigned int monitor_counter;
129
130 int in_test;
131
132 /**
133  * Check whether peers successfully shut down.
134  */
135 static void
136 shutdown_callback (void *cls, const char *emsg)
137 {
138   if (emsg != NULL)
139   {
140 #if VERBOSE
141     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: Shutdown of peers failed!\n");
142 #endif
143     ok++;
144   }
145   else
146   {
147 #if VERBOSE
148     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
149                 "test: All peers successfully shut down!\n");
150 #endif
151   }
152   GNUNET_CONFIGURATION_destroy (testing_cfg);
153 }
154
155
156 static void
157 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
158 {
159 #if VERBOSE
160   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: Ending test.\n");
161 #endif
162
163   if (disconnect_task != GNUNET_SCHEDULER_NO_TASK)
164   {
165     GNUNET_SCHEDULER_cancel (disconnect_task);
166     disconnect_task = GNUNET_SCHEDULER_NO_TASK;
167   }
168
169   if (data_file != NULL)
170     GNUNET_DISK_file_close (data_file);
171   GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
172 }
173
174
175 static void
176 disconnect_peers (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
177 {
178   unsigned int i;
179
180   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: disconnecting peers\n");
181   disconnect_task = GNUNET_SCHEDULER_NO_TASK;
182   GNUNET_SCHEDULER_cancel (put_task);
183   if (NULL != get_h_far)
184     GNUNET_DHT_get_stop (get_h_far);
185   for (i = 0; i < num_peers; i++)
186   {
187     GNUNET_DHT_disconnect (hs[i]);
188   }
189   GNUNET_SCHEDULER_cancel (shutdown_handle);
190   shutdown_handle = GNUNET_SCHEDULER_add_now (&shutdown_task, NULL);
191 }
192
193 static void
194 dht_get_id_handler (void *cls, struct GNUNET_TIME_Absolute exp,
195                     const GNUNET_HashCode * key,
196                     const struct GNUNET_PeerIdentity *get_path,
197                     unsigned int get_path_length,
198                     const struct GNUNET_PeerIdentity *put_path,
199                     unsigned int put_path_length, enum GNUNET_BLOCK_Type type,
200                     size_t size, const void *data)
201 {
202   int i;
203
204   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
205               "test: ************* FOUND!!! ***********\n");
206   if (sizeof (GNUNET_HashCode) == size)
207   {
208     const GNUNET_HashCode *h = data;
209
210     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test:   Contents: %s\n",
211                 GNUNET_h2s_full (h));
212
213   }
214   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: PATH: (get %u, put %u)\n",
215               get_path_length, put_path_length);
216   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test:   LOCAL\n");
217   for (i = get_path_length - 1; i >= 0; i--)
218   {
219     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test:   %s\n",
220                 GNUNET_i2s (&get_path[i]));
221   }
222   for (i = put_path_length - 1; i >= 0; i--)
223   {
224     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test:   %s\n",
225                 GNUNET_i2s (&put_path[i]));
226   }
227   if (monitor_counter >= get_path_length + put_path_length)
228   {
229     ok = 0;
230     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "expected at least %u hops, got %u\n",
231                 get_path_length + put_path_length, monitor_counter);
232   }
233   else
234     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "expected at least %u hops, got %u\n",
235                 get_path_length + put_path_length, monitor_counter);
236   GNUNET_SCHEDULER_cancel (disconnect_task);
237   disconnect_task = GNUNET_SCHEDULER_add_now (&disconnect_peers, NULL);
238 }
239
240 /**
241  * Start test: start GET request from the first node in the line looking for
242  * the ID of the last node in the line.
243  * 
244  * @param cls Closure (not used).
245  * @param tc Task context.
246  */
247 static void
248 do_test (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
249 {
250   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
251   {
252     return;
253   }
254   
255   in_test = GNUNET_YES;
256   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: test_task\n");
257   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: looking for %s\n",
258               GNUNET_h2s_full (&d_far->id.hashPubKey));
259   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test:        from %s\n",
260               GNUNET_h2s_full (&o->id.hashPubKey));
261   get_h_far = GNUNET_DHT_get_start (hs[0], GNUNET_TIME_UNIT_FOREVER_REL,        /* timeout */
262                                     GNUNET_BLOCK_TYPE_TEST,     /* type */
263                                     &d_far->id.hashPubKey,      /*key to search */
264                                     4U, /* replication level */
265                                     GNUNET_DHT_RO_RECORD_ROUTE | GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE, NULL,    /* xquery */
266                                     0,  /* xquery bits */
267                                     &dht_get_id_handler, NULL);
268   GNUNET_SCHEDULER_cancel (disconnect_task);
269   disconnect_task =
270       GNUNET_SCHEDULER_add_delayed (GET_TIMEOUT, &disconnect_peers, NULL);
271 }
272
273
274 /**
275  * Periodic function used to put the ID of the far peer in the DHT.
276  * 
277  * @param cls Closure (not used).
278  * @param tc Task context.
279  */
280 static void
281 put_id (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
282 {
283   struct GNUNET_TESTING_Daemon *d;
284
285   if ((tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN) != 0)
286   {
287     put_task = GNUNET_SCHEDULER_NO_TASK;
288     return;
289   }
290
291   d = GNUNET_TESTING_daemon_get (pg, 4);
292   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: putting into DHT: %s\n",
293               GNUNET_h2s_full (&d->id.hashPubKey));
294   GNUNET_DHT_put (hs[4], &d->id.hashPubKey, 10U,
295                   GNUNET_DHT_RO_RECORD_ROUTE |
296                   GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
297                   GNUNET_BLOCK_TYPE_TEST, sizeof (struct GNUNET_PeerIdentity),
298                   (const char *) &d->id, GNUNET_TIME_UNIT_FOREVER_ABS,
299                   GNUNET_TIME_UNIT_FOREVER_REL, NULL, NULL);
300
301   put_task = GNUNET_SCHEDULER_add_delayed (PUT_FREQUENCY, &put_id, NULL);
302 }
303
304 /**
305  * Callback called on each GET request going through the DHT.
306  * Prints the info about the intercepted packet and increments a counter.
307  *
308  * @param cls Closure.
309  * @param options Options, for instance RecordRoute, DemultiplexEverywhere.
310  * @param type The type of data in the request.
311  * @param hop_count Hop count so far.
312  * @param path_length number of entries in path (or 0 if not recorded).
313  * @param path peers on the GET path (or NULL if not recorded).
314  * @param desired_replication_level Desired replication level.
315  * @param key Key of the requested data.
316  */
317 void
318 monitor_get_cb (void *cls,
319                 enum GNUNET_DHT_RouteOption options,
320                 enum GNUNET_BLOCK_Type type,
321                 uint32_t hop_count,
322                 uint32_t desired_replication_level,
323                 unsigned int path_length,
324                 const struct GNUNET_PeerIdentity *path,
325                 const GNUNET_HashCode * key)
326 {
327   const char *s_key;
328   unsigned int i;
329
330   i = (unsigned int) (long) cls;
331   s_key = GNUNET_h2s(key);
332   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
333               "%u got a GET message for key %s\n",
334               i, s_key);
335
336   if (strncmp (s_key, id_far, 4) == 0 && in_test == GNUNET_YES)
337     monitor_counter++;
338 }
339
340
341 /**
342  * Callback called on each PUT request going through the DHT.
343  * Prints the info about the intercepted packet and increments a counter.
344  *
345  * @param cls Closure.
346  * @param options Options, for instance RecordRoute, DemultiplexEverywhere.
347  * @param type The type of data in the request.
348  * @param hop_count Hop count so far.
349  * @param path_length number of entries in path (or 0 if not recorded).
350  * @param path peers on the PUT path (or NULL if not recorded).
351  * @param desired_replication_level Desired replication level.
352  * @param exp Expiration time of the data.
353  * @param key Key under which data is to be stored.
354  * @param data Pointer to the data carried.
355  * @param size Number of bytes in data.
356  */
357 void
358 monitor_put_cb (void *cls,
359                 enum GNUNET_DHT_RouteOption options,
360                 enum GNUNET_BLOCK_Type type,
361                 uint32_t hop_count,
362                 uint32_t desired_replication_level,
363                 unsigned int path_length,
364                 const struct GNUNET_PeerIdentity *path,
365                 struct GNUNET_TIME_Absolute exp,
366                 const GNUNET_HashCode * key,
367                 const void *data,
368                 size_t size)
369 {
370   const char *s_key;
371   unsigned int i;
372
373   i = (unsigned int) (long) cls;
374   s_key = GNUNET_h2s(key);
375
376   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
377               "%u got a PUT message for key %s with %u bytes\n",
378               i, s_key, size);
379
380   if (strncmp (s_key, id_far, 4) == 0 && in_test == GNUNET_YES)
381     monitor_counter++;
382 }
383
384
385 /**
386  * Callback called on each GET reply going through the DHT.
387  * Prints the info about the intercepted packet and increments a counter.
388  *
389  * @param cls Closure.
390  * @param type The type of data in the result.
391  * @param get_path Peers on GET path (or NULL if not recorded).
392  * @param get_path_length number of entries in get_path.
393  * @param put_path peers on the PUT path (or NULL if not recorded).
394  * @param put_path_length number of entries in get_path.
395  * @param exp Expiration time of the data.
396  * @param key Key of the data.
397  * @param data Pointer to the result data.
398  * @param size Number of bytes in data.
399  */
400 void
401 monitor_res_cb (void *cls,
402                 enum GNUNET_BLOCK_Type type,
403                 const struct GNUNET_PeerIdentity *get_path,
404                 unsigned int get_path_length,
405                 const struct GNUNET_PeerIdentity *put_path,
406                 unsigned int put_path_length,
407                 struct GNUNET_TIME_Absolute exp,
408                 const GNUNET_HashCode * key,
409                 const void *data,
410                 size_t size)
411 {
412   const char *s_key;
413   unsigned int i;
414
415   i = (unsigned int) (long) cls;
416   s_key = GNUNET_h2s(key);
417   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
418               "%u got a REPLY message for key %s with %u bytes\n",
419               i, s_key, size);
420
421   if (strncmp (s_key, id_far, 4) == 0 && in_test == GNUNET_YES)
422     monitor_counter++;
423 }
424
425
426 /**
427  * peergroup_ready: start test when all peers are connected
428  *
429  * @param cls closure
430  * @param emsg error message
431  */
432 static void
433 peergroup_ready (void *cls, const char *emsg)
434 {
435   struct GNUNET_TESTING_Daemon *d;
436   char *buf;
437   int buf_len;
438   unsigned int i;
439
440   if (emsg != NULL)
441   {
442     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
443                 "test: Peergroup callback called with error, aborting test!\n");
444     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: Error from testing: `%s'\n",
445                 emsg);
446     ok++;
447     GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
448     return;
449   }
450 #if VERBOSE
451   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
452               "************************************************************\n");
453   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
454               "test: Peer Group started successfully!\n");
455   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: Have %u connections\n",
456               total_connections);
457 #endif
458
459   if (data_file != NULL)
460   {
461     buf = NULL;
462     buf_len = GNUNET_asprintf (&buf, "CONNECTIONS_0: %u\n", total_connections);
463     if (buf_len > 0)
464       GNUNET_DISK_file_write (data_file, buf, buf_len);
465     GNUNET_free (buf);
466   }
467   peers_running = GNUNET_TESTING_daemons_running (pg);
468
469   GNUNET_assert (peers_running == num_peers);
470   hs = GNUNET_malloc (num_peers * sizeof (struct GNUNET_DHT_Handle *));
471   mhs = GNUNET_malloc (num_peers * sizeof (struct GNUNET_DHT_MonitorHandle *));
472   d_far = o = NULL;
473   o = GNUNET_TESTING_daemon_get (pg, 0);
474   d_far = GNUNET_TESTING_daemon_get (pg, 4);
475
476   for (i = 0; i < num_peers; i++)
477   {
478     d = GNUNET_TESTING_daemon_get (pg, i);
479     hs[i] = GNUNET_DHT_connect (d->cfg, 32);
480     mhs[i] = GNUNET_DHT_monitor_start(hs[i],
481                                       GNUNET_BLOCK_TYPE_ANY,
482                                       NULL,
483                                       &monitor_get_cb,
484                                       &monitor_res_cb,
485                                       &monitor_put_cb,
486                                       (void *)(long)i);
487   }
488
489   if ((NULL == o) || (NULL == d_far))
490   {
491     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
492                 "test: Error getting daemons from pg\n");
493     GNUNET_SCHEDULER_cancel (disconnect_task);
494     disconnect_task = GNUNET_SCHEDULER_add_now (&disconnect_peers, NULL);
495     return;
496   }
497   monitor_counter = 0;
498   put_task = GNUNET_SCHEDULER_add_now (&put_id, NULL);
499   test_task =
500       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
501                                     (GNUNET_TIME_UNIT_SECONDS, 2), &do_test,
502                                     NULL);
503   disconnect_task =
504       GNUNET_SCHEDULER_add_delayed (GET_TIMEOUT, &disconnect_peers, NULL);
505
506 }
507
508
509 /**
510  * Function that will be called whenever two daemons are connected by
511  * the testing library.
512  *
513  * @param cls closure
514  * @param first peer id for first daemon
515  * @param second peer id for the second daemon
516  * @param distance distance between the connected peers
517  * @param first_cfg config for the first daemon
518  * @param second_cfg config for the second daemon
519  * @param first_daemon handle for the first daemon
520  * @param second_daemon handle for the second daemon
521  * @param emsg error message (NULL on success)
522  */
523 static void
524 connect_cb (void *cls, const struct GNUNET_PeerIdentity *first,
525             const struct GNUNET_PeerIdentity *second, uint32_t distance,
526             const struct GNUNET_CONFIGURATION_Handle *first_cfg,
527             const struct GNUNET_CONFIGURATION_Handle *second_cfg,
528             struct GNUNET_TESTING_Daemon *first_daemon,
529             struct GNUNET_TESTING_Daemon *second_daemon, const char *emsg)
530 {
531
532   if (emsg == NULL)
533   {
534     total_connections++;
535     GNUNET_PEER_intern (first);
536     GNUNET_PEER_intern (second);
537   }
538   else
539   {
540     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
541                 "test: Problem with new connection (%s)\n", emsg);
542   }
543
544 }
545
546
547 /**
548  * run: load configuration options and schedule test to run (start peergroup)
549  * @param cls closure
550  * @param args argv
551  * @param cfgfile configuration file name (can be NULL)
552  * @param cfg configuration handle
553  */
554 static void
555 run (void *cls, char *const *args, const char *cfgfile,
556      const struct GNUNET_CONFIGURATION_Handle *cfg)
557 {
558   char *temp_str;
559   struct GNUNET_TESTING_Host *hosts;
560   char *data_filename;
561
562   ok = 1;
563   testing_cfg = GNUNET_CONFIGURATION_dup (cfg);
564
565   GNUNET_log_setup ("test_dht_monitor",
566 #if VERBOSE
567                     "DEBUG",
568 #else
569                     "WARNING",
570 #endif
571                     NULL);
572
573 #if VERBOSE
574   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: Starting daemons.\n");
575   GNUNET_CONFIGURATION_set_value_string (testing_cfg, "testing",
576                                          "use_progressbars", "YES");
577 #endif
578
579   if (GNUNET_OK !=
580       GNUNET_CONFIGURATION_get_value_number (testing_cfg, "testing",
581                                              "num_peers", &num_peers))
582   {
583     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
584                 "Option TESTING:NUM_PEERS is required!\n");
585     return;
586   }
587
588   if (GNUNET_OK !=
589       GNUNET_CONFIGURATION_get_value_string (testing_cfg, "testing",
590                                              "topology_output_file",
591                                              &topology_file))
592   {
593     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
594                 "Option test_dht_monitor:topology_output_file is required!\n");
595     return;
596   }
597
598   if (GNUNET_OK ==
599       GNUNET_CONFIGURATION_get_value_string (testing_cfg, "test_dht_topo",
600                                              "data_output_file",
601                                              &data_filename))
602   {
603     data_file =
604         GNUNET_DISK_file_open (data_filename,
605                                GNUNET_DISK_OPEN_READWRITE |
606                                GNUNET_DISK_OPEN_CREATE,
607                                GNUNET_DISK_PERM_USER_READ |
608                                GNUNET_DISK_PERM_USER_WRITE);
609     if (data_file == NULL)
610     {
611       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Failed to open %s for output!\n",
612                   data_filename);
613       GNUNET_free (data_filename);
614     }
615   }
616
617   if (GNUNET_YES ==
618       GNUNET_CONFIGURATION_get_value_string (cfg, "test_dht_topo",
619                                              "output_file", &temp_str))
620   {
621     output_file =
622         GNUNET_DISK_file_open (temp_str,
623                                GNUNET_DISK_OPEN_READWRITE |
624                                GNUNET_DISK_OPEN_CREATE,
625                                GNUNET_DISK_PERM_USER_READ |
626                                GNUNET_DISK_PERM_USER_WRITE);
627     if (output_file == NULL)
628       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Failed to open %s for output!\n",
629                   temp_str);
630   }
631   GNUNET_free_non_null (temp_str);
632
633   hosts = GNUNET_TESTING_hosts_load (testing_cfg);
634
635   pg = GNUNET_TESTING_peergroup_start (testing_cfg, num_peers, TIMEOUT,
636                                        &connect_cb, &peergroup_ready, NULL,
637                                        hosts);
638   GNUNET_assert (pg != NULL);
639   shutdown_handle =
640       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL,
641                                     &shutdown_task, NULL);
642 }
643
644
645
646 /**
647  * test_dht_monitor command line options
648  */
649 static struct GNUNET_GETOPT_CommandLineOption options[] = {
650   {'V', "verbose", NULL,
651    gettext_noop ("be verbose (print progress information)"),
652    0, &GNUNET_GETOPT_set_one, &verbose},
653   GNUNET_GETOPT_OPTION_END
654 };
655
656
657 /**
658  * Main: start test
659  */
660 int
661 main (int xargc, char *xargv[])
662 {
663   char *const argv[] = { "test-dht-monitor",
664     "-c",
665     "test_dht_line.conf",
666 #if VERBOSE
667     "-L", "DEBUG",
668 #endif
669     NULL
670   };
671
672   in_test = GNUNET_NO;
673   GNUNET_PROGRAM_run (sizeof (argv) / sizeof (char *) - 1, argv,
674                       "test_dht_monitor",
675                       gettext_noop ("Test dht monitoring in a line."),
676                       options, &run, NULL);
677 #if REMOVE_DIR
678   GNUNET_DISK_directory_remove ("/tmp/test_dht_monitor");
679 #endif
680   if (0 != ok)
681   {
682     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "test: FAILED!\n");
683   }
684   return ok;
685 }
686
687 /* end of test_dht_monitor.c */