b265c4bd749e37997beaf870bddfccd5942dc212
[oweals/gnunet.git] / src / ats / test_ats_mlp.c
1 /*
2      This file is part of GNUnet.
3      (C) 2010,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 ats/test_ats_mlp.c
22  * @brief test for the MLP solver
23  * @author Christian Grothoff
24  * @author Matthias Wachs
25
26  */
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_statistics_service.h"
30 #include "gnunet-service-ats_addresses_mlp.h"
31
32 #define VERBOSE GNUNET_EXTRA_LOGGING
33 #define VERBOSE_ARM GNUNET_EXTRA_LOGGING
34
35 #define MLP_MAX_EXEC_DURATION   GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 3)
36 #define MLP_MAX_ITERATIONS      INT_MAX
37
38
39 static int ret;
40
41 struct GNUNET_STATISTICS_Handle * stats;
42
43 struct GNUNET_CONTAINER_MultiHashMap * addresses;
44
45 struct GAS_MLP_Handle *mlp;
46
47 static void
48 check (void *cls, char *const *args, const char *cfgfile,
49        const struct GNUNET_CONFIGURATION_Handle *cfg)
50 {
51 #if !HAVE_LIBGLPK
52   GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "GLPK not installed!");
53   ret = 1;
54   return;
55 #endif
56   struct ATS_Address addr;
57
58   stats = GNUNET_STATISTICS_create("ats", cfg);
59
60   addresses = GNUNET_CONTAINER_multihashmap_create (10);
61
62   GNUNET_CRYPTO_hash_create_random(GNUNET_CRYPTO_QUALITY_WEAK, &addr.peer.hashPubKey);
63   addr.mlp_information = NULL;
64   addr.next = NULL;
65   addr.prev = NULL;
66   addr.plugin = strdup ("dummy");
67   GNUNET_CONTAINER_multihashmap_put(addresses, &addr.peer.hashPubKey, &addr, GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
68
69   mlp = GAS_mlp_init (cfg, NULL, MLP_MAX_EXEC_DURATION, MLP_MAX_ITERATIONS);
70
71   /* Add a new address */
72   GAS_mlp_address_update (mlp, addresses, &addr);
73
74   GNUNET_assert (mlp != NULL);
75   GNUNET_assert (mlp->addr_in_problem == 1);
76
77   /* Update an new address */
78   GAS_mlp_address_update (mlp, addresses, &addr);
79   GNUNET_assert (mlp->addr_in_problem == 1);
80
81   /* Delete an address */
82   GNUNET_CONTAINER_multihashmap_remove (addresses, &addr.peer.hashPubKey, &addr);
83   GAS_mlp_address_delete (mlp, addresses, &addr);
84
85   GAS_mlp_done (mlp);
86
87   GNUNET_free (addr.plugin);
88   GNUNET_CONTAINER_multihashmap_destroy (addresses);
89   GNUNET_STATISTICS_destroy(stats, GNUNET_NO);
90
91   ret = 0;
92   return;
93 }
94
95
96 int
97 main (int argc, char *argv[])
98 {
99
100   static char *const argv2[] = { "test_ats_mlp",
101     "-c",
102     "test_ats_api.conf",
103 #if VERBOSE
104     "-L", "DEBUG",
105 #else
106     "-L", "WARNING",
107 #endif
108     NULL
109   };
110
111   static struct GNUNET_GETOPT_CommandLineOption options[] = {
112     GNUNET_GETOPT_OPTION_END
113   };
114
115   GNUNET_PROGRAM_run ((sizeof (argv2) / sizeof (char *)) - 1, argv2,
116                       "test_ats_mlp", "nohelp", options,
117                       &check, NULL);
118
119
120   return ret;
121 }
122
123 /* end of file test_ats_api_bandwidth_consumption.c */