-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_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 GNUNUET_NAMESTORE_Handle *namestore_handle;
79
80 const struct GNUNET_CONFIGURATION_Handle *cfg;
81
82 /**
83  * Check whether peers successfully shut down.
84  */
85 void
86 shutdown_callback (void *cls, const char *emsg)
87 {
88   if (emsg != NULL)
89   {
90     if (ok == 0)
91       ok = 2;
92   }
93
94   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "done(ret=%d)!\n", ok);
95 }
96
97 /**
98  * Function scheduled to be run on the successful completion of this
99  * testcase.  Specifically, called when our get request completes.
100  */
101 static void
102 finish_testing (void *cls, int32_t success, const char *emsg)
103 {
104   struct hostent *he;
105   struct in_addr a;
106   char* addr;
107   
108   GNUNET_NAMESTORE_disconnect(namestore_handle, GNUNET_YES);
109
110   he = gethostbyname (TEST_DOMAIN);
111
112   if (!he)
113   {
114     ok = 2;
115   }
116   else
117   {
118     ok = 1;
119     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", he->h_name);
120     while (*he->h_addr_list)
121     {
122       memcpy(&a, *he->h_addr_list++, sizeof(a));
123       addr = inet_ntoa(a);
124       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "address: %s\n", addr);
125       if (0 == strcmp(addr, TEST_IP))
126       {
127         GNUNET_log (GNUNET_ERROR_TYPE_INFO,
128                     "%s correctly resolved to %s!\n", TEST_DOMAIN, addr);
129         ok = 0;
130       }
131       else
132       {
133         GNUNET_log (GNUNET_ERROR_TYPE_INFO, "No resolution!\n");
134       }
135     }
136   }
137   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer1!\n");
138   GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &shutdown_callback, NULL,
139                               GNUNET_YES, GNUNET_NO);
140 }
141
142 /**
143  * Continuation for the GNUNET_DHT_get_stop call, so that we don't shut
144  * down the peers without freeing memory associated with GET request.
145  */
146 static void
147 end_badly_cont (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
148 {
149
150   if (d1 != NULL)
151     GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &shutdown_callback, NULL,
152                                 GNUNET_YES, GNUNET_NO);
153   GNUNET_SCHEDULER_cancel (die_task);
154 }
155
156 /**
157  * Check if the get_handle is being used, if so stop the request.  Either
158  * way, schedule the end_badly_cont function which actually shuts down the
159  * test.
160  */
161 static void
162 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
163 {
164   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Failing test with error: `%s'!\n",
165               (char *) cls);
166   GNUNET_SCHEDULER_add_now (&end_badly_cont, NULL);
167   ok = 1;
168 }
169
170 static void
171 do_lookup(void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
172 {
173   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
174   struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
175   char* alice_keyfile;
176
177   GNUNET_SCHEDULER_cancel (die_task);
178
179   /* put records into namestore */
180   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
181   if (NULL == namestore_handle)
182   {
183     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
184     ok = -1;
185     return;
186   }
187
188   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (cfg, "gns",
189                                                           "ZONEKEY",
190                                                           &alice_keyfile))
191   {
192     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get alice's key from cfg\n");
193     ok = -1;
194     return;
195   }
196
197   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
198
199   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
200
201   struct GNUNET_NAMESTORE_RecordData rd;
202   char* ip = TEST_IP;
203   struct in_addr *web = GNUNET_malloc(sizeof(struct in_addr));
204   rd.expiration = GNUNET_TIME_absolute_get_forever ();
205   GNUNET_assert(1 == inet_pton (AF_INET, ip, web));
206   rd.data_size = sizeof(struct in_addr);
207   rd.data = web;
208   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
209
210   GNUNET_NAMESTORE_record_create (namestore_handle,
211                                   alice_key,
212                                   TEST_RECORD_NAME,
213                                   &rd,
214                                   &finish_testing,
215                                   NULL);
216
217 }
218
219 static void
220 run (void *cls, char *const *args, const char *cfgfile,
221      const struct GNUNET_CONFIGURATION_Handle *c)
222 {
223   cfg = c;
224    /* Get path from configuration file */
225   if (GNUNET_YES !=
226       GNUNET_CONFIGURATION_get_value_string (cfg, "paths", "servicehome",
227                                              &test_directory))
228   {
229     ok = 404;
230     return;
231   }
232
233     
234   /* Set up a task to end testing if peer start fails */
235   die_task =
236       GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly,
237                                     "didn't start all daemons in reasonable amount of time!!!");
238   
239   /* Start alice */
240   d1 = GNUNET_TESTING_daemon_start(cfg, TIMEOUT, GNUNET_NO, NULL, NULL, 0,
241                                    NULL, NULL, NULL, &do_lookup, NULL);
242 }
243
244 static int
245 check ()
246 {
247   int ret;
248
249   /* Arguments for GNUNET_PROGRAM_run */
250   char *const argv[] = { "test-gns-simple-lookup", /* Name to give running binary */
251     "-c",
252     "test_gns_simple_lookup.conf",       /* Config file to use */
253 #if VERBOSE
254     "-L", "DEBUG",
255 #endif
256     NULL
257   };
258   struct GNUNET_GETOPT_CommandLineOption options[] = {
259     GNUNET_GETOPT_OPTION_END
260   };
261   /* Run the run function as a new program */
262   ret =
263       GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
264                           "test-gns-simple-lookup", "nohelp", options, &run,
265                           &ok);
266   if (ret != GNUNET_OK)
267   {
268     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
269                 "`test-gns-simple-lookup': Failed with error code %d\n", ret);
270   }
271   return ok;
272 }
273
274 int
275 main (int argc, char *argv[])
276 {
277   int ret;
278
279   GNUNET_log_setup ("test-gns-simple-lookup",
280 #if VERBOSE
281                     "DEBUG",
282 #else
283                     "WARNING",
284 #endif
285                     NULL);
286   ret = check ();
287   /**
288    * Need to remove base directory, subdirectories taken care
289    * of by the testing framework.
290    */
291   return ret;
292 }
293
294 /* end of test_gns_twopeer.c */