-new test, fixes
[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     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 start of services
99  * tries to look up the dns record for TEST_DOMAIN
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_PeerIdentity *id,
172           const struct GNUNET_CONFIGURATION_Handle *cfg,
173           struct GNUNET_TESTING_Daemon *d, const char *emsg)
174 {
175   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
176   struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
177   char* alice_keyfile;
178
179   GNUNET_SCHEDULER_cancel (die_task);
180
181   /* put records into namestore */
182   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
183   if (NULL == namestore_handle)
184   {
185     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
186     ok = -1;
187     return;
188   }
189
190   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_string (cfg, "gns",
191                                                           "ZONEKEY",
192                                                           &alice_keyfile))
193   {
194     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
195     ok = -1;
196     return;
197   }
198
199   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
200
201   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
202
203   struct GNUNET_NAMESTORE_RecordData rd;
204   char* ip = TEST_IP;
205   struct in_addr *web = GNUNET_malloc(sizeof(struct in_addr));
206   rd.expiration = GNUNET_TIME_absolute_get_forever ();
207   GNUNET_assert(1 == inet_pton (AF_INET, ip, web));
208   rd.data_size = sizeof(struct in_addr);
209   rd.data = web;
210   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
211
212   GNUNET_NAMESTORE_record_create (namestore_handle,
213                                   alice_key,
214                                   TEST_RECORD_NAME,
215                                   &rd,
216                                   &finish_testing,
217                                   NULL);
218
219 }
220
221 static void
222 run (void *cls, char *const *args, const char *cfgfile,
223      const struct GNUNET_CONFIGURATION_Handle *c)
224 {
225   cfg = c;
226    /* Get path from configuration file */
227   if (GNUNET_YES !=
228       GNUNET_CONFIGURATION_get_value_string (cfg, "paths", "servicehome",
229                                              &test_directory))
230   {
231     ok = 404;
232     return;
233   }
234
235     
236   /* Set up a task to end testing if peer start fails */
237   die_task =
238       GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly,
239                                     "didn't start all daemons in reasonable amount of time!!!");
240   
241   /* Start alice */
242   d1 = GNUNET_TESTING_daemon_start(cfg, TIMEOUT, GNUNET_NO, NULL, NULL, 0,
243                                    NULL, NULL, NULL, &do_lookup, NULL);
244 }
245
246 static int
247 check ()
248 {
249   int ret;
250
251   /* Arguments for GNUNET_PROGRAM_run */
252   char *const argv[] = { "test-gns-simple-lookup", /* Name to give running binary */
253     "-c",
254     "test_gns_simple_lookup.conf",       /* Config file to use */
255 #if VERBOSE
256     "-L", "DEBUG",
257 #endif
258     NULL
259   };
260   struct GNUNET_GETOPT_CommandLineOption options[] = {
261     GNUNET_GETOPT_OPTION_END
262   };
263   /* Run the run function as a new program */
264   ret =
265       GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
266                           "test-gns-simple-lookup", "nohelp", options, &run,
267                           &ok);
268   if (ret != GNUNET_OK)
269   {
270     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
271                 "`test-gns-simple-lookup': Failed with error code %d\n", ret);
272   }
273   return ok;
274 }
275
276 int
277 main (int argc, char *argv[])
278 {
279   int ret;
280
281   GNUNET_log_setup ("test-gns-simple-lookup",
282 #if VERBOSE
283                     "DEBUG",
284 #else
285                     "WARNING",
286 #endif
287                     NULL);
288   ret = check ();
289   /**
290    * Need to remove base directory, subdirectories taken care
291    * of by the testing framework.
292    */
293   return ret;
294 }
295
296 /* end of test_gns_twopeer.c */