2 This file is part of GNUnet.
3 Copyright (C) 2013 GNUnet e.V.
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.
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.
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.
21 * @file namestore/test_namestore_api_monitoring.c
22 * @brief testcase for zone monitoring functionality: monitor first, then add records
25 #include "gnunet_namestore_service.h"
26 #include "gnunet_testing_lib.h"
27 #include "namestore.h"
30 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
33 static struct GNUNET_NAMESTORE_Handle * nsh;
35 static struct GNUNET_SCHEDULER_Task * endbadly_task;
37 static struct GNUNET_CRYPTO_EcdsaPrivateKey * privkey;
39 static struct GNUNET_CRYPTO_EcdsaPrivateKey * privkey2;
41 static struct GNUNET_NAMESTORE_ZoneMonitor *zm;
45 static char * s_name_1;
47 static struct GNUNET_GNSRECORD_Data *s_rd_1;
49 static char * s_name_2;
51 static struct GNUNET_GNSRECORD_Data *s_rd_2;
53 static char * s_name_3;
55 static struct GNUNET_GNSRECORD_Data *s_rd_3;
57 struct GNUNET_NAMESTORE_QueueEntry * ns_ops[3];
59 static char *directory;
66 GNUNET_NAMESTORE_zone_monitor_stop (zm);
70 if (NULL != ns_ops[0])
72 GNUNET_NAMESTORE_cancel(ns_ops[0]);
75 if (NULL != ns_ops[1])
77 GNUNET_NAMESTORE_cancel(ns_ops[1]);
80 if (NULL != ns_ops[2])
82 GNUNET_NAMESTORE_cancel(ns_ops[2]);
88 GNUNET_NAMESTORE_disconnect (nsh);
92 GNUNET_free_non_null(s_name_1);
93 GNUNET_free_non_null(s_name_2);
94 GNUNET_free_non_null(s_name_3);
98 GNUNET_free ((void *)s_rd_1->data);
103 GNUNET_free ((void *)s_rd_2->data);
104 GNUNET_free (s_rd_2);
108 GNUNET_free ((void *)s_rd_3->data);
109 GNUNET_free (s_rd_3);
114 GNUNET_free (privkey);
117 if (NULL != privkey2)
119 GNUNET_free (privkey2);
126 * Re-establish the connection to the service.
128 * @param cls handle to use to re-connect.
147 zone_proc (void *cls,
148 const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone_key,
150 unsigned int rd_count,
151 const struct GNUNET_GNSRECORD_Data *rd)
153 static int returned_records;
154 static int fail = GNUNET_NO;
156 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
157 "Comparing results name %s\n",
159 if (0 != memcmp (zone_key,
161 sizeof (struct GNUNET_CRYPTO_EcdsaPrivateKey)))
163 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
164 "Monitoring returned wrong zone key\n");
166 GNUNET_SCHEDULER_cancel (endbadly_task);
167 endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
171 if (0 == strcmp (name, s_name_1))
173 if (GNUNET_YES != GNUNET_GNSRECORD_records_cmp(rd, s_rd_1))
179 else if (0 == strcmp (name, s_name_2))
181 if (GNUNET_YES != GNUNET_GNSRECORD_records_cmp(rd, s_rd_2))
189 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
196 if (2 == ++returned_records)
198 if (endbadly_task != NULL)
200 GNUNET_SCHEDULER_cancel (endbadly_task);
201 endbadly_task = NULL;
203 if (GNUNET_YES == fail)
204 GNUNET_SCHEDULER_add_now (&endbadly, NULL);
206 GNUNET_SCHEDULER_add_now (&end, NULL);
212 put_cont (void *cls, int32_t success, const char *emsg)
217 if (0 == strcmp (label, s_name_1))
219 else if (0 == strcmp (label, s_name_2))
221 else if (0 == strcmp (label, s_name_3))
224 if (success == GNUNET_OK)
227 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
228 "Created record %u: `%s'\n",
234 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
235 "Failed to created records\n");
237 GNUNET_SCHEDULER_cancel (endbadly_task);
238 endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
243 static struct GNUNET_GNSRECORD_Data *
244 create_record (unsigned int count)
247 struct GNUNET_GNSRECORD_Data * rd;
249 rd = GNUNET_malloc (count * sizeof (struct GNUNET_GNSRECORD_Data));
250 for (c = 0; c < count; c++)
252 rd[c].expiration_time = GNUNET_TIME_relative_to_absolute (GNUNET_TIME_UNIT_HOURS).abs_value_us;
253 rd[c].record_type = 1111;
254 rd[c].data_size = 50;
255 rd[c].data = GNUNET_malloc(50);
257 memset ((char *) rd[c].data, 'a', 50);
279 const struct GNUNET_CONFIGURATION_Handle *cfg,
280 struct GNUNET_TESTING_Peer *peer)
287 GNUNET_assert (GNUNET_OK ==
288 GNUNET_CONFIGURATION_get_value_string(cfg, "PATHS", "GNUNET_TEST_HOME", &directory));
289 GNUNET_DISK_directory_remove (directory);
291 GNUNET_asprintf(&hostkey_file,
294 "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
295 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
296 "Using zonekey file `%s' \n", hostkey_file);
297 privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file(hostkey_file);
298 GNUNET_free (hostkey_file);
299 GNUNET_assert (privkey != NULL);
301 /* Start monitoring */
302 zm = GNUNET_NAMESTORE_zone_monitor_start (cfg,
313 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
314 "Failed to create zone monitor\n");
316 endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
320 endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &endbadly, NULL);
321 /* Connect to namestore */
322 nsh = GNUNET_NAMESTORE_connect (cfg);
325 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Connect to namestore\n");
327 endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
331 GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",
333 "HGU0A0VCU334DN7F2I9UIUMVQMM7JMSD142LIMNUGTTV9R0CF4EG.zkey");
334 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
335 privkey2 = GNUNET_CRYPTO_ecdsa_key_create_from_file(hostkey_file);
336 GNUNET_free (hostkey_file);
337 GNUNET_assert (privkey2 != NULL);
340 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 3\n");
341 /* name in different zone */
342 GNUNET_asprintf(&s_name_3, "dummy3");
343 s_rd_3 = create_record(1);
344 GNUNET_assert (NULL != (ns_ops[2] = GNUNET_NAMESTORE_records_store (nsh, privkey2, s_name_3,
345 1, s_rd_3, &put_cont, s_name_3)));
347 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 1\n");
348 GNUNET_asprintf(&s_name_1, "dummy1");
349 s_rd_1 = create_record(1);
350 GNUNET_assert (NULL != (ns_ops[0] = GNUNET_NAMESTORE_records_store(nsh, privkey, s_name_1,
351 1, s_rd_1, &put_cont, s_name_1)));
354 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 2 \n");
355 GNUNET_asprintf(&s_name_2, "dummy2");
356 s_rd_2 = create_record(1);
357 GNUNET_assert (NULL != (ns_ops[1] = GNUNET_NAMESTORE_records_store(nsh, privkey, s_name_2,
358 1, s_rd_2, &put_cont, s_name_2)));
365 main (int argc, char *argv[])
369 GNUNET_TESTING_peer_run ("test-namestore-api-monitoring",
370 "test_namestore_api.conf",
376 if (NULL != directory)
378 GNUNET_DISK_directory_remove (directory);
379 GNUNET_free (directory);
385 /* end of test_namestore_api_monitoring.c */