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