-remove debug message
[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 != nsh)
86   {
87     GNUNET_NAMESTORE_disconnect (nsh);
88     nsh = NULL;
89   }
90 }
91
92
93 static void
94 zone_to_name_proc (void *cls,
95                    const struct GNUNET_CRYPTO_EcdsaPrivateKey *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
146 static void
147 error_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
158 static void
159 put_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
193 static void
194 run (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   GNUNET_CRYPTO_ecdsa_key_create (&privkey);
207   /* get public key */
208   GNUNET_CRYPTO_ecdsa_key_get_public (&privkey,
209                                       &pubkey);
210
211   GNUNET_CRYPTO_random_block (GNUNET_CRYPTO_QUALITY_WEAK,
212                               &s_zone_value,
213                               sizeof(s_zone_value));
214   {
215     struct GNUNET_GNSRECORD_Data rd;
216
217     rd.expiration_time = GNUNET_TIME_absolute_get ().abs_value_us;
218     rd.record_type = GNUNET_GNSRECORD_TYPE_PKEY;
219     rd.data_size = sizeof(s_zone_value);
220     rd.data = &s_zone_value;
221     rd.flags = 0;
222
223     nsh = GNUNET_NAMESTORE_connect (cfg);
224     GNUNET_break (NULL != nsh);
225     GNUNET_NAMESTORE_records_store (nsh,
226                                     &privkey,
227                                     s_name,
228                                     1,
229                                     &rd,
230                                     &put_cont,
231                                     NULL);
232   }
233 }
234
235
236 #include "test_common.c"
237
238
239 int
240 main (int argc,
241       char *argv[])
242 {
243   const char *plugin_name;
244   char *cfg_name;
245
246   (void) argc;
247   SETUP_CFG (plugin_name, cfg_name);
248   res = 1;
249   if (0 !=
250       GNUNET_TESTING_peer_run ("test-namestore-api-zone-to-name",
251                                cfg_name,
252                                &run,
253                                NULL))
254   {
255     res = 1;
256   }
257   GNUNET_DISK_purge_cfg_dir (cfg_name,
258                              "GNUNET_TEST_HOME");
259   GNUNET_free (cfg_name);
260   return res;
261 }
262
263
264 /* end of test_namestore_api_zone_to_name.c */