MinGW
[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, unsigned long long 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, unsigned long long 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, unsigned long long 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);
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_STATISTICS_get (h, NULL, "test-2",
87                          GNUNET_TIME_UNIT_SECONDS, &next_fin, &check_2, cls);
88 }
89
90 static void
91 run (void *cls,
92      struct GNUNET_SCHEDULER_Handle *sched,
93      char *const *args,
94      const char *cfgfile, struct GNUNET_CONFIGURATION_Handle *cfg)
95 {
96
97   h = GNUNET_STATISTICS_create (sched, "test-statistics-api", cfg);
98   GNUNET_STATISTICS_set (h, "test-1", 1, GNUNET_NO);
99   GNUNET_STATISTICS_set (h, "test-2", 2, GNUNET_NO);
100   GNUNET_STATISTICS_set (h, "test-3", 2, GNUNET_NO);
101   GNUNET_STATISTICS_update (h, "test-3", 1, GNUNET_YES);
102   GNUNET_STATISTICS_get (h, NULL, "test-1",
103                          GNUNET_TIME_UNIT_SECONDS, &next, &check_1, cls);
104 }
105
106 static void
107 run_more (void *cls,
108           struct GNUNET_SCHEDULER_Handle *sched,
109           char *const *args,
110           const char *cfgfile, struct GNUNET_CONFIGURATION_Handle *cfg)
111 {
112   h = GNUNET_STATISTICS_create (sched, "test-statistics-api", cfg);
113   GNUNET_STATISTICS_get (h, NULL, "test-3",
114                          GNUNET_TIME_UNIT_SECONDS, &next_fin, &check_3, cls);
115 }
116
117 static int
118 check ()
119 {
120   int ok = 1;
121   pid_t pid;
122   char *const argv[] = { "test-statistics-api",
123     "-c",
124     "test_statistics_api_data.conf",
125     NULL
126   };
127   struct GNUNET_GETOPT_CommandLineOption options[] = {
128     GNUNET_GETOPT_OPTION_END
129   };
130   pid = GNUNET_OS_start_process ("gnunet-service-statistics",
131                                  "gnunet-service-statistics",
132 #if DEBUG_STATISTICS
133                                  "-L", "DEBUG",
134 #endif
135                                  "-c", "test_statistics_api_data.conf", NULL);
136   sleep (1);
137   GNUNET_PROGRAM_run (3, argv, "test-statistics-api", "nohelp",
138                       options, &run, &ok);
139   if (0 != PLIBC_KILL (pid, SIGTERM))
140     {
141       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
142       ok = 1;
143     }
144   GNUNET_OS_process_wait(pid);
145   if (ok != 0)
146     return ok;
147   ok = 1;
148   /* restart to check persistence! */
149   pid = GNUNET_OS_start_process ("gnunet-service-statistics",
150                                  "gnunet-service-statistics",
151 #if DEBUG_STATISTICS
152                                  "-L", "DEBUG",
153 #endif
154                                  "-c", "test_statistics_api_data.conf", NULL);
155   sleep (1);
156   GNUNET_PROGRAM_run (3, argv, "test-statistics-api", "nohelp",
157                       options, &run_more, &ok);
158   if (0 != PLIBC_KILL (pid, SIGTERM))
159     {
160       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
161       ok = 1;
162     }
163   GNUNET_OS_process_wait(pid);
164   return ok;
165 }
166
167 int
168 main (int argc, char *argv[])
169 {
170   int ret;
171
172   ret = check ();
173
174   return ret;
175 }
176
177 /* end of test_statistics_api.c */