-fixing 2352
[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 /**
22  * @file fs/test_fs_search_persistence.c
23  * @brief simple testcase for persistence of search operation
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_arm_service.h"
30 #include "gnunet_fs_service.h"
31
32 #define VERBOSE GNUNET_NO
33
34 #define START_ARM GNUNET_YES
35
36 /**
37  * File-size we use for testing.
38  */
39 #define FILESIZE 1024
40
41 /**
42  * How long until we give up on transmitting the message?
43  */
44 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
45
46 /**
47  * How long should our test-content live?
48  */
49 #define LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
50
51 struct PeerContext
52 {
53   struct GNUNET_CONFIGURATION_Handle *cfg;
54   struct GNUNET_PeerIdentity id;
55 #if START_ARM
56   struct GNUNET_OS_Process *arm_proc;
57 #endif
58 };
59
60 static struct PeerContext p1;
61
62 static struct GNUNET_TIME_Absolute start;
63
64 static struct GNUNET_FS_Handle *fs;
65
66 static struct GNUNET_FS_SearchContext *search;
67
68 static struct GNUNET_FS_PublishContext *publish;
69
70 static const struct GNUNET_CONFIGURATION_Handle *cfg;
71
72 static void
73 abort_publish_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
74 {
75   GNUNET_FS_publish_stop (publish);
76   publish = NULL;
77 }
78
79
80 static void
81 abort_search_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
82 {
83   if (search != NULL)
84     GNUNET_FS_search_stop (search);
85   search = NULL;
86 }
87
88
89 static void *
90 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *event);
91
92
93 static void
94 restart_fs_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
95 {
96   GNUNET_FS_stop (fs);
97   fs = GNUNET_FS_start (cfg, "test-fs-search-persistence", &progress_cb, NULL,
98                         GNUNET_FS_FLAGS_PERSISTENCE, GNUNET_FS_OPTIONS_END);
99 }
100
101
102
103
104 /**
105  * Consider scheduling the restart-task.
106  * Only runs the restart task once per event
107  * category.
108  *
109  * @param ev type of the event to consider
110  */
111 static void
112 consider_restart (int ev)
113 {
114   static int prev[32];
115   static int off;
116   int i;
117
118   for (i = 0; i < off; i++)
119     if (prev[i] == ev)
120       return;
121   prev[off++] = ev;
122   GNUNET_SCHEDULER_add_with_priority (GNUNET_SCHEDULER_PRIORITY_URGENT,
123                                       &restart_fs_task, NULL);
124 }
125
126
127 static void *
128 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *event)
129 {
130   const char *keywords[] = {
131     "down_foo"
132   };
133   struct GNUNET_FS_Uri *kuri;
134
135   switch (event->status)
136   {
137   case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
138 #if VERBOSE
139     printf ("Publish is progressing (%llu/%llu at level %u off %llu)...\n",
140             (unsigned long long) event->value.publish.completed,
141             (unsigned long long) event->value.publish.size,
142             event->value.publish.specifics.progress.depth,
143             (unsigned long long) event->value.publish.specifics.
144             progress.offset);
145 #endif
146     break;
147   case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
148     kuri = GNUNET_FS_uri_ksk_create_from_args (1, keywords);
149     start = GNUNET_TIME_absolute_get ();
150     GNUNET_FS_search_start (fs, kuri, 1, GNUNET_FS_SEARCH_OPTION_NONE,
151                             "search");
152     GNUNET_FS_uri_destroy (kuri);
153     GNUNET_assert (search != NULL);
154     break;
155   case GNUNET_FS_STATUS_PUBLISH_SUSPEND:
156     if (event->value.publish.pc == publish)
157       publish = NULL;
158     break;
159   case GNUNET_FS_STATUS_PUBLISH_RESUME:
160     if (NULL == publish)
161       publish = event->value.publish.pc;
162     break;
163   case GNUNET_FS_STATUS_SEARCH_RESULT:
164     /* FIXME: consider_restart (event->status); cannot be tested with
165      * search result since we exit here after the first one... */
166 #if VERBOSE
167     printf ("Search complete.\n");
168 #endif
169     GNUNET_SCHEDULER_add_continuation (&abort_search_task, NULL,
170                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
171     break;
172   case GNUNET_FS_STATUS_PUBLISH_ERROR:
173     FPRINTF (stderr, "Error publishing file: %s\n",
174              event->value.publish.specifics.error.message);
175     GNUNET_break (0);
176     GNUNET_SCHEDULER_add_continuation (&abort_publish_task, NULL,
177                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
178     break;
179   case GNUNET_FS_STATUS_SEARCH_ERROR:
180     FPRINTF (stderr, "Error searching file: %s\n",
181              event->value.search.specifics.error.message);
182     GNUNET_SCHEDULER_add_continuation (&abort_search_task, NULL,
183                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
184     break;
185   case GNUNET_FS_STATUS_SEARCH_SUSPEND:
186     if (event->value.search.sc == search)
187       search = NULL;
188     break;
189   case GNUNET_FS_STATUS_SEARCH_RESUME:
190     if (NULL == search)
191     {
192       search = event->value.search.sc;
193       return "search";
194     }
195     break;
196   case GNUNET_FS_STATUS_PUBLISH_START:
197     GNUNET_assert (0 == strcmp ("publish-context", event->value.publish.cctx));
198     GNUNET_assert (NULL == event->value.publish.pctx);
199     GNUNET_assert (FILESIZE == event->value.publish.size);
200     GNUNET_assert (0 == event->value.publish.completed);
201     GNUNET_assert (1 == event->value.publish.anonymity);
202     break;
203   case GNUNET_FS_STATUS_PUBLISH_STOPPED:
204     GNUNET_assert (publish == event->value.publish.pc);
205     GNUNET_assert (FILESIZE == event->value.publish.size);
206     GNUNET_assert (1 == event->value.publish.anonymity);
207     GNUNET_FS_stop (fs);
208     fs = NULL;
209     break;
210   case GNUNET_FS_STATUS_SEARCH_START:
211     consider_restart (event->status);
212     GNUNET_assert (search == NULL);
213     search = event->value.search.sc;
214     GNUNET_assert (0 == strcmp ("search", event->value.search.cctx));
215     GNUNET_assert (1 == event->value.search.anonymity);
216     break;
217   case GNUNET_FS_STATUS_SEARCH_RESULT_STOPPED:
218     break;
219   case GNUNET_FS_STATUS_SEARCH_STOPPED:
220     GNUNET_assert (search == event->value.search.sc);
221     GNUNET_SCHEDULER_add_continuation (&abort_publish_task, NULL,
222                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
223     search = NULL;
224     break;
225   default:
226     FPRINTF (stderr, "Unexpected event: %d\n", event->status);
227     break;
228   }
229   return NULL;
230 }
231
232
233 static void
234 setup_peer (struct PeerContext *p, const char *cfgname)
235 {
236   p->cfg = GNUNET_CONFIGURATION_create ();
237 #if START_ARM
238   p->arm_proc =
239       GNUNET_OS_start_process (GNUNET_YES, NULL, NULL, "gnunet-service-arm",
240                                "gnunet-service-arm",
241 #if VERBOSE
242                                "-L", "DEBUG",
243 #endif
244                                "-c", cfgname, NULL);
245 #endif
246   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
247 }
248
249
250 static void
251 stop_arm (struct PeerContext *p)
252 {
253 #if START_ARM
254   if (NULL != p->arm_proc)
255   {
256     if (0 != GNUNET_OS_process_kill (p->arm_proc, SIGTERM))
257       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
258     if (GNUNET_OS_process_wait (p->arm_proc) != GNUNET_OK)
259       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "waitpid");
260     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "ARM process %u stopped\n",
261                 GNUNET_OS_process_get_pid (p->arm_proc));
262     GNUNET_OS_process_destroy (p->arm_proc);
263     p->arm_proc = NULL;
264   }
265 #endif
266   GNUNET_CONFIGURATION_destroy (p->cfg);
267 }
268
269
270 static void
271 run (void *cls, char *const *args, const char *cfgfile,
272      const struct GNUNET_CONFIGURATION_Handle *c)
273 {
274   const char *keywords[] = {
275     "down_foo",
276     "down_bar"
277   };
278   char *buf;
279   struct GNUNET_CONTAINER_MetaData *meta;
280   struct GNUNET_FS_Uri *kuri;
281   struct GNUNET_FS_FileInformation *fi;
282   size_t i;
283   struct GNUNET_FS_BlockOptions bo;
284
285   cfg = c;
286   setup_peer (&p1, "test_fs_search_data.conf");
287   fs = GNUNET_FS_start (cfg, "test-fs-search-persistence", &progress_cb, NULL,
288                         GNUNET_FS_FLAGS_PERSISTENCE, GNUNET_FS_OPTIONS_END);
289   GNUNET_assert (NULL != fs);
290   buf = GNUNET_malloc (FILESIZE);
291   for (i = 0; i < FILESIZE; i++)
292     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
293   meta = GNUNET_CONTAINER_meta_data_create ();
294   kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
295   bo.content_priority = 42;
296   bo.anonymity_level = 1;
297   bo.replication_level = 0;
298   bo.expiration_time = GNUNET_TIME_relative_to_absolute (LIFETIME);
299   fi = GNUNET_FS_file_information_create_from_data (fs, "publish-context",
300                                                     FILESIZE, buf, kuri, meta,
301                                                     GNUNET_NO, &bo);
302   GNUNET_FS_uri_destroy (kuri);
303   GNUNET_CONTAINER_meta_data_destroy (meta);
304   GNUNET_assert (NULL != fi);
305   start = GNUNET_TIME_absolute_get ();
306   publish =
307       GNUNET_FS_publish_start (fs, fi, NULL, NULL, NULL,
308                                GNUNET_FS_PUBLISH_OPTION_NONE);
309   GNUNET_assert (publish != NULL);
310 }
311
312
313 int
314 main (int argc, char *argv[])
315 {
316   char *const argvx[] = {
317     "test-fs-search-persistence",
318     "-c",
319     "test_fs_search_data.conf",
320 #if VERBOSE
321     "-L", "DEBUG",
322 #endif
323     NULL
324   };
325   struct GNUNET_GETOPT_CommandLineOption options[] = {
326     GNUNET_GETOPT_OPTION_END
327   };
328
329   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-search/");
330   GNUNET_log_setup ("test_fs_search_persistence",
331 #if VERBOSE
332                     "DEBUG",
333 #else
334                     "WARNING",
335 #endif
336                     NULL);
337   GNUNET_PROGRAM_run ((sizeof (argvx) / sizeof (char *)) - 1, argvx,
338                       "test-fs-search-persistence", "nohelp", options, &run,
339                       NULL);
340   stop_arm (&p1);
341   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-search/");
342   return 0;
343 }
344
345 /* end of test_fs_search_persistence.c */