-round expiration times to full seconds
[oweals/gnunet.git] / src / fs / test_fs_search_persistence.c
1 /*
2      This file is part of GNUnet.
3      (C) 2004, 2005, 2006, 2008, 2009, 2010 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      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      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20 /**
21  * @file fs/test_fs_search_persistence.c
22  * @brief simple testcase for persistence of search operation
23  * @author Christian Grothoff
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  * 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
47 static struct GNUNET_TIME_Absolute start;
48
49 static struct GNUNET_FS_Handle *fs;
50
51 static struct GNUNET_FS_SearchContext *search;
52
53 static struct GNUNET_FS_PublishContext *publish;
54
55 static const struct GNUNET_CONFIGURATION_Handle *cfg;
56
57 static GNUNET_SCHEDULER_TaskIdentifier timeout_task;
58
59 static int err;
60
61
62 static void
63 abort_error (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
64 {
65   timeout_task = GNUNET_SCHEDULER_NO_TASK;
66   fprintf (stderr,
67            "Timeout\n");
68   if (NULL != search)
69   {
70     GNUNET_FS_search_stop (search);
71     search = NULL;
72   }
73   if (NULL != publish)
74   {
75     GNUNET_FS_publish_stop (publish);
76     publish = NULL;
77   }
78   err = 1;
79 }
80
81 static void
82 abort_publish_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
83 {
84   if (NULL != publish)
85   {
86     GNUNET_FS_publish_stop (publish);
87     publish = NULL;
88   }
89   if (GNUNET_SCHEDULER_NO_TASK != timeout_task)
90   {
91     GNUNET_SCHEDULER_cancel (timeout_task);
92     timeout_task = GNUNET_SCHEDULER_NO_TASK;
93   }
94 }
95
96
97 static void
98 abort_search_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
99 {
100   if (NULL != search)
101   {
102     GNUNET_FS_search_stop (search);
103     search = NULL;
104   }
105 }
106
107
108 static void *
109 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *event);
110
111
112 static void
113 restart_fs_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
114 {
115   GNUNET_FS_stop (fs);
116   fs = GNUNET_FS_start (cfg, "test-fs-search-persistence", &progress_cb, NULL,
117                         GNUNET_FS_FLAGS_PERSISTENCE, GNUNET_FS_OPTIONS_END);
118 }
119
120
121 /**
122  * Consider scheduling the restart-task.
123  * Only runs the restart task once per event
124  * category.
125  *
126  * @param ev type of the event to consider
127  */
128 static void
129 consider_restart (int ev)
130 {
131   static int prev[32];
132   static int off;
133   int i;
134
135   for (i = 0; i < off; i++)
136     if (prev[i] == ev)
137       return;
138   prev[off++] = ev;
139   GNUNET_SCHEDULER_add_with_priority (GNUNET_SCHEDULER_PRIORITY_URGENT,
140                                       &restart_fs_task, NULL);
141 }
142
143
144 static void *
145 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *event)
146 {
147   const char *keywords[] = {
148     "down_foo"
149   };
150   struct GNUNET_FS_Uri *kuri;
151
152   switch (event->status)
153   {
154   case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
155     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
156                 "Publish is progressing (%llu/%llu at level %u off %llu)...\n",
157                 (unsigned long long) event->value.publish.completed,
158                 (unsigned long long) event->value.publish.size,
159                 event->value.publish.specifics.progress.depth,
160                 (unsigned long long) event->value.publish.specifics.
161                 progress.offset);
162     break;
163   case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
164     kuri = GNUNET_FS_uri_ksk_create_from_args (1, keywords);
165     start = GNUNET_TIME_absolute_get ();
166     GNUNET_FS_search_start (fs, kuri, 1, GNUNET_FS_SEARCH_OPTION_NONE,
167                             "search");
168     GNUNET_FS_uri_destroy (kuri);
169     GNUNET_assert (search != NULL);
170     break;
171   case GNUNET_FS_STATUS_PUBLISH_SUSPEND:
172     if (event->value.publish.pc == publish)
173       publish = NULL;
174     break;
175   case GNUNET_FS_STATUS_PUBLISH_RESUME:
176     if (NULL == publish)
177       publish = event->value.publish.pc;
178     break;
179   case GNUNET_FS_STATUS_SEARCH_RESULT:
180     /* FIXME: consider_restart (event->status); cannot be tested with
181      * search result since we exit here after the first one... */
182     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
183                 "Search complete.\n");
184     GNUNET_SCHEDULER_add_continuation (&abort_search_task, NULL,
185                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
186     break;
187   case GNUNET_FS_STATUS_PUBLISH_ERROR:
188     FPRINTF (stderr, "Error publishing file: %s\n",
189              event->value.publish.specifics.error.message);
190     GNUNET_break (0);
191     GNUNET_SCHEDULER_add_continuation (&abort_publish_task, NULL,
192                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
193     break;
194   case GNUNET_FS_STATUS_SEARCH_ERROR:
195     FPRINTF (stderr, "Error searching file: %s\n",
196              event->value.search.specifics.error.message);
197     GNUNET_SCHEDULER_add_continuation (&abort_search_task, NULL,
198                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
199     break;
200   case GNUNET_FS_STATUS_SEARCH_SUSPEND:
201     if (event->value.search.sc == search)
202       search = NULL;
203     break;
204   case GNUNET_FS_STATUS_SEARCH_RESUME:
205     if (NULL == search)
206     {
207       search = event->value.search.sc;
208       return "search";
209     }
210     break;
211   case GNUNET_FS_STATUS_PUBLISH_START:
212     GNUNET_assert (0 == strcmp ("publish-context", event->value.publish.cctx));
213     GNUNET_assert (NULL == event->value.publish.pctx);
214     GNUNET_assert (FILESIZE == event->value.publish.size);
215     GNUNET_assert (0 == event->value.publish.completed);
216     GNUNET_assert (1 == event->value.publish.anonymity);
217     break;
218   case GNUNET_FS_STATUS_PUBLISH_STOPPED:
219     GNUNET_assert (publish == event->value.publish.pc);
220     GNUNET_assert (FILESIZE == event->value.publish.size);
221     GNUNET_assert (1 == event->value.publish.anonymity);
222     GNUNET_FS_stop (fs);
223     fs = NULL;
224     break;
225   case GNUNET_FS_STATUS_SEARCH_START:
226     consider_restart (event->status);
227     GNUNET_assert (search == NULL);
228     search = event->value.search.sc;
229     GNUNET_assert (0 == strcmp ("search", event->value.search.cctx));
230     GNUNET_assert (1 == event->value.search.anonymity);
231     break;
232   case GNUNET_FS_STATUS_SEARCH_RESULT_STOPPED:
233     break;
234   case GNUNET_FS_STATUS_SEARCH_STOPPED:
235     GNUNET_assert (search == event->value.search.sc);
236     GNUNET_SCHEDULER_add_continuation (&abort_publish_task, NULL,
237                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
238     search = NULL;
239     break;
240   default:
241     FPRINTF (stderr, "Unexpected event: %d\n", event->status);
242     break;
243   }
244   return NULL;
245 }
246
247
248 static void
249 run (void *cls,
250      const struct GNUNET_CONFIGURATION_Handle *c,
251      struct GNUNET_TESTING_Peer *peer)
252 {
253   const char *keywords[] = {
254     "down_foo",
255     "down_bar"
256   };
257   char *buf;
258   struct GNUNET_CONTAINER_MetaData *meta;
259   struct GNUNET_FS_Uri *kuri;
260   struct GNUNET_FS_FileInformation *fi;
261   size_t i;
262   struct GNUNET_FS_BlockOptions bo;
263
264   cfg = c;
265   fs = GNUNET_FS_start (cfg, "test-fs-search-persistence", &progress_cb, NULL,
266                         GNUNET_FS_FLAGS_PERSISTENCE, GNUNET_FS_OPTIONS_END);
267   GNUNET_assert (NULL != fs);
268   buf = GNUNET_malloc (FILESIZE);
269   for (i = 0; i < FILESIZE; i++)
270     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
271   meta = GNUNET_CONTAINER_meta_data_create ();
272   kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
273   bo.content_priority = 42;
274   bo.anonymity_level = 1;
275   bo.replication_level = 0;
276   bo.expiration_time = GNUNET_TIME_relative_to_absolute (LIFETIME);
277   fi = GNUNET_FS_file_information_create_from_data (fs, "publish-context",
278                                                     FILESIZE, buf, kuri, meta,
279                                                     GNUNET_NO, &bo);
280   GNUNET_FS_uri_destroy (kuri);
281   GNUNET_CONTAINER_meta_data_destroy (meta);
282   GNUNET_assert (NULL != fi);
283   start = GNUNET_TIME_absolute_get ();
284   publish =
285       GNUNET_FS_publish_start (fs, fi, NULL, NULL, NULL,
286                                GNUNET_FS_PUBLISH_OPTION_NONE);
287   GNUNET_assert (publish != NULL);
288   timeout_task = GNUNET_SCHEDULER_add_delayed (LIFETIME,
289                                                &abort_error, NULL);
290 }
291
292
293 int
294 main (int argc, char *argv[])
295 {
296   if (0 != GNUNET_TESTING_peer_run ("test-fs-search-persistence",
297                                     "test_fs_search_data.conf",
298                                     &run, NULL))
299     return 1;
300   return err;
301 }
302
303 /* end of test_fs_search_persistence.c */