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);
265 const struct GNUNET_CONFIGURATION_Handle *cfg,
266 struct GNUNET_TESTING_Peer *peer)
273 GNUNET_assert (GNUNET_OK ==
274 GNUNET_CONFIGURATION_get_value_string(cfg, "PATHS", "GNUNET_TEST_HOME", &directory));
275 GNUNET_DISK_directory_remove (directory);
277 GNUNET_asprintf(&hostkey_file,
280 "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
281 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
282 "Using zonekey file `%s' \n", hostkey_file);
283 privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file(hostkey_file);
284 GNUNET_free (hostkey_file);
285 GNUNET_assert (privkey != NULL);
287 /* Start monitoring */
288 zm = GNUNET_NAMESTORE_zone_monitor_start (cfg,
296 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
297 "Failed to create zone monitor\n");
299 endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
303 endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &endbadly, NULL);
304 /* Connect to namestore */
305 nsh = GNUNET_NAMESTORE_connect (cfg);
308 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Connect to namestore\n");
310 endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
314 GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",
316 "HGU0A0VCU334DN7F2I9UIUMVQMM7JMSD142LIMNUGTTV9R0CF4EG.zkey");
317 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
318 privkey2 = GNUNET_CRYPTO_ecdsa_key_create_from_file(hostkey_file);
319 GNUNET_free (hostkey_file);
320 GNUNET_assert (privkey2 != NULL);
323 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 3\n");
324 /* name in different zone */
325 GNUNET_asprintf(&s_name_3, "dummy3");
326 s_rd_3 = create_record(1);
327 GNUNET_assert (NULL != (ns_ops[2] = GNUNET_NAMESTORE_records_store (nsh, privkey2, s_name_3,
328 1, s_rd_3, &put_cont, s_name_3)));
330 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 1\n");
331 GNUNET_asprintf(&s_name_1, "dummy1");
332 s_rd_1 = create_record(1);
333 GNUNET_assert (NULL != (ns_ops[0] = GNUNET_NAMESTORE_records_store(nsh, privkey, s_name_1,
334 1, s_rd_1, &put_cont, s_name_1)));
337 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created record 2 \n");
338 GNUNET_asprintf(&s_name_2, "dummy2");
339 s_rd_2 = create_record(1);
340 GNUNET_assert (NULL != (ns_ops[1] = GNUNET_NAMESTORE_records_store(nsh, privkey, s_name_2,
341 1, s_rd_2, &put_cont, s_name_2)));
348 main (int argc, char *argv[])
352 GNUNET_TESTING_peer_run ("test-namestore-api-monitoring",
353 "test_namestore_api.conf",
359 if (NULL != directory)
361 GNUNET_DISK_directory_remove (directory);
362 GNUNET_free (directory);
368 /* end of test_namestore_api_monitoring.c */