- remove http
[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_close (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 failed = GNUNET_NO;
141   int c;
142
143   if (n != NULL)
144   {
145     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Checking returned results\n");
146     if (0 != memcmp (zone_key, &pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded)))
147     {
148       GNUNET_break (0);
149       failed = GNUNET_YES;
150     }
151
152     if (0 != memcmp (signature, s_signature, sizeof (struct GNUNET_CRYPTO_RsaSignature)))
153     {
154       GNUNET_break (0);
155       failed = GNUNET_YES;
156     }
157
158     if (0 != strcmp(n, s_name))
159     {
160       GNUNET_break (0);
161       failed = GNUNET_YES;
162     }
163
164     if (RECORDS != rd_count)
165     {
166       GNUNET_break (0);
167       failed = GNUNET_YES;
168     }
169
170     for (c = 0; c < RECORDS; c++)
171     {
172       if (GNUNET_NO == GNUNET_NAMESTORE_records_cmp (&rd[c], &s_rd[c]))
173       {
174         GNUNET_break (0);
175         failed = GNUNET_YES;
176       }
177     }
178     found = GNUNET_YES;
179     res = 0;
180   }
181   else
182   {
183     if (found != GNUNET_YES)
184     {
185       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to lookup records for name `%s'\n", s_name);
186       res = 1;
187     }
188     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Lookup done for name %s'\n", s_name);
189   }
190   GNUNET_SCHEDULER_add_now(&end, NULL);
191 }
192
193 void
194 put_cont (void *cls, int32_t success, const char *emsg)
195 {
196   char * name = cls;
197
198   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name store added record for `%s': %s\n", name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
199   if (success == GNUNET_OK)
200   {
201     res = 0;
202     GNUNET_NAMESTORE_lookup_record (nsh, &s_zone, name, 0, &name_lookup_proc, NULL);
203   }
204   else
205   {
206     res = 1;
207     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to put records for name `%s'\n", name);
208     GNUNET_SCHEDULER_add_now(&end, NULL);
209   }
210 }
211
212 static struct GNUNET_NAMESTORE_RecordData *
213 create_record (int count)
214 {
215   int c;
216   struct GNUNET_NAMESTORE_RecordData * rd;
217   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
218
219   for (c = 0; c < RECORDS; c++)
220   {
221   rd[c].expiration = GNUNET_TIME_absolute_get();
222   rd[c].record_type = TEST_RECORD_TYPE;
223   rd[c].data_size = TEST_RECORD_DATALEN;
224   rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
225   memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
226   }
227
228   return rd;
229 }
230
231 void
232 delete_existing_db (const struct GNUNET_CONFIGURATION_Handle *cfg)
233 {
234   char *afsdir;
235
236   if (GNUNET_OK ==
237       GNUNET_CONFIGURATION_get_value_filename (cfg, "namestore-sqlite",
238                                                "FILENAME", &afsdir))
239   {
240     if (GNUNET_OK == GNUNET_DISK_file_test (afsdir))
241       if (GNUNET_OK == GNUNET_DISK_file_test (afsdir))
242         if (GNUNET_OK == GNUNET_DISK_directory_remove(afsdir))
243           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Deleted existing database `%s' \n", afsdir);
244    GNUNET_free (afsdir);
245   }
246
247 }
248
249 static void
250 run (void *cls, char *const *args, const char *cfgfile,
251      const struct GNUNET_CONFIGURATION_Handle *cfg)
252 {
253   delete_existing_db(cfg);
254   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
255
256   size_t rd_ser_len;
257
258   /* load privat key from file not included in zonekey dir */
259   privkey = GNUNET_CRYPTO_rsa_key_create_from_file("test_hostkey");
260   GNUNET_assert (privkey != NULL);
261   /* get public key */
262   GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
263
264   /* create record */
265   s_name = "dummy.dummy.gnunet";
266   s_rd = create_record (RECORDS);
267
268   rd_ser_len = GNUNET_NAMESTORE_records_get_size(RECORDS, s_rd);
269   char rd_ser[rd_ser_len];
270   GNUNET_NAMESTORE_records_serialize(RECORDS, s_rd, rd_ser_len, rd_ser);
271
272   /* sign */
273   s_signature = GNUNET_NAMESTORE_create_signature(privkey, s_rd[0].expiration, s_name, s_rd, RECORDS);
274
275   /* create random zone hash */
276   GNUNET_CRYPTO_short_hash (&pubkey, sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded), &s_zone);
277   start_arm (cfgfile);
278   GNUNET_assert (arm != NULL);
279
280   nsh = GNUNET_NAMESTORE_connect (cfg);
281   GNUNET_break (NULL != nsh);
282
283   GNUNET_break (s_rd != NULL);
284   GNUNET_break (s_name != NULL);
285
286   GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
287                               GNUNET_TIME_absolute_get_forever(),
288                               RECORDS, s_rd, s_signature, put_cont, s_name);
289
290
291
292 }
293
294 static int
295 check ()
296 {
297   static char *const argv[] = { "test-namestore-api",
298     "-c",
299     "test_namestore_api.conf",
300 #if VERBOSE
301     "-L", "DEBUG",
302 #endif
303     NULL
304   };
305   static struct GNUNET_GETOPT_CommandLineOption options[] = {
306     GNUNET_GETOPT_OPTION_END
307   };
308
309   res = 1;
310   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, "test-namestore-api",
311                       "nohelp", options, &run, &res);
312   return res;
313 }
314
315 int
316 main (int argc, char *argv[])
317 {
318   int ret;
319
320   ret = check ();
321   GNUNET_free (s_signature);
322   return ret;
323 }
324
325 /* end of test_namestore_api.c */