reduce loop counters to more practical levels
[oweals/gnunet.git] / src / namestore / test_namestore_api_lookup_public.c
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
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.
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      General Public License for more details.
14
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.
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
29 #define TEST_RECORD_TYPE 1234
30
31 #define TEST_RECORD_DATALEN 123
32
33 #define TEST_RECORD_DATA 'a'
34
35 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
36
37
38 static struct GNUNET_NAMESTORE_Handle *nsh;
39
40 static struct GNUNET_NAMECACHE_Handle *nch;
41
42 static struct GNUNET_SCHEDULER_Task * endbadly_task;
43
44 static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey;
45
46 static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
47
48 static int res;
49
50 static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
51
52 static struct GNUNET_NAMECACHE_QueueEntry *ncqe;
53
54
55 static void
56 cleanup ()
57 {
58   if (NULL != nsh)
59   {
60     GNUNET_NAMESTORE_disconnect (nsh);
61     nsh = NULL;
62   }
63   if (NULL != nch)
64   {
65     GNUNET_NAMECACHE_disconnect (nch);
66     nch = NULL;
67   }
68   if (NULL != privkey)
69   {
70     GNUNET_free (privkey);
71     privkey = NULL;
72   }
73   GNUNET_SCHEDULER_shutdown ();
74 }
75
76
77 /**
78  * Re-establish the connection to the service.
79  *
80  * @param cls handle to use to re-connect.
81  */
82 static void
83 endbadly (void *cls)
84 {
85   if (NULL != nsqe)
86   {
87     GNUNET_NAMESTORE_cancel (nsqe);
88     nsqe = NULL;
89   }
90   if (NULL != ncqe)
91   {
92     GNUNET_NAMECACHE_cancel (ncqe);
93     ncqe = NULL;
94   }
95   cleanup ();
96   res = 1;
97 }
98
99
100 static void
101 end (void *cls)
102 {
103   cleanup ();
104   res = 0;
105 }
106
107
108 static void
109 rd_decrypt_cb (void *cls,
110                unsigned int rd_count,
111                const struct GNUNET_GNSRECORD_Data *rd)
112 {
113   char rd_cmp_data[TEST_RECORD_DATALEN];
114
115   GNUNET_assert (1 == rd_count);
116   GNUNET_assert (NULL != rd);
117
118   memset (rd_cmp_data, 'a', TEST_RECORD_DATALEN);
119
120   GNUNET_assert (TEST_RECORD_TYPE == rd[0].record_type);
121   GNUNET_assert (TEST_RECORD_DATALEN == rd[0].data_size);
122   GNUNET_assert (0 == memcmp (&rd_cmp_data, rd[0].data, TEST_RECORD_DATALEN));
123
124   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
125               "Block was decrypted successfully \n");
126
127         GNUNET_SCHEDULER_add_now (&end, NULL);
128 }
129
130
131 static void
132 name_lookup_proc (void *cls,
133                   const struct GNUNET_GNSRECORD_Block *block)
134 {
135   const char *name = cls;
136
137   ncqe = NULL;
138   GNUNET_assert (NULL != cls);
139
140   if (endbadly_task != NULL)
141   {
142     GNUNET_SCHEDULER_cancel (endbadly_task);
143     endbadly_task = NULL;
144   }
145
146   if (NULL == block)
147   {
148     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
149               _("Namestore returned no block\n"));
150     if (endbadly_task != NULL)
151       GNUNET_SCHEDULER_cancel (endbadly_task);
152     endbadly_task =  GNUNET_SCHEDULER_add_now (&endbadly, NULL);
153     return;
154   }
155
156   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
157               "Namestore returned block, decrypting \n");
158   GNUNET_assert (GNUNET_OK == GNUNET_GNSRECORD_block_decrypt(block,
159                 &pubkey, name, &rd_decrypt_cb, (void *) name));
160 }
161
162
163 static void
164 put_cont (void *cls, int32_t success, const char *emsg)
165 {
166   const char *name = cls;
167   struct GNUNET_HashCode derived_hash;
168   struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
169
170   nsqe = NULL;
171   GNUNET_assert (NULL != cls);
172   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
173               "Name store added record for `%s': %s\n",
174               name,
175               (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
176
177   /* Create derived hash */
178   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
179   GNUNET_GNSRECORD_query_from_public_key (&pubkey, name, &derived_hash);
180
181   ncqe = GNUNET_NAMECACHE_lookup_block (nch, &derived_hash,
182                                         &name_lookup_proc, (void *) name);
183 }
184
185
186 static void
187 run (void *cls,
188      const struct GNUNET_CONFIGURATION_Handle *cfg,
189      struct GNUNET_TESTING_Peer *peer)
190 {
191   struct GNUNET_GNSRECORD_Data rd;
192   const char * name = "dummy.dummy.gnunet";
193
194   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
195                                                 &endbadly,
196                                                 NULL);
197   privkey = GNUNET_CRYPTO_ecdsa_key_create ();
198   GNUNET_assert (privkey != NULL);
199   GNUNET_CRYPTO_ecdsa_key_get_public (privkey,
200                                       &pubkey);
201
202   rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us + 1000000000;
203   rd.record_type = TEST_RECORD_TYPE;
204   rd.data_size = TEST_RECORD_DATALEN;
205   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
206   rd.flags = 0;
207   memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
208
209   nsh = GNUNET_NAMESTORE_connect (cfg);
210   nch = GNUNET_NAMECACHE_connect (cfg);
211   GNUNET_break (NULL != nsh);
212   GNUNET_break (NULL != nch);
213   nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
214                                       1, &rd, &put_cont, (void *) name);
215   if (NULL == nsqe)
216   {
217     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
218               _("Namestore cannot store no block\n"));
219   }
220
221   GNUNET_free ((void *)rd.data);
222 }
223
224
225 int
226 main (int argc, char *argv[])
227 {
228   const char *plugin_name;
229   char *cfg_name;
230
231   plugin_name = GNUNET_TESTING_get_testname_from_underscore (argv[0]);
232   GNUNET_asprintf (&cfg_name,
233                    "test_namestore_api_%s.conf",
234                    plugin_name);
235   GNUNET_DISK_purge_cfg_dir (cfg_name,
236                              "GNUNET_TEST_HOME");
237   res = 1;
238   if (0 !=
239       GNUNET_TESTING_peer_run ("test-namestore-api",
240                                cfg_name,
241                                &run,
242                                NULL))
243   {
244     res = 1;
245   }
246   GNUNET_DISK_purge_cfg_dir (cfg_name,
247                              "GNUNET_TEST_HOME");
248   GNUNET_free (cfg_name);
249   return res;
250 }
251
252
253 /* end of test_namestore_api_lookup_public.c */