d91fe748baeb5f81c810675ba069ac12248308cc
[oweals/gnunet.git] / src / datastore / test_datastore_api_management.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2004, 2005, 2006, 2007, 2009, 2011 GNUnet e.V.
4
5      GNUnet is free software: you can redistribute it and/or modify it
6      under the terms of the GNU Affero General Public License as published
7      by the Free Software Foundation, either version 3 of the License,
8      or (at your 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      Affero General Public License for more details.
14
15      You should have received a copy of the GNU Affero General Public License
16      along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18      SPDX-License-Identifier: AGPL3.0-or-later
19 */
20 /*
21  * @file datastore/test_datastore_api_management.c
22  * @brief Test for the space management functions of the datastore implementation.
23  * @author Christian Grothoff
24  */
25 #include "platform.h"
26 #include "gnunet_util_lib.h"
27 #include "gnunet_protocols.h"
28 #include "gnunet_datastore_service.h"
29 #include "gnunet_datastore_plugin.h"
30 #include "gnunet_testing_lib.h"
31
32
33 /**
34  * How long until we give up on transmitting the message?
35  */
36 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
37
38 /**
39  * Number of iterations to run; must be large enough
40  * so that the quota will be exceeded!
41  */
42 #define ITERATIONS 5000
43
44 enum RunPhase
45 {
46   RP_PUT,
47   RP_GET,
48   RP_DONE,
49   RP_GET_FAIL
50 };
51
52
53 struct CpsRunContext
54 {
55   struct GNUNET_HashCode key;
56   int i;
57   int found;
58   const struct GNUNET_CONFIGURATION_Handle *cfg;
59   void *data;
60   enum RunPhase phase;
61 };
62
63
64 static struct GNUNET_DATASTORE_Handle *datastore;
65
66 static struct GNUNET_TIME_Absolute now;
67
68 static int ok;
69
70 static const char *plugin_name;
71
72
73 static size_t
74 get_size (int i)
75 {
76   return 8 + 8 * (i % 256);
77 }
78
79
80 static const void *
81 get_data (int i)
82 {
83   static char buf[60000];
84
85   memset (buf, i, 8 + 8 * (i % 256));
86   return buf;
87 }
88
89
90 static int
91 get_type (int i)
92 {
93   return 1;
94 }
95
96
97 static int
98 get_priority (int i)
99 {
100   return i + 1;
101 }
102
103
104 static int
105 get_anonymity (int i)
106 {
107   return i;
108 }
109
110
111 static struct GNUNET_TIME_Absolute
112 get_expiration (int i)
113 {
114   struct GNUNET_TIME_Absolute av;
115
116   av.abs_value_us = now.abs_value_us + i * 1000 * 1000LL;
117   return av;
118 }
119
120
121 static void
122 run_continuation (void *cls);
123
124
125 static void
126 check_success (void *cls, int success, struct GNUNET_TIME_Absolute min_expiration, const char *msg)
127 {
128   struct CpsRunContext *crc = cls;
129
130   if (GNUNET_OK != success)
131     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "%s\n", msg);
132   GNUNET_assert (GNUNET_OK == success);
133   GNUNET_free_non_null (crc->data);
134   crc->data = NULL;
135   GNUNET_SCHEDULER_add_now (&run_continuation, crc);
136 }
137
138
139 static void
140 check_value (void *cls,
141              const struct GNUNET_HashCode *key,
142              size_t size,
143              const void *data,
144              enum GNUNET_BLOCK_Type type,
145              uint32_t priority,
146              uint32_t anonymity,
147              uint32_t replication,
148              struct GNUNET_TIME_Absolute expiration,
149              uint64_t uid)
150 {
151   struct CpsRunContext *crc = cls;
152   int i;
153
154   if (NULL == key)
155   {
156     crc->phase = RP_GET_FAIL;
157     GNUNET_SCHEDULER_add_now (&run_continuation, crc);
158     return;
159   }
160   i = crc->i;
161   GNUNET_assert (size == get_size (i));
162   GNUNET_assert (0 == memcmp (data, get_data (i), size));
163   GNUNET_assert (type == get_type (i));
164   GNUNET_assert (priority == get_priority (i));
165   GNUNET_assert (anonymity == get_anonymity (i));
166   GNUNET_assert (expiration.abs_value_us == get_expiration (i).abs_value_us);
167   crc->i--;
168   if (crc->i == 0)
169     crc->phase = RP_DONE;
170   GNUNET_SCHEDULER_add_now (&run_continuation, crc);
171 }
172
173
174 static void
175 check_nothing (void *cls,
176                const struct GNUNET_HashCode *key,
177                size_t size,
178                const void *data,
179                enum GNUNET_BLOCK_Type type,
180                uint32_t priority,
181                uint32_t anonymity,
182                uint32_t replication,
183                struct GNUNET_TIME_Absolute expiration,
184                uint64_t uid)
185 {
186   struct CpsRunContext *crc = cls;
187
188   GNUNET_assert (key == NULL);
189   if (0 == --crc->i)
190     crc->phase = RP_DONE;
191   GNUNET_SCHEDULER_add_now (&run_continuation, crc);
192 }
193
194
195 static void
196 run_continuation (void *cls)
197 {
198   struct CpsRunContext *crc = cls;
199
200   ok = (int) crc->phase;
201   switch (crc->phase)
202   {
203   case RP_PUT:
204     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Executing `%s' number %u\n", "PUT",
205                 crc->i);
206     GNUNET_CRYPTO_hash (&crc->i, sizeof (int), &crc->key);
207     GNUNET_DATASTORE_put (datastore,
208                           0,
209                           &crc->key,
210                           get_size (crc->i),
211                           get_data (crc->i),
212                           get_type (crc->i),
213                           get_priority (crc->i),
214                           get_anonymity (crc->i),
215                           0,
216                           get_expiration (crc->i),
217                           1,
218                           1,
219                           &check_success, crc);
220     crc->i++;
221     if (crc->i == ITERATIONS)
222     {
223       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
224                   "Sleeping to give datastore time to clean up\n");
225       sleep (1);
226       crc->phase = RP_GET;
227       crc->i--;
228     }
229     break;
230   case RP_GET:
231     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Executing `%s' number %u\n", "GET",
232                 crc->i);
233     GNUNET_CRYPTO_hash (&crc->i, sizeof (int), &crc->key);
234     GNUNET_DATASTORE_get_key (datastore,
235                               0,
236                               false,
237                               &crc->key,
238                               get_type (crc->i),
239                               1,
240                               1,
241                               &check_value,
242                               crc);
243     break;
244   case RP_GET_FAIL:
245     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Executing `%s' number %u\n", "GET(f)",
246                 crc->i);
247     GNUNET_CRYPTO_hash (&crc->i, sizeof (int), &crc->key);
248     GNUNET_DATASTORE_get_key (datastore,
249                               0,
250                               false,
251                               &crc->key,
252                               get_type (crc->i),
253                               1,
254                               1,
255                               &check_nothing,
256                               crc);
257     break;
258   case RP_DONE:
259     GNUNET_assert (0 == crc->i);
260     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Finished, disconnecting\n");
261     GNUNET_DATASTORE_disconnect (datastore, GNUNET_YES);
262     GNUNET_free (crc);
263     ok = 0;
264   }
265 }
266
267
268 static void
269 run_tests (void *cls, int success, struct GNUNET_TIME_Absolute min_expiration, const char *msg)
270 {
271   struct CpsRunContext *crc = cls;
272
273   if (success != GNUNET_YES)
274   {
275     FPRINTF (stderr,
276              "Test 'put' operation failed with error `%s' database likely not setup, skipping test.\n",
277              msg);
278     GNUNET_DATASTORE_disconnect (datastore, GNUNET_YES);
279     GNUNET_free (crc);
280     return;
281   }
282   GNUNET_SCHEDULER_add_now (&run_continuation, crc);
283 }
284
285
286 static void
287 run (void *cls,
288      const struct GNUNET_CONFIGURATION_Handle *cfg,
289      struct GNUNET_TESTING_Peer *peer)
290 {
291   struct CpsRunContext *crc;
292   static struct GNUNET_HashCode zkey;
293
294   crc = GNUNET_new (struct CpsRunContext);
295   crc->cfg = cfg;
296   crc->phase = RP_PUT;
297   now = GNUNET_TIME_absolute_get ();
298   datastore = GNUNET_DATASTORE_connect (cfg);
299   if (NULL ==
300       GNUNET_DATASTORE_put (datastore,
301                             0,
302                             &zkey,
303                             4,
304                             "TEST",
305                             GNUNET_BLOCK_TYPE_TEST,
306                             0, 0, 0,
307                             GNUNET_TIME_relative_to_absolute (GNUNET_TIME_UNIT_SECONDS),
308                             0,
309                             1,
310                             &run_tests,
311                             crc))
312   {
313     FPRINTF (stderr, "%s",  "Test 'put' operation failed.\n");
314     GNUNET_free (crc);
315     ok = 1;
316   }
317 }
318
319
320 /**
321  * Function called when disk utilization changes, does nothing.
322  *
323  * @param cls closure
324  * @param delta change in utilization
325  */
326 static void
327 ignore_payload_cb (void *cls,
328                    int delta)
329 {
330   /* do nothing */
331 }
332
333
334 /**
335  * check if plugin is actually working
336  */
337 static int
338 test_plugin (const char *cfg_name)
339 {
340   char libname[PATH_MAX];
341   struct GNUNET_CONFIGURATION_Handle *cfg;
342   struct GNUNET_DATASTORE_PluginFunctions *api;
343   struct GNUNET_DATASTORE_PluginEnvironment env;
344
345   cfg = GNUNET_CONFIGURATION_create ();
346   if (GNUNET_OK !=
347       GNUNET_CONFIGURATION_load (cfg,
348                                  cfg_name))
349   {
350     GNUNET_CONFIGURATION_destroy (cfg);
351     fprintf (stderr,
352              "Failed to load configuration %s\n",
353              cfg_name);
354     return 1;
355   }
356   memset (&env, 0, sizeof (env));
357   env.cfg = cfg;
358   env.duc = &ignore_payload_cb;
359   GNUNET_snprintf (libname,
360                    sizeof (libname),
361                    "libgnunet_plugin_datastore_%s",
362                    plugin_name);
363   api = GNUNET_PLUGIN_load (libname, &env);
364   if (NULL == api)
365   {
366     GNUNET_CONFIGURATION_destroy (cfg);
367     fprintf (stderr,
368              "Failed to load plugin `%s'\n",
369              libname);
370     return 77;
371   }
372   GNUNET_PLUGIN_unload (libname, api);
373   GNUNET_CONFIGURATION_destroy (cfg);
374   return 0;
375 }
376
377
378 int
379 main (int argc, char *argv[])
380 {
381   char cfg_name[PATH_MAX];
382   int ret;
383
384   plugin_name = GNUNET_TESTING_get_testname_from_underscore (argv[0]);
385   GNUNET_snprintf (cfg_name,
386                    sizeof (cfg_name),
387                    "test_datastore_api_data_%s.conf",
388                    plugin_name);
389   ret = test_plugin (cfg_name);
390   if (0 != ret)
391     return ret;
392   if (0 !=
393       GNUNET_TESTING_peer_run ("test-gnunet-datastore-management",
394                                cfg_name,
395                                &run,
396                                NULL))
397     return 1;
398   return ok;
399 }
400
401 /* end of test_datastore_api_management.c */