- changes
[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
28 #define VERBOSE GNUNET_NO
29
30 #define RECORDS 5
31 #define TEST_RECORD_TYPE 1234
32 #define TEST_RECORD_DATALEN 123
33 #define TEST_RECORD_DATA 'a'
34
35 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
36
37 static struct GNUNET_NAMESTORE_Handle * nsh;
38
39 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
40 static struct GNUNET_OS_Process *arm;
41
42 static struct GNUNET_CRYPTO_RsaPrivateKey * privkey;
43 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pubkey;
44 static GNUNET_HashCode zone;
45 static char *name;
46
47 struct GNUNET_NAMESTORE_RecordData *rd;
48
49 static int res;
50
51 static void
52 start_arm (const char *cfgname)
53 {
54   arm = GNUNET_OS_start_process (GNUNET_YES, NULL, NULL, "gnunet-service-arm",
55                                "gnunet-service-arm", "-c", cfgname,
56 #if VERBOSE_PEERS
57                                "-L", "DEBUG",
58 #else
59                                "-L", "ERROR",
60 #endif
61                                NULL);
62 }
63
64 static void
65 stop_arm ()
66 {
67   if (NULL != arm)
68   {
69     if (0 != GNUNET_OS_process_kill (arm, SIGTERM))
70       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
71     GNUNET_OS_process_wait (arm);
72     GNUNET_OS_process_close (arm);
73     arm = NULL;
74   }
75 }
76
77 /**
78  * Re-establish the connection to the service.
79  *
80  * @param cls handle to use to re-connect.
81  * @param tc scheduler context
82  */
83 static void
84 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
85 {
86   if (nsh != NULL)
87     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
88   nsh = NULL;
89
90   if (privkey != NULL)
91     GNUNET_CRYPTO_rsa_key_free (privkey);
92   privkey = NULL;
93
94   if (NULL != arm)
95     stop_arm();
96
97   res = 1;
98 }
99
100
101 static void
102 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
103 {
104   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
105   {
106     GNUNET_SCHEDULER_cancel (endbadly_task);
107     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
108   }
109
110   if (privkey != NULL)
111     GNUNET_CRYPTO_rsa_key_free (privkey);
112   privkey = NULL;
113
114   if (nsh != NULL)
115     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
116   nsh = NULL;
117
118   if (NULL != arm)
119     stop_arm();
120 }
121
122 void name_lookup_proc (void *cls,
123                             const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *zone_key,
124                             struct GNUNET_TIME_Absolute expire,
125                             const char *n,
126                             unsigned int rd_count,
127                             const struct GNUNET_NAMESTORE_RecordData *rd,
128                             const struct GNUNET_CRYPTO_RsaSignature *signature)
129 {
130   static int found = GNUNET_NO;
131
132   if (n != NULL)
133   {
134     found = GNUNET_YES;
135     res = 0;
136   }
137   else
138   {
139     if (found != GNUNET_YES)
140     {
141       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to lookup records for name `%s'\n", name);
142       res = 1;
143     }
144     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Lookup done for name %s'\n", name);
145   }
146
147   GNUNET_SCHEDULER_add_now(&end, NULL);
148 }
149
150 void
151 put_cont (void *cls, int32_t success, const char *emsg)
152 {
153   char * name = cls;
154
155   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name store added record for `%s': %s\n", name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
156   if (success == GNUNET_OK)
157   {
158     res = 0;
159     GNUNET_NAMESTORE_lookup_record (nsh, &zone, name, 0, &name_lookup_proc, NULL);
160   }
161   else
162   {
163     res = 1;
164     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failed to put records for name `%s'\n", name);
165     GNUNET_SCHEDULER_add_now(&end, NULL);
166   }
167 }
168
169 static struct GNUNET_NAMESTORE_RecordData *
170 create_record (int count)
171 {
172   int c;
173   struct GNUNET_NAMESTORE_RecordData * rd;
174   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
175
176   for (c = 0; c < RECORDS; c++)
177   {
178   rd[c].expiration = GNUNET_TIME_absolute_get();
179   rd[c].record_type = TEST_RECORD_TYPE;
180   rd[c].data_size = TEST_RECORD_DATALEN;
181   rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
182   memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
183   }
184
185   return rd;
186 }
187
188 static void
189 run (void *cls, char *const *args, const char *cfgfile,
190      const struct GNUNET_CONFIGURATION_Handle *cfg)
191 {
192   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
193
194   /* load privat key */
195   privkey = GNUNET_CRYPTO_rsa_key_create_from_file("hostkey");
196   GNUNET_assert (privkey != NULL);
197   /* get public key */
198   GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
199
200   /* create random zone hash */
201   GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_WEAK, &zone);
202
203   struct GNUNET_CRYPTO_RsaSignature signature;
204
205   start_arm (cfgfile);
206   GNUNET_assert (arm != NULL);
207
208   nsh = GNUNET_NAMESTORE_connect (cfg);
209   GNUNET_break (NULL != nsh);
210
211   /* create record */
212   name = "dummy.dummy.gnunet";
213   rd = create_record (RECORDS);
214
215   GNUNET_break (rd != NULL);
216   GNUNET_break (name != NULL);
217
218   GNUNET_NAMESTORE_record_put (nsh, &pubkey, name,
219                               GNUNET_TIME_absolute_get_forever(),
220                               RECORDS, rd, &signature, put_cont, name);
221
222   int c;
223   for (c = 0; c < RECORDS; c++)
224     GNUNET_free_non_null((void *) rd[c].data);
225   GNUNET_free (rd);
226
227 }
228
229 static int
230 check ()
231 {
232   static char *const argv[] = { "test-namestore-api",
233     "-c",
234     "test_namestore_api.conf",
235 #if VERBOSE
236     "-L", "DEBUG",
237 #endif
238     NULL
239   };
240   static struct GNUNET_GETOPT_CommandLineOption options[] = {
241     GNUNET_GETOPT_OPTION_END
242   };
243
244   res = 1;
245   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, "test-namestore-api",
246                       "nohelp", options, &run, &res);
247   return res;
248 }
249
250 int
251 main (int argc, char *argv[])
252 {
253   int ret;
254
255   ret = check ();
256
257   return ret;
258 }
259
260 /* end of test_namestore_api.c */