aboutsummaryrefslogtreecommitdiff
path: root/src/fs
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-10-25 19:28:32 +0000
committerChristian Grothoff <christian@grothoff.org>2009-10-25 19:28:32 +0000
commitc3bf5dd8d37b9e65a973c9fb83734f8ff7401266 (patch)
treefa2017c60c6a7679749e1df7eedb13349403ec72 /src/fs
parentf4ceffd43a255eab8217de7381aff3e91bd6f10d (diff)
downloadgnunet-c3bf5dd8d37b9e65a973c9fb83734f8ff7401266.tar.gz
gnunet-c3bf5dd8d37b9e65a973c9fb83734f8ff7401266.zip
testcase for unindex
Diffstat (limited to 'src/fs')
-rw-r--r--src/fs/Makefile.am15
-rw-r--r--src/fs/test_fs_unindex.c323
-rw-r--r--src/fs/test_fs_unindex_data.conf42
3 files changed, 377 insertions, 3 deletions
diff --git a/src/fs/Makefile.am b/src/fs/Makefile.am
index 82467c14c..38db1bc58 100644
--- a/src/fs/Makefile.am
+++ b/src/fs/Makefile.am
@@ -110,6 +110,7 @@ check_PROGRAMS = \
110 test_fs_namespace \ 110 test_fs_namespace \
111 test_fs_search \ 111 test_fs_search \
112 test_fs_start_stop \ 112 test_fs_start_stop \
113 test_fs_unindex \
113 test_fs_uri 114 test_fs_uri
114 115
115TESTS = \ 116TESTS = \
@@ -139,6 +140,12 @@ test_fs_download_LDADD = \
139 $(top_builddir)/src/arm/libgnunetarm.la \ 140 $(top_builddir)/src/arm/libgnunetarm.la \
140 $(top_builddir)/src/util/libgnunetutil.la 141 $(top_builddir)/src/util/libgnunetutil.la
141 142
143test_fs_getopt_SOURCES = \
144 test_fs_getopt.c
145test_fs_getopt_LDADD = \
146 $(top_builddir)/src/fs/libgnunetfs.la \
147 $(top_builddir)/src/util/libgnunetutil.la
148
142test_fs_namespace_SOURCES = \ 149test_fs_namespace_SOURCES = \
143 test_fs_namespace.c 150 test_fs_namespace.c
144test_fs_namespace_LDADD = \ 151test_fs_namespace_LDADD = \
@@ -159,10 +166,11 @@ test_fs_start_stop_LDADD = \
159 $(top_builddir)/src/arm/libgnunetarm.la \ 166 $(top_builddir)/src/arm/libgnunetarm.la \
160 $(top_builddir)/src/util/libgnunetutil.la 167 $(top_builddir)/src/util/libgnunetutil.la
161 168
162test_fs_getopt_SOURCES = \ 169test_fs_unindex_SOURCES = \
163 test_fs_getopt.c 170 test_fs_unindex.c
164test_fs_getopt_LDADD = \ 171test_fs_unindex_LDADD = \
165 $(top_builddir)/src/fs/libgnunetfs.la \ 172 $(top_builddir)/src/fs/libgnunetfs.la \
173 $(top_builddir)/src/arm/libgnunetarm.la \
166 $(top_builddir)/src/util/libgnunetutil.la 174 $(top_builddir)/src/util/libgnunetutil.la
167 175
168test_fs_uri_SOURCES = \ 176test_fs_uri_SOURCES = \
@@ -177,4 +185,5 @@ EXTRA_DIST = \
177 test_fs_download_data.conf \ 185 test_fs_download_data.conf \
178 test_fs_namespace_data.conf \ 186 test_fs_namespace_data.conf \
179 test_fs_search_data.conf \ 187 test_fs_search_data.conf \
188 test_fs_unindex_data.conf \
180 test_fs_uri_data.conf 189 test_fs_uri_data.conf
diff --git a/src/fs/test_fs_unindex.c b/src/fs/test_fs_unindex.c
new file mode 100644
index 000000000..3cff008e6
--- /dev/null
+++ b/src/fs/test_fs_unindex.c
@@ -0,0 +1,323 @@
1/*
2 This file is part of GNUnet.
3 (C) 2004, 2005, 2006, 2008, 2009 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 2, 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/**
22 * @file fs/test_fs_unindex.c
23 * @brief simple testcase for simple publish + unindex operation
24 * @author Christian Grothoff
25 */
26
27#include "platform.h"
28#include "gnunet_util_lib.h"
29#include "gnunet_arm_service.h"
30#include "gnunet_fs_service.h"
31
32#define VERBOSE GNUNET_NO
33
34#define START_ARM GNUNET_YES
35
36/**
37 * File-size we use for testing.
38 */
39#define FILESIZE (1024 * 1024 * 2)
40
41/**
42 * How long until we give up on transmitting the message?
43 */
44#define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 15)
45
46/**
47 * How long should our test-content live?
48 */
49#define LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
50
51struct PeerContext
52{
53 struct GNUNET_CONFIGURATION_Handle *cfg;
54 struct GNUNET_PeerIdentity id;
55#if START_ARM
56 pid_t arm_pid;
57#endif
58};
59
60static struct PeerContext p1;
61
62static struct GNUNET_TIME_Absolute start;
63
64static struct GNUNET_SCHEDULER_Handle *sched;
65
66static struct GNUNET_FS_Handle *fs;
67
68static struct GNUNET_FS_UnindexContext *unindex;
69
70static struct GNUNET_FS_PublishContext *publish;
71
72static char *fn;
73
74
75static void
76abort_publish_task (void *cls,
77 const struct GNUNET_SCHEDULER_TaskContext *tc)
78{
79 GNUNET_FS_publish_stop (publish);
80 publish = NULL;
81}
82
83
84static void
85abort_unindex_task (void *cls,
86 const struct GNUNET_SCHEDULER_TaskContext *tc)
87{
88 GNUNET_FS_unindex_stop (unindex);
89 unindex = NULL;
90 GNUNET_DISK_directory_remove (fn);
91 GNUNET_free (fn);
92 fn = NULL;
93}
94
95
96static void *
97progress_cb (void *cls,
98 const struct GNUNET_FS_ProgressInfo *event)
99{
100
101 switch (event->status)
102 {
103 case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
104#if VERBOSE
105 printf ("Publish is progressing (%llu/%llu at level %u off %llu)...\n",
106 (unsigned long long) event->value.publish.completed,
107 (unsigned long long) event->value.publish.size,
108 event->value.publish.specifics.progress.depth,
109 (unsigned long long) event->value.publish.specifics.progress.offset);
110#endif
111 break;
112 case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
113 printf ("Publishing complete, %llu kbps.\n",
114 (unsigned long long) (FILESIZE * 1000 / (1+GNUNET_TIME_absolute_get_duration (start).value) / 1024));
115 start = GNUNET_TIME_absolute_get ();
116 unindex = GNUNET_FS_unindex_start (fs,
117 fn);
118 GNUNET_assert (unindex != NULL);
119 break;
120 case GNUNET_FS_STATUS_UNINDEX_COMPLETED:
121 printf ("Unindex complete, %llu kbps.\n",
122 (unsigned long long) (FILESIZE * 1000 / (1+GNUNET_TIME_absolute_get_duration (start).value) / 1024));
123 GNUNET_SCHEDULER_add_continuation (sched,
124 GNUNET_NO,
125 &abort_unindex_task,
126 NULL,
127 GNUNET_SCHEDULER_REASON_PREREQ_DONE);
128 break;
129 case GNUNET_FS_STATUS_UNINDEX_PROGRESS:
130 GNUNET_assert (unindex == event->value.unindex.uc);
131#if VERBOSE
132 printf ("Unindex is progressing (%llu/%llu at level %u off %llu)...\n",
133 (unsigned long long) event->value.unindex.completed,
134 (unsigned long long) event->value.unindex.size,
135 event->value.unindex.specifics.progress.depth,
136 (unsigned long long) event->value.unindex.specifics.progress.offset);
137#endif
138 break;
139 case GNUNET_FS_STATUS_PUBLISH_ERROR:
140 fprintf (stderr,
141 "Error publishing file: %s\n",
142 event->value.publish.specifics.error.message);
143 GNUNET_break (0);
144 GNUNET_SCHEDULER_add_continuation (sched,
145 GNUNET_NO,
146 &abort_publish_task,
147 NULL,
148 GNUNET_SCHEDULER_REASON_PREREQ_DONE);
149 break;
150 case GNUNET_FS_STATUS_UNINDEX_ERROR:
151 fprintf (stderr,
152 "Error unindexing file: %s\n",
153 event->value.unindex.specifics.error.message);
154 GNUNET_SCHEDULER_add_continuation (sched,
155 GNUNET_NO,
156 &abort_unindex_task,
157 NULL,
158 GNUNET_SCHEDULER_REASON_PREREQ_DONE);
159 break;
160 case GNUNET_FS_STATUS_PUBLISH_START:
161 GNUNET_assert (0 == strcmp ("publish-context", event->value.publish.cctx));
162 GNUNET_assert (NULL == event->value.publish.pctx);
163 GNUNET_assert (FILESIZE == event->value.publish.size);
164 GNUNET_assert (0 == event->value.publish.completed);
165 GNUNET_assert (1 == event->value.publish.anonymity);
166 break;
167 case GNUNET_FS_STATUS_PUBLISH_STOPPED:
168 GNUNET_assert (publish == event->value.publish.sc);
169 GNUNET_assert (FILESIZE == event->value.publish.size);
170 GNUNET_assert (1 == event->value.publish.anonymity);
171 GNUNET_FS_stop (fs);
172 fs = NULL;
173 break;
174 case GNUNET_FS_STATUS_UNINDEX_START:
175 GNUNET_assert (unindex == NULL);
176 GNUNET_assert (0 == strcmp ("unindex", event->value.unindex.cctx));
177 GNUNET_assert (0 == strcmp (fn, event->value.unindex.filename));
178 GNUNET_assert (FILESIZE == event->value.unindex.size);
179 GNUNET_assert (0 == event->value.unindex.completed);
180 break;
181 case GNUNET_FS_STATUS_UNINDEX_STOPPED:
182 GNUNET_assert (unindex == event->value.unindex.uc);
183 GNUNET_SCHEDULER_add_continuation (sched,
184 GNUNET_NO,
185 &abort_publish_task,
186 NULL,
187 GNUNET_SCHEDULER_REASON_PREREQ_DONE);
188 break;
189 default:
190 printf ("Unexpected event: %d\n",
191 event->status);
192 break;
193 }
194 return NULL;
195}
196
197
198static void
199setup_peer (struct PeerContext *p, const char *cfgname)
200{
201 p->cfg = GNUNET_CONFIGURATION_create ();
202#if START_ARM
203 p->arm_pid = GNUNET_OS_start_process ("gnunet-service-arm",
204 "gnunet-service-arm",
205#if VERBOSE
206 "-L", "DEBUG",
207#endif
208 "-c", cfgname, NULL);
209 sleep (1); /* allow ARM to start */
210#endif
211 GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
212 GNUNET_ARM_start_services (p->cfg, sched, "core", NULL);
213}
214
215
216static void
217stop_arm (struct PeerContext *p)
218{
219#if START_ARM
220 if (0 != PLIBC_KILL (p->arm_pid, SIGTERM))
221 GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
222 if (GNUNET_OS_process_wait(p->arm_pid) != GNUNET_OK)
223 GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "waitpid");
224 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
225 "ARM process %u stopped\n", p->arm_pid);
226#endif
227 GNUNET_CONFIGURATION_destroy (p->cfg);
228}
229
230
231static void
232run (void *cls,
233 struct GNUNET_SCHEDULER_Handle *s,
234 char *const *args,
235 const char *cfgfile,
236 const struct GNUNET_CONFIGURATION_Handle *cfg)
237{
238 const char *keywords[] = {
239 "down_foo",
240 "down_bar",
241 };
242 char *buf;
243 struct GNUNET_CONTAINER_MetaData *meta;
244 struct GNUNET_FS_Uri *kuri;
245 struct GNUNET_FS_FileInformation *fi;
246 size_t i;
247
248 sched = s;
249 setup_peer (&p1, "test_fs_unindex_data.conf");
250 fn = GNUNET_DISK_mktemp ("gnunet-unindex-test-dstXXXXXX");
251 fs = GNUNET_FS_start (sched,
252 cfg,
253 "test-fs-unindex",
254 &progress_cb,
255 NULL,
256 GNUNET_FS_FLAGS_NONE,
257 GNUNET_FS_OPTIONS_END);
258 GNUNET_assert (NULL != fs);
259 buf = GNUNET_malloc (FILESIZE);
260 for (i = 0; i < FILESIZE; i++)
261 buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
262 GNUNET_assert (FILESIZE ==
263 GNUNET_DISK_fn_write (fn,
264 buf,
265 FILESIZE,
266 GNUNET_DISK_PERM_USER_READ | GNUNET_DISK_PERM_USER_WRITE));
267 GNUNET_free (buf);
268 meta = GNUNET_CONTAINER_meta_data_create ();
269 kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
270 fi = GNUNET_FS_file_information_create_from_file ("publish-context",
271 fn,
272 kuri,
273 meta,
274 GNUNET_YES,
275 1,
276 42,
277 GNUNET_TIME_relative_to_absolute (LIFETIME));
278 GNUNET_FS_uri_destroy (kuri);
279 GNUNET_CONTAINER_meta_data_destroy (meta);
280 GNUNET_assert (NULL != fi);
281 start = GNUNET_TIME_absolute_get ();
282 publish = GNUNET_FS_publish_start (fs,
283 fi,
284 NULL, NULL, NULL,
285 GNUNET_FS_PUBLISH_OPTION_NONE);
286 GNUNET_assert (publish != NULL);
287}
288
289
290int
291main (int argc, char *argv[])
292{
293 char *const argvx[] = {
294 "test-fs-unindex",
295 "-c",
296 "test_fs_unindex_data.conf",
297#if VERBOSE
298 "-L", "DEBUG",
299#endif
300 NULL
301 };
302 struct GNUNET_GETOPT_CommandLineOption options[] = {
303 GNUNET_GETOPT_OPTION_END
304 };
305
306 GNUNET_log_setup ("test_fs_unindex",
307#if VERBOSE
308 "DEBUG",
309#else
310 "WARNING",
311#endif
312 NULL);
313 GNUNET_PROGRAM_run ((sizeof (argvx) / sizeof (char *)) - 1,
314 argvx, "test-fs-unindex",
315 "nohelp", options, &run, NULL);
316 stop_arm (&p1);
317 GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-unindex/");
318 GNUNET_DISK_directory_remove (fn);
319 GNUNET_free_non_null (fn);
320 return 0;
321}
322
323/* end of test_fs_unindex.c */
diff --git a/src/fs/test_fs_unindex_data.conf b/src/fs/test_fs_unindex_data.conf
new file mode 100644
index 000000000..7f16af126
--- /dev/null
+++ b/src/fs/test_fs_unindex_data.conf
@@ -0,0 +1,42 @@
1[PATHS]
2SERVICEHOME = /tmp/gnunet-test-fs-unindex/
3DEFAULTCONFIG = test_fs_unindex_data.conf
4
5[gnunetd]
6HOSTKEY = $SERVICEHOME/.hostkey
7
8[resolver]
9PORT = 42464
10HOSTNAME = localhost
11
12[transport]
13PORT = 42465
14PLUGINS =
15
16[arm]
17PORT = 42466
18HOSTNAME = localhost
19DEFAULTSERVICES = resolver datastore transport core fs
20
21[datastore]
22#DEBUG = YES
23
24[statistics]
25PORT = 42467
26HOSTNAME = localhost
27
28[peerinfo]
29PORT = 42469
30HOSTNAME = localhost
31
32[core]
33PORT = 42470
34HOSTNAME = localhost
35
36[fs]
37PORT = 42471
38HOSTNAME = localhost
39#DEBUG = YES
40
41[testing]
42WEAKRANDOM = YES