Merge branch 'master' of gnunet.org:gnunet
[oweals/gnunet.git] / src / namestore / test_namestore_api_zone_to_name.c
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
41 static struct GNUNET_NAMESTORE_Handle *nsh;
42
43 static struct GNUNET_SCHEDULER_Task *endbadly_task;
44
45 static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey;
46
47 static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
48
49 static struct GNUNET_CRYPTO_EcdsaPublicKey s_zone_value;
50
51 static char * s_name;
52
53 static int res;
54
55 static 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  */
63 static void
64 endbadly (void *cls)
65 {
66   (void) cls;
67   GNUNET_SCHEDULER_shutdown ();
68   res = 1;
69 }
70
71
72 static void
73 end (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 != privkey)
86   {
87     GNUNET_free (privkey);
88     privkey = NULL;
89   }
90   if (NULL != nsh)
91   {
92     GNUNET_NAMESTORE_disconnect (nsh);
93     nsh = NULL;
94   }
95 }
96
97
98 static void
99 zone_to_name_proc (void *cls,
100                    const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone_key,
101                    const char *n,
102                    unsigned int rd_count,
103                    const struct GNUNET_GNSRECORD_Data *rd)
104 {
105   int fail = GNUNET_NO;
106
107   qe = NULL;
108   if ( (NULL == zone_key) &&
109        (NULL == n) &&
110        (0 == rd_count) &&
111        (NULL == rd) )
112   {
113     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
114                 "No result found\n");
115     res = 1;
116   }
117   else
118   {
119     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
120                 "Result found: `%s'\n",
121                 n);
122     if ( (NULL == n) ||
123          (0 != strcmp (n,
124                        s_name)))
125     {
126       fail = GNUNET_YES;
127       GNUNET_break (0);
128     }
129     if (1 != rd_count)
130     {
131       fail = GNUNET_YES;
132       GNUNET_break (0);
133     }
134     if ( (NULL == zone_key) ||
135          (0 != memcmp (zone_key,
136                        privkey,
137                        sizeof (struct GNUNET_CRYPTO_EcdsaPrivateKey))))
138     {
139       fail = GNUNET_YES;
140       GNUNET_break (0);
141     }
142     if (fail == GNUNET_NO)
143       res = 0;
144     else
145       res = 1;
146   }
147   GNUNET_SCHEDULER_add_now (&end,
148                             NULL);
149 }
150
151
152 static void
153 error_cb (void *cls)
154 {
155   (void) cls;
156   qe = NULL;
157   GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
158               "Not found!\n");
159   GNUNET_SCHEDULER_shutdown ();
160   res = 2;
161 }
162
163
164 static void
165 put_cont (void *cls,
166           int32_t success,
167           const char *emsg)
168 {
169   char *name = cls;
170
171   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
172               "Name store added record for `%s': %s\n",
173               name,
174               (success == GNUNET_OK) ? "SUCCESS" : emsg);
175   if (success == GNUNET_OK)
176   {
177     res = 0;
178
179     qe = GNUNET_NAMESTORE_zone_to_name (nsh,
180                                         privkey,
181                                         &s_zone_value,
182                                         &error_cb,
183                                         NULL,
184                                         &zone_to_name_proc,
185                                         NULL);
186   }
187   else
188   {
189     res = 1;
190     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
191                 "Failed to put records for name `%s'\n",
192                 name);
193     GNUNET_SCHEDULER_add_now (&end,
194                               NULL);
195   }
196 }
197
198
199 static void
200 run (void *cls,
201      const struct GNUNET_CONFIGURATION_Handle *cfg,
202      struct GNUNET_TESTING_Peer *peer)
203 {
204   (void) cls;
205   (void) peer;
206   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
207                                                 &endbadly,
208                                                 NULL);
209   GNUNET_SCHEDULER_add_shutdown (&end,
210                                  NULL);
211   GNUNET_asprintf (&s_name, "dummy");
212   privkey = GNUNET_CRYPTO_ecdsa_key_create ();
213   GNUNET_assert (NULL != privkey);
214   /* get public key */
215   GNUNET_CRYPTO_ecdsa_key_get_public (privkey,
216                                       &pubkey);
217
218   GNUNET_CRYPTO_random_block (GNUNET_CRYPTO_QUALITY_WEAK,
219                               &s_zone_value,
220                               sizeof (s_zone_value));
221   {
222     struct GNUNET_GNSRECORD_Data rd;
223
224     rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us;
225     rd.record_type = GNUNET_GNSRECORD_TYPE_PKEY;
226     rd.data_size = sizeof (s_zone_value);
227     rd.data = &s_zone_value;
228     rd.flags = 0;
229
230     nsh = GNUNET_NAMESTORE_connect (cfg);
231     GNUNET_break (NULL != nsh);
232     GNUNET_NAMESTORE_records_store (nsh,
233                                     privkey,
234                                     s_name,
235                                     1,
236                                     &rd,
237                                     &put_cont,
238                                     NULL);
239   }
240 }
241
242
243 #include "test_common.c"
244
245
246 int
247 main (int argc,
248       char *argv[])
249 {
250   const char *plugin_name;
251   char *cfg_name;
252
253   (void) argc;
254   SETUP_CFG (plugin_name, cfg_name);
255   res = 1;
256   if (0 !=
257       GNUNET_TESTING_peer_run ("test-namestore-api-zone-to-name",
258                                cfg_name,
259                                &run,
260                                NULL))
261   {
262     res = 1;
263   }
264   GNUNET_DISK_purge_cfg_dir (cfg_name,
265                              "GNUNET_TEST_HOME");
266   GNUNET_free (cfg_name);
267   return res;
268 }
269
270 /* end of test_namestore_api_zone_to_name.c */