Fixed id counters' cycling
[oweals/gnunet.git] / src / mesh / test_mesh_api.c
1 /*
2      This file is part of GNUnet.
3      (C) 2011 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 mesh/test_mesh_api.c
23  * @brief test mesh api: dummy test of callbacks
24  * @author Bartlomiej Polot
25  */
26
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_dht_service.h"
30 #include "gnunet_mesh_service.h"
31
32 #define VERBOSE 1
33 #define VERBOSE_ARM 0
34
35 static struct GNUNET_OS_Process *arm_pid;
36 static struct GNUNET_MESH_Handle *mesh;
37 static struct GNUNET_MESH_Tunnel *t;
38 static int result;
39 static GNUNET_SCHEDULER_TaskIdentifier abort_task;
40 static GNUNET_SCHEDULER_TaskIdentifier test_task;
41
42 /**
43  * Function is called whenever a message is received.
44  *
45  * @param cls closure (set from GNUNET_MESH_connect)
46  * @param tunnel connection to the other end
47  * @param tunnel_ctx place to store local state associated with the tunnel
48  * @param sender who sent the message
49  * @param message the actual message
50  * @param atsi performance data for the connection
51  * @return GNUNET_OK to keep the connection open,
52  *         GNUNET_SYSERR to close it (signal serious error)
53  */
54 static int
55 callback (void *cls, struct GNUNET_MESH_Tunnel *tunnel, void **tunnel_ctx,
56           const struct GNUNET_PeerIdentity *sender,
57           const struct GNUNET_MessageHeader *message,
58           const struct GNUNET_ATS_Information *atsi)
59 {
60   return GNUNET_OK;
61 }
62
63 static struct GNUNET_MESH_MessageHandler handlers[] = { {&callback, 1, 0},
64 {NULL, 0, 0}
65 };
66
67
68 static void
69 do_shutdown (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
70 {
71   if (0 != abort_task)
72   {
73     GNUNET_SCHEDULER_cancel (abort_task);
74   }
75   if (NULL != mesh)
76   {
77     GNUNET_MESH_disconnect (mesh);
78   }
79   if (0 != GNUNET_OS_process_kill (arm_pid, SIGTERM))
80   {
81     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
82   }
83   GNUNET_assert (GNUNET_OK == GNUNET_OS_process_wait (arm_pid));
84   GNUNET_OS_process_close (arm_pid);
85 }
86
87 static void
88 do_abort (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
89 {
90   if (0 != test_task)
91   {
92     GNUNET_SCHEDULER_cancel (test_task);
93   }
94   result = GNUNET_SYSERR;
95   abort_task = 0;
96   do_shutdown (cls, tc);
97 }
98
99 static void
100 test (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
101 {
102   struct GNUNET_CONFIGURATION_Handle *cfg = cls;
103   static const GNUNET_MESH_ApplicationType app[] =
104       { 1, 2, 3, 4, 5, 6, 7, 8, 0 };
105
106   test_task = (GNUNET_SCHEDULER_TaskIdentifier) 0;
107   mesh = GNUNET_MESH_connect (cfg, 10, NULL, NULL, NULL, handlers, app);
108   if (NULL == mesh)
109   {
110     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "test: Couldn't connect to mesh :(\n");
111     return;
112   }
113   else
114   {
115     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: YAY! CONNECTED TO MESH :D\n");
116   }
117
118   t = GNUNET_MESH_tunnel_create (mesh, NULL, NULL, NULL, NULL);
119   if (NULL != t)
120   {
121     GNUNET_MESH_tunnel_destroy (t);
122   }
123
124   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
125                                     (GNUNET_TIME_UNIT_SECONDS, 5), &do_shutdown, NULL);
126 }
127
128
129 static void
130 run (void *cls, char *const *args, const char *cfgfile,
131      const struct GNUNET_CONFIGURATION_Handle *cfg)
132 {
133   GNUNET_log_setup ("test_mesh_api",
134 #if VERBOSE
135                     "DEBUG",
136 #else
137                     "WARNING",
138 #endif
139                     NULL);
140   arm_pid =
141       GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
142                                "gnunet-service-arm",
143 #if VERBOSE_ARM
144                                "-L", "DEBUG",
145 #endif
146                                "-c", "test_mesh.conf", NULL);
147
148   abort_task =
149       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
150                                     (GNUNET_TIME_UNIT_SECONDS, 20), &do_abort,
151                                     NULL);
152
153   test_task = GNUNET_SCHEDULER_add_now (&test, (void *) cfg);
154
155 }
156
157
158 int
159 main (int argc, char *argv[])
160 {
161   int ret;
162
163   char *const argv2[] = { "test-mesh-api",
164     "-c", "test_mesh.conf",
165 #if VERBOSE
166     "-L", "DEBUG",
167 #endif
168     NULL
169   };
170   struct GNUNET_GETOPT_CommandLineOption options[] = {
171     GNUNET_GETOPT_OPTION_END
172   };
173
174   ret =
175       GNUNET_PROGRAM_run ((sizeof (argv2) / sizeof (char *)) - 1, argv2,
176                           "test-mesh-api", "nohelp", options, &run, NULL);
177
178   if (GNUNET_OK != ret)
179   {
180     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "run failed with error code %d\n",
181                 ret);
182     return 1;
183   }
184   if (GNUNET_SYSERR == result)
185   {
186     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "test failed\n");
187     return 1;
188   }
189   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test ok\n");
190   return 0;
191 }