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