-fix, add config
[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, 5)
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 struct GNUNET_TESTING_Daemon *d1;
56
57
58 /* Task handle to use to schedule test failure */
59 GNUNET_SCHEDULER_TaskIdentifier die_task;
60
61 /* Global return value (0 for success, anything else for failure) */
62 static int ok;
63
64 static struct GNUNET_NAMESTORE_Handle *namestore_handle;
65
66 static struct GNUNET_GNS_Handle *gns_handle;
67
68 const struct GNUNET_CONFIGURATION_Handle *cfg;
69
70 /**
71  * Check whether peers successfully shut down.
72  */
73 void
74 shutdown_callback (void *cls, const char *emsg)
75 {
76   if (emsg != NULL)
77   {
78     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Error on shutdown! ret=%d\n", ok);
79     if (ok == 0)
80       ok = 2;
81   }
82
83   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "done(ret=%d)!\n", ok);
84 }
85
86
87 static void
88 on_lookup_result(void *cls, uint32_t rd_count,
89                  const struct GNUNET_NAMESTORE_RecordData *rd)
90 {
91   struct in_addr a;
92   int i;
93   char* addr;
94   
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_TYPE_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_daemon_stop (d1, TIMEOUT, &shutdown_callback, NULL,
129                               GNUNET_YES, GNUNET_NO);
130 }
131
132
133 /**
134  * Function scheduled to be run on the successful start of services
135  * tries to look up the dns record for TEST_DOMAIN
136  */
137 static void
138 commence_testing (void *cls, int32_t success, const char *emsg)
139 {
140   
141   
142   GNUNET_NAMESTORE_disconnect(namestore_handle, GNUNET_YES);
143   
144   gns_handle = GNUNET_GNS_connect(cfg);
145
146   if (NULL == gns_handle)
147   {
148     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
149                 "Failed to connect to GNS!\n");
150     ok = 2;
151   }
152
153   GNUNET_GNS_lookup(gns_handle, TEST_DOMAIN, GNUNET_GNS_RECORD_TYPE_A,
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 (d1 != NULL)
167     GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &shutdown_callback, NULL,
168                                 GNUNET_YES, GNUNET_NO);
169   GNUNET_SCHEDULER_cancel (die_task);
170 }
171
172 /**
173  * Check if the get_handle is being used, if so stop the request.  Either
174  * way, schedule the end_badly_cont function which actually shuts down the
175  * test.
176  */
177 static void
178 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
179 {
180   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failing test with error: `%s'!\n",
181               (char *) cls);
182   GNUNET_SCHEDULER_add_now (&end_badly_cont, NULL);
183   ok = 1;
184 }
185
186 static void
187 do_lookup(void *cls, const struct GNUNET_PeerIdentity *id,
188           const struct GNUNET_CONFIGURATION_Handle *cfg,
189           struct GNUNET_TESTING_Daemon *d, const char *emsg)
190 {
191   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
192   struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
193   char* alice_keyfile;
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_absolute_get_forever ();
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   d1 = GNUNET_TESTING_daemon_start(cfg, TIMEOUT, GNUNET_NO, NULL, NULL, 0,
264                                    NULL, NULL, NULL, &do_lookup, NULL);
265 }
266
267 static int
268 check ()
269 {
270   int ret;
271
272   /* Arguments for GNUNET_PROGRAM_run */
273   char *const argv[] = { "test-gns-simple-lookup", /* Name to give running binary */
274     "-c",
275     "test_gns_simple_lookup.conf",       /* Config file to use */
276 #if VERBOSE
277     "-L", "DEBUG",
278 #endif
279     NULL
280   };
281   struct GNUNET_GETOPT_CommandLineOption options[] = {
282     GNUNET_GETOPT_OPTION_END
283   };
284   /* Run the run function as a new program */
285   ret =
286       GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
287                           "test-gns-simple-lookup", "nohelp", options, &run,
288                           &ok);
289   if (ret != GNUNET_OK)
290   {
291     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
292                 "`test-gns-simple-lookup': Failed with error code %d\n", ret);
293   }
294   return ok;
295 }
296
297 int
298 main (int argc, char *argv[])
299 {
300   int ret;
301
302   GNUNET_log_setup ("test-gns-simple-lookup",
303 #if VERBOSE
304                     "DEBUG",
305 #else
306                     "WARNING",
307 #endif
308                     NULL);
309   ret = check ();
310   /**
311    * Need to remove base directory, subdirectories taken care
312    * of by the testing framework.
313    */
314   return ret;
315 }
316
317 /* end of test_gns_twopeer.c */