rounding
[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   GNUNET_assert (emsg == NULL);
35 #if VERBOSE
36   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Daemon terminated, will now exit.\n");
37 #endif
38   ok = 0;
39 }
40
41 static void
42 my_cb (void *cls,
43        const struct GNUNET_PeerIdentity *id,
44        const struct GNUNET_CONFIGURATION_Handle *cfg,
45        struct GNUNET_TESTING_Daemon *d, const char *emsg)
46 {
47   GNUNET_assert (id != NULL);
48 #if VERBOSE
49   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
50               "Daemon `%s' started, will now stop it.\n", GNUNET_i2s (id));
51 #endif
52   GNUNET_TESTING_daemon_stop (d, &end_cb, NULL);
53 }
54
55
56 static void
57 run (void *cls,
58      struct GNUNET_SCHEDULER_Handle *sched,
59      char *const *args,
60      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
61 {
62   struct GNUNET_TESTING_Daemon *d;
63
64   ok = 1;
65 #if VERBOSE
66   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemon.\n");
67 #endif
68   d = GNUNET_TESTING_daemon_start (sched, cfg, NULL, &my_cb, NULL);
69   GNUNET_assert (d != NULL);
70 }
71
72 static int
73 check ()
74 {
75   char *const argv[] = { "test-testing",
76     "-c",
77     "test_testing_data.conf",
78 #if VERBOSE
79     "-L", "DEBUG",
80 #endif
81     NULL
82   };
83   struct GNUNET_GETOPT_CommandLineOption options[] = {
84     GNUNET_GETOPT_OPTION_END
85   };
86   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
87                       argv, "test-testing", "nohelp", options, &run, &ok);
88   return ok;
89 }
90
91 int
92 main (int argc, char *argv[])
93 {
94   int ret;
95
96   GNUNET_log_setup ("test-testing",
97 #if VERBOSE
98                     "DEBUG",
99 #else
100                     "WARNING",
101 #endif
102                     NULL);
103   ret = check ();
104
105   return ret;
106 }
107
108 /* end of test_testing.c */