-cleanup
[oweals/gnunet.git] / src / gns / test_gns_simple_shorten.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_shorten.c
22  * @brief basic shorten test for gns api
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 "../namestore/namestore.h"
32 #include "gnunet_dnsparser_lib.h"
33 #include "gnunet_gns_service.h"
34
35 /* DEFINES */
36 #define VERBOSE GNUNET_YES
37
38 /* Timeout for entire testcase */
39 #define TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 10)
40
41 /* If number of peers not in config file, use this number */
42 #define DEFAULT_NUM_PEERS 2
43
44 /* test records to resolve */
45 #define TEST_DOMAIN "www.alice.bob.gnunet"
46 #define TEST_IP "127.0.0.1"
47 #define TEST_RECORD_NAME "www"
48
49 #define TEST_AUTHORITY_BOB "bob"
50 #define TEST_AUTHORITY_ALICE "alice"
51 #define TEST_ALICE_PSEU "carol"
52 #define TEST_EXPECTED_RESULT "www.carol.gnunet"
53
54 /* Globals */
55
56 /**
57  * Directory to store temp data in, defined in config file
58  */
59 static char *test_directory;
60
61 struct GNUNET_TESTING_Daemon *d1;
62
63
64 /* Task handle to use to schedule test failure */
65 GNUNET_SCHEDULER_TaskIdentifier die_task;
66
67 /* Global return value (0 for success, anything else for failure) */
68 static int ok;
69
70 static struct GNUNET_NAMESTORE_Handle *namestore_handle;
71
72 static struct GNUNET_GNS_Handle *gns_handle;
73
74 const struct GNUNET_CONFIGURATION_Handle *cfg;
75
76 /**
77  * Check whether peers successfully shut down.
78  */
79 static void
80 shutdown_callback (void *cls, const char *emsg)
81 {
82   if (emsg != NULL)
83   {
84     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Error on shutdown! ret=%d\n", ok);
85     if (ok == 0)
86       ok = 2;
87   }
88
89   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "done(ret=%d)!\n", ok);
90 }
91
92 /**
93  * Called when gns shorten finishes
94  */
95 static void
96 process_shorten_result(void* cls, const char* sname)
97 {
98   GNUNET_GNS_disconnect(gns_handle);
99
100   ok = 0;
101
102   if (sname == NULL)
103   {
104     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
105                 "shorten test failed!\n");
106     ok = 1;
107   }
108   else
109   {
110     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
111                 "%s shortened to %s\n", (char*)cls, sname);
112     if (0 != strcmp(sname, TEST_EXPECTED_RESULT))
113     {
114       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
115                   "shorten test failed! (wanted: %s got: %s\n",
116                   (char*)cls, sname);
117       ok = 1;
118     }
119
120     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "shorten test succeeded!\n");
121
122   }
123
124   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer1!\n");
125   GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &shutdown_callback, NULL,
126                               GNUNET_YES, GNUNET_NO);
127 }
128
129 /**
130  * Function scheduled to be run on the successful start of services
131  * tries to shorten the name TEST_DOMAIN using gns
132  */
133 static void
134 commence_testing (void *cls, int32_t success, const char *emsg)
135 {
136   
137   
138
139   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
140               "disconnecting from namestore\n");
141   GNUNET_NAMESTORE_disconnect(namestore_handle, GNUNET_YES);
142   
143   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
144               "connecting to gns\n");
145   gns_handle = GNUNET_GNS_connect(cfg);
146
147   if (NULL == gns_handle)
148   {
149     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
150                 "failed to connect to gns\n");
151     ok = 1;
152     return;
153   }
154
155   GNUNET_GNS_shorten(gns_handle, TEST_DOMAIN, &process_shorten_result,
156                      TEST_DOMAIN);
157   
158 }
159
160 /**
161  * Continuation for the GNUNET_DHT_get_stop call, so that we don't shut
162  * down the peers without freeing memory associated with GET request.
163  */
164 static void
165 end_badly_cont (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
166 {
167
168   if (d1 != NULL)
169     GNUNET_TESTING_daemon_stop (d1, TIMEOUT, &shutdown_callback, NULL,
170                                 GNUNET_YES, GNUNET_NO);
171   GNUNET_SCHEDULER_cancel (die_task);
172 }
173
174 /**
175  * Check if the get_handle is being used, if so stop the request.  Either
176  * way, schedule the end_badly_cont function which actually shuts down the
177  * test.
178  */
179 static void
180 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
181 {
182   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Failing test with error: `%s'!\n",
183               (char *) cls);
184   GNUNET_SCHEDULER_add_now (&end_badly_cont, NULL);
185   ok = 1;
186 }
187
188 static void
189 do_shorten(void *cls, const struct GNUNET_PeerIdentity *id,
190           const struct GNUNET_CONFIGURATION_Handle *cfg,
191           struct GNUNET_TESTING_Daemon *d, const char *emsg)
192 {
193   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded our_pkey;
194   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
195   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded bob_pkey;
196   struct GNUNET_CRYPTO_RsaPrivateKey *our_key;
197   struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
198   struct GNUNET_CRYPTO_RsaPrivateKey *bob_key;
199   GNUNET_HashCode bob_hash;
200   GNUNET_HashCode alice_hash;
201   struct GNUNET_CRYPTO_RsaSignature *sig;
202   char* our_keyfile;
203
204   GNUNET_SCHEDULER_cancel (die_task);
205
206   /* put records into namestore */
207   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
208   if (NULL == namestore_handle)
209   {
210     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
211     ok = -1;
212     return;
213   }
214
215   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
216                                                           "ZONEKEY",
217                                                           &our_keyfile))
218   {
219     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
220     ok = -1;
221     return;
222   }
223
224   our_key = GNUNET_CRYPTO_rsa_key_create_from_file (our_keyfile);
225   GNUNET_free(our_keyfile);
226
227   bob_key = GNUNET_CRYPTO_rsa_key_create ();
228   alice_key = GNUNET_CRYPTO_rsa_key_create ();
229   
230   GNUNET_CRYPTO_rsa_key_get_public (our_key, &our_pkey);
231   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
232   GNUNET_CRYPTO_rsa_key_get_public (bob_key, &bob_pkey);
233
234   struct GNUNET_NAMESTORE_RecordData rd;
235   char* ip = TEST_IP;
236   struct in_addr *web = GNUNET_malloc(sizeof(struct in_addr));
237   rd.expiration = GNUNET_TIME_absolute_get_forever ();
238   GNUNET_assert(1 == inet_pton (AF_INET, ip, web));
239   
240   GNUNET_CRYPTO_hash(&bob_pkey, sizeof(bob_pkey), &bob_hash);
241
242   rd.data_size = sizeof(GNUNET_HashCode);
243   rd.data = &bob_hash;
244   rd.record_type = GNUNET_GNS_RECORD_PKEY;
245   
246   /* put bob into our zone */
247   GNUNET_NAMESTORE_record_create (namestore_handle,
248                                   our_key,
249                                   TEST_AUTHORITY_BOB,
250                                   &rd,
251                                   NULL,
252                                   NULL);
253   
254   /* put alice into bobs zone */
255   GNUNET_CRYPTO_hash(&alice_pkey, sizeof(alice_pkey), &alice_hash);
256   rd.data = &alice_hash;
257   sig = GNUNET_NAMESTORE_create_signature(bob_key, GNUNET_TIME_absolute_get_forever(), TEST_AUTHORITY_ALICE,
258                                           &rd, 1);
259
260   GNUNET_NAMESTORE_record_put (namestore_handle,
261                                &bob_pkey,
262                                TEST_AUTHORITY_ALICE,
263                                GNUNET_TIME_absolute_get_forever(),
264                                1,
265                                &rd,
266                                sig,
267                                NULL,
268                                NULL);
269
270   /* put www A record and PSEU into alice's zone */
271
272   rd.data_size = sizeof(struct in_addr);
273   rd.data = web;
274   rd.record_type = GNUNET_DNSPARSER_TYPE_A;
275   sig = GNUNET_NAMESTORE_create_signature(alice_key,GNUNET_TIME_absolute_get_forever(),  TEST_RECORD_NAME,
276                                           &rd, 1);
277
278   GNUNET_NAMESTORE_record_put (namestore_handle,
279                                &alice_pkey,
280                                TEST_RECORD_NAME,
281                                GNUNET_TIME_absolute_get_forever(),
282                                1,
283                                &rd,
284                                sig,
285                                NULL,
286                                NULL);
287
288   rd.data_size = sizeof(GNUNET_HashCode);
289   rd.data = &alice_hash;
290   rd.record_type = GNUNET_GNS_RECORD_PKEY;
291   GNUNET_free(sig);
292
293   GNUNET_NAMESTORE_record_create (namestore_handle,
294                                our_key,
295                                TEST_ALICE_PSEU,
296                                &rd,
297                                &commence_testing,
298                                NULL);
299
300
301 }
302
303 static void
304 run (void *cls, char *const *args, const char *cfgfile,
305      const struct GNUNET_CONFIGURATION_Handle *c)
306 {
307   cfg = c;
308    /* Get path from configuration file */
309   if (GNUNET_YES !=
310       GNUNET_CONFIGURATION_get_value_string (cfg, "paths", "servicehome",
311                                              &test_directory))
312   {
313     ok = 404;
314     return;
315   }
316
317     
318   /* Set up a task to end testing if peer start fails */
319   die_task =
320       GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly,
321                                     "didn't start all daemons in reasonable amount of time!!!");
322   
323   /* Start alice */
324   d1 = GNUNET_TESTING_daemon_start(cfg, TIMEOUT, GNUNET_NO, NULL, NULL, 0,
325                                    NULL, NULL, NULL, &do_shorten, NULL);
326 }
327
328 static int
329 check ()
330 {
331   int ret;
332
333   /* Arguments for GNUNET_PROGRAM_run */
334   char *const argv[] = { "test-gns-simple-shorten", /* Name to give running binary */
335     "-c",
336     "test_gns_simple_lookup.conf",       /* Config file to use */
337 #if VERBOSE
338     "-L", "DEBUG",
339 #endif
340     NULL
341   };
342   struct GNUNET_GETOPT_CommandLineOption options[] = {
343     GNUNET_GETOPT_OPTION_END
344   };
345   /* Run the run function as a new program */
346   ret =
347       GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv,
348                           "test-gns-simple-shorten", "nohelp", options, &run,
349                           &ok);
350   if (ret != GNUNET_OK)
351   {
352     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
353                 "`test-gns-simple-shorten': Failed with error code %d\n", ret);
354   }
355   return ok;
356 }
357
358 int
359 main (int argc, char *argv[])
360 {
361   int ret;
362
363   GNUNET_log_setup ("test-gns-simple-lookup",
364 #if VERBOSE
365                     "DEBUG",
366 #else
367                     "WARNING",
368 #endif
369                     NULL);
370   ret = check ();
371   /**
372    * Need to remove base directory, subdirectories taken care
373    * of by the testing framework.
374    */
375   return ret;
376 }
377
378 /* end of test_gns_twopeer.c */