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