-fix non-deterministic peerstore sync failure
[oweals/gnunet.git] / src / peerstore / test_peerstore_api_iterate.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C)
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20 /**
21  * @file peerstore/test_peerstore_api_iterate.c
22  * @brief testcase for peerstore iteration operation
23  */
24 #include "platform.h"
25 #include "gnunet_util_lib.h"
26 #include "gnunet_testing_lib.h"
27 #include "gnunet_peerstore_service.h"
28
29 static int ok = 1;
30
31 static struct GNUNET_PEERSTORE_Handle *h;
32
33 static char *ss = "test_peerstore_api_iterate";
34 static struct GNUNET_PeerIdentity p1;
35 static struct GNUNET_PeerIdentity p2;
36 static char *k1 = "test_peerstore_api_iterate_key1";
37 static char *k2 = "test_peerstore_api_iterate_key2";
38 static char *k3 = "test_peerstore_api_iterate_key3";
39 static char *val = "test_peerstore_api_iterate_val";
40 static int count = 0;
41
42
43 static int
44 iter3_cb (void *cls, const struct GNUNET_PEERSTORE_Record *record,
45           const char *emsg)
46 {
47   if (NULL != emsg)
48     return GNUNET_NO;
49   if (NULL != record)
50   {
51     count++;
52     return GNUNET_YES;
53   }
54   GNUNET_assert (count == 3);
55   ok = 0;
56   GNUNET_PEERSTORE_disconnect (h, GNUNET_NO);
57   GNUNET_SCHEDULER_shutdown ();
58   return GNUNET_YES;
59 }
60
61
62 static int
63 iter2_cb (void *cls, const struct GNUNET_PEERSTORE_Record *record,
64           const char *emsg)
65 {
66   if (NULL != emsg)
67     return GNUNET_NO;
68   if (NULL != record)
69   {
70     count++;
71     return GNUNET_YES;
72   }
73   GNUNET_assert (count == 2);
74   count = 0;
75   GNUNET_PEERSTORE_iterate (h, ss, NULL, NULL, GNUNET_TIME_UNIT_FOREVER_REL,
76                             iter3_cb, NULL);
77   return GNUNET_YES;
78 }
79
80
81 static int
82 iter1_cb (void *cls, const struct GNUNET_PEERSTORE_Record *record,
83           const char *emsg)
84 {
85   if (NULL != emsg)
86     return GNUNET_NO;
87   if (NULL != record)
88   {
89     count++;
90     return GNUNET_YES;
91   }
92   GNUNET_assert (count == 1);
93   count = 0;
94   GNUNET_PEERSTORE_iterate (h, ss, &p1, NULL, GNUNET_TIME_UNIT_FOREVER_REL,
95                             iter2_cb, NULL);
96   return GNUNET_YES;
97 }
98
99
100 static void
101 run (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg,
102      struct GNUNET_TESTING_Peer *peer)
103 {
104   h = GNUNET_PEERSTORE_connect (cfg);
105   GNUNET_assert (NULL != h);
106   memset (&p1, 1, sizeof (p1));
107   memset (&p2, 2, sizeof (p2));
108   GNUNET_PEERSTORE_store (h, ss, &p1, k1, val, strlen (val) + 1,
109                           GNUNET_TIME_UNIT_FOREVER_ABS,
110                           GNUNET_PEERSTORE_STOREOPTION_REPLACE, NULL, NULL);
111   GNUNET_PEERSTORE_store (h, ss, &p1, k2, val, strlen (val) + 1,
112                           GNUNET_TIME_UNIT_FOREVER_ABS,
113                           GNUNET_PEERSTORE_STOREOPTION_REPLACE, NULL, NULL);
114   GNUNET_PEERSTORE_store (h, ss, &p2, k3, val, strlen (val) + 1,
115                           GNUNET_TIME_UNIT_FOREVER_ABS,
116                           GNUNET_PEERSTORE_STOREOPTION_REPLACE, NULL, NULL);
117   GNUNET_PEERSTORE_iterate (h, ss, &p1, k1, GNUNET_TIME_UNIT_FOREVER_REL,
118                             iter1_cb, NULL);
119 }
120
121
122 int
123 main (int argc, char *argv[])
124 {
125   if (0 !=
126       GNUNET_TESTING_service_run ("test-gnunet-peerstore", "peerstore",
127                                   "test_peerstore_api_data.conf", &run, NULL))
128     return 1;
129   return ok;
130 }
131
132 /* end of test_peerstore_api_iterate.c */