temporary hack for gnunet-arm. given enough time processes seem to go away, so give...
[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 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.c
22  * @brief testcase for testing.c
23  */
24 #include "platform.h"
25 #include "gnunet_testing_lib.h"
26
27 #define VERBOSE GNUNET_NO
28
29 static int ok;
30
31 static void
32 end_cb (void *cls, const char *emsg)
33 {
34   if (emsg != NULL)
35     {
36       fprintf (stderr, "Error terminaing daemon: `%s'\n",
37                emsg);
38       return;
39     }
40 #if VERBOSE
41   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Daemon terminated, will now exit.\n");
42 #endif
43   ok = 0;
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   GNUNET_assert (id != NULL);
53 #if VERBOSE
54   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
55               "Daemon `%s' started, will now stop it.\n", GNUNET_i2s (id));
56 #endif
57   GNUNET_TESTING_daemon_stop (d, &end_cb, NULL);
58 }
59
60
61 static void
62 run (void *cls,
63      struct GNUNET_SCHEDULER_Handle *sched,
64      char *const *args,
65      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
66 {
67   struct GNUNET_TESTING_Daemon *d;
68
69   ok = 1;
70 #if VERBOSE
71   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemon.\n");
72 #endif
73   d = GNUNET_TESTING_daemon_start (sched, cfg, NULL, &my_cb, NULL);
74   GNUNET_assert (d != NULL);
75 }
76
77 static int
78 check ()
79 {
80   char *const argv[] = { "test-testing",
81     "-c",
82     "test_testing_data.conf",
83 #if VERBOSE
84     "-L", "DEBUG",
85 #endif
86     NULL
87   };
88   struct GNUNET_GETOPT_CommandLineOption options[] = {
89     GNUNET_GETOPT_OPTION_END
90   };
91   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
92                       argv, "test-testing", "nohelp", options, &run, &ok);
93   return ok;
94 }
95
96 int
97 main (int argc, char *argv[])
98 {
99   int ret;
100
101   GNUNET_log_setup ("test-testing",
102 #if VERBOSE
103                     "DEBUG",
104 #else
105                     "WARNING",
106 #endif
107                     NULL);
108   ret = check ();
109
110   return ret;
111 }
112
113 /* end of test_testing.c */