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