Don't shadow the system() function
[oweals/gnunet.git] / src / util / test_mq_client.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2012 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 /**
22  * @file util/test_mq_client.c
23  * @brief tests for mq with connection client
24  */
25 #include "platform.h"
26 #include "gnunet_util_lib.h"
27
28 #define PORT 23336
29
30 #define MY_TYPE 128
31
32
33 static struct GNUNET_SERVER_Handle *server;
34
35 static struct GNUNET_CLIENT_Connection *client;
36
37 static struct GNUNET_CONFIGURATION_Handle *cfg;
38
39 static int ok;
40
41 static int notify = GNUNET_NO;
42
43 static int received = 0;
44
45
46 static void
47 recv_cb (void *cls, struct GNUNET_SERVER_Client *argclient,
48          const struct GNUNET_MessageHeader *message)
49 {
50   received++;
51   if (received == 2)
52   {
53     GNUNET_SERVER_receive_done (argclient, GNUNET_NO);
54     return;
55   }
56
57   /* can happen if notify does not work */
58   GNUNET_assert (received < 2);
59
60   GNUNET_SERVER_receive_done (argclient, GNUNET_YES);
61 }
62
63
64 static void
65 clean_up (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
66 {
67   GNUNET_SERVER_destroy (server);
68   server = NULL;
69   GNUNET_CONFIGURATION_destroy (cfg);
70   cfg = NULL;
71 }
72
73
74 /**
75  * Functions with this signature are called whenever a client
76  * is disconnected on the network level.
77  *
78  * @param cls closure
79  * @param client identification of the client
80  */
81 static void
82 notify_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
83 {
84   if (client == NULL)
85     return;
86   ok = 0;
87   GNUNET_SCHEDULER_add_now (&clean_up, NULL);
88 }
89
90
91 static struct GNUNET_SERVER_MessageHandler handlers[] = {
92   {&recv_cb, NULL, MY_TYPE, sizeof (struct GNUNET_MessageHeader)},
93   {NULL, NULL, 0, 0}
94 };
95
96
97 static void
98 send_cb (void *cls)
99 {
100   /* the notify should only be called once */
101   GNUNET_assert (GNUNET_NO == notify);
102   notify = GNUNET_YES;
103 }
104
105 static void
106 send_trap_cb (void *cls)
107 {
108   GNUNET_assert (0);
109 }
110
111
112 static void
113 test_mq (struct GNUNET_CLIENT_Connection *client)
114 {
115   struct GNUNET_MQ_Handle *mq;
116   struct GNUNET_MQ_Envelope *mqm;
117
118   /* FIXME: test handling responses */
119   mq = GNUNET_MQ_queue_for_connection_client (client, NULL, NULL, NULL);
120
121   mqm = GNUNET_MQ_msg_header (MY_TYPE);
122   GNUNET_MQ_send (mq, mqm);
123
124   mqm = GNUNET_MQ_msg_header (MY_TYPE);
125   GNUNET_MQ_notify_sent (mqm, send_trap_cb, NULL);
126   GNUNET_MQ_send (mq, mqm);
127   GNUNET_MQ_send_cancel (mqm);
128
129   mqm = GNUNET_MQ_msg_header (MY_TYPE);
130   GNUNET_MQ_notify_sent (mqm, send_cb, NULL);
131   GNUNET_MQ_send (mq, mqm);
132
133 }
134
135
136 static void
137 task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
138 {
139   struct sockaddr_in sa;
140   struct sockaddr *sap[2];
141   socklen_t slens[2];
142
143   sap[0] = (struct sockaddr *) &sa;
144   slens[0] = sizeof (sa);
145   sap[1] = NULL;
146   slens[1] = 0;
147   memset (&sa, 0, sizeof (sa));
148 #if HAVE_SOCKADDR_IN_SIN_LEN
149   sa.sin_len = sizeof (sa);
150 #endif
151   sa.sin_family = AF_INET;
152   sa.sin_port = htons (PORT);
153   server =
154       GNUNET_SERVER_create (NULL, NULL, sap, slens,
155                             GNUNET_TIME_relative_multiply
156                             (GNUNET_TIME_UNIT_MILLISECONDS, 250), GNUNET_NO);
157   GNUNET_assert (server != NULL);
158   handlers[0].callback_cls = cls;
159   GNUNET_SERVER_add_handlers (server, handlers);
160   GNUNET_SERVER_disconnect_notify (server, &notify_disconnect, cls);
161   cfg = GNUNET_CONFIGURATION_create ();
162   GNUNET_CONFIGURATION_set_value_number (cfg, "test", "PORT", PORT);
163   GNUNET_CONFIGURATION_set_value_string (cfg, "test", "HOSTNAME", "localhost");
164   GNUNET_CONFIGURATION_set_value_string (cfg, "resolver", "HOSTNAME",
165                                          "localhost");
166   client = GNUNET_CLIENT_connect ("test", cfg);
167   GNUNET_assert (client != NULL);
168
169   test_mq (client);
170 }
171
172
173 int
174 main (int argc, char *argv[])
175 {
176   GNUNET_log_setup ("test-mq-client",
177                     "INFO",
178                     NULL);
179   ok = 1;
180   GNUNET_SCHEDULER_run (&task, NULL);
181   GNUNET_assert (GNUNET_YES == notify);
182   return ok;
183 }
184