reduce loop counters to more practical levels
[oweals/gnunet.git] / src / namestore / test_namestore_api_lookup_shadow.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2012 GNUnet e.V.
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 namestore/test_namestore_api_lookup_shadow.c
22  * @brief testcase for namestore_api.c: store a shadow record and perform a lookup
23  * test passes if test returns the record but without the shadow flag since no
24  * other valid record is available
25  */
26 #include "platform.h"
27 #include "gnunet_namecache_service.h"
28 #include "gnunet_namestore_service.h"
29 #include "gnunet_testing_lib.h"
30
31 #define TEST_RECORD_TYPE 1234
32
33 #define TEST_RECORD_DATALEN 123
34
35 #define TEST_RECORD_DATA 'a'
36
37 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
38
39
40 static struct GNUNET_NAMESTORE_Handle *nsh;
41
42 static struct GNUNET_NAMECACHE_Handle *nch;
43
44 static struct GNUNET_SCHEDULER_Task * endbadly_task;
45
46 static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey;
47
48 static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
49
50 static int res;
51
52 static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
53
54 static struct GNUNET_NAMECACHE_QueueEntry *ncqe;
55
56
57 static void
58 cleanup ()
59 {
60   if (NULL != nsh)
61   {
62     GNUNET_NAMESTORE_disconnect (nsh);
63     nsh = NULL;
64   }
65   if (NULL != nch)
66   {
67     GNUNET_NAMECACHE_disconnect (nch);
68     nch = NULL;
69   }
70   if (NULL != privkey)
71   {
72     GNUNET_free (privkey);
73     privkey = NULL;
74   }
75   GNUNET_SCHEDULER_shutdown ();
76 }
77
78
79 /**
80  * Re-establish the connection to the service.
81  *
82  * @param cls handle to use to re-connect.
83  */
84 static void
85 endbadly (void *cls)
86 {
87   if (NULL != nsqe)
88   {
89     GNUNET_NAMESTORE_cancel (nsqe);
90     nsqe = NULL;
91   }
92   if (NULL != ncqe)
93   {
94     GNUNET_NAMECACHE_cancel (ncqe);
95     ncqe = NULL;
96   }
97   cleanup ();
98   res = 1;
99 }
100
101
102 static void
103 end (void *cls)
104 {
105   cleanup ();
106   res = 0;
107 }
108
109
110 static void
111 rd_decrypt_cb (void *cls,
112                unsigned int rd_count,
113                const struct GNUNET_GNSRECORD_Data *rd)
114 {
115   char rd_cmp_data[TEST_RECORD_DATALEN];
116
117   if (1 != rd_count)
118   {
119     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
120     GNUNET_break (0);
121     return;
122   }
123   if (NULL == rd)
124   {
125     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
126     GNUNET_break (0);
127     return;
128   }
129   memset (rd_cmp_data, 'a', TEST_RECORD_DATALEN);
130
131   if (TEST_RECORD_TYPE != rd[0].record_type)
132   {
133     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
134     GNUNET_break (0);
135     return;
136   }
137   if (TEST_RECORD_DATALEN != rd[0].data_size)
138   {
139     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
140     GNUNET_break (0);
141     return;
142   }
143   if (0 != memcmp (&rd_cmp_data, rd[0].data, TEST_RECORD_DATALEN))
144   {
145     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
146     GNUNET_break (0);
147     return;
148   }
149   if (0 != (GNUNET_GNSRECORD_RF_SHADOW_RECORD & rd[0].flags))
150   {
151     GNUNET_SCHEDULER_add_now (&endbadly, NULL);
152     GNUNET_break (0);
153     return;
154   }
155
156   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
157               "Block was decrypted successfully \n");
158
159         GNUNET_SCHEDULER_add_now (&end, NULL);
160 }
161
162
163 static void
164 name_lookup_proc (void *cls,
165                   const struct GNUNET_GNSRECORD_Block *block)
166 {
167   const char *name = cls;
168
169   ncqe = NULL;
170   GNUNET_assert (NULL != cls);
171
172   if (endbadly_task != NULL)
173   {
174     GNUNET_SCHEDULER_cancel (endbadly_task);
175     endbadly_task = NULL;
176   }
177
178   if (NULL == block)
179   {
180     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
181               _("Namestore returned no block\n"));
182     if (endbadly_task != NULL)
183       GNUNET_SCHEDULER_cancel (endbadly_task);
184     endbadly_task =  GNUNET_SCHEDULER_add_now (&endbadly, NULL);
185     return;
186   }
187
188   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
189               "Namestore returned block, decrypting \n");
190   GNUNET_assert (GNUNET_OK == GNUNET_GNSRECORD_block_decrypt(block,
191                 &pubkey, name, &rd_decrypt_cb, (void *) name));
192 }
193
194
195 static void
196 put_cont (void *cls, int32_t success, const char *emsg)
197 {
198   const char *name = cls;
199   struct GNUNET_HashCode derived_hash;
200   struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
201
202   nsqe = NULL;
203   GNUNET_assert (NULL != cls);
204   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
205               "Name store added record for `%s': %s\n",
206               name,
207               (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
208
209   /* Create derived hash */
210   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
211   GNUNET_GNSRECORD_query_from_public_key (&pubkey, name, &derived_hash);
212
213   ncqe = GNUNET_NAMECACHE_lookup_block (nch, &derived_hash,
214                                         &name_lookup_proc, (void *) name);
215 }
216
217
218 static void
219 run (void *cls,
220      const struct GNUNET_CONFIGURATION_Handle *cfg,
221      struct GNUNET_TESTING_Peer *peer)
222 {
223   struct GNUNET_GNSRECORD_Data rd;
224   const char * name = "dummy.dummy.gnunet";
225
226   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
227                                                 &endbadly,
228                                                 NULL);
229   privkey = GNUNET_CRYPTO_ecdsa_key_create ();
230   GNUNET_assert (privkey != NULL);
231   GNUNET_CRYPTO_ecdsa_key_get_public (privkey,
232                                       &pubkey);
233   rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us + 1000000000;
234   rd.record_type = TEST_RECORD_TYPE;
235   rd.data_size = TEST_RECORD_DATALEN;
236   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
237   rd.flags = GNUNET_GNSRECORD_RF_SHADOW_RECORD;
238   memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
239
240   nsh = GNUNET_NAMESTORE_connect (cfg);
241   nch = GNUNET_NAMECACHE_connect (cfg);
242   GNUNET_break (NULL != nsh);
243   GNUNET_break (NULL != nch);
244   nsqe = GNUNET_NAMESTORE_records_store (nsh,
245                                          privkey,
246                                          name,
247                                          1,
248                                          &rd,
249                                          &put_cont,
250                                          (void *) name);
251   if (NULL == nsqe)
252   {
253     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
254               _("Namestore cannot store no block\n"));
255   }
256   GNUNET_free ((void *)rd.data);
257 }
258
259
260 int
261 main (int argc, char *argv[])
262 {
263   const char *plugin_name;
264   char *cfg_name;
265
266   plugin_name = GNUNET_TESTING_get_testname_from_underscore (argv[0]);
267   GNUNET_asprintf (&cfg_name,
268                    "test_namestore_api_%s.conf",
269                    plugin_name);
270   GNUNET_DISK_purge_cfg_dir (cfg_name,
271                              "GNUNET_TEST_HOME");
272   res = 1;
273   if (0 !=
274       GNUNET_TESTING_peer_run ("test-namestore-api-lookup-shadow",
275                                cfg_name,
276                                &run,
277                                NULL))
278   {
279     res = 1;
280   }
281   GNUNET_free (cfg_name);
282   GNUNET_DISK_purge_cfg_dir (cfg_name,
283                              "GNUNET_TEST_HOME");
284   return res;
285 }
286
287
288 /* end of test_namestore_api_lookup_shadow.c */