first step to remove plibc
[oweals/gnunet.git] / src / nse / test_nse_api.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2011 GNUnet e.V.
4
5      GNUnet is free software: you can redistribute it and/or modify it
6      under the terms of the GNU Affero General Public License as published
7      by the Free Software Foundation, either version 3 of the License,
8      or (at your 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      Affero General Public License for more details.
14     
15      You should have received a copy of the GNU Affero General Public License
16      along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18      SPDX-License-Identifier: AGPL3.0-or-later
19 */
20 /**
21  * @file nse/test_nse_api.c
22  * @brief testcase for nse_api.c
23  */
24 #include "platform.h"
25 #include "gnunet_util_lib.h"
26 #include "gnunet_nse_service.h"
27 #include "gnunet_testing_lib.h"
28
29
30 static struct GNUNET_NSE_Handle *h;
31
32 static struct GNUNET_SCHEDULER_Task * die_task;
33
34
35 /**
36  * Signature of the main function of a task.
37  *
38  * @param cls closure
39  */
40 static void
41 end_test (void *cls)
42 {
43   if (h != NULL)
44   {
45     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Disconnecting from NSE service.\n");
46     GNUNET_NSE_disconnect (h);
47   }
48 }
49
50 /**
51  * Callback to call when network size estimate is updated.
52  *
53  * @param cls unused
54  * @param timestamp time when the estimate was received from the server (or created by the server)
55  * @param estimate the value of the current network size estimate
56  * @param std_dev standard deviation (rounded down to nearest integer)
57  *                of the size estimation values seen
58  *
59  */
60 static void
61 check_nse_message (void *cls, struct GNUNET_TIME_Absolute timestamp,
62                    double estimate, double std_dev)
63 {
64   int *ok = cls;
65
66   fprintf (stderr,
67            "Received NSE message, estimate %f, standard deviation %f.\n",
68            estimate, std_dev);
69   /* Fantastic check below. Expect NaN, the only thing not equal to itself. */
70   (*ok) = 0;
71   if (die_task != NULL)
72     GNUNET_SCHEDULER_cancel (die_task);
73   die_task = GNUNET_SCHEDULER_add_now (&end_test, NULL);
74 }
75
76
77 static void
78 run (void *cls,
79      const struct GNUNET_CONFIGURATION_Handle *cfg,
80      struct GNUNET_TESTING_Peer *peer)
81 {
82   die_task =
83       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_relative_multiply
84                                     (GNUNET_TIME_UNIT_MINUTES, 1), &end_test,
85                                     NULL);
86
87   h = GNUNET_NSE_connect (cfg, &check_nse_message, cls);
88   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connecting to NSE service.\n");
89   GNUNET_assert (h != NULL);
90 }
91
92
93 int
94 main (int argc, char *argv[])
95 {
96   int ok = 1;
97
98   if (0 != GNUNET_TESTING_peer_run ("test_nse_api",
99                                     "test_nse.conf",
100                                     &run, &ok))
101     return 1;
102   return ok;
103 }
104
105 /* end of test_nse_api.c */