clique topology optimization, progress meter for connecting
[oweals/gnunet.git] / src / testing / test_testing.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.c
22  * @brief testcase for testing.c
23  */
24 #include "platform.h"
25 #include "gnunet_testing_lib.h"
26
27 #define VERBOSE GNUNET_YES
28
29 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 300)
30
31 static int ok;
32
33 static void
34 end_cb (void *cls, const char *emsg)
35 {
36   if (emsg != NULL)
37     {
38       GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Ending with error: %s\n", emsg);
39       ok = 1;
40     }
41   else
42     {
43 #if VERBOSE
44       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
45                   "Daemon terminated, will now exit.\n");
46 #endif
47       ok = 0;
48     }
49 }
50
51 static void
52 my_cb (void *cls,
53        const struct GNUNET_PeerIdentity *id,
54        const struct GNUNET_CONFIGURATION_Handle *cfg,
55        struct GNUNET_TESTING_Daemon *d, const char *emsg)
56 {
57   GNUNET_assert (id != NULL);
58 #if VERBOSE
59   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
60               "Daemon `%s' started, will now stop it.\n", GNUNET_i2s (id));
61 #endif
62   GNUNET_TESTING_daemon_stop (d, TIMEOUT, &end_cb, NULL, GNUNET_YES,
63                               GNUNET_NO);
64 }
65
66
67 static void
68 run (void *cls,
69      char *const *args,
70      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
71 {
72   struct GNUNET_TESTING_Daemon *d;
73
74   ok = 1;
75 #if VERBOSE
76   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemon.\n");
77 #endif
78   d =
79     GNUNET_TESTING_daemon_start (cfg, TIMEOUT, NULL, NULL, 0, NULL, NULL, NULL,
80                                  &my_cb, NULL);
81   GNUNET_assert (d != NULL);
82 }
83
84 static int
85 check ()
86 {
87   char *const argv[] = { "test-testing",
88     "-c",
89     "test_testing_data.conf",
90 #if VERBOSE
91     "-L", "DEBUG",
92 #endif
93     NULL
94   };
95   struct GNUNET_GETOPT_CommandLineOption options[] = {
96     GNUNET_GETOPT_OPTION_END
97   };
98   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
99                       argv, "test-testing", "nohelp", 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-testing",
109 #if VERBOSE
110                     "DEBUG",
111 #else
112                     "WARNING",
113 #endif
114                     NULL);
115   ret = check ();
116
117   return ret;
118 }
119
120 /* end of test_testing.c */