aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-09-25 14:02:30 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-09-25 14:02:30 +0000
commitb459c2874da7cfa17662e7a948a91c1a94029a2b (patch)
tree4b01673dd1e4a57e9ca87da539da108aadc5882b
parent6cfc3c801d66b3d436dd7453b37f6bb80e0d85a8 (diff)
downloadgnunet-b459c2874da7cfa17662e7a948a91c1a94029a2b.tar.gz
gnunet-b459c2874da7cfa17662e7a948a91c1a94029a2b.zip
next test: destroy address twice
-rw-r--r--src/ats/Makefile.am12
-rw-r--r--src/ats/test_ats_api_scheduling_destroy_address_twice.c227
2 files changed, 238 insertions, 1 deletions
diff --git a/src/ats/Makefile.am b/src/ats/Makefile.am
index f154969ce..67a671925 100644
--- a/src/ats/Makefile.am
+++ b/src/ats/Makefile.am
@@ -66,7 +66,8 @@ TESTING_TESTS = \
66 test_ats_api_scheduling_init \ 66 test_ats_api_scheduling_init \
67 test_ats_api_scheduling_add_address \ 67 test_ats_api_scheduling_add_address \
68 test_ats_api_scheduling_add_address_duplicate \ 68 test_ats_api_scheduling_add_address_duplicate \
69 test_ats_api_scheduling_destroy_address 69 test_ats_api_scheduling_destroy_address \
70 test_ats_api_scheduling_destroy_address_twice
70# test_ats_api_scheduling_add_session 71# test_ats_api_scheduling_add_session
71# test_ats_api_scheduling_min_bw 72# test_ats_api_scheduling_min_bw
72# test_ats_api_scheduling_check_min_bw_alt 73# test_ats_api_scheduling_check_min_bw_alt
@@ -130,6 +131,15 @@ test_ats_api_scheduling_destroy_address_LDADD = \
130 $(top_builddir)/src/ats/libgnunetats.la \ 131 $(top_builddir)/src/ats/libgnunetats.la \
131 $(top_builddir)/src/statistics/libgnunetstatistics.la 132 $(top_builddir)/src/statistics/libgnunetstatistics.la
132 133
134test_ats_api_scheduling_destroy_address_twice_SOURCES = \
135 test_ats_api_scheduling_destroy_address_twice.c \
136 test_ats_api_common.c test_ats_api_common.h
137test_ats_api_scheduling_destroy_address_twice_LDADD = \
138 $(top_builddir)/src/util/libgnunetutil.la \
139 $(top_builddir)/src/testing/libgnunettesting.la \
140 $(top_builddir)/src/ats/libgnunetats.la \
141 $(top_builddir)/src/statistics/libgnunetstatistics.la
142
133 143
134 144
135 145
diff --git a/src/ats/test_ats_api_scheduling_destroy_address_twice.c b/src/ats/test_ats_api_scheduling_destroy_address_twice.c
new file mode 100644
index 000000000..47162868c
--- /dev/null
+++ b/src/ats/test_ats_api_scheduling_destroy_address_twice.c
@@ -0,0 +1,227 @@
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_api_scheduling_destroy_address.c
22 * @brief test destroying addresses in automatic transport selection scheduling API
23 * @author Christian Grothoff
24 * @author Matthias Wachs
25 *
26 */
27#include "platform.h"
28#include "gnunet_ats_service.h"
29#include "gnunet_testing_lib.h"
30#include "ats.h"
31#include "test_ats_api_common.h"
32
33/**
34 * Timeout task
35 */
36static GNUNET_SCHEDULER_TaskIdentifier die_task;
37
38/**
39 * Statistics handle
40 */
41struct GNUNET_STATISTICS_Handle *stats;
42
43/**
44 * Scheduling handle
45 */
46static struct GNUNET_ATS_SchedulingHandle *sched_ats;
47
48/**
49 * Return value
50 */
51static int ret;
52
53/**
54 * Test address
55 */
56static struct Test_Address test_addr;
57
58/**
59 * Test peer
60 */
61static struct PeerContext p;
62
63/**
64 * HELLO address
65 */
66struct GNUNET_HELLO_Address test_hello_address;
67
68/**
69 * Session
70 */
71static void *test_session;
72
73/**
74 * Test ats info
75 */
76struct GNUNET_ATS_Information test_ats_info[2];
77
78/**
79 * Test ats count
80 */
81uint32_t test_ats_count;
82
83
84static void end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
85
86static int
87stat_cb(void *cls, const char *subsystem,
88 const char *name, uint64_t value,
89 int is_persistent)
90{
91 static int initial_ats_stat_cb = GNUNET_YES;
92 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "ATS statistics: `%s' `%s' %llu\n",
93 subsystem,name, value);
94
95 if ((0 == value) && (initial_ats_stat_cb == GNUNET_NO))
96 {
97 fprintf (stderr, "We now expect a warning about destroying an unknown address...\n");
98 GNUNET_ATS_address_destroyed (sched_ats, &test_hello_address, test_session);
99 GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_SECONDS, &end, NULL);
100 }
101 if ((0 == value) && (initial_ats_stat_cb == GNUNET_YES))
102 {
103 initial_ats_stat_cb = GNUNET_NO;
104 }
105 if (1 == value)
106 {
107 GNUNET_ATS_address_destroyed (sched_ats, &test_hello_address, test_session);
108 }
109
110 return GNUNET_OK;
111}
112
113
114static void
115end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
116{
117 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Shutting down\n");
118
119 if (die_task != GNUNET_SCHEDULER_NO_TASK)
120 {
121 GNUNET_SCHEDULER_cancel (die_task);
122 die_task = GNUNET_SCHEDULER_NO_TASK;
123 }
124
125 if (NULL != sched_ats)
126 {
127 GNUNET_ATS_scheduling_done (sched_ats);
128 sched_ats = NULL;
129 }
130
131 GNUNET_STATISTICS_watch_cancel (stats, "ats", "# addresses", &stat_cb, NULL);
132 if (NULL != stats)
133 {
134 GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
135 stats = NULL;
136 }
137
138 free_test_address (&test_addr);
139
140 ret = 0;
141}
142
143static void
144end_badly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
145{
146 die_task = GNUNET_SCHEDULER_NO_TASK;
147 end ( NULL, NULL);
148 ret = GNUNET_SYSERR;
149}
150
151static void
152address_suggest_cb (void *cls, const struct GNUNET_HELLO_Address *address,
153 struct Session *session,
154 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_out,
155 struct GNUNET_BANDWIDTH_Value32NBO bandwidth_in,
156 const struct GNUNET_ATS_Information *atsi,
157 uint32_t ats_count)
158{
159 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Did not expect suggestion callback!\n");
160 GNUNET_SCHEDULER_add_now (&end_badly, NULL);
161 return;
162}
163
164
165static void
166run (void *cls,
167 const struct GNUNET_CONFIGURATION_Handle *cfg,
168 struct GNUNET_TESTING_Peer *peer)
169{
170 die_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT, &end_badly, NULL);
171 stats = GNUNET_STATISTICS_create ("ats", cfg);
172 GNUNET_STATISTICS_watch (stats, "ats", "# addresses", &stat_cb, NULL);
173
174
175 /* Connect to ATS scheduling */
176 sched_ats = GNUNET_ATS_scheduling_init (cfg, &address_suggest_cb, NULL);
177 if (sched_ats == NULL)
178 {
179 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not connect to ATS scheduling!\n");
180 GNUNET_SCHEDULER_add_now (&end_badly, NULL);
181 return;
182 }
183
184 /* Set up peer */
185 if (GNUNET_SYSERR == GNUNET_CRYPTO_hash_from_string(PEERID0, &p.id.hashPubKey))
186 {
187 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not setup peer!\n");
188 GNUNET_SCHEDULER_add_now (&end_badly, NULL);
189 return;
190 }
191 GNUNET_assert (0 == strcmp (PEERID0, GNUNET_i2s_full (&p.id)));
192
193 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Created peer `%s'\n",
194 GNUNET_i2s_full(&p.id));
195
196 /* Prepare ATS Information */
197 test_ats_info[0].type = htonl (GNUNET_ATS_NETWORK_TYPE);
198 test_ats_info[0].value = htonl(GNUNET_ATS_NET_WAN);
199 test_ats_info[1].type = htonl (GNUNET_ATS_QUALITY_NET_DISTANCE);
200 test_ats_info[1].value = htonl(1);
201 test_ats_count = 2;
202
203 /* Adding address without session */
204 test_session = NULL;
205 create_test_address (&test_addr, "test", test_session, "test", strlen ("test") + 1);
206 test_hello_address.peer = p.id;
207 test_hello_address.transport_name = test_addr.plugin;
208 test_hello_address.address = test_addr.addr;
209 test_hello_address.address_length = test_addr.addr_len;
210
211 /* Adding address */
212 GNUNET_ATS_address_add (sched_ats, &test_hello_address, test_session, test_ats_info, test_ats_count);
213}
214
215
216int
217main (int argc, char *argv[])
218{
219 ret = 0;
220 if (0 != GNUNET_TESTING_peer_run ("test-ats-api",
221 "test_ats_api.conf",
222 &run, NULL))
223 return 1;
224 return ret;
225}
226
227/* end of file test_ats_api_scheduling_destroy_address.c */