added adaptive step-intervals
[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     rd[c].flags = 0;
314     memset ((char *) rd[c].data, 'a', 50);
315   }
316   return rd;
317 }
318
319
320 /**
321  * Callback called from the zone iterator when we iterate over
322  * the empty zone.  Check that we got no records and then
323  * start the actual tests by filling the zone.
324  */
325 static void
326 empty_zone_proc (void *cls,
327                  const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
328                  const char *label,
329                  unsigned int rd_count,
330                  const struct GNUNET_GNSRECORD_Data *rd)
331 {
332   char *hostkey_file;
333
334   GNUNET_assert (nsh == cls);
335   if (NULL != zone)
336     {
337       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
338                   _("Expected empty zone but received zone private key\n"));
339       GNUNET_break (0);
340       if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
341         GNUNET_SCHEDULER_cancel (endbadly_task);
342       endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
343       return;
344     }
345   if ((NULL != label) || (NULL != rd) || (0 != rd_count))
346     {
347       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
348                   _("Expected no zone content but received data\n"));
349       GNUNET_break (0);
350       if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
351         GNUNET_SCHEDULER_cancel (endbadly_task);
352       endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
353       return;
354     }
355
356
357   zi = NULL;
358   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
359       "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
360   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
361   privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file(hostkey_file);
362   GNUNET_free (hostkey_file);
363   GNUNET_assert (privkey != NULL);
364
365   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
366       "HGU0A0VCU334DN7F2I9UIUMVQMM7JMSD142LIMNUGTTV9R0CF4EG.zkey");
367   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
368   privkey2 = GNUNET_CRYPTO_ecdsa_key_create_from_file(hostkey_file);
369   GNUNET_free (hostkey_file);
370   GNUNET_assert (privkey2 != NULL);
371
372   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 1\n");
373
374   GNUNET_asprintf(&s_name_1, "dummy1");
375   s_rd_1 = create_record(1);
376   GNUNET_NAMESTORE_records_store(nsh, privkey, s_name_1,
377                 1, s_rd_1, &put_cont, NULL);
378
379   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 2 \n");
380   GNUNET_asprintf(&s_name_2, "dummy2");
381   s_rd_2 = create_record(1);
382   GNUNET_NAMESTORE_records_store(nsh, privkey, s_name_2,
383                 1, s_rd_2, &put_cont, NULL);
384
385   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 3\n");
386
387   /* name in different zone */
388   GNUNET_asprintf(&s_name_3, "dummy3");
389   s_rd_3 = create_record(1);
390   GNUNET_NAMESTORE_records_store(nsh, privkey2, s_name_3,
391                 1, s_rd_3, &put_cont, NULL);
392 }
393
394
395 static void
396 run (void *cls,
397      const struct GNUNET_CONFIGURATION_Handle *cfg,
398      struct GNUNET_TESTING_Peer *peer)
399 {
400   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT, &endbadly, NULL);
401   nsh = GNUNET_NAMESTORE_connect (cfg);
402   GNUNET_break (NULL != nsh);
403   /* first, iterate over empty namestore */
404   zi = GNUNET_NAMESTORE_zone_iteration_start (nsh,
405                                               NULL,
406                                               &empty_zone_proc, nsh);
407   if (NULL == zi)
408   {
409     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to create zone iterator\n");
410     GNUNET_break (0);
411     GNUNET_SCHEDULER_cancel (endbadly_task);
412     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
413   }
414 }
415
416
417 int
418 main (int argc, char *argv[])
419 {
420   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-namestore/");
421   res = 1;
422   if (0 !=
423       GNUNET_TESTING_peer_run ("test-namestore-api-zone-iteration",
424                                "test_namestore_api.conf",
425                                &run,
426                                NULL))
427     return 1;
428   return res;
429 }
430
431 /* end of test_namestore_api_zone_iteration_specific_zone.c */