fixes to build
[oweals/gnunet.git] / src / testing / test_testing_group.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 testing/test_testing_group.c
22  * @brief testcase for functions to connect peers in testing.c
23  */
24 #include "platform.h"
25 #include "gnunet_testing_lib.h"
26
27 #define VERBOSE GNUNET_NO
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, 300)
35
36 static int ok;
37
38 static int peers_left;
39
40 static int failed_peers;
41
42 static struct GNUNET_TESTING_PeerGroup *pg;
43
44 static struct GNUNET_SCHEDULER_Handle *sched;
45
46 /**
47  * Check whether peers successfully shut down.
48  */
49 void shutdown_callback (void *cls,
50                         const char *emsg)
51 {
52   if (emsg != NULL)
53     {
54 #if VERBOSE
55       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
56                   "Shutdown of peers failed!\n");
57 #endif
58       if (ok == 0)
59         ok = 666;
60     }
61   else
62     {
63 #if VERBOSE
64       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
65                   "All peers successfully shut down!\n");
66 #endif
67     }
68 }
69
70
71 static void
72 my_cb (void *cls,
73        const struct GNUNET_PeerIdentity *id,
74        const struct GNUNET_CONFIGURATION_Handle *cfg,
75        struct GNUNET_TESTING_Daemon *d, const char *emsg)
76 {
77   if (id == NULL)
78     {
79       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Start callback called with error (too long starting peers), aborting test!\n");
80       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Error from testing: `%s'\n");
81       failed_peers++;
82       if (failed_peers == peers_left)
83         {
84           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Too many peers failed, ending test!\n");
85           ok = 1;
86           GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
87         }
88       return;
89     }
90
91   peers_left--;
92   if (peers_left == 0)
93     {
94       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "All peers started successfully, ending test!\n");
95       GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
96       ok = 0;
97     }
98   else if (failed_peers == peers_left)
99     {
100       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Too many peers failed, ending test!\n");
101       ok = 1;
102       GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
103     }
104 }
105
106
107 static void
108 run (void *cls,
109      struct GNUNET_SCHEDULER_Handle *s,
110      char *const *args,
111      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
112 {
113   sched = s;
114   ok = 1;
115 #if VERBOSE
116   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemons.\n");
117 #endif
118   peers_left = NUM_PEERS;
119   pg = GNUNET_TESTING_daemons_start (sched, cfg,
120                                      peers_left,
121                                      TIMEOUT,
122                                      NULL, NULL,
123                                      &my_cb, NULL, NULL, NULL, NULL);
124   GNUNET_assert (pg != NULL);
125 }
126
127 static int
128 check ()
129 {
130   char *const argv[] = { "test-testing",
131     "-c",
132     "test_testing_data.conf",
133 #if VERBOSE
134     "-L", "DEBUG",
135 #endif
136     NULL
137   };
138   struct GNUNET_GETOPT_CommandLineOption options[] = {
139     GNUNET_GETOPT_OPTION_END
140   };
141   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
142                       argv, "test-testing-group", "nohelp",
143                       options, &run, &ok);
144   return ok;
145 }
146
147 int
148 main (int argc, char *argv[])
149 {
150   int ret;
151
152   GNUNET_log_setup ("test-testing-group",
153 #if VERBOSE
154                     "DEBUG",
155 #else
156                     "WARNING",
157 #endif
158                     NULL);
159   ret = check ();
160   /**
161    * Still need to remove the base testing directory here,
162    * because group starts will create subdirectories under this
163    * main dir.  However, we no longer need to sleep, as the
164    * shutdown sequence won't return until everything is cleaned
165    * up.
166    */
167   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-testing");
168   return ret;
169 }
170
171 /* end of test_testing_group.c */