-consistently use struct GNUNET_HashCode
[oweals/gnunet.git] / src / namestore / test_namestore_api_lookup.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 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.c
22  * @brief testcase for namestore_api.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_namestore_service.h"
27 #include "namestore.h"
28 #include "gnunet_signatures.h"
29
30 #define VERBOSE GNUNET_NO
31
32 #define RECORDS 5
33 #define TEST_RECORD_TYPE 1234
34 #define TEST_RECORD_DATALEN 123
35 #define TEST_RECORD_DATA 'a'
36
37 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
38
39 static struct GNUNET_NAMESTORE_Handle * nsh;
40
41 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
42 static struct GNUNET_OS_Process *arm;
43
44 static struct GNUNET_CRYPTO_RsaPrivateKey * privkey;
45 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pubkey;
46 struct GNUNET_CRYPTO_RsaSignature *s_signature;
47 static struct GNUNET_CRYPTO_ShortHashCode s_zone;
48 struct GNUNET_NAMESTORE_RecordData *s_rd;
49 static char *s_name;
50
51
52
53 static int res;
54
55 static void
56 start_arm (const char *cfgname)
57 {
58   arm = GNUNET_OS_start_process (GNUNET_YES, NULL, NULL, "gnunet-service-arm",
59                                "gnunet-service-arm", "-c", cfgname,
60 #if VERBOSE_PEERS
61                                "-L", "DEBUG",
62 #else
63                                "-L", "ERROR",
64 #endif
65                                NULL);
66 }
67
68 static void
69 stop_arm ()
70 {
71   if (NULL != arm)
72   {
73     if (0 != GNUNET_OS_process_kill (arm, SIGTERM))
74       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
75     GNUNET_OS_process_wait (arm);
76     GNUNET_OS_process_destroy (arm);
77     arm = NULL;
78   }
79 }
80
81 /**
82  * Re-establish the connection to the service.
83  *
84  * @param cls handle to use to re-connect.
85  * @param tc scheduler context
86  */
87 static void
88 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
89 {
90   if (nsh != NULL)
91     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
92   nsh = NULL;
93
94   if (privkey != NULL)
95     GNUNET_CRYPTO_rsa_key_free (privkey);
96   privkey = NULL;
97
98   if (NULL != arm)
99     stop_arm();
100
101   res = 1;
102 }
103
104
105 static void
106 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
107 {
108   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
109   {
110     GNUNET_SCHEDULER_cancel (endbadly_task);
111     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
112   }
113
114   int c;
115   for (c = 0; c < RECORDS; c++)
116     GNUNET_free_non_null((void *) s_rd[c].data);
117   GNUNET_free (s_rd);
118
119   if (privkey != NULL)
120     GNUNET_CRYPTO_rsa_key_free (privkey);
121   privkey = NULL;
122
123   if (nsh != NULL)
124     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
125   nsh = NULL;
126
127   if (NULL != arm)
128     stop_arm();
129 }
130
131 void name_lookup_proc (void *cls,
132                             const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key,
133                             struct GNUNET_TIME_Absolute expire,
134                             const char *n,
135                             unsigned int rd_count,
136                             const struct GNUNET_NAMESTORE_RecordData *rd,
137                             const struct GNUNET_CRYPTO_RsaSignature *signature)
138 {
139   static int found = GNUNET_NO;
140   int c;
141
142   if (n != NULL)
143   {
144     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Checking returned results\n");
145     if (0 != memcmp (zone_key, &pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded)))
146     {
147       GNUNET_break (0);
148     }
149
150     if (0 != memcmp (signature, s_signature, sizeof (struct GNUNET_CRYPTO_RsaSignature)))
151     {
152       GNUNET_break (0);
153     }
154
155     if (0 != strcmp(n, s_name))
156     {
157       GNUNET_break (0);
158     }
159
160     if (RECORDS != rd_count)
161     {
162       GNUNET_break (0);
163     }
164
165     for (c = 0; c < RECORDS; c++)
166     {
167       if (GNUNET_NO == GNUNET_NAMESTORE_records_cmp (&rd[c], &s_rd[c]))
168       {
169         GNUNET_break (0);
170       }
171     }
172     found = GNUNET_YES;
173     res = 0;
174   }
175   else
176   {
177     if (found != GNUNET_YES)
178     {
179       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to lookup records for name `%s'\n", s_name);
180       res = 1;
181     }
182     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Lookup done for name %s'\n", s_name);
183   }
184   GNUNET_SCHEDULER_add_now(&end, NULL);
185 }
186
187 void
188 put_cont (void *cls, int32_t success, const char *emsg)
189 {
190   char * name = cls;
191
192   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name store added record for `%s': %s\n", name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
193   if (success == GNUNET_OK)
194   {
195     res = 0;
196     GNUNET_NAMESTORE_lookup_record (nsh, &s_zone, name, 0, &name_lookup_proc, NULL);
197   }
198   else
199   {
200     res = 1;
201     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to put records for name `%s'\n", name);
202     GNUNET_SCHEDULER_add_now(&end, NULL);
203   }
204 }
205
206 static struct GNUNET_NAMESTORE_RecordData *
207 create_record (int count)
208 {
209   int c;
210   struct GNUNET_NAMESTORE_RecordData * rd;
211   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
212
213   for (c = 0; c < RECORDS; c++)
214   {
215   rd[c].expiration = GNUNET_TIME_absolute_get();
216   rd[c].record_type = TEST_RECORD_TYPE;
217   rd[c].data_size = TEST_RECORD_DATALEN;
218   rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
219   memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
220   }
221
222   return rd;
223 }
224
225 void
226 delete_existing_db (const struct GNUNET_CONFIGURATION_Handle *cfg)
227 {
228   char *afsdir;
229
230   if (GNUNET_OK ==
231       GNUNET_CONFIGURATION_get_value_filename (cfg, "namestore-sqlite",
232                                                "FILENAME", &afsdir))
233   {
234     if (GNUNET_OK == GNUNET_DISK_file_test (afsdir))
235       if (GNUNET_OK == GNUNET_DISK_file_test (afsdir))
236         if (GNUNET_OK == GNUNET_DISK_directory_remove(afsdir))
237           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Deleted existing database `%s' \n", afsdir);
238    GNUNET_free (afsdir);
239   }
240
241 }
242
243 static void
244 run (void *cls, char *const *args, const char *cfgfile,
245      const struct GNUNET_CONFIGURATION_Handle *cfg)
246 {
247   delete_existing_db(cfg);
248   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
249
250   size_t rd_ser_len;
251
252   /* load privat key from file not included in zonekey dir */
253   privkey = GNUNET_CRYPTO_rsa_key_create_from_file("test_hostkey");
254   GNUNET_assert (privkey != NULL);
255   /* get public key */
256   GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
257
258   /* create record */
259   s_name = "dummy.dummy.gnunet";
260   s_rd = create_record (RECORDS);
261
262   rd_ser_len = GNUNET_NAMESTORE_records_get_size(RECORDS, s_rd);
263   char rd_ser[rd_ser_len];
264   GNUNET_NAMESTORE_records_serialize(RECORDS, s_rd, rd_ser_len, rd_ser);
265
266   /* sign */
267   s_signature = GNUNET_NAMESTORE_create_signature(privkey, s_rd[0].expiration, s_name, s_rd, RECORDS);
268
269   /* create random zone hash */
270   GNUNET_CRYPTO_short_hash (&pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded), &s_zone);
271   start_arm (cfgfile);
272   GNUNET_assert (arm != NULL);
273
274   nsh = GNUNET_NAMESTORE_connect (cfg);
275   GNUNET_break (NULL != nsh);
276
277   GNUNET_break (s_rd != NULL);
278   GNUNET_break (s_name != NULL);
279
280   GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
281                                GNUNET_TIME_UNIT_FOREVER_ABS,
282                                RECORDS, s_rd, s_signature, put_cont, s_name);
283 }
284
285
286 static int
287 check ()
288 {
289   static char *const argv[] = { "test-namestore-api",
290     "-c",
291     "test_namestore_api.conf",
292 #if VERBOSE
293     "-L", "DEBUG",
294 #endif
295     NULL
296   };
297   static struct GNUNET_GETOPT_CommandLineOption options[] = {
298     GNUNET_GETOPT_OPTION_END
299   };
300
301   res = 1;
302   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, "test-namestore-api",
303                       "nohelp", options, &run, &res);
304   return res;
305 }
306
307 int
308 main (int argc, char *argv[])
309 {
310   int ret;
311
312   ret = check ();
313   GNUNET_free (s_signature);
314   return ret;
315 }
316
317 /* end of test_namestore_api.c */