a1d6b02aec71389a9a0c1b0d01c65c1a60dd6d48
[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                     NULL,
154                     &on_lookup_result, TEST_DOMAIN);
155 }
156
157
158 /**
159  * Continuation for the GNUNET_DHT_get_stop call, so that we don't shut
160  * down the peers without freeing memory associated with GET request.
161  */
162 static void
163 end_badly_cont (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
164 {
165
166   if (pg != NULL)
167     GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
168   GNUNET_SCHEDULER_cancel (die_task);
169 }
170
171 /**
172  * Check if the get_handle is being used, if so stop the request.  Either
173  * way, schedule the end_badly_cont function which actually shuts down the
174  * test.
175  */
176 static void
177 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
178 {
179   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failing test with error: `%s'!\n",
180               (char *) cls);
181   GNUNET_SCHEDULER_add_now (&end_badly_cont, NULL);
182   ok = 1;
183 }
184
185 static void
186 do_lookup(void *cls, const struct GNUNET_PeerIdentity *id,
187           const struct GNUNET_CONFIGURATION_Handle *_cfg,
188           struct GNUNET_TESTING_Daemon *d, const char *emsg)
189 {
190   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
191   struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
192   char* alice_keyfile;
193   
194   cfg = _cfg;
195
196   GNUNET_SCHEDULER_cancel (die_task);
197
198   /* put records into namestore */
199   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
200   if (NULL == namestore_handle)
201   {
202     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
203     ok = -1;
204     return;
205   }
206
207   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
208                                                           "ZONEKEY",
209                                                           &alice_keyfile))
210   {
211     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
212     ok = -1;
213     return;
214   }
215
216   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
217
218   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
219   
220   GNUNET_free(alice_keyfile);
221
222   struct GNUNET_NAMESTORE_RecordData rd;
223   char* ip = TEST_IP;
224   struct in_addr *web = GNUNET_malloc(sizeof(struct in_addr));
225   rd.expiration = GNUNET_TIME_UNIT_FOREVER_ABS;
226   GNUNET_assert(1 == inet_pton (AF_INET, ip, web));
227   rd.data_size = sizeof(struct in_addr);
228   rd.data = web;
229   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
230
231   GNUNET_NAMESTORE_record_create (namestore_handle,
232                                   alice_key,
233                                   TEST_RECORD_NAME,
234                                   &rd,
235                                   &commence_testing,
236                                   NULL);
237   
238   GNUNET_CRYPTO_rsa_key_free(alice_key);
239   GNUNET_free(web);
240
241 }
242
243 static void
244 run (void *cls, char *const *args, const char *cfgfile,
245      const struct GNUNET_CONFIGURATION_Handle *c)
246 {
247   cfg = c;
248    /* Get path from configuration file */
249   if (GNUNET_YES !=
250       GNUNET_CONFIGURATION_get_value_string (cfg, "paths", "servicehome",
251                                              &test_directory))
252   {
253     ok = 404;
254     return;
255   }
256
257     
258   /* Set up a task to end testing if peer start fails */
259   die_task =
260       GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly,
261                                     "didn't start all daemons in reasonable amount of time!!!");
262   
263   /* Start alice */
264   pg = GNUNET_TESTING_daemons_start(cfg, 1, 1, 1, TIMEOUT,
265                                     NULL, NULL, &do_lookup, NULL,
266                                     NULL, NULL, NULL);
267 }
268
269 static int
270 check ()
271 {
272   int ret;
273
274   /* Arguments for GNUNET_PROGRAM_run */
275   char *const argv[] = { "test-gns-simple-lookup", /* Name to give running binary */
276     "-c",
277     "test_gns_simple_lookup.conf",       /* Config file to use */
278 #if VERBOSE
279     "-L", "DEBUG",
280 #endif
281     NULL
282   };
283   struct GNUNET_GETOPT_CommandLineOption options[] = {
284     GNUNET_GETOPT_OPTION_END
285   };
286   /* Run the run function as a new program */
287   ret =
288       GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
289                           "test-gns-simple-lookup", "nohelp", options, &run,
290                           &ok);
291   if (ret != GNUNET_OK)
292   {
293     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
294                 "`test-gns-simple-lookup': Failed with error code %d\n", ret);
295   }
296   return ok;
297 }
298
299 int
300 main (int argc, char *argv[])
301 {
302   int ret;
303
304   GNUNET_log_setup ("test-gns-simple-lookup",
305 #if VERBOSE
306                     "DEBUG",
307 #else
308                     "WARNING",
309 #endif
310                     NULL);
311   ret = check ();
312   /**
313    * Need to remove base directory, subdirectories taken care
314    * of by the testing framework.
315    */
316   return ret;
317 }
318
319 /* end of test_gns_twopeer.c */