-updating dependency diagram
[oweals/gnunet.git] / src / testing_old / 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, "Daemon terminated, will now exit.\n");
45 #endif
46     ok = 0;
47   }
48 }
49
50
51
52 void
53 do_shutdown (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
54 {
55   struct GNUNET_TESTING_Daemon *d = cls;
56
57   GNUNET_TESTING_daemon_stop (d, TIMEOUT, &end_cb, NULL, GNUNET_YES, GNUNET_NO);
58 }
59
60
61 static void
62 my_cb (void *cls, const struct GNUNET_PeerIdentity *id,
63        const struct GNUNET_CONFIGURATION_Handle *cfg,
64        struct GNUNET_TESTING_Daemon *d, const char *emsg)
65 {
66   GNUNET_assert (id != NULL);
67 #if VERBOSE
68   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
69               "Daemon `%s' started, will now stop it.\n", GNUNET_i2s (id));
70 #endif
71   GNUNET_SCHEDULER_add_now (&do_shutdown, d);
72 }
73
74
75 static void
76 run (void *cls, char *const *args, const char *cfgfile,
77      const struct GNUNET_CONFIGURATION_Handle *cfg)
78 {
79   struct GNUNET_TESTING_Daemon *d;
80
81   ok = 1;
82 #if VERBOSE
83   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Starting daemon.\n");
84 #endif
85   d = GNUNET_TESTING_daemon_start (cfg, TIMEOUT, GNUNET_NO, NULL, NULL, 0, NULL,
86                                    NULL, NULL, &my_cb, NULL);
87   GNUNET_assert (d != NULL);
88 }
89
90 static int
91 check ()
92 {
93   char *const argv[] = { "test-testing",
94     "-c",
95     "test_testing_data.conf",
96 #if VERBOSE
97     "-L", "DEBUG",
98 #endif
99     NULL
100   };
101   struct GNUNET_GETOPT_CommandLineOption options[] = {
102     GNUNET_GETOPT_OPTION_END
103   };
104   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
105                       "test-testing", "nohelp", options, &run, &ok);
106   return ok;
107 }
108
109 int
110 main (int argc, char *argv[])
111 {
112   int ret;
113
114   GNUNET_log_setup ("test-testing",
115 #if VERBOSE
116                     "DEBUG",
117 #else
118                     "WARNING",
119 #endif
120                     NULL);
121   ret = check ();
122
123   return ret;
124 }
125
126 /* end of test_testing.c */