- next test
[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_simple_lookup.c
22  * @brief base testcase for testing a local GNS record lookup
23  *
24  */
25 #include "platform.h"
26 #include "gnunet_testing_lib-new.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 "gnunet_dnsparser_lib.h"
32 #include "gnunet_gns_service.h"
33
34 /* DEFINES */
35 #define VERBOSE GNUNET_YES
36
37 /* Timeout for entire testcase */
38 #define TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 20)
39
40 /* If number of peers not in config file, use this number */
41 #define DEFAULT_NUM_PEERS 2
42
43 /* test records to resolve */
44 #define TEST_DOMAIN "www.gnunet"
45 #define TEST_IP "127.0.0.1"
46 #define TEST_RECORD_NAME "www"
47
48 /* Globals */
49
50 /* Task handle to use to schedule test failure */
51 GNUNET_SCHEDULER_TaskIdentifier die_task;
52
53 /* Global return value (0 for success, anything else for failure) */
54 static int ok;
55
56 static struct GNUNET_NAMESTORE_Handle *namestore_handle;
57
58 static struct GNUNET_GNS_Handle *gns_handle;
59
60 const struct GNUNET_CONFIGURATION_Handle *cfg;
61
62 /**
63  * Check if the get_handle is being used, if so stop the request.  Either
64  * way, schedule the end_badly_cont function which actually shuts down the
65  * test.
66  */
67 static void
68 end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
69 {
70   if (NULL != gns_handle)
71   {
72     GNUNET_GNS_disconnect(gns_handle);
73     gns_handle = NULL;
74   }
75
76   if (NULL != namestore_handle)
77   {
78     GNUNET_NAMESTORE_disconnect (namestore_handle);
79     namestore_handle = NULL;
80   }
81   GNUNET_break (0);
82   GNUNET_SCHEDULER_shutdown ();
83   ok = 1;
84 }
85
86 void end_badly_now ()
87 {
88   GNUNET_SCHEDULER_cancel (die_task);
89   die_task = GNUNET_SCHEDULER_add_now (&end_badly, NULL);
90 }
91
92 static void
93 on_lookup_result(void *cls, uint32_t rd_count,
94                  const struct GNUNET_NAMESTORE_RecordData *rd)
95 {
96
97   struct in_addr a;
98   int i;
99   char* addr;
100
101   if (GNUNET_SCHEDULER_NO_TASK != die_task)
102   {
103       GNUNET_SCHEDULER_cancel (die_task);
104       die_task = GNUNET_SCHEDULER_NO_TASK;
105   }
106
107   GNUNET_NAMESTORE_disconnect (namestore_handle);
108   if (rd_count == 0)
109   {
110     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
111                 "Lookup failed, rp_filtering?\n");
112     ok = 2;
113   }
114   else
115   {
116     ok = 1;
117     GNUNET_log (GNUNET_ERROR_TYPE_INFO, "name: %s\n", (char*)cls);
118     for (i=0; i<rd_count; i++)
119     {
120       GNUNET_log (GNUNET_ERROR_TYPE_INFO, "type: %d\n", rd[i].record_type);
121       if (rd[i].record_type == GNUNET_GNS_RECORD_A)
122       {
123         memcpy(&a, rd[i].data, 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       }
133       else
134       {
135         GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No resolution!\n");
136       }
137     }
138   }
139
140   GNUNET_GNS_disconnect(gns_handle);
141   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Shutting down peer!\n");
142   GNUNET_SCHEDULER_shutdown ();
143
144 }
145
146
147 /**
148  * Function scheduled to be run on the successful start of services
149  * tries to look up the dns record for TEST_DOMAIN
150  */
151 static void
152 commence_testing (void *cls, int32_t success, const char *emsg)
153 {
154   gns_handle = GNUNET_GNS_connect(cfg);
155   if (NULL == gns_handle)
156   {
157     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
158                 "Failed to connect to GNS!\n");
159     end_badly_now();
160   }
161
162   GNUNET_GNS_lookup(gns_handle, TEST_DOMAIN, GNUNET_GNS_RECORD_A,
163                     GNUNET_YES,
164                     NULL,
165                     &on_lookup_result, TEST_DOMAIN);
166 }
167
168 static void
169 do_check (void *cls,
170           const struct GNUNET_CONFIGURATION_Handle *ccfg,
171           struct GNUNET_TESTING_Peer *peer)
172 {
173   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded alice_pkey;
174   struct GNUNET_CRYPTO_RsaPrivateKey *alice_key;
175   struct GNUNET_NAMESTORE_RecordData rd;
176   char* alice_keyfile;
177   char* ip = TEST_IP;
178   struct in_addr *web = GNUNET_malloc(sizeof(struct in_addr));
179
180   cfg = ccfg;
181   die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
182
183   /* put records into namestore */
184   namestore_handle = GNUNET_NAMESTORE_connect(cfg);
185   if (NULL == namestore_handle)
186   {
187     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to connect to namestore\n");
188     end_badly_now () ;
189     return;
190   }
191
192   if (GNUNET_OK != GNUNET_CONFIGURATION_get_value_filename (cfg, "gns",
193                                                           "ZONEKEY",
194                                                           &alice_keyfile))
195   {
196     GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "Failed to get key from cfg\n");
197     end_badly_now () ;
198     return;
199   }
200
201   alice_key = GNUNET_CRYPTO_rsa_key_create_from_file (alice_keyfile);
202   GNUNET_CRYPTO_rsa_key_get_public (alice_key, &alice_pkey);
203   GNUNET_free(alice_keyfile);
204
205
206   rd.expiration_time = UINT64_MAX;
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   rd.flags = GNUNET_NAMESTORE_RF_AUTHORITY;
212
213   GNUNET_NAMESTORE_record_create (namestore_handle,
214                                   alice_key,
215                                   TEST_RECORD_NAME,
216                                   &rd,
217                                   &commence_testing,
218                                   NULL);
219
220   GNUNET_CRYPTO_rsa_key_free(alice_key);
221   GNUNET_free(web);
222 }
223
224 int
225 main (int argc, char *argv[])
226 {
227   ok = 1;
228
229   GNUNET_log_setup ("test-gns-simple-lookup",
230 #if VERBOSE
231                     "DEBUG",
232 #else
233                     "WARNING",
234 #endif
235                     NULL);
236
237   GNUNET_TESTING_peer_run ("test-gns-simple-lookup", "test_gns_simple_lookup.conf", &do_check, NULL);
238
239   return ok;
240 }
241
242 /* end of test_gns_simple_lookup.c */