bugfixes and redesigning scheduler API
[oweals/gnunet.git] / src / topology / test_gnunet_service_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 2, 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_service_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_YES
28
29 #define NUM_PEERS 4
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, 60)
35
36
37 static int ok;
38
39 static int peers_left;
40
41 static int connect_left;
42
43 static struct GNUNET_TESTING_PeerGroup *pg;
44
45 static struct GNUNET_TESTING_Daemon *first;
46
47 static struct GNUNET_TESTING_Daemon *last;
48
49 static struct GNUNET_SCHEDULER_Handle *sched;
50
51
52 static void 
53 notify_connect_complete(void *cls,
54                         const char *emsg)
55 {
56   if (NULL != emsg)
57     {
58       fprintf (stderr,
59                "Failed to connect two peers: %s\n",
60                emsg);
61       GNUNET_assert (0);
62       return;
63     }
64   connect_left--;
65   if (connect_left == 0)
66     {
67       /* FIXME: check that topology adds a few more links
68          in addition to those that were seeded */
69       sleep (100);
70       GNUNET_TESTING_daemons_stop (pg);
71       ok = 0;     
72     }
73 }
74
75
76 static void my_cb(void *cls,
77                    const struct GNUNET_PeerIdentity *id,
78                    const struct GNUNET_CONFIGURATION_Handle *cfg,
79                    struct GNUNET_TESTING_Daemon *d,
80                    const char *emsg)
81 {
82   GNUNET_assert (id != NULL);
83   peers_left--;  
84   if (first == NULL)
85     {
86       connect_left = NUM_PEERS;
87       first = d;
88       last = d;
89       return;
90     }
91   GNUNET_TESTING_daemons_connect (last, d, TIMEOUT,
92                                   &notify_connect_complete,
93                                   NULL);
94   if (peers_left == 0)
95     {
96       /* close circle */
97       GNUNET_TESTING_daemons_connect (d, first, TIMEOUT,
98                                       &notify_connect_complete,
99                                       NULL);
100     }
101 }
102
103
104 static void
105 run (void *cls,
106      struct GNUNET_SCHEDULER_Handle *s,
107      char *const *args,
108      const char *cfgfile,
109      const struct GNUNET_CONFIGURATION_Handle *cfg)
110 {
111   sched = s;
112   ok = 1;
113 #if VERBOSE
114   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
115               "Starting daemons.\n");
116 #endif
117   peers_left = NUM_PEERS;
118   pg = GNUNET_TESTING_daemons_start (sched, cfg, 
119                                      peers_left,
120                                      &my_cb, NULL, NULL);
121   GNUNET_assert (pg != NULL);
122 }
123
124 static int
125 check ()
126 {
127   char *const argv[] = { "test-testing",
128     "-c",
129     "test_gnunet_service_topology_data.conf",
130 #if VERBOSE
131     "-L", "DEBUG",
132 #endif
133     NULL
134   };
135   struct GNUNET_GETOPT_CommandLineOption options[] = {
136     GNUNET_GETOPT_OPTION_END
137   };
138   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
139                       argv, "test-gnunet-service-topology", "nohelp",
140                       options, &run, &ok);
141   return ok;
142 }
143
144 int
145 main (int argc, char *argv[])
146 {
147   int ret;
148
149   GNUNET_log_setup ("test-gnunet-service-topology",
150 #if VERBOSE
151                     "DEBUG",
152 #else
153                     "WARNING",
154 #endif
155                     NULL);
156   ret = check ();
157   sleep (1);
158   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-topology");
159   return ret;
160 }
161
162 /* end of test_gnunet_service_topology.c */