fix
[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   GNUNET_NAMESTORE_disconnect (namestore_handle);
95   if (rd_count == 0)
96   {
97     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
98                 "Lookup failed, rp_filtering?\n");
99     ok = 2;
100   }
101   else
102   {
103     ok = 1;
104     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", (char*)cls);
105     for (i=0; i<rd_count; i++)
106     {
107       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "type: %d\n", rd[i].record_type);
108       if (rd[i].record_type == GNUNET_GNS_RECORD_A)
109       {
110         memcpy(&a, rd[i].data, sizeof(a));
111         addr = inet_ntoa(a);
112         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "address: %s\n", addr);
113         if (0 == strcmp(addr, TEST_IP))
114         {
115           GNUNET_log (GNUNET_ERROR_TYPE_INFO,
116                     "%s correctly resolved to %s!\n", TEST_DOMAIN, addr);
117           ok = 0;
118         }
119       }
120       else
121       {
122         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No resolution!\n");
123       }
124     }
125   }
126   GNUNET_GNS_disconnect(gns_handle);
127   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer1!\n");
128   GNUNET_TESTING_daemons_stop (pg, TIMEOUT, &shutdown_callback, NULL);
129 }
130
131
132 /**
133  * Function scheduled to be run on the successful start of services
134  * tries to look up the dns record for TEST_DOMAIN
135  */
136 static void
137 commence_testing (void *cls, int32_t success, const char *emsg)
138 {
139   
140   
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_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_time = UINT64_MAX;
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   rd.flags = GNUNET_NAMESTORE_RF_AUTHORITY;
231
232   GNUNET_NAMESTORE_record_create (namestore_handle,
233                                   alice_key,
234                                   TEST_RECORD_NAME,
235                                   &rd,
236                                   &commence_testing,
237                                   NULL);
238   
239   GNUNET_CRYPTO_rsa_key_free(alice_key);
240   GNUNET_free(web);
241
242 }
243
244 static void
245 run (void *cls, char *const *args, const char *cfgfile,
246      const struct GNUNET_CONFIGURATION_Handle *c)
247 {
248   cfg = c;
249    /* Get path from configuration file */
250   if (GNUNET_YES !=
251       GNUNET_CONFIGURATION_get_value_string (cfg, "paths", "servicehome",
252                                              &test_directory))
253   {
254     ok = 404;
255     return;
256   }
257
258     
259   /* Set up a task to end testing if peer start fails */
260   die_task =
261       GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly,
262                                     "didn't start all daemons in reasonable amount of time!!!");
263   
264   /* Start alice */
265   pg = GNUNET_TESTING_daemons_start(cfg, 1, 1, 1, TIMEOUT,
266                                     NULL, NULL, &do_lookup, NULL,
267                                     NULL, NULL, NULL);
268 }
269
270 static int
271 check ()
272 {
273   int ret;
274
275   /* Arguments for GNUNET_PROGRAM_run */
276   char *const argv[] = { "test-gns-simple-lookup", /* Name to give running binary */
277     "-c",
278     "test_gns_simple_lookup.conf",       /* Config file to use */
279 #if VERBOSE
280     "-L", "DEBUG",
281 #endif
282     NULL
283   };
284   struct GNUNET_GETOPT_CommandLineOption options[] = {
285     GNUNET_GETOPT_OPTION_END
286   };
287   /* Run the run function as a new program */
288   ret =
289       GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
290                           "test-gns-simple-lookup", "nohelp", options, &run,
291                           &ok);
292   if (ret != GNUNET_OK)
293   {
294     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
295                 "`test-gns-simple-lookup': Failed with error code %d\n", ret);
296   }
297   return ok;
298 }
299
300 int
301 main (int argc, char *argv[])
302 {
303   int ret;
304
305   GNUNET_log_setup ("test-gns-simple-lookup",
306 #if VERBOSE
307                     "DEBUG",
308 #else
309                     "WARNING",
310 #endif
311                     NULL);
312   ret = check ();
313   /**
314    * Need to remove base directory, subdirectories taken care
315    * of by the testing framework.
316    */
317   return ret;
318 }
319
320 /* end of test_gns_twopeer.c */