eliminate KX short cut
[oweals/gnunet.git] / src / testbed / test_testbed_api_sd.c
1 /*
2       This file is part of GNUnet
3       Copyright (C) 2008--2013 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18       Boston, MA 02110-1301, USA.
19  */
20
21
22 /**
23  * @file testbed/testbed_api_sd.c
24  * @brief test cases for calculating standard deviation
25  * @author Sree Harsha Totakura <sreeharsha@totakura.in>
26  */
27
28 #include "platform.h"
29 #include "gnunet_util_lib.h"
30 #include "testbed_api_sd.h"
31
32 /**
33  * Global return value
34  */
35 static int ret;
36
37 /**
38  * Main run function.
39  *
40  * @param cls NULL
41  * @param args arguments passed to GNUNET_PROGRAM_run
42  * @param cfgfile the path to configuration file
43  * @param cfg the configuration file handle
44  */
45 static void
46 run (void *cls, char *const *args, const char *cfgfile,
47      const struct GNUNET_CONFIGURATION_Handle *config)
48 {
49   struct SDHandle *h = GNUNET_TESTBED_SD_init_ (20);
50   int sd;
51
52   ret = 0;
53   GNUNET_TESTBED_SD_add_data_ (h, 40);
54   if (GNUNET_SYSERR != GNUNET_TESTBED_SD_deviation_factor_ (h, 10, &sd))
55   {
56     GNUNET_break (0);
57     ret = 1;
58     goto err;
59   }
60   GNUNET_TESTBED_SD_add_data_ (h, 30);
61   if (GNUNET_SYSERR == GNUNET_TESTBED_SD_deviation_factor_ (h, 80, &sd))
62   {
63     GNUNET_break (0);
64     ret = 1;
65     goto err;
66   }
67   GNUNET_TESTBED_SD_add_data_ (h, 40);
68   if ((GNUNET_SYSERR == GNUNET_TESTBED_SD_deviation_factor_ (h, 30, &sd))
69       || (-2 != sd))
70   {
71     GNUNET_break (0);
72     ret = 1;
73     goto err;
74   }
75   GNUNET_TESTBED_SD_add_data_ (h, 10);
76   GNUNET_TESTBED_SD_add_data_ (h, 30);
77   if ((GNUNET_SYSERR == GNUNET_TESTBED_SD_deviation_factor_ (h, 60, &sd))
78       || (3 != sd))
79   {
80     GNUNET_break (0);
81     ret = 1;
82     goto err;
83   }
84
85  err:
86   GNUNET_TESTBED_SD_destroy_ (h);
87 }
88
89
90 /**
91  * Main function
92  */
93 int
94 main (int argc, char **argv)
95 {
96   struct GNUNET_GETOPT_CommandLineOption options[] = {
97     GNUNET_GETOPT_OPTION_END
98   };
99   int result;
100
101   result = GNUNET_SYSERR;
102   result =
103       GNUNET_PROGRAM_run (argc, argv,
104                           "test_testbed_api_sd", "nohelp", options, &run, NULL);
105   if ((GNUNET_OK != result))
106     return 1;
107   return ret;
108 }
109
110 /* end of test_testbed_api_sd.c */