-misc minor fixes
[oweals/gnunet.git] / src / statistics / test_statistics_api_watch_zero_value.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2011, 2012 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_watch_zero_value.c
22  * @brief testcase for statistics_api.c watch functions with initial 0 value
23  */
24 #include "platform.h"
25 #include "gnunet_util_lib.h"
26 #include "gnunet_statistics_service.h"
27
28 static int ok;
29
30 static int ok2;
31
32 static struct GNUNET_STATISTICS_Handle *h;
33
34 static struct GNUNET_STATISTICS_Handle *h2;
35
36 static GNUNET_SCHEDULER_TaskIdentifier shutdown_task;
37
38
39 static void
40 force_shutdown (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
41 {
42   fprintf (stderr, "Timeout, failed to receive notifications: %d\n", ok);
43   GNUNET_STATISTICS_destroy (h, GNUNET_NO);
44   GNUNET_STATISTICS_destroy (h2, GNUNET_NO);
45   ok = 7;
46 }
47
48
49 static void
50 normal_shutdown (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
51 {
52   GNUNET_STATISTICS_destroy (h, GNUNET_NO);
53   GNUNET_STATISTICS_destroy (h2, GNUNET_NO);
54 }
55
56
57 static int
58 watch_1 (void *cls, const char *subsystem, const char *name, uint64_t value,
59          int is_persistent)
60 {
61   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received value `%s' `%s' %llu\n",
62       subsystem, name, value);
63   GNUNET_assert (0 == strcmp (name, "test-1"));
64   if ((0 == value) && (3 == ok))
65   {
66     ok--;
67     GNUNET_STATISTICS_set (h, "test-1", 42, GNUNET_NO);
68   }
69
70   if ((42 == value) && (2 == ok))
71   {
72     ok--;
73     GNUNET_STATISTICS_set (h, "test-1", 0, GNUNET_NO);
74   }
75
76   if ((0 == value) && (1 == ok))
77   {
78     ok--;
79   }
80   if ((0 == ok) && (0 == ok2))
81   {
82     GNUNET_SCHEDULER_cancel (shutdown_task);
83     GNUNET_SCHEDULER_add_now (&normal_shutdown, NULL);
84   }
85
86   return GNUNET_OK;
87 }
88
89
90 static int
91 watch_2 (void *cls, const char *subsystem, const char *name, uint64_t value,
92          int is_persistent)
93 {
94   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received value `%s' `%s' %llu\n",
95       subsystem, name, value);
96
97   GNUNET_assert (0 == strcmp (name, "test-2"));
98   if ((42 == value) && (1 == ok2))
99   {
100     ok2 = 0;
101     if (0 == ok)
102     {
103       GNUNET_SCHEDULER_cancel (shutdown_task);
104       GNUNET_SCHEDULER_add_now (&normal_shutdown, NULL);
105     }
106   }
107   else
108   {
109     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Received unexpected value %llu\n", value);
110
111     GNUNET_break (0);
112     GNUNET_SCHEDULER_cancel (shutdown_task);
113     GNUNET_SCHEDULER_add_now (&normal_shutdown, NULL);
114   }
115
116   return GNUNET_OK;
117 }
118
119
120 static void
121 run (void *cls, char *const *args, const char *cfgfile,
122      const struct GNUNET_CONFIGURATION_Handle *cfg)
123 {
124   h = GNUNET_STATISTICS_create ("dummy", cfg);
125   h2 = GNUNET_STATISTICS_create ("dummy-2", cfg);
126   GNUNET_assert (GNUNET_OK ==
127                  GNUNET_STATISTICS_watch (h, "dummy",
128                                           "test-1", &watch_1, NULL));
129
130   GNUNET_assert (GNUNET_OK ==
131                  GNUNET_STATISTICS_watch (h2, "dummy-2",
132                                           "test-2", &watch_2, NULL));
133
134   /* Set initial value to 0 */
135   GNUNET_STATISTICS_set (h, "test-1", 0, GNUNET_NO);
136   GNUNET_STATISTICS_set (h2, "test-2", 42, GNUNET_NO);
137
138   shutdown_task =
139       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES, &force_shutdown,
140                                     NULL);
141 }
142
143
144 int
145 main (int argc, char *argv_ign[])
146 {
147   char *const argv[] = { "test-statistics-api",
148     "-c",
149     "test_statistics_api_data.conf",
150     NULL
151   };
152   struct GNUNET_GETOPT_CommandLineOption options[] = {
153     GNUNET_GETOPT_OPTION_END
154   };
155   struct GNUNET_OS_Process *proc;
156   char *binary;
157
158   binary = GNUNET_OS_get_libexec_binary_path ("gnunet-service-statistics");
159   proc =
160     GNUNET_OS_start_process (GNUNET_YES, GNUNET_OS_INHERIT_STD_OUT_AND_ERR, NULL, NULL,
161                              binary,
162                              "gnunet-service-statistics",
163                              "-c", "test_statistics_api_data.conf", NULL);
164   GNUNET_assert (NULL != proc);
165   ok = 3;
166   ok2 = 1;
167   GNUNET_PROGRAM_run (3, argv, "test-statistics-api", "nohelp", options, &run,
168                       NULL);
169   if (0 != GNUNET_OS_process_kill (proc, SIGTERM))
170   {
171     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
172     ok = 1;
173   }
174   GNUNET_OS_process_wait (proc);
175   GNUNET_OS_process_destroy (proc);
176   proc = NULL;
177   GNUNET_free (binary);
178   if ((0 == ok) && (0 == ok2))
179     return 0;
180   return 1;
181 }
182
183 /* end of test_statistics_api_watch_zero_value.c */