aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ats/test_ats_mlp_averaging.c182
1 files changed, 182 insertions, 0 deletions
diff --git a/src/ats/test_ats_mlp_averaging.c b/src/ats/test_ats_mlp_averaging.c
new file mode 100644
index 000000000..0027e6d4d
--- /dev/null
+++ b/src/ats/test_ats_mlp_averaging.c
@@ -0,0 +1,182 @@
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_ats_service.h"
31#include "gnunet-service-ats_addresses_mlp.h"
32
33#define VERBOSE GNUNET_YES
34#define VERBOSE_ARM GNUNET_EXTRA_LOGGING
35
36#define MLP_MAX_EXEC_DURATION GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 3)
37#define MLP_MAX_ITERATIONS INT_MAX
38
39
40static int ret;
41
42struct GNUNET_STATISTICS_Handle * stats;
43
44struct GNUNET_CONTAINER_MultiHashMap * addresses;
45
46struct GAS_MLP_Handle *mlp;
47
48
49static void
50create_address (struct ATS_Address *addr, char * plugin, int ats_count, struct GNUNET_ATS_Information *ats)
51{
52 addr->mlp_information = NULL;
53 addr->next = NULL;
54 addr->prev = NULL;
55 addr->plugin = strdup (plugin);
56 addr->ats_count = ats_count;
57 addr->ats = ats;
58}
59
60static void
61set_ats (struct GNUNET_ATS_Information *ats, uint32_t type, uint32_t value)
62{
63 ats->type = type;
64 ats->value = value;
65}
66
67static void
68check (void *cls, char *const *args, const char *cfgfile,
69 const struct GNUNET_CONFIGURATION_Handle *cfg)
70{
71#if !HAVE_LIBGLPK
72 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "GLPK not installed!");
73 ret = 1;
74 return;
75#endif
76 struct ATS_Address addr[10];
77 struct ATS_PreferedAddress *res[10];
78 struct MLP_information *mlpi;
79
80 stats = GNUNET_STATISTICS_create("ats", cfg);
81
82 addresses = GNUNET_CONTAINER_multihashmap_create (10);
83
84 mlp = GAS_mlp_init (cfg, NULL, MLP_MAX_EXEC_DURATION, MLP_MAX_ITERATIONS);
85 mlp->auto_solve = GNUNET_NO;
86
87 struct GNUNET_PeerIdentity p[10];
88
89 /* Creating peer 1 */
90 GNUNET_CRYPTO_hash_create_random(GNUNET_CRYPTO_QUALITY_WEAK, &p[0].hashPubKey);
91
92 /* Creating peer 1 address 1 */
93 addr[0].peer.hashPubKey = p[0].hashPubKey;
94 struct GNUNET_ATS_Information a1_ats[3];
95 set_ats (&a1_ats[0], GNUNET_ATS_QUALITY_NET_DISTANCE, 1);
96 set_ats (&a1_ats[1], GNUNET_ATS_QUALITY_NET_DELAY, 0);
97 set_ats (&a1_ats[2], GNUNET_ATS_ARRAY_TERMINATOR, 0);
98 create_address (&addr[0], "dummy", 3, &a1_ats[0]);
99 addr[0].atsp_network_type = GNUNET_ATS_NET_LAN;
100
101 GNUNET_CONTAINER_multihashmap_put(addresses, &addr[0].peer.hashPubKey, &addr[0], GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
102
103 /* Add peer 1 address 1 */
104 GAS_mlp_address_update (mlp, addresses, &addr[0]);
105 mlpi = addr[0].mlp_information;
106
107 GNUNET_assert (mlp != NULL);
108 GNUNET_assert (mlp->addr_in_problem == 1);
109
110 /* Update an peer 1 address 1 */
111 set_ats (&a1_ats[1], GNUNET_ATS_QUALITY_NET_DELAY, 20);
112 GAS_mlp_address_update (mlp, addresses, &addr[0]);
113 GNUNET_assert (mlp->addr_in_problem == 1);
114
115
116 /* Update an peer 1 address 1 */
117 set_ats (&a1_ats[1], GNUNET_ATS_QUALITY_NET_DELAY, 10);
118 GAS_mlp_address_update (mlp, addresses, &addr[0]);
119 GNUNET_assert (mlp->addr_in_problem == 1);
120
121 /* Update an peer 1 address 1 */
122 set_ats (&a1_ats[1], GNUNET_ATS_QUALITY_NET_DELAY, 10);
123 GAS_mlp_address_update (mlp, addresses, &addr[0]);
124 GNUNET_assert (mlp->addr_in_problem == 1);
125
126 /* Update an peer 1 address 1 */
127 set_ats (&a1_ats[1], GNUNET_ATS_QUALITY_NET_DELAY, 30);
128 GAS_mlp_address_update (mlp, addresses, &addr[0]);
129 GNUNET_assert (mlp->addr_in_problem == 1);
130
131
132 GNUNET_assert (GNUNET_OK == GAS_mlp_solve_problem(mlp));
133
134 res[0] = GAS_mlp_get_preferred_address(mlp, addresses, &p[0]);
135 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Preferred address `%s' outbound bandwidth: %u Bps\n",res[0]->address->plugin, res[0]->bandwidth_out);
136 GNUNET_free (res[0]);
137
138 /* Delete an address */
139 GNUNET_CONTAINER_multihashmap_remove (addresses, &addr[0].peer.hashPubKey, &addr[0]);
140 GAS_mlp_address_delete (mlp, addresses, &addr[0]);
141
142 GNUNET_assert (mlp->addr_in_problem == 0);
143
144 GAS_mlp_done (mlp);
145
146 GNUNET_free (addr[0].plugin);
147 GNUNET_CONTAINER_multihashmap_destroy (addresses);
148 GNUNET_STATISTICS_destroy(stats, GNUNET_NO);
149
150 ret = 0;
151 return;
152}
153
154
155int
156main (int argc, char *argv[])
157{
158
159 static char *const argv2[] = { "test_ats_mlp",
160 "-c",
161 "test_ats_api.conf",
162#if VERBOSE
163 "-L", "DEBUG",
164#else
165 "-L", "WARNING",
166#endif
167 NULL
168 };
169
170 static struct GNUNET_GETOPT_CommandLineOption options[] = {
171 GNUNET_GETOPT_OPTION_END
172 };
173
174 GNUNET_PROGRAM_run ((sizeof (argv2) / sizeof (char *)) - 1, argv2,
175 "test_ats_mlp", "nohelp", options,
176 &check, NULL);
177
178
179 return ret;
180}
181
182/* end of file test_ats_api_bandwidth_consumption.c */