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