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