-let's not introduce stdbool shortly before the release
[oweals/gnunet.git] / src / util / test_client.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_client.c
22  * @brief tests for client.c
23  */
24 #include "platform.h"
25 #include "gnunet_util_lib.h"
26
27
28 #define PORT 14325
29
30 #define MYNAME "test_client"
31
32 static struct GNUNET_CLIENT_Connection *client;
33
34 static struct GNUNET_SERVER_Handle *server;
35
36 static struct GNUNET_CONFIGURATION_Handle *cfg;
37
38 #define MY_TYPE 130
39
40 struct CopyContext
41 {
42   struct GNUNET_SERVER_Client *client;
43   struct GNUNET_MessageHeader *cpy;
44 };
45
46 static size_t
47 copy_msg (void *cls, size_t size, void *buf)
48 {
49   struct CopyContext *ctx = cls;
50   struct GNUNET_MessageHeader *cpy = ctx->cpy;
51
52   GNUNET_assert (sizeof (struct GNUNET_MessageHeader) == ntohs (cpy->size));
53   GNUNET_assert (size >= ntohs (cpy->size));
54   memcpy (buf, cpy, ntohs (cpy->size));
55   GNUNET_SERVER_receive_done (ctx->client, GNUNET_OK);
56   GNUNET_free (cpy);
57   GNUNET_free (ctx);
58   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Message bounced back to client\n");
59   return sizeof (struct GNUNET_MessageHeader);
60 }
61
62
63 /**
64  * Callback that just bounces the message back to the sender.
65  */
66 static void
67 echo_cb (void *cls, struct GNUNET_SERVER_Client *client,
68          const struct GNUNET_MessageHeader *message)
69 {
70   struct CopyContext *cc;
71   struct GNUNET_MessageHeader *cpy;
72
73   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
74               "Receiving message from client, bouncing back\n");
75   GNUNET_assert (sizeof (struct GNUNET_MessageHeader) == ntohs (message->size));
76   cc = GNUNET_new (struct CopyContext);
77   cc->client = client;
78   cpy = GNUNET_malloc (ntohs (message->size));
79   memcpy (cpy, message, ntohs (message->size));
80   cc->cpy = cpy;
81   GNUNET_assert (NULL !=
82                  GNUNET_SERVER_notify_transmit_ready (client,
83                                                       ntohs (message->size),
84                                                       GNUNET_TIME_UNIT_SECONDS,
85                                                       &copy_msg, cc));
86 }
87
88
89 static struct GNUNET_SERVER_MessageHandler handlers[] = {
90   {&echo_cb, NULL, MY_TYPE, sizeof (struct GNUNET_MessageHeader)},
91   {NULL, NULL, 0, 0}
92 };
93
94
95 static void
96 recv_bounce (void *cls, const struct GNUNET_MessageHeader *got)
97 {
98   int *ok = cls;
99   struct GNUNET_MessageHeader msg;
100
101   GNUNET_assert (got != NULL);  /* timeout */
102   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Receiving bounce, checking content\n");
103   msg.type = htons (MY_TYPE);
104   msg.size = htons (sizeof (struct GNUNET_MessageHeader));
105   GNUNET_assert (0 == memcmp (got, &msg, sizeof (struct GNUNET_MessageHeader)));
106   GNUNET_CLIENT_disconnect (client);
107   client = NULL;
108   GNUNET_SERVER_destroy (server);
109   server = NULL;
110   *ok = 0;
111 }
112
113
114 static size_t
115 make_msg (void *cls, size_t size, void *buf)
116 {
117   struct GNUNET_MessageHeader *msg = buf;
118
119   GNUNET_assert (size >= sizeof (struct GNUNET_MessageHeader));
120   msg->type = htons (MY_TYPE);
121   msg->size = htons (sizeof (struct GNUNET_MessageHeader));
122   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Creating message for transmission\n");
123   return sizeof (struct GNUNET_MessageHeader);
124 }
125
126
127 static void
128 task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
129 {
130   struct sockaddr_in sa;
131   struct sockaddr *sap[2];
132   socklen_t slens[2];
133
134   /* test that ill-configured client fails instantly */
135   GNUNET_assert (NULL == GNUNET_CLIENT_connect ("invalid-service", cfg));
136
137   /* test IPC between client and server */
138   sap[0] = (struct sockaddr *) &sa;
139   slens[0] = sizeof (sa);
140   sap[1] = NULL;
141   slens[1] = 0;
142   memset (&sa, 0, sizeof (sa));
143 #if HAVE_SOCKADDR_IN_SIN_LEN
144   sa.sin_len = sizeof (sa);
145 #endif
146   sa.sin_family = AF_INET;
147   sa.sin_port = htons (PORT);
148   server =
149       GNUNET_SERVER_create (NULL, NULL, sap, slens,
150                             GNUNET_TIME_relative_multiply
151                             (GNUNET_TIME_UNIT_MILLISECONDS, 10000), GNUNET_NO);
152   GNUNET_assert (server != NULL);
153   handlers[0].callback_cls = cls;
154   handlers[1].callback_cls = cls;
155   GNUNET_SERVER_add_handlers (server, handlers);
156   client = GNUNET_CLIENT_connect (MYNAME, cfg);
157   GNUNET_assert (client != NULL);
158   GNUNET_assert (NULL !=
159                  GNUNET_CLIENT_notify_transmit_ready (client,
160                                                       sizeof (struct
161                                                               GNUNET_MessageHeader),
162                                                       GNUNET_TIME_UNIT_SECONDS,
163                                                       GNUNET_NO, &make_msg,
164                                                       NULL));
165   GNUNET_CLIENT_receive (client, &recv_bounce, cls,
166                          GNUNET_TIME_relative_multiply
167                          (GNUNET_TIME_UNIT_MILLISECONDS, 10000));
168 }
169
170
171 int
172 main (int argc, char *argv[])
173 {
174   int ok;
175
176   GNUNET_log_setup ("test_client",
177                     "WARNING",
178                     NULL);
179   cfg = GNUNET_CONFIGURATION_create ();
180   GNUNET_CONFIGURATION_set_value_number (cfg, MYNAME, "PORT", PORT);
181   GNUNET_CONFIGURATION_set_value_string (cfg, MYNAME, "HOSTNAME", "localhost");
182   GNUNET_CONFIGURATION_set_value_string (cfg, "resolver", "HOSTNAME",
183                                          "localhost");
184   ok = 1;
185   GNUNET_SCHEDULER_run (&task, &ok);
186   GNUNET_CONFIGURATION_destroy (cfg);
187   return ok;
188 }
189
190 /* end of test_client.c */