aboutsummaryrefslogtreecommitdiff
path: root/src/fs/test_fs_publish.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fs/test_fs_publish.c')
-rw-r--r--src/fs/test_fs_publish.c251
1 files changed, 0 insertions, 251 deletions
diff --git a/src/fs/test_fs_publish.c b/src/fs/test_fs_publish.c
deleted file mode 100644
index 2ffc722da..000000000
--- a/src/fs/test_fs_publish.c
+++ /dev/null
@@ -1,251 +0,0 @@
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2004, 2005, 2006, 2008, 2009 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your 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 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
20/**
21 * @file fs/test_fs_publish.c
22 * @brief simple testcase for publish operation (indexing, listing
23 * indexed, directory structure)
24 * @author Christian Grothoff
25 */
26#include "platform.h"
27#include "gnunet_util_lib.h"
28#include "gnunet_testing_lib.h"
29#include "gnunet_fs_service.h"
30
31/**
32 * File-size we use for testing.
33 */
34#define FILESIZE (1024 * 1024 * 2)
35
36/**
37 * How long until we give up on transmitting the message?
38 */
39#define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
40
41/**
42 * How long should our test-content live?
43 */
44#define LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
45
46
47static struct GNUNET_TIME_Absolute start;
48
49static struct GNUNET_FS_Handle *fs;
50
51static struct GNUNET_FS_PublishContext *publish;
52
53static char *fn1;
54
55static char *fn2;
56
57static int err;
58
59
60static void
61abort_publish_task (void *cls)
62{
63 GNUNET_FS_publish_stop (publish);
64 publish = NULL;
65 GNUNET_DISK_directory_remove (fn1);
66 GNUNET_free (fn1);
67 fn1 = NULL;
68 GNUNET_DISK_directory_remove (fn2);
69 GNUNET_free (fn2);
70 fn2 = NULL;
71}
72
73
74static void *
75progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *event)
76{
77 void *ret;
78
79 ret = NULL;
80 switch (event->status)
81 {
82 case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
83 ret = event->value.publish.cctx;
84 printf ("Publish complete, %llu kbps.\n",
85 (unsigned long long) (FILESIZE * 1000000LL
86 / (1
87 + GNUNET_TIME_absolute_get_duration
88 (start).rel_value_us) / 1024));
89 if (0 == strcmp ("publish-context-dir", event->value.publish.cctx))
90 GNUNET_SCHEDULER_add_now (&abort_publish_task, NULL);
91 break;
92
93 case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
94 ret = event->value.publish.cctx;
95 GNUNET_assert (publish == event->value.publish.pc);
96 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
97 "Publish is progressing (%llu/%llu at level %u off %llu)...\n",
98 (unsigned long long) event->value.publish.completed,
99 (unsigned long long) event->value.publish.size,
100 event->value.publish.specifics.progress.depth,
101 (unsigned long long) event->value.publish.specifics.
102 progress.offset);
103 break;
104
105 case GNUNET_FS_STATUS_PUBLISH_PROGRESS_DIRECTORY:
106 ret = event->value.publish.cctx;
107 break;
108
109 case GNUNET_FS_STATUS_PUBLISH_ERROR:
110 ret = event->value.publish.cctx;
111 fprintf (stderr, "Error publishing file: %s\n",
112 event->value.publish.specifics.error.message);
113 err = 1;
114 if (0 == strcmp ("publish-context-dir", event->value.publish.cctx))
115 {
116 fprintf (stderr, "Scheduling abort task for error on `%s'\n",
117 (const char *) event->value.publish.cctx);
118 GNUNET_SCHEDULER_add_now (&abort_publish_task, NULL);
119 }
120 break;
121
122 case GNUNET_FS_STATUS_PUBLISH_START:
123 ret = event->value.publish.cctx;
124 if (0 == strcmp ("publish-context1", event->value.publish.cctx))
125 {
126 GNUNET_assert (0 ==
127 strcmp ("publish-context-dir", event->value.publish.pctx));
128 GNUNET_assert (FILESIZE == event->value.publish.size);
129 GNUNET_assert (0 == event->value.publish.completed);
130 GNUNET_assert (1 == event->value.publish.anonymity);
131 }
132 else if (0 == strcmp ("publish-context2", event->value.publish.cctx))
133 {
134 GNUNET_assert (0 ==
135 strcmp ("publish-context-dir", event->value.publish.pctx));
136 GNUNET_assert (FILESIZE == event->value.publish.size);
137 GNUNET_assert (0 == event->value.publish.completed);
138 GNUNET_assert (2 == event->value.publish.anonymity);
139 }
140 else if (0 == strcmp ("publish-context-dir", event->value.publish.cctx))
141 {
142 GNUNET_assert (0 == event->value.publish.completed);
143 GNUNET_assert (3 == event->value.publish.anonymity);
144 }
145 else
146 GNUNET_assert (0);
147 break;
148
149 case GNUNET_FS_STATUS_PUBLISH_STOPPED:
150 if (0 == strcmp ("publish-context-dir", event->value.publish.cctx))
151 GNUNET_assert (publish == event->value.publish.pc);
152 break;
153
154 default:
155 printf ("Unexpected event: %d\n", event->status);
156 break;
157 }
158 return ret;
159}
160
161
162static void
163run (void *cls,
164 const struct GNUNET_CONFIGURATION_Handle *cfg,
165 struct GNUNET_TESTING_Peer *peer)
166{
167 const char *keywords[] = {
168 "down_foo",
169 "down_bar",
170 };
171 char *buf;
172 struct GNUNET_CONTAINER_MetaData *meta;
173 struct GNUNET_FS_Uri *kuri;
174 struct GNUNET_FS_FileInformation *fi1;
175 struct GNUNET_FS_FileInformation *fi2;
176 struct GNUNET_FS_FileInformation *fidir;
177 size_t i;
178 struct GNUNET_FS_BlockOptions bo;
179
180 fs = GNUNET_FS_start (cfg, "test-fs-publish", &progress_cb, NULL,
181 GNUNET_FS_FLAGS_NONE, GNUNET_FS_OPTIONS_END);
182 GNUNET_assert (NULL != fs);
183 fn1 = GNUNET_DISK_mktemp ("gnunet-publish-test-dst");
184 buf = GNUNET_malloc (FILESIZE);
185 for (i = 0; i < FILESIZE; i++)
186 buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
187 (void) GNUNET_DISK_directory_remove (fn1);
188 GNUNET_assert (GNUNET_OK ==
189 GNUNET_DISK_fn_write (fn1, buf, FILESIZE,
190 GNUNET_DISK_PERM_USER_READ
191 | GNUNET_DISK_PERM_USER_WRITE));
192 GNUNET_free (buf);
193
194 fn2 = GNUNET_DISK_mktemp ("gnunet-publish-test-dst");
195 buf = GNUNET_malloc (FILESIZE);
196 for (i = 0; i < FILESIZE; i++)
197 buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
198 (void) GNUNET_DISK_directory_remove (fn2);
199 GNUNET_assert (GNUNET_OK ==
200 GNUNET_DISK_fn_write (fn2, buf, FILESIZE,
201 GNUNET_DISK_PERM_USER_READ
202 | GNUNET_DISK_PERM_USER_WRITE));
203 GNUNET_free (buf);
204
205 meta = GNUNET_CONTAINER_meta_data_create ();
206 kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
207 bo.content_priority = 42;
208 bo.anonymity_level = 1;
209 bo.replication_level = 0;
210 bo.expiration_time = GNUNET_TIME_relative_to_absolute (LIFETIME);
211
212 fi1 =
213 GNUNET_FS_file_information_create_from_file (fs, "publish-context1", fn1,
214 kuri, meta, GNUNET_YES, &bo);
215
216 GNUNET_assert (NULL != fi1);
217 bo.anonymity_level = 2;
218 fi2 =
219 GNUNET_FS_file_information_create_from_file (fs, "publish-context2", fn2,
220 kuri, meta, GNUNET_YES, &bo);
221 GNUNET_assert (NULL != fi2);
222 bo.anonymity_level = 3;
223 fidir =
224 GNUNET_FS_file_information_create_empty_directory (fs,
225 "publish-context-dir",
226 kuri, meta, &bo, NULL);
227 GNUNET_assert (GNUNET_OK == GNUNET_FS_file_information_add (fidir, fi1));
228 GNUNET_assert (GNUNET_OK == GNUNET_FS_file_information_add (fidir, fi2));
229 GNUNET_FS_uri_destroy (kuri);
230 GNUNET_CONTAINER_meta_data_destroy (meta);
231 GNUNET_assert (NULL != fidir);
232 start = GNUNET_TIME_absolute_get ();
233 publish =
234 GNUNET_FS_publish_start (fs, fidir, NULL, NULL, NULL,
235 GNUNET_FS_PUBLISH_OPTION_NONE);
236 GNUNET_assert (publish != NULL);
237}
238
239
240int
241main (int argc, char *argv[])
242{
243 if (0 != GNUNET_TESTING_peer_run ("test-fs-publish",
244 "test_fs_publish_data.conf",
245 &run, NULL))
246 return 1;
247 return err;
248}
249
250
251/* end of test_fs_publish.c */