first step to remove plibc
[oweals/gnunet.git] / src / fs / test_fs_unindex.c
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 /**
22  * @file fs/test_fs_unindex.c
23  * @brief simple testcase for simple publish + unindex operation
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_util_lib.h"
28 #include "gnunet_fs_service.h"
29 #include "gnunet_testing_lib.h"
30
31
32 /**
33  * File-size we use for testing.
34  */
35 #define FILESIZE (1024 * 1024 * 2)
36
37 /**
38  * How long until we give up on transmitting the message?
39  */
40 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
41
42 /**
43  * How long should our test-content live?
44  */
45 #define LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
46
47
48 static struct GNUNET_TIME_Absolute start;
49
50 static struct GNUNET_FS_Handle *fs;
51
52 static struct GNUNET_FS_UnindexContext *unindex;
53
54 static struct GNUNET_FS_PublishContext *publish;
55
56 static char *fn;
57
58
59 static void
60 abort_publish_task (void *cls)
61 {
62   GNUNET_FS_publish_stop (publish);
63   publish = NULL;
64 }
65
66
67 static void
68 abort_unindex_task (void *cls)
69 {
70   GNUNET_FS_unindex_stop (unindex);
71   unindex = NULL;
72   GNUNET_DISK_directory_remove (fn);
73   GNUNET_free (fn);
74   fn = NULL;
75 }
76
77
78 static void *
79 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *event)
80 {
81
82   switch (event->status)
83   {
84   case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
85     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
86                 "Publish is progressing (%llu/%llu at level %u off %llu)...\n",
87                 (unsigned long long) event->value.publish.completed,
88                 (unsigned long long) event->value.publish.size,
89                 event->value.publish.specifics.progress.depth,
90                 (unsigned long long) event->value.publish.specifics.
91                 progress.offset);
92     break;
93   case GNUNET_FS_STATUS_PUBLISH_PROGRESS_DIRECTORY:
94     break;
95   case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
96     printf ("Publishing complete, %llu kbps.\n",
97             (unsigned long long) (FILESIZE * 1000000LL /
98                                   (1 +
99                                    GNUNET_TIME_absolute_get_duration
100                                    (start).rel_value_us) / 1024));
101     start = GNUNET_TIME_absolute_get ();
102     unindex = GNUNET_FS_unindex_start (fs, fn, "unindex");
103     GNUNET_assert (unindex != NULL);
104     break;
105   case GNUNET_FS_STATUS_UNINDEX_COMPLETED:
106     printf ("Unindex complete,  %llu kbps.\n",
107             (unsigned long long) (FILESIZE * 1000000LL /
108                                   (1 +
109                                    GNUNET_TIME_absolute_get_duration
110                                    (start).rel_value_us) / 1024));
111     GNUNET_SCHEDULER_add_now (&abort_unindex_task, NULL);
112     break;
113   case GNUNET_FS_STATUS_UNINDEX_PROGRESS:
114     GNUNET_assert (unindex == event->value.unindex.uc);
115     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
116                 "Unindex is progressing (%llu/%llu at level %u off %llu)...\n",
117                 (unsigned long long) event->value.unindex.completed,
118                 (unsigned long long) event->value.unindex.size,
119                 event->value.unindex.specifics.progress.depth,
120                 (unsigned long long) event->value.unindex.specifics.
121                 progress.offset);
122     break;
123   case GNUNET_FS_STATUS_PUBLISH_ERROR:
124     fprintf (stderr, "Error publishing file: %s\n",
125              event->value.publish.specifics.error.message);
126     GNUNET_break (0);
127     GNUNET_SCHEDULER_add_now (&abort_publish_task, NULL);
128     break;
129   case GNUNET_FS_STATUS_UNINDEX_ERROR:
130     fprintf (stderr, "Error unindexing file: %s\n",
131              event->value.unindex.specifics.error.message);
132     GNUNET_SCHEDULER_add_now (&abort_unindex_task, NULL);
133     break;
134   case GNUNET_FS_STATUS_PUBLISH_START:
135     GNUNET_assert (0 == strcmp ("publish-context", event->value.publish.cctx));
136     GNUNET_assert (NULL == event->value.publish.pctx);
137     GNUNET_assert (FILESIZE == event->value.publish.size);
138     GNUNET_assert (0 == event->value.publish.completed);
139     GNUNET_assert (1 == event->value.publish.anonymity);
140     break;
141   case GNUNET_FS_STATUS_PUBLISH_STOPPED:
142     GNUNET_assert (publish == event->value.publish.pc);
143     GNUNET_assert (FILESIZE == event->value.publish.size);
144     GNUNET_assert (1 == event->value.publish.anonymity);
145     GNUNET_FS_stop (fs);
146     fs = NULL;
147     break;
148   case GNUNET_FS_STATUS_UNINDEX_START:
149     GNUNET_assert (unindex == NULL);
150     GNUNET_assert (0 == strcmp ("unindex", event->value.unindex.cctx));
151     GNUNET_assert (0 == strcmp (fn, event->value.unindex.filename));
152     GNUNET_assert (FILESIZE == event->value.unindex.size);
153     GNUNET_assert (0 == event->value.unindex.completed);
154     break;
155   case GNUNET_FS_STATUS_UNINDEX_STOPPED:
156     GNUNET_assert (unindex == event->value.unindex.uc);
157     GNUNET_SCHEDULER_add_now (&abort_publish_task, NULL);
158     break;
159   default:
160     printf ("Unexpected event: %d\n", event->status);
161     break;
162   }
163   return NULL;
164 }
165
166
167 static void
168 run (void *cls,
169      const struct GNUNET_CONFIGURATION_Handle *cfg,
170      struct GNUNET_TESTING_Peer *peer)
171 {
172   const char *keywords[] = {
173     "down_foo",
174     "down_bar",
175   };
176   char *buf;
177   struct GNUNET_CONTAINER_MetaData *meta;
178   struct GNUNET_FS_Uri *kuri;
179   struct GNUNET_FS_FileInformation *fi;
180   size_t i;
181   struct GNUNET_FS_BlockOptions bo;
182
183   fn = GNUNET_DISK_mktemp ("gnunet-unindex-test-dst");
184   fs = GNUNET_FS_start (cfg, "test-fs-unindex", &progress_cb, NULL,
185                         GNUNET_FS_FLAGS_NONE, GNUNET_FS_OPTIONS_END);
186   GNUNET_assert (NULL != fs);
187   buf = GNUNET_malloc (FILESIZE);
188   for (i = 0; i < FILESIZE; i++)
189     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
190   GNUNET_assert (FILESIZE ==
191                  GNUNET_DISK_fn_write (fn, buf, FILESIZE,
192                                        GNUNET_DISK_PERM_USER_READ |
193                                        GNUNET_DISK_PERM_USER_WRITE));
194   GNUNET_free (buf);
195   meta = GNUNET_CONTAINER_meta_data_create ();
196   kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
197   bo.content_priority = 42;
198   bo.anonymity_level = 1;
199   bo.replication_level = 0;
200   bo.expiration_time = GNUNET_TIME_relative_to_absolute (LIFETIME);
201   fi = GNUNET_FS_file_information_create_from_file (fs, "publish-context", fn,
202                                                     kuri, meta, GNUNET_YES,
203                                                     &bo);
204   GNUNET_FS_uri_destroy (kuri);
205   GNUNET_CONTAINER_meta_data_destroy (meta);
206   GNUNET_assert (NULL != fi);
207   start = GNUNET_TIME_absolute_get ();
208   publish =
209       GNUNET_FS_publish_start (fs, fi, NULL, NULL, NULL,
210                                GNUNET_FS_PUBLISH_OPTION_NONE);
211   GNUNET_assert (publish != NULL);
212 }
213
214
215 int
216 main (int argc, char *argv[])
217 {
218   if (0 != GNUNET_TESTING_peer_run ("test-fs-unindex",
219                                     "test_fs_unindex_data.conf",
220                                     &run, NULL))
221     return 1;
222   return 0;
223 }
224
225 /* end of test_fs_unindex.c */