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