for w32 port
[oweals/gnunet.git] / src / statistics / test_statistics_api.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 statistics/test_statistics_api.c
22  * @brief testcase for statistics_api.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_getopt_lib.h"
27 #include "gnunet_os_lib.h"
28 #include "gnunet_program_lib.h"
29 #include "gnunet_scheduler_lib.h"
30 #include "gnunet_statistics_service.h"
31
32 #define DEBUG_STATISTICS GNUNET_NO
33
34 #define START_SERVICE GNUNET_YES
35
36 static int
37 check_1 (void *cls,
38          const char *subsystem,
39          const char *name, uint64_t value, int is_persistent)
40 {
41   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
42               "Received value %llu for `%s:%s\n",
43               (unsigned long long) value,
44               subsystem,
45               name);
46   GNUNET_assert (0 == strcmp (name, "test-1"));
47   GNUNET_assert (0 == strcmp (subsystem, "test-statistics-api"));
48   GNUNET_assert (value == 1);
49   GNUNET_assert (is_persistent == GNUNET_NO);
50   return GNUNET_OK;
51 }
52
53 static int
54 check_2 (void *cls,
55          const char *subsystem,
56          const char *name, uint64_t value, int is_persistent)
57 {
58   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
59               "Received value %llu for `%s:%s\n",
60               (unsigned long long) value,
61               subsystem,
62               name);
63   GNUNET_assert (0 == strcmp (name, "test-2"));
64   GNUNET_assert (0 == strcmp (subsystem, "test-statistics-api"));
65   GNUNET_assert (value == 2);
66   GNUNET_assert (is_persistent == GNUNET_NO);
67   return GNUNET_OK;
68 }
69
70 static int
71 check_3 (void *cls,
72          const char *subsystem,
73          const char *name, uint64_t value, int is_persistent)
74 {
75   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
76               "Received value %llu for `%s:%s\n",
77               (unsigned long long) value,
78               subsystem,
79               name);
80   GNUNET_assert (0 == strcmp (name, "test-3"));
81   GNUNET_assert (0 == strcmp (subsystem, "test-statistics-api"));
82   GNUNET_assert (value == 3);
83   GNUNET_assert (is_persistent == GNUNET_YES);
84   return GNUNET_OK;
85 }
86
87 static struct GNUNET_STATISTICS_Handle *h;
88
89 static void
90 next_fin (void *cls, int success)
91 {
92   int *ok = cls;
93
94   GNUNET_STATISTICS_destroy (h, GNUNET_NO);
95   GNUNET_assert (success == GNUNET_OK);
96   *ok = 0;
97 }
98
99 static void
100 next (void *cls, int success)
101 {
102   GNUNET_assert (success == GNUNET_OK);
103   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
104               "Issuing GET request\n");       
105   GNUNET_break (NULL !=
106                 GNUNET_STATISTICS_get (h, NULL, "test-2",
107                                        GNUNET_TIME_UNIT_SECONDS, &next_fin, &check_2, cls));
108 }
109
110 static void
111 run (void *cls,
112      struct GNUNET_SCHEDULER_Handle *sched,
113      char *const *args,
114      const char *cfgfile,
115      const struct GNUNET_CONFIGURATION_Handle *cfg)
116 {
117   h = GNUNET_STATISTICS_create (sched, "test-statistics-api", cfg);
118   GNUNET_STATISTICS_set (h, "test-1", 1, GNUNET_NO);
119   GNUNET_STATISTICS_set (h, "test-2", 2, GNUNET_NO);
120   GNUNET_STATISTICS_set (h, "test-3", 2, GNUNET_NO);
121   GNUNET_STATISTICS_update (h, "test-3", 1, GNUNET_YES);
122   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
123               "Issuing GET request\n");       
124   GNUNET_break (NULL != 
125                 GNUNET_STATISTICS_get (h, NULL, "test-1",
126                                        GNUNET_TIME_UNIT_SECONDS, &next, &check_1, cls));
127 }
128
129 static void
130 run_more (void *cls,
131           struct GNUNET_SCHEDULER_Handle *sched,
132           char *const *args,
133           const char *cfgfile,
134           const struct GNUNET_CONFIGURATION_Handle *cfg)
135 {
136   h = GNUNET_STATISTICS_create (sched, "test-statistics-api", cfg);
137   GNUNET_break (NULL !=
138                 GNUNET_STATISTICS_get (h, NULL, "test-3",
139                                        GNUNET_TIME_UNIT_SECONDS, &next_fin, &check_3, cls));
140 }
141
142 static int
143 check ()
144 {
145   int ok = 1;
146   char *const argv[] = { "test-statistics-api",
147     "-c",
148     "test_statistics_api_data.conf",
149 #if DEBUG_STATISTICS
150                          "-L", "DEBUG",
151 #else
152                          "-L", "WARNING",
153 #endif
154     NULL
155   };
156   struct GNUNET_GETOPT_CommandLineOption options[] = {
157     GNUNET_GETOPT_OPTION_END
158   };
159 #if START_SERVICE
160   pid_t pid;
161   pid = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-statistics",
162                                  "gnunet-service-statistics",
163 #if DEBUG_STATISTICS
164                                  "-L", "DEBUG",
165 #endif
166                                  "-c", "test_statistics_api_data.conf", NULL);
167 #endif
168   GNUNET_PROGRAM_run (5, argv, "test-statistics-api", "nohelp",
169                       options, &run, &ok);
170 #if START_SERVICE
171   if (0 != PLIBC_KILL (pid, SIGTERM))
172     {
173       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
174       ok = 1;
175     }
176   GNUNET_OS_process_wait(pid);
177 #endif
178   if (ok != 0)
179     return ok;
180   ok = 1;
181 #if START_SERVICE
182   /* restart to check persistence! */
183   pid = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-statistics",
184                                  "gnunet-service-statistics",
185 #if DEBUG_STATISTICS
186                                  "-L", "DEBUG",
187 #endif
188                                  "-c", "test_statistics_api_data.conf", NULL);
189 #endif
190   GNUNET_PROGRAM_run (5, argv, "test-statistics-api", "nohelp",
191                       options, &run_more, &ok);
192 #if START_SERVICE
193   if (0 != PLIBC_KILL (pid, SIGTERM))
194     {
195       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
196       ok = 1;
197     }
198   GNUNET_OS_process_wait(pid);
199 #endif
200   return ok;
201 }
202
203 int
204 main (int argc, char *argv[])
205 {
206   int ret;
207
208   GNUNET_log_setup ("test_statistics_api", 
209 #if DEBUG_STATISTICS
210                     "DEBUG",
211 #else
212                     "WARNING",
213 #endif
214                     NULL);
215   ret = check ();
216
217   return ret;
218 }
219
220 /* end of test_statistics_api.c */