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