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