added lookup test + fix in test
[oweals/gnunet.git] / src / namestore / test_namestore_api_zone_iteration_specific_zone.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  * @file namestore/test_namestore_api_zone_iteration_specific_zone.c
22  * @brief testcase for zone iteration functionality: iterate over a specific zone
23  */
24 #include "platform.h"
25 #include "gnunet_namestore_service.h"
26 #include "gnunet_testing_lib.h"
27 #include "namestore.h"
28
29
30 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
31
32
33 static struct GNUNET_NAMESTORE_Handle * nsh;
34
35 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
36
37 static struct GNUNET_CRYPTO_EcdsaPrivateKey * privkey;
38
39 static struct GNUNET_CRYPTO_EcdsaPrivateKey * privkey2;
40
41 static struct GNUNET_NAMESTORE_ZoneIterator *zi;
42
43 static int res;
44
45 static int returned_records;
46
47 static char * s_name_1;
48
49 static struct GNUNET_GNSRECORD_Data *s_rd_1;
50
51 static char * s_name_2;
52
53 static struct GNUNET_GNSRECORD_Data *s_rd_2;
54
55 static char * s_name_3;
56
57 static struct GNUNET_GNSRECORD_Data *s_rd_3;
58
59
60 /**
61  * Re-establish the connection to the service.
62  *
63  * @param cls handle to use to re-connect.
64  * @param tc scheduler context
65  */
66 static void
67 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
68 {
69         if (NULL != zi)
70         {
71                 GNUNET_NAMESTORE_zone_iteration_stop (zi);
72                 zi = NULL;
73         }
74
75   if (nsh != NULL)
76     GNUNET_NAMESTORE_disconnect (nsh);
77   nsh = NULL;
78
79   GNUNET_free_non_null(s_name_1);
80   GNUNET_free_non_null(s_name_2);
81   GNUNET_free_non_null(s_name_3);
82
83   if (s_rd_1 != NULL)
84   {
85     GNUNET_free ((void *)s_rd_1->data);
86     GNUNET_free (s_rd_1);
87   }
88   if (s_rd_2 != NULL)
89   {
90     GNUNET_free ((void *)s_rd_2->data);
91     GNUNET_free (s_rd_2);
92   }
93   if (s_rd_3 != NULL)
94   {
95     GNUNET_free ((void *)s_rd_3->data);
96     GNUNET_free (s_rd_3);
97   }
98
99   if (privkey != NULL)
100     GNUNET_free (privkey);
101   privkey = NULL;
102
103   if (privkey2 != NULL)
104     GNUNET_free (privkey2);
105   privkey2 = NULL;
106   res = 1;
107 }
108
109
110 static void
111 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
112 {
113         if (NULL != zi)
114         {
115                 GNUNET_NAMESTORE_zone_iteration_stop (zi);
116                 zi = NULL;
117         }
118
119   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
120   {
121     GNUNET_SCHEDULER_cancel (endbadly_task);
122     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
123   }
124
125   if (privkey != NULL)
126     GNUNET_free (privkey);
127   privkey = NULL;
128
129   if (privkey2 != NULL)
130     GNUNET_free (privkey2);
131   privkey2 = NULL;
132
133   GNUNET_free (s_name_1);
134   GNUNET_free (s_name_2);
135   GNUNET_free (s_name_3);
136   if (s_rd_1 != NULL)
137   {
138     GNUNET_free ((void *)s_rd_1->data);
139     GNUNET_free (s_rd_1);
140   }
141   if (s_rd_2 != NULL)
142   {
143     GNUNET_free ((void *)s_rd_2->data);
144     GNUNET_free (s_rd_2);
145   }
146   if (s_rd_3 != NULL)
147   {
148     GNUNET_free ((void *)s_rd_3->data);
149     GNUNET_free (s_rd_3);
150   }
151   if (nsh != NULL)
152     GNUNET_NAMESTORE_disconnect (nsh);
153   nsh = NULL;
154 }
155
156
157 static void
158 zone_proc (void *cls,
159                                          const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
160                                          const char *label,
161                                          unsigned int rd_count,
162                                          const struct GNUNET_GNSRECORD_Data *rd)
163 {
164   int failed = GNUNET_NO;
165   if ((zone == NULL) && (label == NULL))
166   {
167     GNUNET_break (2 == returned_records);
168     if (2 == returned_records)
169     {
170       res = 0; /* Last iteraterator callback, we are done */
171       zi = NULL;
172     }
173     else
174       res = 1;
175
176     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
177                 "Received last result, iteration done after receing %u results\n",
178                 returned_records );
179     GNUNET_SCHEDULER_add_now (&end, NULL);
180     return;
181   }
182   else
183   {
184         if (0 == memcmp (zone, privkey, sizeof (struct GNUNET_CRYPTO_EcdsaPrivateKey)))
185         {
186       if (0 == strcmp (label, s_name_1))
187       {
188         if (rd_count == 1)
189         {
190           if (GNUNET_YES != GNUNET_GNSRECORD_records_cmp(rd, s_rd_1))
191           {
192             failed = GNUNET_YES;
193             GNUNET_break (0);
194           }
195         }
196         else
197         {
198           failed = GNUNET_YES;
199           GNUNET_break (0);
200         }
201       }
202       else if (0 == strcmp (label, s_name_2))
203       {
204         if (rd_count == 1)
205         {
206           if (GNUNET_YES != GNUNET_GNSRECORD_records_cmp(rd, s_rd_2))
207           {
208             failed = GNUNET_YES;
209             GNUNET_break (0);
210           }
211         }
212         else
213         {
214           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
215                         "Received invalid record count\n");
216           failed = GNUNET_YES;
217           GNUNET_break (0);
218         }
219       }
220       else
221       {
222         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
223                         "Comparing result failed: got name `%s' for first zone\n", label);
224         failed = GNUNET_YES;
225         GNUNET_break (0);
226       }
227         }
228         else if (0 == memcmp (zone, privkey2, sizeof (struct GNUNET_CRYPTO_EcdsaPrivateKey)))
229         {
230       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Received data for not requested zone\n");
231       failed = GNUNET_YES;
232       GNUNET_break (0);
233         }
234         else
235         {
236       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Received invalid zone\n");
237       failed = GNUNET_YES;
238       GNUNET_break (0);
239         }
240   }
241
242   if (failed == GNUNET_NO)
243   {
244     returned_records ++;
245     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
246                 "Telling namestore to send the next result\n");
247     GNUNET_NAMESTORE_zone_iterator_next (zi);
248   }
249   else
250   {
251     GNUNET_break (0);
252     GNUNET_SCHEDULER_add_now (&end, NULL);
253   }
254 }
255
256
257 static void
258 put_cont (void *cls, int32_t success, const char *emsg)
259 {
260   static int c = 0;
261
262   if (success == GNUNET_OK)
263   {
264     c++;
265     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record %u \n", c);
266   }
267   else
268   {
269     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to created records: `%s'\n",
270                 emsg);
271     GNUNET_break (0);
272     if (GNUNET_SCHEDULER_NO_TASK != endbadly_task)
273         GNUNET_SCHEDULER_cancel (endbadly_task);
274     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
275     return;
276   }
277
278   if (c == 3)
279   {
280     res = 1;
281     returned_records = 0;
282     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "All records created, starting iteration over all zones \n");
283     zi = GNUNET_NAMESTORE_zone_iteration_start(nsh,
284                                                privkey,
285                                                &zone_proc,
286                                                NULL);
287     if (zi == NULL)
288     {
289       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to create zone iterator\n");
290       GNUNET_break (0);
291       if (GNUNET_SCHEDULER_NO_TASK != endbadly_task)
292         GNUNET_SCHEDULER_cancel (endbadly_task);
293       endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
294       return;
295     }
296   }
297 }
298
299
300 static struct GNUNET_GNSRECORD_Data *
301 create_record (unsigned int count)
302 {
303   unsigned int c;
304   struct GNUNET_GNSRECORD_Data * rd;
305
306   rd = GNUNET_malloc (count * sizeof (struct GNUNET_GNSRECORD_Data));
307   for (c = 0; c < count; c++)
308   {
309     rd[c].expiration_time = GNUNET_TIME_relative_to_absolute (GNUNET_TIME_UNIT_HOURS).abs_value_us;
310     rd[c].record_type = 1111;
311     rd[c].data_size = 50;
312     rd[c].data = GNUNET_malloc(50);
313     memset ((char *) rd[c].data, 'a', 50);
314   }
315   return rd;
316 }
317
318
319 /**
320  * Callback called from the zone iterator when we iterate over
321  * the empty zone.  Check that we got no records and then
322  * start the actual tests by filling the zone.
323  */
324 static void
325 empty_zone_proc (void *cls,
326                  const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
327                  const char *label,
328                  unsigned int rd_count,
329                  const struct GNUNET_GNSRECORD_Data *rd)
330 {
331   char *hostkey_file;
332
333   GNUNET_assert (nsh == cls);
334         if (NULL != zone)
335         {
336           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
337                         _("Expected empty zone but received zone private key\n"));
338     GNUNET_break (0);
339     if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
340         GNUNET_SCHEDULER_cancel (endbadly_task);
341     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
342     return;
343         }
344         if ((NULL != label) || (NULL != rd) || (0 != rd_count))
345         {
346           GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
347                         _("Expected no zone content but received data\n"));
348     GNUNET_break (0);
349     if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
350         GNUNET_SCHEDULER_cancel (endbadly_task);
351     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
352     return;
353         }
354
355
356   zi = NULL;
357   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
358       "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
359   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
360   privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file(hostkey_file);
361   GNUNET_free (hostkey_file);
362   GNUNET_assert (privkey != NULL);
363
364   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
365       "HGU0A0VCU334DN7F2I9UIUMVQMM7JMSD142LIMNUGTTV9R0CF4EG.zkey");
366   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
367   privkey2 = GNUNET_CRYPTO_ecdsa_key_create_from_file(hostkey_file);
368   GNUNET_free (hostkey_file);
369   GNUNET_assert (privkey2 != NULL);
370
371   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 1\n");
372
373   GNUNET_asprintf(&s_name_1, "dummy1");
374   s_rd_1 = create_record(1);
375   GNUNET_NAMESTORE_records_store(nsh, privkey, s_name_1,
376                 1, s_rd_1, &put_cont, NULL);
377
378   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 2 \n");
379   GNUNET_asprintf(&s_name_2, "dummy2");
380   s_rd_2 = create_record(1);
381   GNUNET_NAMESTORE_records_store(nsh, privkey, s_name_2,
382                 1, s_rd_2, &put_cont, NULL);
383
384   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 3\n");
385
386   /* name in different zone */
387   GNUNET_asprintf(&s_name_3, "dummy3");
388   s_rd_3 = create_record(1);
389   GNUNET_NAMESTORE_records_store(nsh, privkey2, s_name_3,
390                 1, s_rd_3, &put_cont, NULL);
391 }
392
393
394 static void
395 run (void *cls,
396      const struct GNUNET_CONFIGURATION_Handle *cfg,
397      struct GNUNET_TESTING_Peer *peer)
398 {
399   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT, &endbadly, NULL);
400   nsh = GNUNET_NAMESTORE_connect (cfg);
401   GNUNET_break (NULL != nsh);
402   /* first, iterate over empty namestore */
403   zi = GNUNET_NAMESTORE_zone_iteration_start (nsh,
404                                               NULL,
405                                               &empty_zone_proc, nsh);
406   if (NULL == zi)
407   {
408     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to create zone iterator\n");
409     GNUNET_break (0);
410     GNUNET_SCHEDULER_cancel (endbadly_task);
411     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
412   }
413 }
414
415
416 int
417 main (int argc, char *argv[])
418 {
419   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-namestore/");
420   res = 1;
421   if (0 !=
422       GNUNET_TESTING_peer_run ("test-namestore-api-zone-iteration",
423                                "test_namestore_api.conf",
424                                &run,
425                                NULL))
426     return 1;
427   return res;
428 }
429
430 /* end of test_namestore_api_zone_iteration_specific_zone.c */