psycstore: use GNUNET_assert()
[oweals/gnunet.git] / src / psycstore / test_plugin_psycstore.c
1 /*
2  * This file is part of GNUnet
3  * (C) 2013 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 /*
22  * @file psycstore/test_plugin_psycstore.c
23  * @brief Test for the PSYCstore plugins.
24  * @author Gabor X Toth
25  * @author Christian Grothoff
26  */
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_testing_lib.h"
30 #include "gnunet_psycstore_plugin.h"
31 #include "gnunet_psycstore_service.h"
32 #include "gnunet_multicast_service.h"
33
34 #define DEBUG_PSYCSTORE GNUNET_EXTRA_LOGGING
35 #if DEBUG_PSYCSTORE
36 # define LOG_LEVEL "DEBUG"
37 #else
38 # define LOG_LEVEL "WARNING"
39 #endif
40
41 #define C2ARG(str) str, (sizeof (str) - 1)
42
43 #define LOG(kind,...)                                                          \
44   GNUNET_log_from (kind, "test-plugin-psycstore", __VA_ARGS__)
45
46 static int ok;
47
48 /**
49  * Name of plugin under test.
50  */
51 static const char *plugin_name;
52
53 static struct GNUNET_CRYPTO_EccPrivateKey *channel_key;
54 static struct GNUNET_CRYPTO_EccPrivateKey *slave_key;
55
56 static struct GNUNET_CRYPTO_EccPublicSignKey channel_pub_key;
57 static struct GNUNET_CRYPTO_EccPublicSignKey slave_pub_key;
58
59 /**
60  * Function called when the service shuts down.  Unloads our psycstore
61  * plugin.
62  *
63  * @param api api to unload
64  */
65 static void
66 unload_plugin (struct GNUNET_PSYCSTORE_PluginFunctions *api)
67 {
68   char *libname;
69
70   GNUNET_asprintf (&libname, "libgnunet_plugin_psycstore_%s", plugin_name);
71   GNUNET_break (NULL == GNUNET_PLUGIN_unload (libname, api));
72   GNUNET_free (libname);
73 }
74
75
76 /**
77  * Load the psycstore plugin.
78  *
79  * @param cfg configuration to pass
80  * @return NULL on error
81  */
82 static struct GNUNET_PSYCSTORE_PluginFunctions *
83 load_plugin (const struct GNUNET_CONFIGURATION_Handle *cfg)
84 {
85   struct GNUNET_PSYCSTORE_PluginFunctions *ret;
86   char *libname;
87
88   GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Loading `%s' psycstore plugin\n"),
89               plugin_name);
90   GNUNET_asprintf (&libname, "libgnunet_plugin_psycstore_%s", plugin_name);
91   if (NULL == (ret = GNUNET_PLUGIN_load (libname, (void*) cfg)))
92   {
93     FPRINTF (stderr, "Failed to load plugin `%s'!\n", plugin_name);
94     return NULL;
95   }
96   GNUNET_free (libname);
97   return ret;
98 }
99
100
101 struct FragmentClosure
102 {
103   uint8_t n;
104   uint64_t flags[16];
105   struct GNUNET_MULTICAST_MessageHeader *msg[16];
106 };
107
108 static int
109 fragment_cb (void *cls, struct GNUNET_MULTICAST_MessageHeader *msg2,
110              enum GNUNET_PSYCSTORE_MessageFlags flags)
111 {
112   struct FragmentClosure *fcls = cls;
113   struct GNUNET_MULTICAST_MessageHeader *msg1 = fcls->msg[fcls->n];
114   uint64_t flags1 = fcls->flags[fcls->n++];
115   int ret;
116
117   if (flags1 == flags && msg1->header.size == msg2->header.size
118       && 0 == memcmp (msg1, msg2, ntohs (msg1->header.size)))
119   {
120     LOG (GNUNET_ERROR_TYPE_DEBUG, "Fragment %llu matches\n",
121          GNUNET_ntohll (msg1->fragment_id));
122     ret = GNUNET_YES;
123   }
124   else
125   {
126     LOG (GNUNET_ERROR_TYPE_ERROR, "Fragment %llu differs\n",
127          GNUNET_ntohll (msg1->fragment_id));
128     ret = GNUNET_SYSERR;
129   }
130
131   GNUNET_free (msg2);
132   return ret;
133 }
134
135
136 struct StateClosure {
137   size_t n;
138   char *name[16];
139   void *value[16];
140   size_t value_size[16];
141 };
142
143 static int
144 state_cb (void *cls, const char *name, const void *value, size_t value_size)
145 {
146   struct StateClosure *scls = cls;
147   const void *val = scls->value[scls->n];
148   size_t val_size = scls->value_size[scls->n++];
149
150   /* FIXME: check name */
151
152   return value_size == val_size && 0 == memcmp (value, val, val_size)
153     ? GNUNET_YES
154     : GNUNET_SYSERR;
155 }
156
157
158 static void
159 run (void *cls, char *const *args, const char *cfgfile,
160      const struct GNUNET_CONFIGURATION_Handle *cfg)
161 {
162   struct GNUNET_PSYCSTORE_PluginFunctions *db;
163
164   ok = 1;
165   db = load_plugin (cfg);
166   if (NULL == db)
167   {
168     FPRINTF (stderr,
169              "%s",
170              "Failed to initialize PSYCstore.  "
171              "Database likely not setup, skipping test.\n");
172     return;
173   }
174
175   /* Store & test membership */
176
177   channel_key = GNUNET_CRYPTO_ecc_key_create ();
178   slave_key = GNUNET_CRYPTO_ecc_key_create ();
179
180   GNUNET_CRYPTO_ecc_key_get_public_for_signature (channel_key,
181                                                   &channel_pub_key);
182   GNUNET_CRYPTO_ecc_key_get_public_for_signature (slave_key, &slave_pub_key);
183
184   GNUNET_assert (GNUNET_OK == db->membership_store (db->cls, &channel_pub_key,
185                                                     &slave_pub_key, GNUNET_YES,
186                                                     4, 2, 1));
187
188   GNUNET_assert (GNUNET_YES == db->membership_test (db->cls, &channel_pub_key,
189                                                     &slave_pub_key, 4));
190
191   GNUNET_assert (GNUNET_YES == db->membership_test (db->cls, &channel_pub_key,
192                                                     &slave_pub_key, 2));
193
194   GNUNET_assert (GNUNET_NO == db->membership_test (db->cls, &channel_pub_key,
195                                                    &slave_pub_key, 1));
196
197
198   /* Store & get messages */
199
200   struct GNUNET_MULTICAST_MessageHeader *msg
201     = GNUNET_malloc (sizeof (*msg) + sizeof (channel_pub_key));
202   GNUNET_assert (msg != NULL);
203
204   msg->header.type = htons (GNUNET_MESSAGE_TYPE_MULTICAST_MESSAGE);
205   msg->header.size = htons (sizeof (*msg) + sizeof (channel_pub_key));
206
207   msg->hop_counter = htonl (9);
208   msg->fragment_id = GNUNET_htonll (INT64_MAX - 1);
209   msg->fragment_offset = GNUNET_htonll (0);
210   msg->message_id = GNUNET_htonll (INT64_MAX - 10);
211   msg->group_generation = GNUNET_htonll (INT64_MAX - 3);
212   msg->flags = htonl (GNUNET_MULTICAST_MESSAGE_LAST_FRAGMENT);
213
214   memcpy (&msg[1], &channel_pub_key, sizeof (channel_pub_key));
215
216   msg->purpose.size = htonl (ntohs (msg->header.size)
217                              - sizeof (msg->header)
218                              - sizeof (msg->hop_counter)
219                              - sizeof (msg->signature));
220   msg->purpose.purpose = htonl (234);
221   GNUNET_CRYPTO_ecc_sign (slave_key, &msg->purpose, &msg->signature);
222
223   struct FragmentClosure fcls = { 0 };
224   fcls.n = 0;
225   fcls.msg[0] = msg;
226   fcls.flags[0] = GNUNET_PSYCSTORE_MESSAGE_STATE;
227
228   GNUNET_assert (GNUNET_OK == db->fragment_store (db->cls, &channel_pub_key, msg,
229                                            fcls.flags[0]));
230
231   GNUNET_assert (GNUNET_OK == db->fragment_get (db->cls, &channel_pub_key,
232                                          GNUNET_ntohll (msg->fragment_id),
233                                          fragment_cb, &fcls));
234   GNUNET_assert (fcls.n == 1);
235
236   fcls.n = 0;
237
238   GNUNET_assert (
239     GNUNET_OK == db->message_get_fragment (db->cls, &channel_pub_key,
240                                            GNUNET_ntohll (msg->message_id),
241                                            GNUNET_ntohll (msg->fragment_offset),
242                                            fragment_cb, &fcls));
243   GNUNET_assert (fcls.n == 1);
244
245   GNUNET_assert (
246     GNUNET_OK == db->message_add_flags (db->cls, &channel_pub_key,
247                                         GNUNET_ntohll (msg->message_id),
248                                         GNUNET_PSYCSTORE_MESSAGE_STATE_APPLIED));
249
250   fcls.n = 0;
251   fcls.flags[0] |= GNUNET_PSYCSTORE_MESSAGE_STATE_APPLIED;
252
253   GNUNET_assert (GNUNET_OK == db->fragment_get (db->cls, &channel_pub_key,
254                                                 GNUNET_ntohll (msg->fragment_id),
255                                                 fragment_cb, &fcls));
256   GNUNET_assert (fcls.n == 1);
257
258   struct GNUNET_MULTICAST_MessageHeader *msg1
259     = GNUNET_malloc (sizeof (*msg1) + sizeof (channel_pub_key));
260
261   memcpy (msg1, msg, sizeof (*msg1) + sizeof (channel_pub_key));
262
263   msg1->fragment_id = GNUNET_htonll (INT64_MAX);
264   msg1->fragment_offset = GNUNET_htonll (32768);
265
266   fcls.n = 0;
267   fcls.msg[1] = msg1;
268   fcls.flags[1] = GNUNET_PSYCSTORE_MESSAGE_STATE_HASH;
269
270   GNUNET_assert (GNUNET_OK == db->fragment_store (db->cls, &channel_pub_key, msg1,
271                                                   fcls.flags[1]));
272
273   uint64_t retfrags = 0;
274   GNUNET_assert (GNUNET_OK == db->message_get (db->cls, &channel_pub_key,
275                                                GNUNET_ntohll (msg->message_id),
276                                                &retfrags, fragment_cb, &fcls));
277   GNUNET_assert (fcls.n == 2 && retfrags == 2);
278
279   /* Master counters */
280
281   uint64_t fragment_id = 0, message_id = 0, group_generation = 0;
282   GNUNET_assert (
283     GNUNET_OK == db->counters_get_master (db->cls, &channel_pub_key,
284                                           &fragment_id, &message_id,
285                                           &group_generation)
286     && fragment_id == GNUNET_ntohll (msg1->fragment_id)
287     && message_id == GNUNET_ntohll (msg1->message_id)
288     && group_generation == GNUNET_ntohll (msg1->group_generation));
289
290   /* Modify state */
291
292   message_id = GNUNET_ntohll (fcls.msg[0]->message_id) + 1;
293   GNUNET_assert (GNUNET_OK == db->state_modify_begin (db->cls, &channel_pub_key,
294                                                       message_id, 1));
295
296   GNUNET_assert (GNUNET_OK == db->state_modify_set (db->cls, &channel_pub_key,
297                                                     "_foo",
298                                                     C2ARG("one two three")));
299
300   GNUNET_assert (GNUNET_OK == db->state_modify_set (db->cls, &channel_pub_key,
301                                                     "_foo_bar", slave_key,
302                                                     sizeof (*slave_key)));
303
304   GNUNET_assert (GNUNET_OK == db->state_modify_end (db->cls, &channel_pub_key,
305                                                     message_id));
306
307   struct StateClosure scls = { 0 };
308   scls.n = 0;
309   scls.value[0] = "one two three";
310   scls.value_size[0] = strlen ("one two three");
311
312   GNUNET_assert (GNUNET_OK == db->state_get (db->cls, &channel_pub_key, "_foo",
313                                              state_cb, &scls));
314   GNUNET_assert (scls.n == 1);
315
316   scls.n = 0;
317   scls.value[1] = slave_key;
318   scls.value_size[1] = sizeof (*slave_key);
319
320   GNUNET_assert (GNUNET_OK == db->state_get_prefix (db->cls, &channel_pub_key,
321                                                     "_foo", state_cb, &scls));
322   GNUNET_assert (scls.n == 2);
323
324   scls.n = 0;
325   GNUNET_assert (GNUNET_NO == db->state_get_signed (db->cls, &channel_pub_key,
326                                                     state_cb, &scls));
327   GNUNET_assert (scls.n == 0);
328
329   GNUNET_assert (GNUNET_OK == db->state_update_signed (db->cls,
330                                                        &channel_pub_key));
331
332   scls.n = 0;
333   GNUNET_assert (GNUNET_YES == db->state_get_signed (db->cls, &channel_pub_key,
334                                                      state_cb, &scls));
335   GNUNET_assert (scls.n == 2);
336
337   /* Slave counters */
338
339   uint64_t max_state_msg_id = 0;
340   GNUNET_assert (GNUNET_OK == db->counters_get_slave (db->cls, &channel_pub_key,
341                                                &max_state_msg_id)
342           && max_state_msg_id == message_id);
343
344   /* State sync */
345
346   scls.n = 0;
347   scls.value[0] = channel_key;
348   scls.value_size[0] = sizeof (*channel_key);
349   scls.value[1] = "three two one";
350   scls.value_size[1] = strlen ("three two one");
351
352   GNUNET_assert (GNUNET_OK == db->state_sync_begin (db->cls, &channel_pub_key));
353
354   GNUNET_assert (GNUNET_OK == db->state_sync_set (db->cls, &channel_pub_key,
355                                                   "_sync_bar", scls.value[0],
356                                                   scls.value_size[0]));
357
358   GNUNET_assert (GNUNET_OK == db->state_sync_set (db->cls, &channel_pub_key,
359                                                   "_sync_foo", scls.value[1],
360                                                   scls.value_size[1]));
361
362   GNUNET_assert (GNUNET_OK == db->state_sync_end (db->cls, &channel_pub_key,
363                                                   INT64_MAX - 5));
364
365   GNUNET_assert (GNUNET_NO == db->state_get_prefix (db->cls, &channel_pub_key,
366                                                     "_foo", state_cb, &scls));
367   GNUNET_assert (scls.n == 0);
368
369   GNUNET_assert (GNUNET_OK == db->state_get_prefix (db->cls, &channel_pub_key,
370                                                     "_sync", state_cb, &scls));
371   GNUNET_assert (scls.n == 2);
372
373   scls.n = 0;
374   GNUNET_assert (GNUNET_OK == db->state_get_signed (db->cls, &channel_pub_key,
375                                                     state_cb, &scls));
376   GNUNET_assert (scls.n == 2);
377
378   /* Modify state after sync */
379
380   message_id = GNUNET_ntohll (fcls.msg[0]->message_id) + 6;
381   GNUNET_assert (GNUNET_OK == db->state_modify_begin (db->cls, &channel_pub_key,
382                                                       message_id, 3));
383
384   GNUNET_assert (GNUNET_OK == db->state_modify_set (db->cls, &channel_pub_key,
385                                                     "_sync_foo",
386                                                     C2ARG("five six seven")));
387
388   GNUNET_assert (GNUNET_OK == db->state_modify_end (db->cls, &channel_pub_key,
389                                                     message_id));
390
391   /* Reset state */
392
393   scls.n = 0;
394   GNUNET_assert (GNUNET_OK == db->state_reset (db->cls, &channel_pub_key));
395   GNUNET_assert (scls.n == 0);
396
397   ok = 0;
398
399   if (NULL != channel_key)
400   {
401     GNUNET_free (channel_key);
402     channel_key = NULL;
403   }
404   if (NULL != slave_key)
405   {
406     GNUNET_free (slave_key);
407     slave_key = NULL;
408   }
409
410   unload_plugin (db);
411 }
412
413
414 int
415 main (int argc, char *argv[])
416 {
417   char cfg_name[128];
418   char *const xargv[] = {
419     "test-plugin-psycstore",
420     "-c", cfg_name,
421     "-L", LOG_LEVEL,
422     NULL
423   };
424   struct GNUNET_GETOPT_CommandLineOption options[] = {
425     GNUNET_GETOPT_OPTION_END
426   };
427   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-plugin-psycstore-sqlite");
428   GNUNET_log_setup ("test-plugin-psycstore", LOG_LEVEL, NULL);
429   plugin_name = GNUNET_TESTING_get_testname_from_underscore (argv[0]);
430   GNUNET_snprintf (cfg_name, sizeof (cfg_name), "test_plugin_psycstore_%s.conf",
431                    plugin_name);
432   GNUNET_PROGRAM_run ((sizeof (xargv) / sizeof (char *)) - 1, xargv,
433                       "test-plugin-psycstore", "nohelp", options, &run, NULL);
434
435   if (ok != 0)
436     FPRINTF (stderr, "Missed some testcases: %d\n", ok);
437
438 #if ! DEBUG_PSYCSTORE
439   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-plugin-psycstore-sqlite");
440 #endif
441
442   return ok;
443 }
444
445 /* end of test_plugin_psycstore.c */