aboutsummaryrefslogtreecommitdiff
path: root/src/util/test_mq_client.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/test_mq_client.c')
-rw-r--r--src/util/test_mq_client.c171
1 files changed, 171 insertions, 0 deletions
diff --git a/src/util/test_mq_client.c b/src/util/test_mq_client.c
new file mode 100644
index 000000000..b7eb1516a
--- /dev/null
+++ b/src/util/test_mq_client.c
@@ -0,0 +1,171 @@
1/*
2 This file is part of GNUnet.
3 (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_common.h"
27#include "gnunet_util_lib.h"
28
29#define PORT 23336
30
31#define MY_TYPE 128
32
33
34static struct GNUNET_SERVER_Handle *server;
35
36static struct GNUNET_CLIENT_Connection *client;
37
38static struct GNUNET_CONFIGURATION_Handle *cfg;
39
40static int ok;
41
42static int notify = GNUNET_NO;
43
44static int received = 0;
45
46
47static void
48recv_cb (void *cls, struct GNUNET_SERVER_Client *argclient,
49 const struct GNUNET_MessageHeader *message)
50{
51 received++;
52
53 printf ("received\n");
54
55
56 if ((received == 2) && (GNUNET_YES == notify))
57 {
58 printf ("done\n");
59 GNUNET_SERVER_receive_done (argclient, GNUNET_NO);
60 return;
61 }
62
63 GNUNET_SERVER_receive_done (argclient, GNUNET_YES);
64}
65
66
67static void
68clean_up (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
69{
70 GNUNET_SERVER_destroy (server);
71 server = NULL;
72 GNUNET_CONFIGURATION_destroy (cfg);
73 cfg = NULL;
74}
75
76
77/**
78 * Functions with this signature are called whenever a client
79 * is disconnected on the network level.
80 *
81 * @param cls closure
82 * @param client identification of the client
83 */
84static void
85notify_disconnect (void *cls, struct GNUNET_SERVER_Client *client)
86{
87 if (client == NULL)
88 return;
89 ok = 0;
90 GNUNET_SCHEDULER_add_now (&clean_up, NULL);
91}
92
93
94static struct GNUNET_SERVER_MessageHandler handlers[] = {
95 {&recv_cb, NULL, MY_TYPE, sizeof (struct GNUNET_MessageHeader)},
96 {NULL, NULL, 0, 0}
97};
98
99void send_cb (void *cls)
100{
101 printf ("notify sent\n");
102 notify = GNUNET_YES;
103}
104
105void test_mq (struct GNUNET_CLIENT_Connection *client)
106{
107 struct GNUNET_MQ_MessageQueue *mq;
108 struct GNUNET_MQ_Message *mqm;
109
110 /* FIXME: test handling responses */
111 mq = GNUNET_MQ_queue_for_connection_client (client, NULL, NULL);
112
113 mqm = GNUNET_MQ_msg_header (MY_TYPE);
114 GNUNET_MQ_send (mq, mqm);
115
116 mqm = GNUNET_MQ_msg_header (MY_TYPE);
117 GNUNET_MQ_notify_sent (mqm, send_cb, NULL);
118 GNUNET_MQ_send (mq, mqm);
119
120 /* FIXME: add a message that will be canceled */
121}
122
123
124static void
125task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
126{
127 struct sockaddr_in sa;
128 struct sockaddr *sap[2];
129 socklen_t slens[2];
130
131 sap[0] = (struct sockaddr *) &sa;
132 slens[0] = sizeof (sa);
133 sap[1] = NULL;
134 slens[1] = 0;
135 memset (&sa, 0, sizeof (sa));
136#if HAVE_SOCKADDR_IN_SIN_LEN
137 sa.sin_len = sizeof (sa);
138#endif
139 sa.sin_family = AF_INET;
140 sa.sin_port = htons (PORT);
141 server =
142 GNUNET_SERVER_create (NULL, NULL, sap, slens,
143 GNUNET_TIME_relative_multiply
144 (GNUNET_TIME_UNIT_MILLISECONDS, 250), GNUNET_NO);
145 GNUNET_assert (server != NULL);
146 handlers[0].callback_cls = cls;
147 GNUNET_SERVER_add_handlers (server, handlers);
148 GNUNET_SERVER_disconnect_notify (server, &notify_disconnect, cls);
149 cfg = GNUNET_CONFIGURATION_create ();
150 GNUNET_CONFIGURATION_set_value_number (cfg, "test", "PORT", PORT);
151 GNUNET_CONFIGURATION_set_value_string (cfg, "test", "HOSTNAME", "localhost");
152 GNUNET_CONFIGURATION_set_value_string (cfg, "resolver", "HOSTNAME",
153 "localhost");
154 client = GNUNET_CLIENT_connect ("test", cfg);
155 GNUNET_assert (client != NULL);
156
157 test_mq (client);
158}
159
160
161int
162main (int argc, char *argv[])
163{
164 GNUNET_log_setup ("test-mq-client",
165 "INFO",
166 NULL);
167 ok = 1;
168 GNUNET_SCHEDULER_run (&task, NULL);
169 return ok;
170}
171