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