fix tests and do not assert since this will break make check
[oweals/gnunet.git] / src / namestore / test_namestore_api_zone_iteration.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.c
22  * @brief testcase for zone iteration functionality: iterate all zones
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   if (nsh != NULL)
75   {
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   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
119   {
120     GNUNET_SCHEDULER_cancel (endbadly_task);
121     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
122   }
123
124   if (privkey != NULL)
125     GNUNET_free (privkey);
126   privkey = NULL;
127
128   if (privkey2 != NULL)
129     GNUNET_free (privkey2);
130   privkey2 = NULL;
131
132   GNUNET_free (s_name_1);
133   GNUNET_free (s_name_2);
134   GNUNET_free (s_name_3);
135   if (s_rd_1 != NULL)
136   {
137     GNUNET_free ((void *)s_rd_1->data);
138     GNUNET_free (s_rd_1);
139   }
140   if (s_rd_2 != NULL)
141   {
142     GNUNET_free ((void *)s_rd_2->data);
143     GNUNET_free (s_rd_2);
144   }
145   if (s_rd_3 != NULL)
146   {
147     GNUNET_free ((void *)s_rd_3->data);
148     GNUNET_free (s_rd_3);
149   }
150   if (nsh != NULL)
151     GNUNET_NAMESTORE_disconnect (nsh);
152   nsh = NULL;
153 }
154
155
156 static void
157 zone_proc (void *cls,
158            const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
159            const char *label,
160            unsigned int rd_count,
161            const struct GNUNET_GNSRECORD_Data *rd)
162 {
163   int failed = GNUNET_NO;
164
165   if ((zone == NULL) && (label == NULL))
166   {
167     GNUNET_break (3 == returned_records);
168     if (3 == 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   if (0 == memcmp (zone, privkey, sizeof (struct GNUNET_CRYPTO_EcdsaPrivateKey)))
183   {
184     if (0 == strcmp (label, s_name_1))
185     {
186       if (rd_count == 1)
187       {
188         if (GNUNET_YES != GNUNET_GNSRECORD_records_cmp(rd, s_rd_1))
189         {
190           failed = GNUNET_YES;
191           GNUNET_break (0);
192         }
193       }
194       else
195       {
196         failed = GNUNET_YES;
197         GNUNET_break (0);
198       }
199     }
200     else if (0 == strcmp (label, s_name_2))
201     {
202       if (rd_count == 1)
203       {
204         if (GNUNET_YES != GNUNET_GNSRECORD_records_cmp(rd, s_rd_2))
205         {
206           failed = GNUNET_YES;
207           GNUNET_break (0);
208         }
209       }
210       else
211       {
212         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
213                     "Received invalid record count\n");
214         failed = GNUNET_YES;
215         GNUNET_break (0);
216       }
217     }
218     else
219     {
220       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
221                   "Comparing result failed: got name `%s' for first zone\n", label);
222       failed = GNUNET_YES;
223       GNUNET_break (0);
224     }
225   }
226   else if (0 == memcmp (zone, privkey2, sizeof (struct GNUNET_CRYPTO_EcdsaPrivateKey)))
227   {
228     if (0 == strcmp (label, s_name_3))
229     {
230       if (rd_count == 1)
231       {
232         if (GNUNET_YES != GNUNET_GNSRECORD_records_cmp(rd, s_rd_3))
233         {
234           failed = GNUNET_YES;
235           GNUNET_break (0);
236         }
237       }
238       else
239       {
240         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
241                     "Received invalid record count\n");
242         failed = GNUNET_YES;
243         GNUNET_break (0);
244       }
245     }
246     else
247     {
248       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
249                   "Comparing result failed: got name `%s' for first zone\n", label);
250       failed = GNUNET_YES;
251       GNUNET_break (0);
252     }
253   }
254   else
255   {
256     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
257                 "Received invalid zone\n");
258     failed = GNUNET_YES;
259     GNUNET_break (0);
260   }
261
262   if (failed == GNUNET_NO)
263   {
264     returned_records ++;
265     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
266                 "Telling namestore to send the next result\n");
267     GNUNET_NAMESTORE_zone_iterator_next (zi);
268   }
269   else
270   {
271     GNUNET_break (0);
272     GNUNET_SCHEDULER_add_now (&end, NULL);
273   }
274 }
275
276
277 static void
278 put_cont (void *cls, int32_t success, const char *emsg)
279 {
280   static int c = 0;
281
282   if (success == GNUNET_OK)
283   {
284     c++;
285     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record %u \n", c);
286   }
287   else
288   {
289     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to created records: `%s'\n",
290                 emsg);
291     GNUNET_break (0);
292     if (GNUNET_SCHEDULER_NO_TASK != endbadly_task)
293         GNUNET_SCHEDULER_cancel (endbadly_task);
294     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
295     return;
296   }
297
298   if (c == 3)
299   {
300     res = 1;
301     returned_records = 0;
302     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "All records created, starting iteration over all zones \n");
303     zi = GNUNET_NAMESTORE_zone_iteration_start (nsh,
304                                                 NULL,
305                                                 &zone_proc,
306                                                 NULL);
307     if (zi == NULL)
308     {
309       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to create zone iterator\n");
310       GNUNET_break (0);
311       if (GNUNET_SCHEDULER_NO_TASK != endbadly_task)
312         GNUNET_SCHEDULER_cancel (endbadly_task);
313       endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
314       return;
315     }
316   }
317 }
318
319
320 static struct GNUNET_GNSRECORD_Data *
321 create_record (unsigned int count)
322 {
323   unsigned int c;
324   struct GNUNET_GNSRECORD_Data * rd;
325
326   rd = GNUNET_malloc (count * sizeof (struct GNUNET_GNSRECORD_Data));
327   for (c = 0; c < count; c++)
328   {
329     rd[c].expiration_time = GNUNET_TIME_relative_to_absolute (GNUNET_TIME_UNIT_HOURS).abs_value_us;
330     rd[c].record_type = 1111;
331     rd[c].data_size = 50;
332     rd[c].data = GNUNET_malloc(50);
333     memset ((char *) rd[c].data, 'a', 50);
334   }
335   return rd;
336 }
337
338
339 /**
340  * Callback called from the zone iterator when we iterate over
341  * the empty zone.  Check that we got no records and then
342  * start the actual tests by filling the zone.
343  */
344 static void
345 empty_zone_proc (void *cls,
346                  const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
347                  const char *label,
348                  unsigned int rd_count,
349                  const struct GNUNET_GNSRECORD_Data *rd)
350 {
351   char *hostkey_file;
352
353   GNUNET_assert (nsh == cls);
354   if (NULL != zone)
355   {
356     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
357                 _("Expected empty zone but received zone private key\n"));
358     GNUNET_break (0);
359     if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
360       GNUNET_SCHEDULER_cancel (endbadly_task);
361     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
362     return;
363   }
364   if ((NULL != label) || (NULL != rd) || (0 != rd_count))
365   {
366     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
367                 _("Expected no zone content but received data\n"));
368     GNUNET_break (0);
369     if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
370       GNUNET_SCHEDULER_cancel (endbadly_task);
371     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
372     return;
373   }
374
375
376   zi = NULL;
377   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
378       "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
379   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
380   privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file(hostkey_file);
381   GNUNET_free (hostkey_file);
382   GNUNET_assert (privkey != NULL);
383
384   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
385       "HGU0A0VCU334DN7F2I9UIUMVQMM7JMSD142LIMNUGTTV9R0CF4EG.zkey");
386   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
387   privkey2 = GNUNET_CRYPTO_ecdsa_key_create_from_file(hostkey_file);
388   GNUNET_free (hostkey_file);
389   GNUNET_assert (privkey2 != NULL);
390
391   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 1\n");
392
393   GNUNET_asprintf(&s_name_1, "dummy1");
394   s_rd_1 = create_record(1);
395   GNUNET_NAMESTORE_records_store (nsh, privkey, s_name_1,
396                                   1, s_rd_1,
397                                   &put_cont, NULL);
398
399   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
400               "Created record 2 \n");
401   GNUNET_asprintf(&s_name_2, "dummy2");
402   s_rd_2 = create_record(1);
403   GNUNET_NAMESTORE_records_store (nsh, privkey, s_name_2,
404                                   1, s_rd_2, &put_cont, NULL);
405
406   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
407               "Created record 3\n");
408
409   /* name in different zone */
410   GNUNET_asprintf(&s_name_3, "dummy3");
411   s_rd_3 = create_record(1);
412   GNUNET_NAMESTORE_records_store (nsh, privkey2, s_name_3,
413                                   1, s_rd_3,
414                                   &put_cont, NULL);
415 }
416
417
418 static void
419 run (void *cls,
420      const struct GNUNET_CONFIGURATION_Handle *cfg,
421      struct GNUNET_TESTING_Peer *peer)
422 {
423   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT, &endbadly, NULL);
424   nsh = GNUNET_NAMESTORE_connect (cfg);
425   GNUNET_break (NULL != nsh);
426   /* first, iterate over empty namestore */
427   zi = GNUNET_NAMESTORE_zone_iteration_start(nsh,
428                                              NULL, &empty_zone_proc, nsh);
429   if (NULL == zi)
430   {
431     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to create zone iterator\n");
432     GNUNET_break (0);
433     GNUNET_SCHEDULER_cancel (endbadly_task);
434     endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
435   }
436 }
437
438
439 int
440 main (int argc, char *argv[])
441 {
442   res = 1;
443   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-namestore");
444   if (0 !=
445       GNUNET_TESTING_peer_run ("test-namestore-api-zone-iteration",
446                                "test_namestore_api.conf",
447                                &run,
448                                NULL))
449     return 1;
450   return res;
451 }
452
453
454 /* end of test_namestore_api_zone_iteration.c */