1440addbe858e9e6a72fcdc7deb26a8be44c42cf
[oweals/gnunet.git] / src / namestore / test_namestore_api_store_update.c
1 /*
2      This file is part of GNUnet.
3      (C) 2012, 2013 Christian Grothoff (and other contributing authors)
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., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20 /**
21  * @file namestore/test_namestore_api_store_update.c
22  * @brief testcase for namestore_api.c: store a record, update it and perform a lookup
23  * @author Matthias Wachs
24  */
25 #include "platform.h"
26 #include "gnunet_namecache_service.h"
27 #include "gnunet_namestore_service.h"
28 #include "gnunet_testing_lib.h"
29
30 #define TEST_RECORD_TYPE 1234
31
32 #define TEST_RECORD_DATALEN 123
33
34 #define TEST_RECORD_DATA 'a'
35
36
37 #define TEST_RECORD_TYPE2 4321
38
39 #define TEST_RECORD_DATALEN2 234
40
41 #define TEST_RECORD_DATA2 'b'
42
43 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
44
45
46 static struct GNUNET_NAMESTORE_Handle *nsh;
47
48 static struct GNUNET_NAMECACHE_Handle *nch;
49
50 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
51
52 static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey;
53
54 static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
55
56 static int res;
57
58 static int update_performed;
59
60 static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
61
62 static struct GNUNET_NAMECACHE_QueueEntry *ncqe;
63
64 static const char * name = "dummy.dummy.gnunet";
65
66
67 static void
68 cleanup ()
69 {
70   if (NULL != nsh)
71   {
72     GNUNET_NAMESTORE_disconnect (nsh);
73     nsh = NULL;
74   }
75   if (NULL != nch)
76   {
77     GNUNET_NAMECACHE_disconnect (nch);
78     nch = NULL;
79   }
80   if (NULL != privkey)
81   {
82     GNUNET_free (privkey);
83     privkey = NULL;
84   }
85   GNUNET_SCHEDULER_shutdown ();
86 }
87
88
89 /**
90  * Re-establish the connection to the service.
91  *
92  * @param cls handle to use to re-connect.
93  * @param tc scheduler context
94  */
95 static void
96 endbadly (void *cls,
97           const struct GNUNET_SCHEDULER_TaskContext *tc)
98 {
99   if (NULL != nsqe)
100   {
101     GNUNET_NAMESTORE_cancel (nsqe);
102     nsqe = NULL;
103   }
104   if (NULL != ncqe)
105   {
106     GNUNET_NAMECACHE_cancel (ncqe);
107     ncqe = NULL;
108   }
109   cleanup ();
110   res = 1;
111 }
112
113
114 static void
115 end (void *cls,
116      const struct GNUNET_SCHEDULER_TaskContext *tc)
117 {
118   cleanup ();
119   res = 0;
120 }
121
122
123 static void
124 put_cont (void *cls, int32_t success, const char *emsg);
125
126
127 static void
128 rd_decrypt_cb (void *cls,
129                unsigned int rd_count,
130                const struct GNUNET_GNSRECORD_Data *rd)
131 {
132   struct GNUNET_GNSRECORD_Data rd_new;
133
134   GNUNET_assert (1 == rd_count);
135   GNUNET_assert (NULL != rd);
136
137   if (GNUNET_NO == update_performed)
138   {
139     char rd_cmp_data[TEST_RECORD_DATALEN];
140     memset (rd_cmp_data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
141
142     GNUNET_assert (TEST_RECORD_TYPE == rd[0].record_type);
143     GNUNET_assert (TEST_RECORD_DATALEN == rd[0].data_size);
144     GNUNET_assert (0 == memcmp (&rd_cmp_data, rd[0].data, TEST_RECORD_DATALEN));
145
146     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
147                 "Block was decrypted successfully, updating record \n");
148
149     rd_new.flags = GNUNET_GNSRECORD_RF_NONE;
150     rd_new.expiration_time = GNUNET_TIME_absolute_get().abs_value_us;
151     rd_new.record_type = TEST_RECORD_TYPE2;
152     rd_new.data_size = TEST_RECORD_DATALEN2;
153     rd_new.data = GNUNET_malloc (TEST_RECORD_DATALEN2);
154     memset ((char *) rd_new.data, TEST_RECORD_DATA2, TEST_RECORD_DATALEN2);
155
156     nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
157                                            1, &rd_new, &put_cont, (void *) name);
158     update_performed = GNUNET_YES;
159   }
160   else
161   {
162     char rd_cmp_data[TEST_RECORD_DATALEN2];
163     memset (rd_cmp_data, TEST_RECORD_DATA2, TEST_RECORD_DATALEN2);
164
165     GNUNET_assert (TEST_RECORD_TYPE2 == rd[0].record_type);
166     GNUNET_assert (TEST_RECORD_DATALEN2 == rd[0].data_size);
167     GNUNET_assert (0 == memcmp (&rd_cmp_data, rd[0].data, TEST_RECORD_DATALEN2));
168
169     GNUNET_SCHEDULER_add_now (&end, NULL);
170   }
171 }
172
173
174 static void
175 name_lookup_proc (void *cls,
176                   const struct GNUNET_GNSRECORD_Block *block)
177 {
178   const char *name = cls;
179
180   ncqe = NULL;
181   GNUNET_assert (NULL != cls);
182   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
183   {
184     GNUNET_SCHEDULER_cancel (endbadly_task);
185     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
186   }
187
188   if (NULL == block)
189   {
190     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
191               _("Namestore returned no block\n"));
192     if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
193       GNUNET_SCHEDULER_cancel (endbadly_task);
194     endbadly_task =  GNUNET_SCHEDULER_add_now (&endbadly, NULL);
195     return;
196   }
197
198   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
199               "Namestore returned block, decrypting \n");
200   GNUNET_assert (GNUNET_OK == GNUNET_GNSRECORD_block_decrypt(block,
201                 &pubkey, name, &rd_decrypt_cb, (void *) name));
202 }
203
204
205 static void
206 put_cont (void *cls, int32_t success, const char *emsg)
207 {
208   const char *name = cls;
209   struct GNUNET_HashCode derived_hash;
210
211   nsqe = NULL;
212   GNUNET_assert (NULL != cls);
213   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
214               "Name store added record for `%s': %s\n",
215               name,
216               (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
217   /* Create derived hash */
218   GNUNET_GNSRECORD_query_from_private_key (privkey, name, &derived_hash);
219   ncqe = GNUNET_NAMECACHE_lookup_block (nch, &derived_hash,
220                                         &name_lookup_proc, (void *) name);
221 }
222
223
224 static void
225 run (void *cls,
226      const struct GNUNET_CONFIGURATION_Handle *cfg,
227      struct GNUNET_TESTING_Peer *peer)
228 {
229   struct GNUNET_GNSRECORD_Data rd;
230   char *hostkey_file;
231
232   update_performed = GNUNET_NO;
233   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
234                                                 &endbadly, NULL);
235   GNUNET_asprintf (&hostkey_file,
236                    "zonefiles%s%s",
237                    DIR_SEPARATOR_STR,
238                    "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
239   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
240   privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file (hostkey_file);
241   GNUNET_free (hostkey_file);
242   GNUNET_assert (privkey != NULL);
243   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
244
245   rd.flags = GNUNET_GNSRECORD_RF_NONE;
246   rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us;
247   rd.record_type = TEST_RECORD_TYPE;
248   rd.data_size = TEST_RECORD_DATALEN;
249   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
250   memset ((char *) rd.data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
251
252   nsh = GNUNET_NAMESTORE_connect (cfg);
253   GNUNET_break (NULL != nsh);
254   nch = GNUNET_NAMECACHE_connect (cfg);
255   GNUNET_break (NULL != nch);
256   nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
257                                       1, &rd, &put_cont, (void *) name);
258   if (NULL == nsqe)
259   {
260     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
261               _("Namestore cannot store no block\n"));
262   }
263
264   GNUNET_free ((void *)rd.data);
265 }
266
267
268 int
269 main (int argc, char *argv[])
270 {
271   GNUNET_DISK_directory_remove ("/tmp/test-gnunet-namestore/");
272   res = 1;
273   if (0 !=
274       GNUNET_TESTING_service_run ("test-namestore-api-store-update",
275                                   "namestore",
276                                   "test_namestore_api.conf",
277                                   &run,
278                                   NULL))
279     return 1;
280   return res;
281 }
282
283
284 /* end of test_namestore_api_store_update.c*/