aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/test_namestore_api_lookup_public.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/namestore/test_namestore_api_lookup_public.c')
-rw-r--r--src/namestore/test_namestore_api_lookup_public.c255
1 files changed, 0 insertions, 255 deletions
diff --git a/src/namestore/test_namestore_api_lookup_public.c b/src/namestore/test_namestore_api_lookup_public.c
deleted file mode 100644
index cd69b96ef..000000000
--- a/src/namestore/test_namestore_api_lookup_public.c
+++ /dev/null
@@ -1,255 +0,0 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2012 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your 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 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
20/**
21 * @file namestore/test_namestore_api.c
22 * @brief testcase for namestore_api.c: store a record and perform a lookup
23 */
24#include "platform.h"
25#include "gnunet_namecache_service.h"
26#include "gnunet_namestore_service.h"
27#include "gnunet_testing_lib.h"
28#include "gnunet_dnsparser_lib.h"
29
30#define TEST_RECORD_TYPE GNUNET_DNSPARSER_TYPE_TXT
31
32#define TEST_RECORD_DATALEN 123
33
34#define TEST_RECORD_DATA 'a'
35
36#define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
37
38
39static struct GNUNET_NAMESTORE_Handle *nsh;
40
41static struct GNUNET_NAMECACHE_Handle *nch;
42
43static struct GNUNET_SCHEDULER_Task *endbadly_task;
44
45static struct GNUNET_IDENTITY_PrivateKey privkey;
46
47static struct GNUNET_IDENTITY_PublicKey pubkey;
48
49static int res;
50
51static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
52
53static struct GNUNET_NAMECACHE_QueueEntry *ncqe;
54
55
56static void
57cleanup ()
58{
59 if (NULL != nsh)
60 {
61 GNUNET_NAMESTORE_disconnect (nsh);
62 nsh = NULL;
63 }
64 if (NULL != nch)
65 {
66 GNUNET_NAMECACHE_disconnect (nch);
67 nch = NULL;
68 }
69 GNUNET_SCHEDULER_shutdown ();
70}
71
72
73/**
74 * Re-establish the connection to the service.
75 *
76 * @param cls handle to use to re-connect.
77 */
78static void
79endbadly (void *cls)
80{
81 if (NULL != nsqe)
82 {
83 GNUNET_NAMESTORE_cancel (nsqe);
84 nsqe = NULL;
85 }
86 if (NULL != ncqe)
87 {
88 GNUNET_NAMECACHE_cancel (ncqe);
89 ncqe = NULL;
90 }
91 cleanup ();
92 res = 1;
93}
94
95
96static void
97end (void *cls)
98{
99 cleanup ();
100 res = 0;
101}
102
103
104static void
105rd_decrypt_cb (void *cls,
106 unsigned int rd_count,
107 const struct GNUNET_GNSRECORD_Data *rd)
108{
109 char rd_cmp_data[TEST_RECORD_DATALEN];
110
111 GNUNET_assert (1 == rd_count);
112 GNUNET_assert (NULL != rd);
113
114 memset (rd_cmp_data, 'a', TEST_RECORD_DATALEN);
115
116 GNUNET_assert (TEST_RECORD_TYPE == rd[0].record_type);
117 GNUNET_assert (TEST_RECORD_DATALEN == rd[0].data_size);
118 GNUNET_assert (0 == memcmp (&rd_cmp_data, rd[0].data, TEST_RECORD_DATALEN));
119
120 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
121 "Block was decrypted successfully \n");
122
123 GNUNET_SCHEDULER_add_now (&end, NULL);
124}
125
126
127static void
128name_lookup_proc (void *cls,
129 const struct GNUNET_GNSRECORD_Block *block)
130{
131 const char *name = cls;
132
133 ncqe = NULL;
134 GNUNET_assert (NULL != cls);
135
136 if (endbadly_task != NULL)
137 {
138 GNUNET_SCHEDULER_cancel (endbadly_task);
139 endbadly_task = NULL;
140 }
141
142 if (NULL == block)
143 {
144 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
145 _ ("Namestore returned no block\n"));
146 if (endbadly_task != NULL)
147 GNUNET_SCHEDULER_cancel (endbadly_task);
148 endbadly_task = GNUNET_SCHEDULER_add_now (&endbadly, NULL);
149 return;
150 }
151
152 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
153 "Namestore returned block, decrypting \n");
154 GNUNET_assert (GNUNET_OK == GNUNET_GNSRECORD_block_decrypt (block,
155 &pubkey, name,
156 &rd_decrypt_cb,
157 (void *) name));
158}
159
160
161static void
162put_cont (void *cls, int32_t success, const char *emsg)
163{
164 const char *name = cls;
165 struct GNUNET_HashCode derived_hash;
166 struct GNUNET_IDENTITY_PublicKey pubkey;
167
168 nsqe = NULL;
169 GNUNET_assert (NULL != cls);
170 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
171 "Name store added record for `%s': %s\n",
172 name,
173 (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
174
175 /* Create derived hash */
176 GNUNET_IDENTITY_key_get_public (&privkey,
177 &pubkey);
178 GNUNET_GNSRECORD_query_from_public_key (&pubkey, name, &derived_hash);
179
180 ncqe = GNUNET_NAMECACHE_lookup_block (nch, &derived_hash,
181 &name_lookup_proc, (void *) name);
182}
183
184
185static void
186run (void *cls,
187 const struct GNUNET_CONFIGURATION_Handle *cfg,
188 struct GNUNET_TESTING_Peer *peer)
189{
190 struct GNUNET_GNSRECORD_Data rd;
191 const char *name = "dummy";
192
193 endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
194 &endbadly,
195 NULL);
196 privkey.type = htonl (GNUNET_GNSRECORD_TYPE_PKEY);
197 GNUNET_CRYPTO_ecdsa_key_create (&privkey.ecdsa_key);
198 GNUNET_IDENTITY_key_get_public (&privkey,
199 &pubkey);
200
201 rd.expiration_time = GNUNET_TIME_absolute_get ().abs_value_us + 1000000000;
202 rd.record_type = TEST_RECORD_TYPE;
203 rd.data_size = TEST_RECORD_DATALEN;
204 rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
205 rd.flags = 0;
206 memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
207
208 nsh = GNUNET_NAMESTORE_connect (cfg);
209 nch = GNUNET_NAMECACHE_connect (cfg);
210 GNUNET_break (NULL != nsh);
211 GNUNET_break (NULL != nch);
212 nsqe = GNUNET_NAMESTORE_records_store (nsh,
213 &privkey,
214 name,
215 1,
216 &rd,
217 &put_cont,
218 (void *) name);
219 if (NULL == nsqe)
220 {
221 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
222 _ ("Namestore cannot store no block\n"));
223 }
224
225 GNUNET_free_nz ((void *) rd.data);
226}
227
228
229#include "test_common.c"
230
231
232int
233main (int argc, char *argv[])
234{
235 const char *plugin_name;
236 char *cfg_name;
237
238 SETUP_CFG (plugin_name, cfg_name);
239 res = 1;
240 if (0 !=
241 GNUNET_TESTING_peer_run ("test-namestore-api",
242 cfg_name,
243 &run,
244 NULL))
245 {
246 res = 1;
247 }
248 GNUNET_DISK_purge_cfg_dir (cfg_name,
249 "GNUNET_TEST_HOME");
250 GNUNET_free (cfg_name);
251 return res;
252}
253
254
255/* end of test_namestore_api_lookup_public.c */