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