longer timeout to make test work on slower machines, but the problem is still that...
[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 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 `%s' started, will now stop it.\n",
52               GNUNET_i2s (id));
53 #endif
54   GNUNET_TESTING_daemon_stop (d, &end_cb, NULL);
55 }
56
57
58 static void
59 run (void *cls,
60      struct GNUNET_SCHEDULER_Handle *sched,
61      char *const *args,
62      const char *cfgfile,
63      const struct GNUNET_CONFIGURATION_Handle *cfg)
64 {
65   struct GNUNET_TESTING_Daemon *d;
66
67   ok = 1;
68 #if VERBOSE
69   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
70               "Starting daemon.\n");
71 #endif
72   d = GNUNET_TESTING_daemon_start (sched,
73                                    cfg,
74                                    NULL,
75                                    &my_cb,
76                                    NULL);
77   GNUNET_assert (d != NULL);
78 }
79
80 static int
81 check ()
82 {
83   char *const argv[] = { "test-testing",
84     "-c",
85     "test_testing_data.conf",
86 #if VERBOSE
87     "-L", "DEBUG",
88 #endif
89     NULL
90   };
91   struct GNUNET_GETOPT_CommandLineOption options[] = {
92     GNUNET_GETOPT_OPTION_END
93   };
94   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
95                       argv, "test-testing", "nohelp",
96                       options, &run, &ok);
97   return ok;
98 }
99
100 int
101 main (int argc, char *argv[])
102 {
103   int ret;
104
105   GNUNET_log_setup ("test-testing",
106 #if VERBOSE
107                     "DEBUG",
108 #else
109                     "WARNING",
110 #endif
111                     NULL);
112   ret = check ();
113   sleep (1); /* FIXME: make this unnecessary */
114   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-testing");
115   return ret;
116 }
117
118 /* end of test_testing.c */