-verbose is independent of logging
[oweals/gnunet.git] / src / topology / test_gnunet_daemon_topology.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 topology/test_gnunet_daemon_topology.c
22  * @brief testcase for topology maintenance code
23  */
24 #include "platform.h"
25 #include "gnunet_testing_lib.h"
26
27 #define VERBOSE GNUNET_NO
28
29 #define NUM_PEERS 2
30
31 /**
32  * How long until we give up on connecting the peers?
33  */
34 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 600)
35
36 #define CONNECT_ATTEMPTS 3
37
38
39 static int ok;
40
41 static int peers_left;
42
43 static int connect_left;
44
45 static struct GNUNET_TESTING_PeerGroup *pg;
46
47 static struct GNUNET_TESTING_Daemon *first;
48
49 static struct GNUNET_TESTING_Daemon *last;
50
51 /**
52  * Active connection attempt.
53  */
54 struct GNUNET_TESTING_ConnectContext *cc[NUM_PEERS];
55
56 /**
57  * Check whether peers successfully shut down.
58  */
59 static void
60 shutdown_callback (void *cls, const char *emsg)
61 {
62   if (emsg != NULL)
63   {
64 #if VERBOSE
65     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutdown of peers failed!\n");
66 #endif
67     if (ok == 0)
68       ok = 666;
69   }
70   else
71   {
72 #if VERBOSE
73     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "All peers successfully shut down!\n");
74 #endif
75   }
76 }
77
78
79 static void
80 clean_up_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
81 {
82   unsigned int i;
83
84   for (i = 0; i < NUM_PEERS; i++)
85   {
86     if (NULL != cc[i])
87     {
88       GNUNET_TESTING_daemons_connect_cancel (cc[i]);
89       cc[i] = NULL;
90     }
91   }
92   GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
93   ok = 0;
94 }
95
96
97 static void
98 notify_connect_complete (void *cls, const struct GNUNET_PeerIdentity *first,
99                          const struct GNUNET_PeerIdentity *second,
100                          unsigned int distance,
101                          const struct GNUNET_CONFIGURATION_Handle *first_cfg,
102                          const struct GNUNET_CONFIGURATION_Handle *second_cfg,
103                          struct GNUNET_TESTING_Daemon *first_daemon,
104                          struct GNUNET_TESTING_Daemon *second_daemon,
105                          const char *emsg)
106 {
107   struct GNUNET_TESTING_ConnectContext **cc = cls;
108   unsigned int i;
109
110   *cc = NULL;
111   if (NULL != emsg)
112   {
113     FPRINTF (stderr, "Failed to connect two peers: %s\n", emsg);
114     for (i = 0; i < NUM_PEERS; i++)
115       if (NULL != cc[i])
116       {
117         GNUNET_TESTING_daemons_connect_cancel (cc[i]);
118         cc[i] = NULL;
119       }
120     GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
121     GNUNET_assert (0);
122     return;
123   }
124   connect_left--;
125   if (connect_left == 0)
126   {
127     /* FIXME: check that topology adds a few more links
128      * in addition to those that were seeded */
129     GNUNET_SCHEDULER_add_now (&clean_up_task, NULL);
130   }
131 }
132
133
134 static void
135 my_cb (void *cls, const struct GNUNET_PeerIdentity *id,
136        const struct GNUNET_CONFIGURATION_Handle *cfg,
137        struct GNUNET_TESTING_Daemon *d, const char *emsg)
138 {
139   GNUNET_assert (id != NULL);
140   peers_left--;
141   if (first == NULL)
142   {
143     connect_left = NUM_PEERS;
144     first = d;
145     last = d;
146     return;
147   }
148   cc[peers_left] =
149       GNUNET_TESTING_daemons_connect (last, d, TIMEOUT, CONNECT_ATTEMPTS,
150                                       GNUNET_YES, &notify_connect_complete,
151                                       &cc[peers_left]);
152   if (peers_left == 0)
153   {
154     /* close circle */
155     cc[NUM_PEERS - 1] =
156         GNUNET_TESTING_daemons_connect (d, first, TIMEOUT, CONNECT_ATTEMPTS,
157                                         GNUNET_YES, &notify_connect_complete,
158                                         &cc[NUM_PEERS - 1]);
159   }
160 }
161
162
163 static void
164 run (void *cls, char *const *args, const char *cfgfile,
165      const struct GNUNET_CONFIGURATION_Handle *cfg)
166 {
167   ok = 1;
168 #if VERBOSE
169   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemons.\n");
170 #endif
171   peers_left = NUM_PEERS;
172   pg = GNUNET_TESTING_daemons_start (cfg, peers_left, peers_left, peers_left,
173                                      TIMEOUT, NULL, NULL, &my_cb, NULL, NULL,
174                                      NULL, NULL);
175   GNUNET_assert (pg != NULL);
176 }
177
178
179 static int
180 check ()
181 {
182   char *const argv[] = {
183     "test-gnunet-daemon-topology",
184     "-c",
185     "test_gnunet_daemon_topology_data.conf",
186 #if VERBOSE
187     "-L", "DEBUG",
188 #endif
189     NULL
190   };
191   struct GNUNET_GETOPT_CommandLineOption options[] = {
192     GNUNET_GETOPT_OPTION_END
193   };
194   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
195                       "test-gnunet-daemon-topology", "nohelp", options, &run,
196                       &ok);
197   return ok;
198 }
199
200
201 int
202 main (int argc, char *argv[])
203 {
204   int ret;
205
206   GNUNET_log_setup ("test-gnunet-daemon-topology",
207 #if VERBOSE
208                     "DEBUG",
209 #else
210                     "WARNING",
211 #endif
212                     NULL);
213   ret = check ();
214   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-topology");
215   return ret;
216 }
217
218 /* end of test_gnunet_daemon_topology.c */