-consistently use struct GNUNET_HashCode
[oweals/gnunet.git] / src / gns / test_gns_simple_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 gns/test_gns_simple_lookup.c
22  * @brief base testcase for testing a local GNS record lookup
23  *
24  */
25 #include "platform.h"
26 #include "gnunet_testing_lib.h"
27 #include "gnunet_core_service.h"
28 #include "block_dns.h"
29 #include "gnunet_signatures.h"
30 #include "gnunet_namestore_service.h"
31 #include "gnunet_dnsparser_lib.h"
32 #include "gnunet_gns_service.h"
33
34 /* DEFINES */
35 #define VERBOSE GNUNET_YES
36
37 /* Timeout for entire testcase */
38 #define TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 20)
39
40 /* If number of peers not in config file, use this number */
41 #define DEFAULT_NUM_PEERS 2
42
43 /* test records to resolve */
44 #define TEST_DOMAIN "www.gnunet"
45 #define TEST_IP "127.0.0.1"
46 #define TEST_RECORD_NAME "www"
47
48 /* Globals */
49
50 /**
51  * Directory to store temp data in, defined in config file
52  */
53 static char *test_directory;
54
55 static struct GNUNET_TESTING_PeerGroup *pg;
56
57 /* Task handle to use to schedule test failure */
58 GNUNET_SCHEDULER_TaskIdentifier die_task;
59
60 /* Global return value (0 for success, anything else for failure) */
61 static int ok;
62
63 static struct GNUNET_NAMESTORE_Handle *namestore_handle;
64
65 static struct GNUNET_GNS_Handle *gns_handle;
66
67 const struct GNUNET_CONFIGURATION_Handle *cfg;
68
69 /**
70  * Check whether peers successfully shut down.
71  */
72 void
73 shutdown_callback (void *cls, const char *emsg)
74 {
75   if (emsg != NULL)
76   {
77     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Error on shutdown! ret=%d\n", ok);
78     if (ok == 0)
79       ok = 2;
80   }
81
82   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "done(ret=%d)!\n", ok);
83 }
84
85
86 static void
87 on_lookup_result(void *cls, uint32_t rd_count,
88                  const struct GNUNET_NAMESTORE_RecordData *rd)
89 {
90   struct in_addr a;
91   int i;
92   char* addr;
93   
94   if (rd_count == 0)
95   {
96     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
97                 "Lookup failed, rp_filtering?\n");
98     ok = 2;
99   }
100   else
101   {
102     ok = 1;
103     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", (char*)cls);
104     for (i=0; i<rd_count; i++)
105     {
106       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "type: %d\n", rd[i].record_type);
107       if (rd[i].record_type == GNUNET_GNS_RECORD_TYPE_A)
108       {
109         memcpy(&a, rd[i].data, sizeof(a));
110         addr = inet_ntoa(a);
111         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "address: %s\n", addr);
112         if (0 == strcmp(addr, TEST_IP))
113         {
114           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
115                     "%s correctly resolved to %s!\n", TEST_DOMAIN, addr);
116           ok = 0;
117         }
118       }
119       else
120       {
121         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No resolution!\n");
122       }
123     }
124   }
125   GNUNET_GNS_disconnect(gns_handle);
126   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer1!\n");
127   GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
128 }
129
130
131 /**
132  * Function scheduled to be run on the successful start of services
133  * tries to look up the dns record for TEST_DOMAIN
134  */
135 static void
136 commence_testing (void *cls, int32_t success, const char *emsg)
137 {
138   
139   
140   GNUNET_NAMESTORE_disconnect(namestore_handle, GNUNET_YES);
141   
142   gns_handle = GNUNET_GNS_connect(cfg);
143
144   if (NULL == gns_handle)
145   {
146     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
147                 "Failed to connect to GNS!\n");
148     ok = 2;
149   }
150
151   GNUNET_GNS_lookup(gns_handle, TEST_DOMAIN, GNUNET_GNS_RECORD_TYPE_A,
152                     GNUNET_YES,
153                     &on_lookup_result, TEST_DOMAIN);
154 }
155
156
157 /**
158  * Continuation for the GNUNET_DHT_get_stop call, so that we don't shut
159  * down the peers without freeing memory associated with GET request.
160  */
161 static void
162 end_badly_cont (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
163 {
164
165   if (pg != NULL)
166     GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
167   GNUNET_SCHEDULER_cancel (die_task);
168 }
169
170 /**
171  * Check if the get_handle is being used, if so stop the request.  Either
172  * way, schedule the end_badly_cont function which actually shuts down the
173  * test.
174  */
175 static void
176 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
177 {
178   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failing test with error: `%s'!\n",
179               (char *) cls);
180   GNUNET_SCHEDULER_add_now (&end_badly_cont, NULL);
181   ok = 1;
182 }
183
184 static void
185 do_lookup(void *cls, const struct GNUNET_PeerIdentity *id,
186           const struct GNUNET_CONFIGURATION_Handle *_cfg,
187           struct GNUNET_TESTING_Daemon *d, const char *emsg)
188 {
189   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
190   struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
191   char* alice_keyfile;
192   
193   cfg = _cfg;
194
195   GNUNET_SCHEDULER_cancel (die_task);
196
197   /* put records into namestore */
198   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
199   if (NULL == namestore_handle)
200   {
201     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
202     ok = -1;
203     return;
204   }
205
206   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
207                                                           "ZONEKEY",
208                                                           &alice_keyfile))
209   {
210     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
211     ok = -1;
212     return;
213   }
214
215   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
216
217   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
218   
219   GNUNET_free(alice_keyfile);
220
221   struct GNUNET_NAMESTORE_RecordData rd;
222   char* ip = TEST_IP;
223   struct in_addr *web = GNUNET_malloc(sizeof(struct in_addr));
224   rd.expiration = GNUNET_TIME_UNIT_FOREVER_ABS;
225   GNUNET_assert(1 == inet_pton (AF_INET, ip, web));
226   rd.data_size = sizeof(struct in_addr);
227   rd.data = web;
228   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
229
230   GNUNET_NAMESTORE_record_create (namestore_handle,
231                                   alice_key,
232                                   TEST_RECORD_NAME,
233                                   &rd,
234                                   &commence_testing,
235                                   NULL);
236   
237   GNUNET_CRYPTO_rsa_key_free(alice_key);
238   GNUNET_free(web);
239
240 }
241
242 static void
243 run (void *cls, char *const *args, const char *cfgfile,
244      const struct GNUNET_CONFIGURATION_Handle *c)
245 {
246   cfg = c;
247    /* Get path from configuration file */
248   if (GNUNET_YES !=
249       GNUNET_CONFIGURATION_get_value_string (cfg, "paths", "servicehome",
250                                              &test_directory))
251   {
252     ok = 404;
253     return;
254   }
255
256     
257   /* Set up a task to end testing if peer start fails */
258   die_task =
259       GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly,
260                                     "didn't start all daemons in reasonable amount of time!!!");
261   
262   /* Start alice */
263   pg = GNUNET_TESTING_daemons_start(cfg, 1, 1, 1, TIMEOUT,
264                                     NULL, NULL, &do_lookup, NULL,
265                                     NULL, NULL, NULL);
266 }
267
268 static int
269 check ()
270 {
271   int ret;
272
273   /* Arguments for GNUNET_PROGRAM_run */
274   char *const argv[] = { "test-gns-simple-lookup", /* Name to give running binary */
275     "-c",
276     "test_gns_simple_lookup.conf",       /* Config file to use */
277 #if VERBOSE
278     "-L", "DEBUG",
279 #endif
280     NULL
281   };
282   struct GNUNET_GETOPT_CommandLineOption options[] = {
283     GNUNET_GETOPT_OPTION_END
284   };
285   /* Run the run function as a new program */
286   ret =
287       GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
288                           "test-gns-simple-lookup", "nohelp", options, &run,
289                           &ok);
290   if (ret != GNUNET_OK)
291   {
292     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
293                 "`test-gns-simple-lookup': Failed with error code %d\n", ret);
294   }
295   return ok;
296 }
297
298 int
299 main (int argc, char *argv[])
300 {
301   int ret;
302
303   GNUNET_log_setup ("test-gns-simple-lookup",
304 #if VERBOSE
305                     "DEBUG",
306 #else
307                     "WARNING",
308 #endif
309                     NULL);
310   ret = check ();
311   /**
312    * Need to remove base directory, subdirectories taken care
313    * of by the testing framework.
314    */
315   return ret;
316 }
317
318 /* end of test_gns_twopeer.c */