refactoring datastore API to use MQ API, also fixing misc. bugs in new mysql backend
[oweals/gnunet.git] / src / fs / test_fs_search_persistence.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, 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 struct GNUNET_SCHEDULER_Task * timeout_task;
58
59 static int err;
60
61
62 static void
63 abort_error (void *cls)
64 {
65   timeout_task = NULL;
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
82 static void
83 abort_publish_task (void *cls)
84 {
85   if (NULL != publish)
86   {
87     GNUNET_FS_publish_stop (publish);
88     publish = NULL;
89   }
90   if (NULL != timeout_task)
91   {
92     GNUNET_SCHEDULER_cancel (timeout_task);
93     timeout_task = NULL;
94   }
95 }
96
97
98 static void
99 abort_search_task (void *cls)
100 {
101   if (NULL != search)
102   {
103     GNUNET_FS_search_stop (search);
104     search = NULL;
105   }
106 }
107
108
109 static void *
110 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *event);
111
112
113 static void
114 restart_fs_task (void *cls)
115 {
116   GNUNET_FS_stop (fs);
117   fs = GNUNET_FS_start (cfg, "test-fs-search-persistence", &progress_cb, NULL,
118                         GNUNET_FS_FLAGS_PERSISTENCE, GNUNET_FS_OPTIONS_END);
119 }
120
121
122 /**
123  * Consider scheduling the restart-task.
124  * Only runs the restart task once per event
125  * category.
126  *
127  * @param ev type of the event to consider
128  */
129 static void
130 consider_restart (int ev)
131 {
132   static int prev[32];
133   static int off;
134   int i;
135
136   for (i = 0; i < off; i++)
137     if (prev[i] == ev)
138       return;
139   prev[off++] = ev;
140   GNUNET_SCHEDULER_add_with_priority (GNUNET_SCHEDULER_PRIORITY_URGENT,
141                                       &restart_fs_task, NULL);
142 }
143
144
145 static void *
146 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *event)
147 {
148   const char *keywords[] = {
149     "down_foo"
150   };
151   struct GNUNET_FS_Uri *kuri;
152
153   switch (event->status)
154   {
155   case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
156     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
157                 "Publish is progressing (%llu/%llu at level %u off %llu)...\n",
158                 (unsigned long long) event->value.publish.completed,
159                 (unsigned long long) event->value.publish.size,
160                 event->value.publish.specifics.progress.depth,
161                 (unsigned long long) event->value.publish.specifics.
162                 progress.offset);
163     break;
164   case GNUNET_FS_STATUS_PUBLISH_PROGRESS_DIRECTORY:
165     break;
166   case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
167     kuri = GNUNET_FS_uri_ksk_create_from_args (1, keywords);
168     start = GNUNET_TIME_absolute_get ();
169     GNUNET_FS_search_start (fs, kuri, 1, GNUNET_FS_SEARCH_OPTION_NONE,
170                             "search");
171     GNUNET_FS_uri_destroy (kuri);
172     GNUNET_assert (search != NULL);
173     break;
174   case GNUNET_FS_STATUS_PUBLISH_SUSPEND:
175     if (event->value.publish.pc == publish)
176       publish = NULL;
177     break;
178   case GNUNET_FS_STATUS_PUBLISH_RESUME:
179     if (NULL == publish)
180       publish = event->value.publish.pc;
181     break;
182   case GNUNET_FS_STATUS_SEARCH_RESULT:
183     /* FIXME: consider_restart (event->status); cannot be tested with
184      * search result since we exit here after the first one... */
185     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
186                 "Search complete.\n");
187     GNUNET_SCHEDULER_add_now (&abort_search_task, NULL);
188     break;
189   case GNUNET_FS_STATUS_PUBLISH_ERROR:
190     FPRINTF (stderr, "Error publishing file: %s\n",
191              event->value.publish.specifics.error.message);
192     GNUNET_break (0);
193     GNUNET_SCHEDULER_add_now (&abort_publish_task, NULL);
194     break;
195   case GNUNET_FS_STATUS_SEARCH_ERROR:
196     FPRINTF (stderr, "Error searching file: %s\n",
197              event->value.search.specifics.error.message);
198     GNUNET_SCHEDULER_add_now (&abort_search_task, NULL);
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_now (&abort_publish_task, NULL);
237     search = NULL;
238     break;
239   default:
240     FPRINTF (stderr, "Unexpected event: %d\n", event->status);
241     break;
242   }
243   return NULL;
244 }
245
246
247 static void
248 run (void *cls,
249      const struct GNUNET_CONFIGURATION_Handle *c,
250      struct GNUNET_TESTING_Peer *peer)
251 {
252   const char *keywords[] = {
253     "down_foo",
254     "down_bar"
255   };
256   char *buf;
257   struct GNUNET_CONTAINER_MetaData *meta;
258   struct GNUNET_FS_Uri *kuri;
259   struct GNUNET_FS_FileInformation *fi;
260   size_t i;
261   struct GNUNET_FS_BlockOptions bo;
262
263   cfg = c;
264   fs = GNUNET_FS_start (cfg, "test-fs-search-persistence", &progress_cb, NULL,
265                         GNUNET_FS_FLAGS_PERSISTENCE, GNUNET_FS_OPTIONS_END);
266   GNUNET_assert (NULL != fs);
267   buf = GNUNET_malloc (FILESIZE);
268   for (i = 0; i < FILESIZE; i++)
269     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
270   meta = GNUNET_CONTAINER_meta_data_create ();
271   kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
272   bo.content_priority = 42;
273   bo.anonymity_level = 1;
274   bo.replication_level = 0;
275   bo.expiration_time = GNUNET_TIME_relative_to_absolute (LIFETIME);
276   fi = GNUNET_FS_file_information_create_from_data (fs, "publish-context",
277                                                     FILESIZE, buf, kuri, meta,
278                                                     GNUNET_NO, &bo);
279   GNUNET_FS_uri_destroy (kuri);
280   GNUNET_CONTAINER_meta_data_destroy (meta);
281   GNUNET_assert (NULL != fi);
282   start = GNUNET_TIME_absolute_get ();
283   publish =
284       GNUNET_FS_publish_start (fs, fi, NULL, NULL, NULL,
285                                GNUNET_FS_PUBLISH_OPTION_NONE);
286   GNUNET_assert (publish != NULL);
287   timeout_task = GNUNET_SCHEDULER_add_delayed (LIFETIME,
288                                                &abort_error, NULL);
289 }
290
291
292 int
293 main (int argc, char *argv[])
294 {
295   if (0 != GNUNET_TESTING_peer_run ("test-fs-search-persistence",
296                                     "test_fs_search_data.conf",
297                                     &run, NULL))
298     return 1;
299   return err;
300 }
301
302 /* end of test_fs_search_persistence.c */