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.c
22 * @brief testcase for namestore_api.c to: remove record
25 #include "gnunet_namestore_service.h"
26 #include "gnunet_testing_lib.h"
28 #define TEST_RECORD_TYPE 1234
30 #define TEST_RECORD_DATALEN 123
32 #define TEST_RECORD_DATA 'a'
34 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
37 static struct GNUNET_NAMESTORE_Handle *nsh;
39 static struct GNUNET_SCHEDULER_Task * endbadly_task;
41 static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey;
43 static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
49 static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
51 static char *directory;
58 GNUNET_NAMESTORE_disconnect (nsh);
63 GNUNET_free (privkey);
66 GNUNET_SCHEDULER_shutdown ();
71 * Re-establish the connection to the service.
73 * @param cls handle to use to re-connect.
80 GNUNET_NAMESTORE_cancel (nsqe);
97 remove_cont (void *cls,
101 if (GNUNET_YES != success)
103 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
104 _("Records could not be removed: `%s'\n"), emsg);
105 if (endbadly_task != NULL)
106 GNUNET_SCHEDULER_cancel (endbadly_task);
107 endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
110 GNUNET_log (GNUNET_ERROR_TYPE_INFO,
111 "Records were removed, perform lookup\n");
112 removed = GNUNET_YES;
113 if (endbadly_task != NULL)
114 GNUNET_SCHEDULER_cancel (endbadly_task);
115 GNUNET_SCHEDULER_add_now (&end, NULL);
120 put_cont (void *cls, int32_t success,
123 const char *name = cls;
125 GNUNET_assert (NULL != cls);
126 if (GNUNET_SYSERR == success)
129 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
130 "Namestore could not store record: `%s'\n",
132 if (endbadly_task != NULL)
133 GNUNET_SCHEDULER_cancel (endbadly_task);
134 endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
138 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
139 "Name store added record for `%s': %s\n",
141 (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
142 nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
143 0, NULL, &remove_cont, (void *) name);
149 const struct GNUNET_CONFIGURATION_Handle *cfg,
150 struct GNUNET_TESTING_Peer *peer)
152 struct GNUNET_GNSRECORD_Data rd;
154 const char * name = "dummy.dummy.gnunet";
157 GNUNET_assert (GNUNET_OK ==
158 GNUNET_CONFIGURATION_get_value_string(cfg, "PATHS", "GNUNET_TEST_HOME", &directory));
159 GNUNET_DISK_directory_remove (directory);
161 endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
163 GNUNET_asprintf (&hostkey_file,
166 "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
167 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
168 privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file (hostkey_file);
169 GNUNET_free (hostkey_file);
170 GNUNET_assert (privkey != NULL);
171 GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
175 rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us;
176 rd.record_type = TEST_RECORD_TYPE;
177 rd.data_size = TEST_RECORD_DATALEN;
178 rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
180 memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
182 nsh = GNUNET_NAMESTORE_connect (cfg);
183 GNUNET_break (NULL != nsh);
184 nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
185 1, &rd, &put_cont, (void *) name);
188 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
189 _("Namestore cannot store no block\n"));
191 GNUNET_free ((void *)rd.data);
196 main (int argc, char *argv[])
200 GNUNET_TESTING_peer_run ("test-namestore-api",
201 "test_namestore_api.conf",
207 if (NULL != directory)
209 GNUNET_DISK_directory_remove (directory);
210 GNUNET_free (directory);
215 /* end of test_namestore_api_remove.c */