(no commit message)
[oweals/gnunet.git] / src / transport / test_plugin_transport_http.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010 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 2, 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 transport/test_plugin_transport_http.c
22  * @brief testcase for plugin_transport_http.c
23  * @author Matthias Wachs
24  */
25
26 #include "platform.h"
27 #include "gnunet_constants.h"
28 #include "gnunet_getopt_lib.h"
29 #include "gnunet_hello_lib.h"
30 #include "gnunet_os_lib.h"
31 #include "gnunet_peerinfo_service.h"
32 #include "gnunet_plugin_lib.h"
33 #include "gnunet_protocols.h"
34 #include "gnunet_program_lib.h"
35 #include "gnunet_signatures.h"
36 #include "plugin_transport.h"
37 #include "transport.h"
38
39 #define VERBOSE GNUNET_YES
40 #define DEBUG GNUNET_YES
41
42 /**
43  * How long until we give up on transmitting the message?
44  */
45 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
46
47 /**
48  * Our public key.
49  */
50 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded my_public_key;
51
52 /**
53  * Our identity.
54  */
55 static struct GNUNET_PeerIdentity my_identity;
56
57 /**
58  * Our private key.
59  */
60 static struct GNUNET_CRYPTO_RsaPrivateKey *my_private_key;
61
62 /**
63  * Our scheduler.
64  */
65 struct GNUNET_SCHEDULER_Handle *sched;
66
67 /**
68  * Our configuration.
69  */
70 const struct GNUNET_CONFIGURATION_Handle *cfg;
71
72 /**
73  * Number of neighbours we'd like to have.
74  */
75 static uint32_t max_connect_per_transport;
76
77 /**
78  * Environment for this plugin.
79  */
80 struct GNUNET_TRANSPORT_PluginEnvironment env;
81
82 /**
83  *handle for the api provided by this plugin
84  */
85 struct GNUNET_TRANSPORT_PluginFunctions *api;
86
87 /**
88  * Did the test pass or fail?
89  */
90 static int ok;
91
92 /**
93  * Initialize Environment for this plugin
94  */
95 static struct GNUNET_TIME_Relative
96 receive (void *cls,
97          const struct GNUNET_PeerIdentity * peer,
98          const struct GNUNET_MessageHeader * message,
99          uint32_t distance,
100          struct Session *session,
101          const char *sender_address,
102          uint16_t sender_address_len)
103 {
104   /* do nothing */
105   return GNUNET_TIME_UNIT_ZERO;
106 }
107
108 void
109 notify_address (void *cls,
110                 const char *name,
111                 const void *addr,
112                 uint16_t addrlen, 
113                 struct GNUNET_TIME_Relative expires)
114 {
115 }
116
117 /**
118  * Function called when the service shuts
119  * down.  Unloads our plugins.
120  *
121  * @param cls closure
122  * @param cfg configuration to use
123  */
124 static void
125 unload_plugins (void *cls, const struct GNUNET_CONFIGURATION_Handle *cfg)
126 {
127   GNUNET_assert (NULL ==
128                  GNUNET_PLUGIN_unload ("libgnunet_plugin_transport_http",
129                                        api));
130   if (my_private_key != NULL)
131     GNUNET_CRYPTO_rsa_key_free (my_private_key);
132
133   ok = 0;
134 }
135
136 /**
137  * Simple example test that invokes
138  * the check_address function of the plugin.
139  */
140 /* FIXME: won't work on IPv6 enabled systems where IPv4 mapping
141  * isn't enabled (eg. FreeBSD > 4)
142  */
143 static void
144 test_validation ()
145 {
146   struct sockaddr_in soaddr;
147   memset (&soaddr, 0, sizeof (soaddr));
148 #if HAVE_SOCKADDR_IN_SIN_LEN
149   soaddr.sin_len = sizeof (soaddr);
150 #endif
151   soaddr.sin_family = AF_INET;
152   soaddr.sin_port = htons (2368 /* FIXME: get from config! */ );
153   soaddr.sin_addr.s_addr = htonl (INADDR_LOOPBACK);
154
155   api->check_address(api->cls,
156       &soaddr, sizeof (soaddr));
157
158   unload_plugins(env.cls, env.cfg);
159 }
160
161
162 static void
163 setup_plugin_environment ()
164 {
165   env.cfg = cfg;
166   env.sched = sched;
167   env.my_identity = &my_identity;
168   env.cls = &env;
169   env.receive = &receive;
170   env.notify_address = &notify_address;
171   env.max_connections = max_connect_per_transport;
172 }
173
174 /**
175  * Runs the test.
176  *
177  * @param cls closure
178  * @param s scheduler to use
179  * @param c configuration to use
180  */
181 static void
182 run (void *cls,
183      struct GNUNET_SCHEDULER_Handle *s,
184      char *const *args,
185      const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *c)
186 {
187   unsigned long long tneigh;
188   char *keyfile;
189   char *libname;
190
191   sched = s;
192   cfg = c;
193   /* parse configuration */
194   if ((GNUNET_OK !=
195        GNUNET_CONFIGURATION_get_value_number (c,
196                                               "TRANSPORT",
197                                               "NEIGHBOUR_LIMIT",
198                                               &tneigh)) ||
199       (GNUNET_OK !=
200        GNUNET_CONFIGURATION_get_value_filename (c,
201                                                 "GNUNETD",
202                                                 "HOSTKEY", &keyfile)))
203     {
204       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
205                   _
206                   ("Transport service is lacking key configuration settings.  Exiting.\n"));
207       GNUNET_SCHEDULER_shutdown (s);
208       return;
209     }
210   /*
211   max_connect_per_transport = (uint32_t) tneigh;
212   my_private_key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
213   GNUNET_free (keyfile);
214   if (my_private_key == NULL)
215     {
216       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
217                   _
218                   ("Transport service could not access hostkey.  Exiting.\n"));
219       GNUNET_SCHEDULER_shutdown (s);
220       return;
221     }
222   GNUNET_CRYPTO_rsa_key_get_public (my_private_key, &my_public_key);
223   GNUNET_CRYPTO_hash (&my_public_key,
224                       sizeof (my_public_key), &my_identity.hashPubKey);*/
225
226   /* load plugins... */
227   setup_plugin_environment ();
228
229   GNUNET_asprintf (&libname, "libgnunet_plugin_transport_http");
230
231   api = GNUNET_PLUGIN_load (libname, &env);
232   if (api != NULL )
233   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
234               "Loading transport plugin for http `%s' successful\n",libname);
235
236   GNUNET_free (libname);
237   if (api == NULL)
238     {
239       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
240                   _("Failed to load transport plugin for http\n"));
241       /* FIXME: set some error code for main */
242       return;
243     }
244   test_validation ();
245 }
246
247
248 /**
249  * The main function for the transport service.
250  *
251  * @param argc number of arguments from the command line
252  * @param argv command line arguments
253  * @return 0 ok, 1 on error
254  */
255 int
256 main (int argc, char *const *argv)
257 {
258   static struct GNUNET_GETOPT_CommandLineOption options[] = {
259     GNUNET_GETOPT_OPTION_END
260   };
261   int ret;
262   char *const argv_prog[] = {
263     "test-gnunetd-plugin-transport_http",
264     "-c",
265     "test_plugin_transport_data_http.conf",
266     "-L",
267 #if VERBOSE
268     "DEBUG",
269 #else
270     "WARNING",
271 #endif
272     NULL
273   };
274   GNUNET_log_setup ("test-gnunetd-plugin-transport_http",
275 #if VERBOSE
276                     "DEBUG",
277 #else
278                     "WARNING",
279 #endif
280                     NULL);
281   ok = 1;                       /* set to fail */
282   ret = (GNUNET_OK ==
283          GNUNET_PROGRAM_run (5,
284                              argv_prog,
285                              "test-plugin-transport_http",
286                              "testcase", options, &run, NULL)) ? ok : 1;
287   GNUNET_DISK_directory_remove ("/tmp/test-gnunetd-plugin-transport_http");
288   /* FIXME: return correct value */
289   /* return ret; */
290   return GNUNET_NO;
291 }
292
293 /* end of test_plugin_transport_http.c */