aboutsummaryrefslogtreecommitdiff
path: root/src/fs/test_fs_publish.c
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-09-08 12:33:09 +0000
committerng0 <ng0@n0.is>2019-09-08 12:33:09 +0000
commitd41ed82a4ea0cc8e1674b6d5d2c49fd6462610bb (patch)
tree9efd18ea7d425652085ed0bd5e8e45604bc5f6b9 /src/fs/test_fs_publish.c
parenta0fce305c565c0937d917a92712f15e9c5736260 (diff)
downloadgnunet-d41ed82a4ea0cc8e1674b6d5d2c49fd6462610bb.tar.gz
gnunet-d41ed82a4ea0cc8e1674b6d5d2c49fd6462610bb.zip
uncrustify as demanded.
Diffstat (limited to 'src/fs/test_fs_publish.c')
-rw-r--r--src/fs/test_fs_publish.c262
1 files changed, 134 insertions, 128 deletions
diff --git a/src/fs/test_fs_publish.c b/src/fs/test_fs_publish.c
index fe54bb552..02c1587d2 100644
--- a/src/fs/test_fs_publish.c
+++ b/src/fs/test_fs_publish.c
@@ -11,12 +11,12 @@
11 WITHOUT ANY WARRANTY; without even the implied warranty of 11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Affero General Public License for more details. 13 Affero General Public License for more details.
14 14
15 You should have received a copy of the GNU Affero General Public License 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/>. 16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17 17
18 SPDX-License-Identifier: AGPL3.0-or-later 18 SPDX-License-Identifier: AGPL3.0-or-later
19*/ 19 */
20/** 20/**
21 * @file fs/test_fs_publish.c 21 * @file fs/test_fs_publish.c
22 * @brief simple testcase for publish operation (indexing, listing 22 * @brief simple testcase for publish operation (indexing, listing
@@ -36,12 +36,12 @@
36/** 36/**
37 * How long until we give up on transmitting the message? 37 * How long until we give up on transmitting the message?
38 */ 38 */
39#define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60) 39#define TIMEOUT GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS, 60)
40 40
41/** 41/**
42 * How long should our test-content live? 42 * How long should our test-content live?
43 */ 43 */
44#define LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15) 44#define LIFETIME GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_MINUTES, 15)
45 45
46 46
47static struct GNUNET_TIME_Absolute start; 47static struct GNUNET_TIME_Absolute start;
@@ -58,105 +58,111 @@ static int err;
58 58
59 59
60static void 60static void
61abort_publish_task (void *cls) 61abort_publish_task(void *cls)
62{ 62{
63 GNUNET_FS_publish_stop (publish); 63 GNUNET_FS_publish_stop(publish);
64 publish = NULL; 64 publish = NULL;
65 GNUNET_DISK_directory_remove (fn1); 65 GNUNET_DISK_directory_remove(fn1);
66 GNUNET_free (fn1); 66 GNUNET_free(fn1);
67 fn1 = NULL; 67 fn1 = NULL;
68 GNUNET_DISK_directory_remove (fn2); 68 GNUNET_DISK_directory_remove(fn2);
69 GNUNET_free (fn2); 69 GNUNET_free(fn2);
70 fn2 = NULL; 70 fn2 = NULL;
71} 71}
72 72
73 73
74static void * 74static void *
75progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *event) 75progress_cb(void *cls, const struct GNUNET_FS_ProgressInfo *event)
76{ 76{
77 void *ret; 77 void *ret;
78 78
79 ret = NULL; 79 ret = NULL;
80 switch (event->status) 80 switch (event->status)
81 { 81 {
82 case GNUNET_FS_STATUS_PUBLISH_COMPLETED: 82 case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
83 ret = event->value.publish.cctx; 83 ret = event->value.publish.cctx;
84 printf ("Publish complete, %llu kbps.\n", 84 printf("Publish complete, %llu kbps.\n",
85 (unsigned long long) (FILESIZE * 1000000LL / 85 (unsigned long long)(FILESIZE * 1000000LL /
86 (1 + 86 (1 +
87 GNUNET_TIME_absolute_get_duration 87 GNUNET_TIME_absolute_get_duration
88 (start).rel_value_us) / 1024)); 88 (start).rel_value_us) / 1024));
89 if (0 == strcmp ("publish-context-dir", event->value.publish.cctx)) 89 if (0 == strcmp("publish-context-dir", event->value.publish.cctx))
90 GNUNET_SCHEDULER_add_now (&abort_publish_task, NULL); 90 GNUNET_SCHEDULER_add_now(&abort_publish_task, NULL);
91 break; 91 break;
92 case GNUNET_FS_STATUS_PUBLISH_PROGRESS: 92
93 ret = event->value.publish.cctx; 93 case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
94 GNUNET_assert (publish == event->value.publish.pc); 94 ret = event->value.publish.cctx;
95 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 95 GNUNET_assert(publish == event->value.publish.pc);
96 "Publish is progressing (%llu/%llu at level %u off %llu)...\n", 96 GNUNET_log(GNUNET_ERROR_TYPE_DEBUG,
97 (unsigned long long) event->value.publish.completed, 97 "Publish is progressing (%llu/%llu at level %u off %llu)...\n",
98 (unsigned long long) event->value.publish.size, 98 (unsigned long long)event->value.publish.completed,
99 event->value.publish.specifics.progress.depth, 99 (unsigned long long)event->value.publish.size,
100 (unsigned long long) event->value.publish.specifics. 100 event->value.publish.specifics.progress.depth,
101 progress.offset); 101 (unsigned long long)event->value.publish.specifics.
102 break; 102 progress.offset);
103 case GNUNET_FS_STATUS_PUBLISH_PROGRESS_DIRECTORY: 103 break;
104 ret = event->value.publish.cctx; 104
105 break; 105 case GNUNET_FS_STATUS_PUBLISH_PROGRESS_DIRECTORY:
106 case GNUNET_FS_STATUS_PUBLISH_ERROR: 106 ret = event->value.publish.cctx;
107 ret = event->value.publish.cctx; 107 break;
108 fprintf (stderr, "Error publishing file: %s\n", 108
109 event->value.publish.specifics.error.message); 109 case GNUNET_FS_STATUS_PUBLISH_ERROR:
110 err = 1; 110 ret = event->value.publish.cctx;
111 if (0 == strcmp ("publish-context-dir", event->value.publish.cctx)) 111 fprintf(stderr, "Error publishing file: %s\n",
112 { 112 event->value.publish.specifics.error.message);
113 fprintf (stderr, "Scheduling abort task for error on `%s'\n", 113 err = 1;
114 (const char *) event->value.publish.cctx); 114 if (0 == strcmp("publish-context-dir", event->value.publish.cctx))
115 GNUNET_SCHEDULER_add_now (&abort_publish_task, NULL); 115 {
116 } 116 fprintf(stderr, "Scheduling abort task for error on `%s'\n",
117 break; 117 (const char *)event->value.publish.cctx);
118 case GNUNET_FS_STATUS_PUBLISH_START: 118 GNUNET_SCHEDULER_add_now(&abort_publish_task, NULL);
119 ret = event->value.publish.cctx; 119 }
120 if (0 == strcmp ("publish-context1", event->value.publish.cctx)) 120 break;
121 { 121
122 GNUNET_assert (0 == 122 case GNUNET_FS_STATUS_PUBLISH_START:
123 strcmp ("publish-context-dir", event->value.publish.pctx)); 123 ret = event->value.publish.cctx;
124 GNUNET_assert (FILESIZE == event->value.publish.size); 124 if (0 == strcmp("publish-context1", event->value.publish.cctx))
125 GNUNET_assert (0 == event->value.publish.completed); 125 {
126 GNUNET_assert (1 == event->value.publish.anonymity); 126 GNUNET_assert(0 ==
127 } 127 strcmp("publish-context-dir", event->value.publish.pctx));
128 else if (0 == strcmp ("publish-context2", event->value.publish.cctx)) 128 GNUNET_assert(FILESIZE == event->value.publish.size);
129 { 129 GNUNET_assert(0 == event->value.publish.completed);
130 GNUNET_assert (0 == 130 GNUNET_assert(1 == event->value.publish.anonymity);
131 strcmp ("publish-context-dir", event->value.publish.pctx)); 131 }
132 GNUNET_assert (FILESIZE == event->value.publish.size); 132 else if (0 == strcmp("publish-context2", event->value.publish.cctx))
133 GNUNET_assert (0 == event->value.publish.completed); 133 {
134 GNUNET_assert (2 == event->value.publish.anonymity); 134 GNUNET_assert(0 ==
135 } 135 strcmp("publish-context-dir", event->value.publish.pctx));
136 else if (0 == strcmp ("publish-context-dir", event->value.publish.cctx)) 136 GNUNET_assert(FILESIZE == event->value.publish.size);
137 { 137 GNUNET_assert(0 == event->value.publish.completed);
138 GNUNET_assert (0 == event->value.publish.completed); 138 GNUNET_assert(2 == event->value.publish.anonymity);
139 GNUNET_assert (3 == 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;
140 } 157 }
141 else
142 GNUNET_assert (0);
143 break;
144 case GNUNET_FS_STATUS_PUBLISH_STOPPED:
145 if (0 == strcmp ("publish-context-dir", event->value.publish.cctx))
146 GNUNET_assert (publish == event->value.publish.pc);
147 break;
148 default:
149 printf ("Unexpected event: %d\n", event->status);
150 break;
151 }
152 return ret; 158 return ret;
153} 159}
154 160
155 161
156static void 162static void
157run (void *cls, 163run(void *cls,
158 const struct GNUNET_CONFIGURATION_Handle *cfg, 164 const struct GNUNET_CONFIGURATION_Handle *cfg,
159 struct GNUNET_TESTING_Peer *peer) 165 struct GNUNET_TESTING_Peer *peer)
160{ 166{
161 const char *keywords[] = { 167 const char *keywords[] = {
162 "down_foo", 168 "down_foo",
@@ -171,70 +177,70 @@ run (void *cls,
171 size_t i; 177 size_t i;
172 struct GNUNET_FS_BlockOptions bo; 178 struct GNUNET_FS_BlockOptions bo;
173 179
174 fs = GNUNET_FS_start (cfg, "test-fs-publish", &progress_cb, NULL, 180 fs = GNUNET_FS_start(cfg, "test-fs-publish", &progress_cb, NULL,
175 GNUNET_FS_FLAGS_NONE, GNUNET_FS_OPTIONS_END); 181 GNUNET_FS_FLAGS_NONE, GNUNET_FS_OPTIONS_END);
176 GNUNET_assert (NULL != fs); 182 GNUNET_assert(NULL != fs);
177 fn1 = GNUNET_DISK_mktemp ("gnunet-publish-test-dst"); 183 fn1 = GNUNET_DISK_mktemp("gnunet-publish-test-dst");
178 buf = GNUNET_malloc (FILESIZE); 184 buf = GNUNET_malloc(FILESIZE);
179 for (i = 0; i < FILESIZE; i++) 185 for (i = 0; i < FILESIZE; i++)
180 buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256); 186 buf[i] = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, 256);
181 GNUNET_assert (FILESIZE == 187 GNUNET_assert(FILESIZE ==
182 GNUNET_DISK_fn_write (fn1, buf, FILESIZE, 188 GNUNET_DISK_fn_write(fn1, buf, FILESIZE,
183 GNUNET_DISK_PERM_USER_READ | 189 GNUNET_DISK_PERM_USER_READ |
184 GNUNET_DISK_PERM_USER_WRITE)); 190 GNUNET_DISK_PERM_USER_WRITE));
185 GNUNET_free (buf); 191 GNUNET_free(buf);
186 192
187 fn2 = GNUNET_DISK_mktemp ("gnunet-publish-test-dst"); 193 fn2 = GNUNET_DISK_mktemp("gnunet-publish-test-dst");
188 buf = GNUNET_malloc (FILESIZE); 194 buf = GNUNET_malloc(FILESIZE);
189 for (i = 0; i < FILESIZE; i++) 195 for (i = 0; i < FILESIZE; i++)
190 buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256); 196 buf[i] = GNUNET_CRYPTO_random_u32(GNUNET_CRYPTO_QUALITY_WEAK, 256);
191 GNUNET_assert (FILESIZE == 197 GNUNET_assert(FILESIZE ==
192 GNUNET_DISK_fn_write (fn2, buf, FILESIZE, 198 GNUNET_DISK_fn_write(fn2, buf, FILESIZE,
193 GNUNET_DISK_PERM_USER_READ | 199 GNUNET_DISK_PERM_USER_READ |
194 GNUNET_DISK_PERM_USER_WRITE)); 200 GNUNET_DISK_PERM_USER_WRITE));
195 GNUNET_free (buf); 201 GNUNET_free(buf);
196 202
197 meta = GNUNET_CONTAINER_meta_data_create (); 203 meta = GNUNET_CONTAINER_meta_data_create();
198 kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords); 204 kuri = GNUNET_FS_uri_ksk_create_from_args(2, keywords);
199 bo.content_priority = 42; 205 bo.content_priority = 42;
200 bo.anonymity_level = 1; 206 bo.anonymity_level = 1;
201 bo.replication_level = 0; 207 bo.replication_level = 0;
202 bo.expiration_time = GNUNET_TIME_relative_to_absolute (LIFETIME); 208 bo.expiration_time = GNUNET_TIME_relative_to_absolute(LIFETIME);
203 209
204 fi1 = 210 fi1 =
205 GNUNET_FS_file_information_create_from_file (fs, "publish-context1", fn1, 211 GNUNET_FS_file_information_create_from_file(fs, "publish-context1", fn1,
206 kuri, meta, GNUNET_YES, &bo); 212 kuri, meta, GNUNET_YES, &bo);
207 213
208 GNUNET_assert (NULL != fi1); 214 GNUNET_assert(NULL != fi1);
209 bo.anonymity_level = 2; 215 bo.anonymity_level = 2;
210 fi2 = 216 fi2 =
211 GNUNET_FS_file_information_create_from_file (fs, "publish-context2", fn2, 217 GNUNET_FS_file_information_create_from_file(fs, "publish-context2", fn2,
212 kuri, meta, GNUNET_YES, &bo); 218 kuri, meta, GNUNET_YES, &bo);
213 GNUNET_assert (NULL != fi2); 219 GNUNET_assert(NULL != fi2);
214 bo.anonymity_level = 3; 220 bo.anonymity_level = 3;
215 fidir = 221 fidir =
216 GNUNET_FS_file_information_create_empty_directory (fs, 222 GNUNET_FS_file_information_create_empty_directory(fs,
217 "publish-context-dir", 223 "publish-context-dir",
218 kuri, meta, &bo, NULL); 224 kuri, meta, &bo, NULL);
219 GNUNET_assert (GNUNET_OK == GNUNET_FS_file_information_add (fidir, fi1)); 225 GNUNET_assert(GNUNET_OK == GNUNET_FS_file_information_add(fidir, fi1));
220 GNUNET_assert (GNUNET_OK == GNUNET_FS_file_information_add (fidir, fi2)); 226 GNUNET_assert(GNUNET_OK == GNUNET_FS_file_information_add(fidir, fi2));
221 GNUNET_FS_uri_destroy (kuri); 227 GNUNET_FS_uri_destroy(kuri);
222 GNUNET_CONTAINER_meta_data_destroy (meta); 228 GNUNET_CONTAINER_meta_data_destroy(meta);
223 GNUNET_assert (NULL != fidir); 229 GNUNET_assert(NULL != fidir);
224 start = GNUNET_TIME_absolute_get (); 230 start = GNUNET_TIME_absolute_get();
225 publish = 231 publish =
226 GNUNET_FS_publish_start (fs, fidir, NULL, NULL, NULL, 232 GNUNET_FS_publish_start(fs, fidir, NULL, NULL, NULL,
227 GNUNET_FS_PUBLISH_OPTION_NONE); 233 GNUNET_FS_PUBLISH_OPTION_NONE);
228 GNUNET_assert (publish != NULL); 234 GNUNET_assert(publish != NULL);
229} 235}
230 236
231 237
232int 238int
233main (int argc, char *argv[]) 239main(int argc, char *argv[])
234{ 240{
235 if (0 != GNUNET_TESTING_peer_run ("test-fs-publish", 241 if (0 != GNUNET_TESTING_peer_run("test-fs-publish",
236 "test_fs_publish_data.conf", 242 "test_fs_publish_data.conf",
237 &run, NULL)) 243 &run, NULL))
238 return 1; 244 return 1;
239 return err; 245 return err;
240} 246}