indentation
[oweals/gnunet.git] / src / util / test_server.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 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 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.c
22  * @brief tests for server.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_client_lib.h"
27 #include "gnunet_scheduler_lib.h"
28 #include "gnunet_server_lib.h"
29 #include "gnunet_time_lib.h"
30
31 #define VERBOSE GNUNET_NO
32
33 #define PORT 12435
34
35 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS, 250)
36
37 #define MY_TYPE 128
38 #define MY_TYPE2 129
39
40 static struct GNUNET_SERVER_Handle *server;
41
42 static struct GNUNET_CLIENT_Connection *cc;
43
44 static struct GNUNET_SERVER_Client *argclient;
45
46 static struct GNUNET_CONFIGURATION_Handle *cfg;
47
48 static int ok;
49
50
51 static void
52 finish_up (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
53 {
54   GNUNET_assert (ok == 6);
55   ok = 0;
56   GNUNET_SERVER_destroy (server);
57   GNUNET_CLIENT_disconnect (cc, GNUNET_NO);
58   GNUNET_CONFIGURATION_destroy (cfg);
59 }
60
61
62 static void
63 recv_fin_cb (void *cls,
64              struct GNUNET_SERVER_Client *client,
65              const struct GNUNET_MessageHeader *message)
66 {
67   GNUNET_assert (ok == 5);
68   ok = 6;
69   GNUNET_SERVER_receive_done (client, GNUNET_OK);
70   GNUNET_SCHEDULER_add_now (&finish_up, NULL);
71 }
72
73
74 static void
75 first_reply_handler (void *cls, const struct GNUNET_MessageHeader *msg)
76 {
77   GNUNET_assert (ok == 4);
78   ok = 5;
79   GNUNET_SERVER_receive_done (argclient, GNUNET_OK);
80   GNUNET_SERVER_client_drop (argclient);
81   argclient = NULL;
82 }
83
84
85 static size_t
86 reply_msg (void *cls, size_t size, void *buf)
87 {
88   struct GNUNET_MessageHeader msg;
89
90   GNUNET_assert (ok == 3);
91   ok = 4;
92   GNUNET_assert (size >= sizeof (struct GNUNET_MessageHeader));
93   msg.type = htons (MY_TYPE);
94   msg.size = htons (sizeof (struct GNUNET_MessageHeader));
95   memcpy (buf, &msg, sizeof (struct GNUNET_MessageHeader));
96   return sizeof (struct GNUNET_MessageHeader);
97 }
98
99
100 static void
101 recv_cb (void *cls,
102          struct GNUNET_SERVER_Client *client,
103          const struct GNUNET_MessageHeader *message)
104 {
105   GNUNET_assert (ok == 2);
106   ok = 3;
107   argclient = client;
108   GNUNET_SERVER_client_keep (argclient);
109   GNUNET_assert (sizeof (struct GNUNET_MessageHeader) == ntohs (message->size));
110   GNUNET_assert (MY_TYPE == ntohs (message->type));
111   GNUNET_assert (NULL !=
112                  GNUNET_SERVER_notify_transmit_ready (client,
113                                                       ntohs (message->size),
114                                                       TIMEOUT,
115                                                       &reply_msg, NULL));
116 }
117
118
119 static struct GNUNET_SERVER_MessageHandler handlers[] = {
120   {&recv_cb, NULL, MY_TYPE, sizeof (struct GNUNET_MessageHeader)},
121   {&recv_fin_cb, NULL, MY_TYPE2, sizeof (struct GNUNET_MessageHeader)},
122   {NULL, NULL, 0, 0}
123 };
124
125
126 static size_t
127 transmit_second_message (void *cls, size_t size, void *buf)
128 {
129   struct GNUNET_MessageHeader msg;
130
131   GNUNET_assert (size >= sizeof (struct GNUNET_MessageHeader));
132   msg.type = htons (MY_TYPE2);
133   msg.size = htons (sizeof (struct GNUNET_MessageHeader));
134   memcpy (buf, &msg, sizeof (struct GNUNET_MessageHeader));
135   return sizeof (struct GNUNET_MessageHeader);
136 }
137
138
139 static size_t
140 transmit_initial_message (void *cls, size_t size, void *buf)
141 {
142   struct GNUNET_MessageHeader msg;
143
144   GNUNET_assert (ok == 1);
145   ok = 2;
146   GNUNET_assert (size >= sizeof (struct GNUNET_MessageHeader));
147   msg.type = htons (MY_TYPE);
148   msg.size = htons (sizeof (struct GNUNET_MessageHeader));
149   memcpy (buf, &msg, sizeof (struct GNUNET_MessageHeader));
150   GNUNET_assert (NULL !=
151                  GNUNET_CLIENT_notify_transmit_ready (cc,
152                                                       sizeof (struct
153                                                               GNUNET_MessageHeader),
154                                                       TIMEOUT, GNUNET_YES,
155                                                       &transmit_second_message,
156                                                       NULL));
157   GNUNET_CLIENT_receive (cc, &first_reply_handler, NULL, TIMEOUT);
158   return sizeof (struct GNUNET_MessageHeader);
159 }
160
161
162 static void
163 task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
164 {
165   struct sockaddr_in sa;
166   struct sockaddr *sap[2];
167   socklen_t slens[2];
168
169   sap[0] = (struct sockaddr *) &sa;
170   slens[0] = sizeof (sa);
171   sap[1] = NULL;
172   slens[1] = 0;
173   memset (&sa, 0, sizeof (sa));
174 #if HAVE_SOCKADDR_IN_SIN_LEN
175   sa.sin_len = sizeof (sa);
176 #endif
177   sa.sin_family = AF_INET;
178   sa.sin_port = htons (PORT);
179   server = GNUNET_SERVER_create (NULL, NULL, sap, slens, TIMEOUT, GNUNET_NO);
180   GNUNET_assert (server != NULL);
181   GNUNET_SERVER_add_handlers (server, handlers);
182   cfg = GNUNET_CONFIGURATION_create ();
183   GNUNET_CONFIGURATION_set_value_number (cfg, "test-server", "PORT", PORT);
184   GNUNET_CONFIGURATION_set_value_string (cfg, "test-server", "HOSTNAME",
185                                          "localhost");
186   GNUNET_CONFIGURATION_set_value_string (cfg, "resolver", "HOSTNAME",
187                                          "localhost");
188   cc = GNUNET_CLIENT_connect ("test-server", cfg);
189   GNUNET_assert (cc != NULL);
190   GNUNET_assert (NULL !=
191                  GNUNET_CLIENT_notify_transmit_ready (cc,
192                                                       sizeof (struct
193                                                               GNUNET_MessageHeader),
194                                                       TIMEOUT, GNUNET_YES,
195                                                       &transmit_initial_message,
196                                                       NULL));
197 }
198
199
200 /**
201  * Main method, starts scheduler with task1,
202  * checks that "ok" is correct at the end.
203  */
204 static int
205 check ()
206 {
207   ok = 1;
208   GNUNET_SCHEDULER_run (&task, &ok);
209   return ok;
210 }
211
212
213 int
214 main (int argc, char *argv[])
215 {
216   int ret = 0;
217
218   GNUNET_log_setup ("test_server", "WARNING", NULL);
219   ret += check ();
220
221   return ret;
222 }
223
224 /* end of test_server.c */