08997627775d1e93e1ea9cabe712243ebe035038
[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 setme1, setme2;
31
32 static struct GNUNET_GETOPT_CommandLineOption options1[] = {
33   {'n', "name", NULL, "description", 0, &GNUNET_GETOPT_set_one, &setme1},
34   GNUNET_GETOPT_OPTION_END
35 };
36
37 static struct GNUNET_GETOPT_CommandLineOption options2[] = {
38   {'n', "name", NULL, "description", 0, &GNUNET_GETOPT_set_one, &setme1},
39   {'N', "number", NULL, "description", 0, &GNUNET_GETOPT_set_one, &setme2}
40 };
41
42 static struct GNUNET_GETOPT_CommandLineOption options3[] = {
43   {'N', "number", NULL, "description", 0, &GNUNET_GETOPT_set_one, &setme1},
44   {'n', "name", NULL, "description", 0, &GNUNET_GETOPT_set_one, &setme2}
45
46 };
47
48 static struct GNUNET_GETOPT_CommandLineOption options4[] = {
49   {'n', "name", NULL, "description", 0, &GNUNET_GETOPT_set_one, &setme1},
50   {'n', "number", NULL, "description", 0, &GNUNET_GETOPT_set_one, &setme2}
51
52 };
53
54 /**
55  * Main function that will be run.
56  */
57
58 static void
59 runner (void *cls,
60         struct GNUNET_SCHEDULER_Handle *sched,
61         char *const *args,
62         const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
63 {
64   int *ok = cls;
65   GNUNET_assert (setme1 == 1);
66   GNUNET_assert (sched != NULL);
67   GNUNET_assert (0 == strcmp (args[0], "extra"));
68   GNUNET_assert (args[1] == NULL);
69   GNUNET_assert (0 == strcmp (cfgfile, "test_program_data.conf"));
70
71   *ok = 0;
72 }
73
74 /**
75  * Main method, starts scheduler with task1,
76  * checks that "ok" is correct at the end.
77  */
78 static int
79 check ()
80 {
81   int ok = 1;
82   char *const argv[] = {
83     "test_program",
84     "-c",
85     "test_program_data.conf",
86     "-L",
87     "WARNING",
88     "-n",
89     "extra",
90     NULL
91   };
92
93   GNUNET_assert (GNUNET_OK ==
94                  GNUNET_PROGRAM_run (7,
95                                      argv,
96                                      "test_program",
97                                      "A test", options1, &runner, &ok));
98
99   GNUNET_assert (GNUNET_OK ==
100                  GNUNET_PROGRAM_run (7,
101                                      argv,
102                                      "test_program",
103                                      "A test", options2, &runner, &ok));
104   GNUNET_assert (GNUNET_OK ==
105                  GNUNET_PROGRAM_run (7,
106                                      argv,
107                                      "test_program",
108                                      "A test", options3, &runner, &ok));
109   GNUNET_assert (GNUNET_OK ==
110                  GNUNET_PROGRAM_run (7,
111                                      argv,
112                                      "test_program",
113                                      "A test", options4, &runner, &ok));
114
115   return ok;
116 }
117
118 int
119 main (int argc, char *argv[])
120 {
121   int ret = 0;
122
123   GNUNET_log_setup ("test_program", "WARNING", NULL);
124   ret += check ();
125
126   return ret;
127 }
128
129 /* end of test_program.c */