first step to remove plibc
[oweals/gnunet.git] / src / fs / test_fs_search_with_and.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2004-2013 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_search_with_and.c
22  * @brief testcase for publishing multiple files and search with a and operator
23  * @author Bruno Cabral - 99% based on Christian Grothoff code
24  */
25 #include "platform.h"
26 #include "gnunet_util_lib.h"
27 #include "gnunet_testing_lib.h"
28 #include "gnunet_fs_service.h"
29
30
31 /**
32  * File-size we use for testing.
33  */
34 #define FILESIZE 1024
35
36 /**
37  * Number of files for testing.
38  */
39 #define NUM_FILES 10
40
41
42 /**
43  * How long until we give up on transmitting the message?
44  */
45 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
46
47 /**
48  * How long should our test-content live?
49  */
50 #define LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
51
52
53 static struct GNUNET_TIME_Absolute start;
54
55 static struct GNUNET_FS_Handle *fs;
56
57 static struct GNUNET_FS_SearchContext *search;
58
59 static struct GNUNET_FS_PublishContext *publish;
60
61 static struct GNUNET_SCHEDULER_Task * timeout_task;
62
63 static int err;
64
65 static int processed_files;
66
67
68 static void
69 abort_publish_task (void *cls)
70 {
71   if (NULL != publish)
72   {
73     GNUNET_FS_publish_stop (publish);
74     publish = NULL;
75   }
76   if (NULL != timeout_task)
77   {
78     GNUNET_SCHEDULER_cancel (timeout_task);
79     timeout_task = NULL;
80   }
81 }
82
83
84 static void
85 abort_error (void *cls)
86 {
87   fprintf (stderr,
88            "Timeout\n");
89   timeout_task = NULL;
90   if (NULL != search)
91   {
92     GNUNET_FS_search_stop (search);
93     search = NULL;
94   }
95   if (NULL != publish)
96   {
97     GNUNET_FS_publish_stop (publish);
98     publish = NULL;
99   }
100   err = 1;
101 }
102
103
104 static void
105 abort_search_task (void *cls)
106 {
107   if (NULL != search)
108   {
109     GNUNET_FS_search_stop (search);
110     search = NULL;
111   }
112 }
113
114
115 static void *
116 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *event)
117 {
118
119   struct GNUNET_FS_Uri *kuri;
120
121   switch (event->status)
122   {
123   case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
124     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
125                 "Publish is progressing (%llu/%llu at level %u off %llu)...\n",
126                 (unsigned long long) event->value.publish.completed,
127                 (unsigned long long) event->value.publish.size,
128                 event->value.publish.specifics.progress.depth,
129                 (unsigned long long) event->value.publish.specifics.
130                 progress.offset);
131     break;
132   case GNUNET_FS_STATUS_PUBLISH_PROGRESS_DIRECTORY:
133     break;
134   case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
135         processed_files++;
136         if(processed_files == NUM_FILES)
137         {
138           char *emsg = NULL;
139           kuri = GNUNET_FS_uri_ksk_create ("+down_foo +down_bar", &emsg);
140       GNUNET_assert (kuri != NULL);
141
142       start = GNUNET_TIME_absolute_get ();
143       search =
144           GNUNET_FS_search_start (fs, kuri, 1, GNUNET_FS_SEARCH_OPTION_NONE,
145                                   "search");
146       GNUNET_FS_uri_destroy (kuri);
147       GNUNET_assert (search != NULL);
148         }
149     break;
150   case GNUNET_FS_STATUS_SEARCH_RESULT:
151     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
152                 "Search complete.\n");
153     GNUNET_SCHEDULER_add_now (&abort_search_task, NULL);
154     break;
155   case GNUNET_FS_STATUS_PUBLISH_ERROR:
156     fprintf (stderr, "Error publishing file: %s\n",
157              event->value.publish.specifics.error.message);
158     GNUNET_break (0);
159     GNUNET_SCHEDULER_add_now (&abort_publish_task, NULL);
160     break;
161   case GNUNET_FS_STATUS_SEARCH_ERROR:
162     fprintf (stderr, "Error searching file: %s\n",
163              event->value.search.specifics.error.message);
164     GNUNET_SCHEDULER_add_now (&abort_search_task, NULL);
165     break;
166   case GNUNET_FS_STATUS_PUBLISH_START:
167     GNUNET_assert (0 == strcmp ("publish-context", event->value.publish.cctx));
168     GNUNET_assert (NULL == event->value.publish.pctx);
169     GNUNET_assert (FILESIZE == event->value.publish.size);
170     GNUNET_assert (0 == event->value.publish.completed);
171     GNUNET_assert (1 == event->value.publish.anonymity);
172     break;
173   case GNUNET_FS_STATUS_PUBLISH_STOPPED:
174     GNUNET_assert (publish == event->value.publish.pc);
175     GNUNET_assert (FILESIZE == event->value.publish.size);
176     GNUNET_assert (1 == event->value.publish.anonymity);
177     GNUNET_FS_stop (fs);
178     fs = NULL;
179     break;
180   case GNUNET_FS_STATUS_SEARCH_START:
181     GNUNET_assert (search == NULL);
182     GNUNET_assert (0 == strcmp ("search", event->value.search.cctx));
183     GNUNET_assert (1 == event->value.search.anonymity);
184     break;
185   case GNUNET_FS_STATUS_SEARCH_RESULT_STOPPED:
186     break;
187   case GNUNET_FS_STATUS_SEARCH_STOPPED:
188     GNUNET_assert (search == event->value.search.sc);
189     GNUNET_SCHEDULER_add_now (&abort_publish_task, NULL);
190     break;
191   default:
192     fprintf (stderr, "Unexpected event: %d\n", event->status);
193     break;
194   }
195   return NULL;
196 }
197
198
199 static void
200 run (void *cls,
201      const struct GNUNET_CONFIGURATION_Handle *cfg,
202      struct GNUNET_TESTING_Peer *peer)
203 {
204   const char *keywords[] = {
205     "down_foo",
206     "down_bar"
207   };
208   char *buf;
209   struct GNUNET_CONTAINER_MetaData *meta;
210   struct GNUNET_FS_Uri *kuri;
211   struct GNUNET_FS_BlockOptions bo;
212   struct GNUNET_FS_FileInformation *fi;
213   size_t i;
214   size_t j;
215
216   fs = GNUNET_FS_start (cfg, "test-fs-search", &progress_cb, NULL,
217                         GNUNET_FS_FLAGS_NONE, GNUNET_FS_OPTIONS_END);
218   GNUNET_assert (NULL != fs);
219
220   processed_files = 0;
221   for(j = 0; j < NUM_FILES; j++){
222    buf = GNUNET_malloc (FILESIZE);
223    for (i = 0; i < FILESIZE; i++)
224      buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
225    meta = GNUNET_CONTAINER_meta_data_create ();
226    kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
227    bo.content_priority = 42;
228    bo.anonymity_level = 1;
229    bo.replication_level = 0;
230    bo.expiration_time = GNUNET_TIME_relative_to_absolute (LIFETIME);
231    fi = GNUNET_FS_file_information_create_from_data (fs, "publish-context",
232                                                      FILESIZE, buf, kuri, meta,
233                                                      GNUNET_NO, &bo);
234    GNUNET_FS_uri_destroy (kuri);
235    GNUNET_CONTAINER_meta_data_destroy (meta);
236    GNUNET_assert (NULL != fi);
237    start = GNUNET_TIME_absolute_get ();
238    publish =
239        GNUNET_FS_publish_start (fs, fi, NULL, NULL, NULL,
240                                 GNUNET_FS_PUBLISH_OPTION_NONE);
241    GNUNET_assert (publish != NULL);
242   }
243
244
245   timeout_task = GNUNET_SCHEDULER_add_delayed (LIFETIME,
246                                                &abort_error, NULL);
247 }
248
249
250 int
251 main (int argc, char *argv[])
252 {
253   if (0 != GNUNET_TESTING_peer_run ("test-fs-search-with-and",
254                                     "test_fs_search_data.conf",
255                                     &run, NULL))
256     return 1;
257   return err;
258 }
259
260 /* end of test_fs_search.c */