LRN: Fix automake deps to allow -j* builds again
[oweals/gnunet.git] / src / nse / test_nse_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  * @file nse/test_nse_api.c
22  * @brief testcase for nse_api.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_getopt_lib.h"
27 #include "gnunet_os_lib.h"
28 #include "gnunet_program_lib.h"
29 #include "gnunet_scheduler_lib.h"
30 #include "gnunet_nse_service.h"
31
32 #define DEBUG_NSE GNUNET_YES
33
34 #define START_ARM GNUNET_YES
35
36 static struct GNUNET_NSE_Handle *h;
37
38 static GNUNET_SCHEDULER_TaskIdentifier die_task;
39
40 struct PeerContext
41 {
42   struct GNUNET_CONFIGURATION_Handle *cfg;
43 #if START_ARM
44   struct GNUNET_OS_Process *arm_proc;
45 #endif
46 };
47
48 static struct PeerContext p1;
49
50
51 static void
52 stop_arm (struct PeerContext *p)
53 {
54 #if START_ARM
55   if (0 != GNUNET_OS_process_kill (p->arm_proc, SIGTERM))
56     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
57   GNUNET_OS_process_wait (p->arm_proc);
58   GNUNET_OS_process_close (p->arm_proc);
59   p->arm_proc = NULL;
60 #endif
61   GNUNET_CONFIGURATION_destroy (p->cfg);
62 }
63
64 /**
65  * Signature of the main function of a task.
66  *
67  * @param cls closure
68  * @param tc context information (why was this task triggered now)
69  */
70 static void
71 end_test (void *cls,
72           const struct GNUNET_SCHEDULER_TaskContext * tc)
73 {
74   if (h != NULL)
75     {
76       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
77                   "Disconnecting from NSE service.\n");
78       GNUNET_NSE_disconnect (h);
79     }
80 }
81
82 /**
83  * Callback to call when network size estimate is updated.
84  *
85  * @param cls unused
86  * @param timestamp time when the estimate was received from the server (or created by the server)
87  * @param estimate the value of the current network size estimate
88  * @param std_dev standard deviation (rounded down to nearest integer)
89  *                of the size estimation values seen
90  *
91  */
92 static void
93 check_nse_message (void *cls, 
94                    struct GNUNET_TIME_Absolute timestamp,
95                    double estimate, double std_dev)
96 {
97   int *ok = cls;
98
99   fprintf (stderr,
100            "Received NSE message, estimate %f, standard deviation %f.\n",
101            estimate, std_dev);
102   /* Fantastic check below. Expect NaN, the only thing not equal to itself. */
103   (*ok) = 0;
104   if (die_task != GNUNET_SCHEDULER_NO_TASK)
105     GNUNET_SCHEDULER_cancel(die_task);
106   die_task = GNUNET_SCHEDULER_add_now(&end_test, NULL);
107 }
108
109
110 static void
111 setup_peer (struct PeerContext *p, const char *cfgname)
112 {
113   p->cfg = GNUNET_CONFIGURATION_create ();
114 #if START_ARM
115   p->arm_proc = GNUNET_OS_start_process (NULL, NULL,
116                                          "gnunet-service-arm",
117                                         "gnunet-service-arm",
118 #if VERBOSE_ARM
119                                         "-L", "DEBUG",
120 #endif
121                                         "-c", cfgname, NULL);
122 #endif
123   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
124
125 }
126
127
128
129 static void
130 run (void *cls,
131      char *const *args,
132      const char *cfgfile,
133      const struct GNUNET_CONFIGURATION_Handle *cfg)
134 {
135   die_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
136                                            (GNUNET_TIME_UNIT_MINUTES, 1),
137                                            &end_test, NULL);
138
139   setup_peer (&p1, cfgfile);
140   h = GNUNET_NSE_connect (cfg, &check_nse_message, cls);
141   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
142               "Connecting to NSE service.\n");
143   GNUNET_assert (h != NULL);
144 }
145
146
147 static int
148 check ()
149 {
150   int ok = 1;
151   char *const argv[] = { "test-nse-api",
152     "-c",
153     "test_nse.conf",
154 #if DEBUG_NSE
155                          "-L", "DEBUG",
156 #else
157                          "-L", "WARNING",
158 #endif
159     NULL
160   };
161   struct GNUNET_GETOPT_CommandLineOption options[] = {
162     GNUNET_GETOPT_OPTION_END
163   };
164
165   GNUNET_PROGRAM_run (5, argv, "test-nse-api", "nohelp",
166                       options, &run, &ok);
167   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
168               "Stopping arm.\n");
169   stop_arm (&p1);
170   return ok;
171 }
172
173
174 int
175 main (int argc, char *argv[])
176 {
177   int ret;
178
179   GNUNET_log_setup ("test_nse_api",
180 #if DEBUG_NSE
181                     "DEBUG",
182 #else
183                     "WARNING",
184 #endif
185                     NULL);
186   ret = check ();
187
188   return ret;
189 }
190
191 /* end of test_nse_api.c */