fixing mess with search update serialization and parenting
[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 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 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 VERBOSE GNUNET_NO
33
34 static int
35 check_1 (void *cls,
36          const char *subsystem,
37          const char *name, uint64_t value, int is_persistent)
38 {
39   GNUNET_assert (0 == strcmp (name, "test-1"));
40   GNUNET_assert (0 == strcmp (subsystem, "test-statistics-api"));
41   GNUNET_assert (value == 1);
42   GNUNET_assert (is_persistent == GNUNET_NO);
43   return GNUNET_OK;
44 }
45
46 static int
47 check_2 (void *cls,
48          const char *subsystem,
49          const char *name, uint64_t value, int is_persistent)
50 {
51   GNUNET_assert (0 == strcmp (name, "test-2"));
52   GNUNET_assert (0 == strcmp (subsystem, "test-statistics-api"));
53   GNUNET_assert (value == 2);
54   GNUNET_assert (is_persistent == GNUNET_NO);
55   return GNUNET_OK;
56 }
57
58 static int
59 check_3 (void *cls,
60          const char *subsystem,
61          const char *name, uint64_t value, int is_persistent)
62 {
63   GNUNET_assert (0 == strcmp (name, "test-3"));
64   GNUNET_assert (0 == strcmp (subsystem, "test-statistics-api"));
65   GNUNET_assert (value == 3);
66   GNUNET_assert (is_persistent == GNUNET_YES);
67   return GNUNET_OK;
68 }
69
70 static struct GNUNET_STATISTICS_Handle *h;
71
72 static void
73 next_fin (void *cls, int success)
74 {
75   int *ok = cls;
76
77   GNUNET_STATISTICS_destroy (h, GNUNET_NO);
78   GNUNET_assert (success == GNUNET_OK);
79   *ok = 0;
80 }
81
82 static void
83 next (void *cls, int success)
84 {
85   GNUNET_assert (success == GNUNET_OK);
86   GNUNET_break (NULL !=
87                 GNUNET_STATISTICS_get (h, NULL, "test-2",
88                                        GNUNET_TIME_UNIT_SECONDS, &next_fin, &check_2, cls));
89 }
90
91 static void
92 run (void *cls,
93      struct GNUNET_SCHEDULER_Handle *sched,
94      char *const *args,
95      const char *cfgfile,
96      const struct GNUNET_CONFIGURATION_Handle *cfg)
97 {
98
99   h = GNUNET_STATISTICS_create (sched, "test-statistics-api", cfg);
100   GNUNET_STATISTICS_set (h, "test-1", 1, GNUNET_NO);
101   GNUNET_STATISTICS_set (h, "test-2", 2, GNUNET_NO);
102   GNUNET_STATISTICS_set (h, "test-3", 2, GNUNET_NO);
103   GNUNET_STATISTICS_update (h, "test-3", 1, GNUNET_YES);
104   GNUNET_break (NULL != 
105                 GNUNET_STATISTICS_get (h, NULL, "test-1",
106                                        GNUNET_TIME_UNIT_SECONDS, &next, &check_1, cls));
107 }
108
109 static void
110 run_more (void *cls,
111           struct GNUNET_SCHEDULER_Handle *sched,
112           char *const *args,
113           const char *cfgfile,
114           const struct GNUNET_CONFIGURATION_Handle *cfg)
115 {
116   h = GNUNET_STATISTICS_create (sched, "test-statistics-api", cfg);
117   GNUNET_break (NULL !=
118                 GNUNET_STATISTICS_get (h, NULL, "test-3",
119                                        GNUNET_TIME_UNIT_SECONDS, &next_fin, &check_3, cls));
120 }
121
122 static int
123 check ()
124 {
125   int ok = 1;
126   pid_t pid;
127   char *const argv[] = { "test-statistics-api",
128     "-c",
129     "test_statistics_api_data.conf",
130     NULL
131   };
132   struct GNUNET_GETOPT_CommandLineOption options[] = {
133     GNUNET_GETOPT_OPTION_END
134   };
135   pid = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-statistics",
136                                  "gnunet-service-statistics",
137 #if DEBUG_STATISTICS
138                                  "-L", "DEBUG",
139 #endif
140                                  "-c", "test_statistics_api_data.conf", NULL);
141   GNUNET_PROGRAM_run (3, argv, "test-statistics-api", "nohelp",
142                       options, &run, &ok);
143   if (0 != PLIBC_KILL (pid, SIGTERM))
144     {
145       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
146       ok = 1;
147     }
148   GNUNET_OS_process_wait(pid);
149   if (ok != 0)
150     return ok;
151   ok = 1;
152   /* restart to check persistence! */
153   pid = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-statistics",
154                                  "gnunet-service-statistics",
155 #if DEBUG_STATISTICS
156                                  "-L", "DEBUG",
157 #endif
158                                  "-c", "test_statistics_api_data.conf", NULL);
159   GNUNET_PROGRAM_run (3, argv, "test-statistics-api", "nohelp",
160                       options, &run_more, &ok);
161   if (0 != PLIBC_KILL (pid, SIGTERM))
162     {
163       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
164       ok = 1;
165     }
166   GNUNET_OS_process_wait(pid);
167   return ok;
168 }
169
170 int
171 main (int argc, char *argv[])
172 {
173   int ret;
174
175   ret = check ();
176
177   return ret;
178 }
179
180 /* end of test_statistics_api.c */