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