Make process_log more generic
[oweals/gnunet.git] / src / peerstore / test_peerstore_api_iterate.c
1 /*
2      This file is part of GNUnet.
3      (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., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, 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 static int
43 iter3_cb (void *cls, struct GNUNET_PEERSTORE_Record *record, char *emsg)
44 {
45   if (NULL != emsg)
46     return GNUNET_NO;
47   if (NULL != record)
48   {
49     count++;
50     return GNUNET_YES;
51   }
52   GNUNET_assert (count == 3);
53   ok = 0;
54   GNUNET_PEERSTORE_disconnect (h, GNUNET_NO);
55   GNUNET_SCHEDULER_shutdown ();
56   return GNUNET_YES;
57 }
58
59
60 static int
61 iter2_cb (void *cls, struct GNUNET_PEERSTORE_Record *record, char *emsg)
62 {
63   if (NULL != emsg)
64     return GNUNET_NO;
65   if (NULL != record)
66   {
67     count++;
68     return GNUNET_YES;
69   }
70   GNUNET_assert (count == 2);
71   count = 0;
72   GNUNET_PEERSTORE_iterate (h, ss, NULL, NULL, GNUNET_TIME_UNIT_FOREVER_REL,
73                             iter3_cb, NULL);
74   return GNUNET_YES;
75 }
76
77
78 static int
79 iter1_cb (void *cls, struct GNUNET_PEERSTORE_Record *record, char *emsg)
80 {
81   if (NULL != emsg)
82     return GNUNET_NO;
83   if (NULL != record)
84   {
85     count++;
86     return GNUNET_YES;
87   }
88   GNUNET_assert (count == 1);
89   count = 0;
90   GNUNET_PEERSTORE_iterate (h, ss, &p1, NULL, GNUNET_TIME_UNIT_FOREVER_REL,
91                             iter2_cb, NULL);
92   return GNUNET_YES;
93 }
94
95
96 static void
97 run (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg,
98      struct GNUNET_TESTING_Peer *peer)
99 {
100   h = GNUNET_PEERSTORE_connect (cfg);
101   GNUNET_assert (NULL != h);
102   memset (&p1, 1, sizeof (p1));
103   memset (&p2, 2, sizeof (p2));
104   GNUNET_PEERSTORE_store (h, ss, &p1, k1, val, strlen (val) + 1,
105                           GNUNET_TIME_UNIT_FOREVER_ABS,
106                           GNUNET_PEERSTORE_STOREOPTION_REPLACE, NULL, NULL);
107   GNUNET_PEERSTORE_store (h, ss, &p1, k2, val, strlen (val) + 1,
108                           GNUNET_TIME_UNIT_FOREVER_ABS,
109                           GNUNET_PEERSTORE_STOREOPTION_REPLACE, NULL, NULL);
110   GNUNET_PEERSTORE_store (h, ss, &p2, k3, val, strlen (val) + 1,
111                           GNUNET_TIME_UNIT_FOREVER_ABS,
112                           GNUNET_PEERSTORE_STOREOPTION_REPLACE, NULL, NULL);
113   GNUNET_PEERSTORE_iterate (h, ss, &p1, k1, GNUNET_TIME_UNIT_FOREVER_REL,
114                             iter1_cb, NULL);
115 }
116
117
118 int
119 main (int argc, char *argv[])
120 {
121   if (0 !=
122       GNUNET_TESTING_service_run ("test-gnunet-peerstore", "peerstore",
123                                   "test_peerstore_api_data.conf", &run, NULL))
124     return 1;
125   return ok;
126 }
127
128 /* end of test_peerstore_api_iterate.c */