aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/test_namestore_api_zone_to_name.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/namestore/test_namestore_api_zone_to_name.c')
-rw-r--r--src/namestore/test_namestore_api_zone_to_name.c266
1 files changed, 0 insertions, 266 deletions
diff --git a/src/namestore/test_namestore_api_zone_to_name.c b/src/namestore/test_namestore_api_zone_to_name.c
deleted file mode 100644
index 3fd10e4a1..000000000
--- a/src/namestore/test_namestore_api_zone_to_name.c
+++ /dev/null
@@ -1,266 +0,0 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2009 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_zone_to_name.c
22 * @brief testcase for zone to name translation
23 */
24#include "platform.h"
25#include "gnunet_namestore_service.h"
26#include "gnunet_testing_lib.h"
27#include "namestore.h"
28#include "gnunet_dnsparser_lib.h"
29
30#define TEST_RECORD_TYPE GNUNET_DNSPARSER_TYPE_TXT
31
32#define RECORDS 5
33
34#define TEST_RECORD_DATALEN 123
35
36#define TEST_RECORD_DATA 'a'
37
38#define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
39
40
41static struct GNUNET_NAMESTORE_Handle *nsh;
42
43static struct GNUNET_SCHEDULER_Task *endbadly_task;
44
45static struct GNUNET_IDENTITY_PrivateKey privkey;
46
47static struct GNUNET_IDENTITY_PublicKey pubkey;
48
49static struct GNUNET_IDENTITY_PublicKey s_zone_value;
50
51static char *s_name;
52
53static int res;
54
55static struct GNUNET_NAMESTORE_QueueEntry *qe;
56
57
58/**
59 * Re-establish the connection to the service.
60 *
61 * @param cls handle to use to re-connect.
62 */
63static void
64endbadly (void *cls)
65{
66 (void) cls;
67 GNUNET_SCHEDULER_shutdown ();
68 res = 1;
69}
70
71
72static void
73end (void *cls)
74{
75 if (NULL != qe)
76 {
77 GNUNET_NAMESTORE_cancel (qe);
78 qe = NULL;
79 }
80 if (NULL != endbadly_task)
81 {
82 GNUNET_SCHEDULER_cancel (endbadly_task);
83 endbadly_task = NULL;
84 }
85 if (NULL != nsh)
86 {
87 GNUNET_NAMESTORE_disconnect (nsh);
88 nsh = NULL;
89 }
90}
91
92
93static void
94zone_to_name_proc (void *cls,
95 const struct GNUNET_IDENTITY_PrivateKey *zone_key,
96 const char *n,
97 unsigned int rd_count,
98 const struct GNUNET_GNSRECORD_Data *rd)
99{
100 int fail = GNUNET_NO;
101
102 qe = NULL;
103 if ((NULL == zone_key) &&
104 (NULL == n) &&
105 (0 == rd_count) &&
106 (NULL == rd))
107 {
108 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
109 "No result found\n");
110 res = 1;
111 }
112 else
113 {
114 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
115 "Result found: `%s'\n",
116 n);
117 if ((NULL == n) ||
118 (0 != strcmp (n,
119 s_name)))
120 {
121 fail = GNUNET_YES;
122 GNUNET_break (0);
123 }
124 if (1 != rd_count)
125 {
126 fail = GNUNET_YES;
127 GNUNET_break (0);
128 }
129 if ((NULL == zone_key) ||
130 (0 != GNUNET_memcmp (zone_key,
131 &privkey)))
132 {
133 fail = GNUNET_YES;
134 GNUNET_break (0);
135 }
136 if (fail == GNUNET_NO)
137 res = 0;
138 else
139 res = 1;
140 }
141 GNUNET_SCHEDULER_add_now (&end,
142 NULL);
143}
144
145
146static void
147error_cb (void *cls)
148{
149 (void) cls;
150 qe = NULL;
151 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
152 "Not found!\n");
153 GNUNET_SCHEDULER_shutdown ();
154 res = 2;
155}
156
157
158static void
159put_cont (void *cls,
160 int32_t success,
161 const char *emsg)
162{
163 char *name = cls;
164
165 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
166 "Name store added record for `%s': %s\n",
167 name,
168 (success == GNUNET_OK) ? "SUCCESS" : emsg);
169 if (success == GNUNET_OK)
170 {
171 res = 0;
172
173 qe = GNUNET_NAMESTORE_zone_to_name (nsh,
174 &privkey,
175 &s_zone_value,
176 &error_cb,
177 NULL,
178 &zone_to_name_proc,
179 NULL);
180 }
181 else
182 {
183 res = 1;
184 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
185 "Failed to put records for name `%s'\n",
186 name);
187 GNUNET_SCHEDULER_add_now (&end,
188 NULL);
189 }
190}
191
192
193static void
194run (void *cls,
195 const struct GNUNET_CONFIGURATION_Handle *cfg,
196 struct GNUNET_TESTING_Peer *peer)
197{
198 (void) cls;
199 (void) peer;
200 endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
201 &endbadly,
202 NULL);
203 GNUNET_SCHEDULER_add_shutdown (&end,
204 NULL);
205 GNUNET_asprintf (&s_name, "dummy");
206 privkey.type = htonl (GNUNET_GNSRECORD_TYPE_PKEY);
207 GNUNET_CRYPTO_ecdsa_key_create (&privkey.ecdsa_key);
208 /* get public key */
209 GNUNET_IDENTITY_key_get_public (&privkey,
210 &pubkey);
211
212 GNUNET_CRYPTO_random_block (GNUNET_CRYPTO_QUALITY_WEAK,
213 &s_zone_value,
214 sizeof(s_zone_value));
215 s_zone_value.type = htonl (GNUNET_GNSRECORD_TYPE_PKEY);
216 {
217 struct GNUNET_GNSRECORD_Data rd;
218
219 rd.expiration_time = GNUNET_TIME_absolute_get ().abs_value_us;
220 rd.record_type = GNUNET_GNSRECORD_TYPE_PKEY;
221 rd.data_size = GNUNET_IDENTITY_key_get_length (&s_zone_value);
222 rd.data = &s_zone_value;
223 rd.flags = 0;
224
225 nsh = GNUNET_NAMESTORE_connect (cfg);
226 GNUNET_break (NULL != nsh);
227 GNUNET_NAMESTORE_records_store (nsh,
228 &privkey,
229 s_name,
230 1,
231 &rd,
232 &put_cont,
233 NULL);
234 }
235}
236
237
238#include "test_common.c"
239
240
241int
242main (int argc,
243 char *argv[])
244{
245 const char *plugin_name;
246 char *cfg_name;
247
248 (void) argc;
249 SETUP_CFG (plugin_name, cfg_name);
250 res = 1;
251 if (0 !=
252 GNUNET_TESTING_peer_run ("test-namestore-api-zone-to-name",
253 cfg_name,
254 &run,
255 NULL))
256 {
257 res = 1;
258 }
259 GNUNET_DISK_purge_cfg_dir (cfg_name,
260 "GNUNET_TEST_HOME");
261 GNUNET_free (cfg_name);
262 return res;
263}
264
265
266/* end of test_namestore_api_zone_to_name.c */