better failure handling
[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 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 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
37 static int ok;
38
39 static int peers_left;
40
41 static int failed_peers;
42
43 static struct GNUNET_TESTING_PeerGroup *pg;
44
45 static struct GNUNET_SCHEDULER_Handle *sched;
46
47
48 static void
49 my_cb (void *cls,
50        const struct GNUNET_PeerIdentity *id,
51        const struct GNUNET_CONFIGURATION_Handle *cfg,
52        struct GNUNET_TESTING_Daemon *d, const char *emsg)
53 {
54   if (id == NULL)
55     {
56       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Start callback called with error (too long starting peers), aborting test!\n");
57       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Error from testing: `%s'\n");
58       failed_peers++;
59       ok = 7;
60     }
61
62   peers_left--;
63   if (peers_left == 0)
64     {
65       sleep(2); /* Give other services a chance to initialize before killing */
66       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "All peers started successfully, ending test!\n");
67       GNUNET_TESTING_daemons_stop (pg);
68       ok = 0;
69     }
70   else if (failed_peers == peers_left)
71     {
72       GNUNET_TESTING_daemons_stop (pg);
73     }
74 }
75
76
77 static void
78 run (void *cls,
79      struct GNUNET_SCHEDULER_Handle *s,
80      char *const *args,
81      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
82 {
83   sched = s;
84   ok = 1;
85 #if VERBOSE
86   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemons.\n");
87 #endif
88   peers_left = NUM_PEERS;
89   pg = GNUNET_TESTING_daemons_start (sched, cfg,
90                                      peers_left,
91                                      NULL, NULL,
92                                      &my_cb, NULL, NULL, NULL, NULL);
93   GNUNET_assert (pg != NULL);
94 }
95
96 static int
97 check ()
98 {
99   char *const argv[] = { "test-testing",
100     "-c",
101     "test_testing_data.conf",
102 #if VERBOSE
103     "-L", "DEBUG",
104 #endif
105     NULL
106   };
107   struct GNUNET_GETOPT_CommandLineOption options[] = {
108     GNUNET_GETOPT_OPTION_END
109   };
110   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
111                       argv, "test-testing-group", "nohelp",
112                       options, &run, &ok);
113   return ok;
114 }
115
116 int
117 main (int argc, char *argv[])
118 {
119   int ret;
120
121   GNUNET_log_setup ("test-testing-group",
122 #if VERBOSE
123                     "DEBUG",
124 #else
125                     "WARNING",
126 #endif
127                     NULL);
128   ret = check ();
129   /**
130    * Still need to remove the base testing directory here,
131    * because group starts will create subdirectories under this
132    * main dir.  However, we no longer need to sleep, as the
133    * shutdown sequence won't return until everything is cleaned
134    * up.
135    */
136   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-testing");
137   return ret;
138 }
139
140 /* end of test_testing_group.c */