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