rename NETWORK_socket API to NETWORK_connection (to make room for the new actual...
[oweals/gnunet.git] / src / util / test_program.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 util/test_program.c
22  * @brief tests for program.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_program_lib.h"
27 #include "gnunet_scheduler_lib.h"
28 #include "gnunet_time_lib.h"
29
30 static int setme;
31
32 static struct GNUNET_GETOPT_CommandLineOption options[] = {
33   {'n', "name", NULL, "description", 0, &GNUNET_GETOPT_set_one, &setme},
34   GNUNET_GETOPT_OPTION_END
35 };
36
37 /**
38  * Main function that will be run.
39  */
40 static void
41 runner (void *cls,
42         struct GNUNET_SCHEDULER_Handle *sched,
43         char *const *args,
44         const char *cfgfile, 
45         const struct GNUNET_CONFIGURATION_Handle *cfg)
46 {
47   int *ok = cls;
48   GNUNET_assert (setme == 1);
49   GNUNET_assert (sched != NULL);
50   GNUNET_assert (0 == strcmp (args[0], "extra"));
51   GNUNET_assert (args[1] == NULL);
52   GNUNET_assert (0 == strcmp (cfgfile, "test_program_data.conf"));
53
54   *ok = 0;
55 }
56
57
58 /**
59  * Main method, starts scheduler with task1,
60  * checks that "ok" is correct at the end.
61  */
62 static int
63 check ()
64 {
65   int ok = 1;
66   char *const argv[] = {
67     "test_program",
68     "-c",
69     "test_program_data.conf",
70     "-L",
71     "WARNING",
72     "-n",
73     "extra",
74     NULL
75   };
76   GNUNET_assert (GNUNET_OK ==
77                  GNUNET_PROGRAM_run (7,
78                                      argv,
79                                      "test_program",
80                                      "A test", options, &runner, &ok));
81   return ok;
82 }
83
84 int
85 main (int argc, char *argv[])
86 {
87   int ret = 0;
88
89   GNUNET_log_setup ("test_program", "WARNING", NULL);
90   ret += check ();
91
92   return ret;
93 }
94
95 /* end of test_program.c */