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