-do not send previous round messages if we are just going online and did not setup...
[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, const struct GNUNET_SCHEDULER_TaskContext *tc)
72 {
73   if (h != NULL)
74   {
75     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Disconnecting from NSE service.\n");
76     GNUNET_NSE_disconnect (h);
77   }
78 }
79
80 /**
81  * Callback to call when network size estimate is updated.
82  *
83  * @param cls unused
84  * @param timestamp time when the estimate was received from the server (or created by the server)
85  * @param estimate the value of the current network size estimate
86  * @param std_dev standard deviation (rounded down to nearest integer)
87  *                of the size estimation values seen
88  *
89  */
90 static void
91 check_nse_message (void *cls, struct GNUNET_TIME_Absolute timestamp,
92                    double estimate, double std_dev)
93 {
94   int *ok = cls;
95
96   fprintf (stderr,
97            "Received NSE message, estimate %f, standard deviation %f.\n",
98            estimate, std_dev);
99   /* Fantastic check below. Expect NaN, the only thing not equal to itself. */
100   (*ok) = 0;
101   if (die_task != GNUNET_SCHEDULER_NO_TASK)
102     GNUNET_SCHEDULER_cancel (die_task);
103   die_task = GNUNET_SCHEDULER_add_now (&end_test, NULL);
104 }
105
106
107 static void
108 setup_peer (struct PeerContext *p, const char *cfgname)
109 {
110   p->cfg = GNUNET_CONFIGURATION_create ();
111 #if START_ARM
112   p->arm_proc =
113       GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
114                                "gnunet-service-arm",
115 #if VERBOSE_ARM
116                                "-L", "DEBUG",
117 #endif
118                                "-c", cfgname, NULL);
119 #endif
120   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
121
122 }
123
124
125
126 static void
127 run (void *cls, char *const *args, const char *cfgfile,
128      const struct GNUNET_CONFIGURATION_Handle *cfg)
129 {
130   die_task =
131       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
132                                     (GNUNET_TIME_UNIT_MINUTES, 1), &end_test,
133                                     NULL);
134
135   setup_peer (&p1, cfgfile);
136   h = GNUNET_NSE_connect (cfg, &check_nse_message, cls);
137   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connecting to NSE service.\n");
138   GNUNET_assert (h != NULL);
139 }
140
141
142 static int
143 check ()
144 {
145   int ok = 1;
146
147   char *const argv[] = { "test-nse-api",
148     "-c",
149     "test_nse.conf",
150 #if DEBUG_NSE
151     "-L", "DEBUG",
152 #else
153     "-L", "WARNING",
154 #endif
155     NULL
156   };
157   struct GNUNET_GETOPT_CommandLineOption options[] = {
158     GNUNET_GETOPT_OPTION_END
159   };
160
161   GNUNET_PROGRAM_run (5, argv, "test-nse-api", "nohelp", options, &run, &ok);
162   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Stopping arm.\n");
163   stop_arm (&p1);
164   if (0 != ok)
165     fprintf (stderr, "No information received from NSE service!\n");
166   return ok;
167 }
168
169
170 int
171 main (int argc, char *argv[])
172 {
173   int ret;
174
175   GNUNET_log_setup ("test_nse_api",
176 #if DEBUG_NSE
177                     "DEBUG",
178 #else
179                     "WARNING",
180 #endif
181                     NULL);
182   ret = check ();
183
184   return ret;
185 }
186
187 /* end of test_nse_api.c */