basic topology test
[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_NO
28
29 #define NUM_PEERS 10
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 struct GNUNET_TESTING_PeerGroup *pg;
42
43 static struct GNUNET_SCHEDULER_Handle *sched;
44
45
46 static void my_cb(void *cls,
47                    const struct GNUNET_PeerIdentity *id,
48                    const struct GNUNET_CONFIGURATION_Handle *cfg,
49                    struct GNUNET_TESTING_Daemon *d,
50                    const char *emsg)
51 {
52   GNUNET_assert (id != NULL);
53   peers_left--;
54   if (peers_left == 0)
55     {
56       /* FIXME: connect a few... */
57       GNUNET_TESTING_daemons_stop (pg);
58       ok = 0;
59     }
60 }
61
62
63 static void
64 run (void *cls,
65      struct GNUNET_SCHEDULER_Handle *s,
66      char *const *args,
67      const char *cfgfile,
68      const struct GNUNET_CONFIGURATION_Handle *cfg)
69 {
70   sched = s;
71   ok = 1;
72 #if VERBOSE
73   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
74               "Starting daemons.\n");
75 #endif
76   peers_left = NUM_PEERS;
77   pg = GNUNET_TESTING_daemons_start (sched, cfg, 
78                                      peers_left,
79                                      &my_cb, NULL, NULL);
80   GNUNET_assert (pg != NULL);
81 }
82
83 static int
84 check ()
85 {
86   char *const argv[] = { "test-testing",
87     "-c",
88     "test_gnunet_service_topology_data.conf",
89 #if VERBOSE
90     "-L", "DEBUG",
91 #endif
92     NULL
93   };
94   struct GNUNET_GETOPT_CommandLineOption options[] = {
95     GNUNET_GETOPT_OPTION_END
96   };
97   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
98                       argv, "test-gnunet-service-topology", "nohelp",
99                       options, &run, &ok);
100   return ok;
101 }
102
103 int
104 main (int argc, char *argv[])
105 {
106   int ret;
107
108   GNUNET_log_setup ("test-gnunet-service-topology",
109 #if VERBOSE
110                     "DEBUG",
111 #else
112                     "WARNING",
113 #endif
114                     NULL);
115   ret = check ();
116   sleep (1);
117   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-topology");
118   return ret;
119 }
120
121 /* end of test_gnunet_service_topology.c */