set sxn_len on FreeBSD where required
[oweals/gnunet.git] / src / util / test_server_with_client_unix.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 util/test_server_with_client_unix.c
22  * @brief tests for server.c and client.c,
23  *       specifically disconnect_notify,
24  *       client_get_address and receive_done (resume processing)
25  */
26 #include "platform.h"
27 #include "gnunet_common.h"
28 #include "gnunet_scheduler_lib.h"
29 #include "gnunet_client_lib.h"
30 #include "gnunet_server_lib.h"
31 #include "gnunet_time_lib.h"
32
33 #define VERBOSE GNUNET_NO
34
35 #define MY_TYPE 128
36
37
38 static struct GNUNET_SERVER_Handle *server;
39
40 static struct GNUNET_CLIENT_Connection *client;
41
42 static struct GNUNET_CONFIGURATION_Handle *cfg;
43
44 static int ok;
45
46 static void
47 send_done (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
48 {
49   struct GNUNET_SERVER_Client *argclient = cls;
50   GNUNET_assert (ok == 3);
51   ok++;
52   GNUNET_SERVER_receive_done (argclient, GNUNET_OK);
53 }
54
55
56 static void
57 recv_cb (void *cls,
58          struct GNUNET_SERVER_Client *argclient,
59          const struct GNUNET_MessageHeader *message)
60 {
61   switch (ok)
62     {
63     case 2:
64       ok++;
65       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
66                                     (GNUNET_TIME_UNIT_MILLISECONDS, 50),
67                                     &send_done, argclient);
68       break;
69     case 4:
70       ok++;
71       GNUNET_CLIENT_disconnect (client, GNUNET_YES);
72       GNUNET_SERVER_receive_done (argclient, GNUNET_OK);
73       break;
74     default:
75       GNUNET_assert (0);
76     }
77
78 }
79
80
81 static void
82 clean_up (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
83 {
84   GNUNET_SERVER_destroy (server);
85   server = NULL;
86   GNUNET_CONFIGURATION_destroy (cfg);
87   cfg = NULL;
88 }
89
90
91 /**
92  * Functions with this signature are called whenever a client
93  * is disconnected on the network level.
94  *
95  * @param cls closure
96  * @param client identification of the client
97  */
98 static void
99 notify_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
100 {
101   if (client == NULL)
102     return;
103   GNUNET_assert (ok == 5);
104   ok = 0;
105   GNUNET_SCHEDULER_add_now (&clean_up, NULL);
106 }
107
108
109 static size_t
110 notify_ready (void *cls, size_t size, void *buf)
111 {
112   struct GNUNET_MessageHeader *msg;
113
114   GNUNET_assert (size >= 256);
115   GNUNET_assert (1 == ok);
116   ok++;
117   msg = buf;
118   msg->type = htons (MY_TYPE);
119   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
120   msg++;
121   msg->type = htons (MY_TYPE);
122   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
123   return 2 * sizeof (struct GNUNET_MessageHeader);
124 }
125
126
127 static struct GNUNET_SERVER_MessageHandler handlers[] = {
128   {&recv_cb, NULL, MY_TYPE, sizeof (struct GNUNET_MessageHeader)},
129   {NULL, NULL, 0, 0}
130 };
131
132
133 static void
134 task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
135 {
136   char * unixpath = "/tmp/testsock";
137   int slen = strlen (unixpath) + 1;
138
139   struct sockaddr_un un;
140
141   memset(&un, 0, sizeof(un));
142   un.sun_family = AF_UNIX;
143   memcpy (un.sun_path, unixpath, slen);
144   un.sun_path[slen] = '\0';
145 #if HAVE_SOCKADDR_IN_SIN_LEN
146   un.sun_len = (u_char) SUN_LEN (&un);
147 #endif
148 #if LINUX
149   un.sun_path[0] = '\0';
150 #endif
151
152   struct sockaddr * sap[2];
153   socklen_t slens[2];
154
155   sap[0] = (struct sockaddr*) &un;
156   slens[0] = sizeof (un);
157
158   sap[1] = NULL;
159   slens[1] = 0;
160
161   server = GNUNET_SERVER_create (NULL,
162                                  NULL,
163                                  sap,
164                                  slens,
165                                  GNUNET_TIME_relative_multiply
166                                  (GNUNET_TIME_UNIT_MILLISECONDS, 250),
167                                  GNUNET_NO);
168   GNUNET_assert (server != NULL);
169   handlers[0].callback_cls = cls;
170   GNUNET_SERVER_add_handlers (server, handlers);
171   GNUNET_SERVER_disconnect_notify (server, &notify_disconnect, cls);
172   cfg = GNUNET_CONFIGURATION_create ();
173
174   GNUNET_CONFIGURATION_set_value_string (cfg, "test", "UNIXPATH",
175                   unixpath);
176   GNUNET_CONFIGURATION_set_value_string (cfg, "resolver", "HOSTNAME",
177                                          "localhost");
178
179   client = GNUNET_CLIENT_connect ("test", cfg);
180   GNUNET_assert (client != NULL);
181   GNUNET_CLIENT_notify_transmit_ready (client,
182                                        256,
183                                        GNUNET_TIME_relative_multiply
184                                        (GNUNET_TIME_UNIT_MILLISECONDS, 250),
185                                        GNUNET_NO, &notify_ready, NULL);
186 }
187
188
189 /**
190  * Main method, starts scheduler with task1,
191  * checks that "ok" is correct at the end.
192  */
193 static int
194 check ()
195 {
196
197   ok = 1;
198   GNUNET_SCHEDULER_run (&task, NULL);
199   return ok;
200 }
201
202
203 int
204 main (int argc, char *argv[])
205 {
206   int ret = 0;
207
208   GNUNET_log_setup ("test_server_with_client_unix",
209 #if VERBOSE
210                     "DEBUG",
211 #else
212                     "WARNING",
213 #endif
214                     NULL);
215   ret += check ();
216
217   return ret;
218 }
219
220 /* end of test_server_with_client_unix.c */