b206fb415293d4b3c30a82278526fda91e0eff9b
[oweals/gnunet.git] / src / fs / test_fs_publish.c
1 /*
2      This file is part of GNUnet.
3      (C) 2004, 2005, 2006, 2008, 2009 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_publish.c
23  * @brief simple testcase for publish operation (indexing, listing
24  *        indexed, directory structure)
25  * @author Christian Grothoff
26  */
27
28 #include "platform.h"
29 #include "gnunet_util_lib.h"
30 #include "gnunet_arm_service.h"
31 #include "gnunet_fs_service.h"
32
33 #define VERBOSE GNUNET_NO
34
35 #define START_ARM GNUNET_YES
36
37 /**
38  * File-size we use for testing.
39  */
40 #define FILESIZE (1024 * 1024 * 2)
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 struct PeerContext
53 {
54   struct GNUNET_CONFIGURATION_Handle *cfg;
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_PublishContext *publish;
67
68 static char *fn1;
69
70 static char *fn2;
71
72 static int err;
73
74 static void
75 abort_publish_task (void *cls,
76                     const struct GNUNET_SCHEDULER_TaskContext *tc)
77 {
78   GNUNET_FS_publish_stop (publish);
79   publish = NULL;
80   GNUNET_DISK_directory_remove (fn1);
81   GNUNET_free (fn1);
82   fn1 = NULL;
83   GNUNET_DISK_directory_remove (fn2);
84   GNUNET_free (fn2);
85   fn2 = NULL;
86 }
87
88
89 static void *
90 progress_cb (void *cls, 
91              const struct GNUNET_FS_ProgressInfo *event)
92 {
93   void *ret;
94
95   ret = NULL;
96   switch (event->status)
97     {
98     case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
99       ret = event->value.publish.cctx;
100       printf ("Publish complete,  %llu kbps.\n",
101               (unsigned long long) (FILESIZE * 1000 / (1+GNUNET_TIME_absolute_get_duration (start).rel_value) / 1024));
102       if (0 == strcmp ("publish-context-dir", 
103                        event->value.publish.cctx))      
104         GNUNET_SCHEDULER_add_continuation (&abort_publish_task,
105                                            NULL,
106                                            GNUNET_SCHEDULER_REASON_PREREQ_DONE);        
107       break;
108     case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
109       ret = event->value.publish.cctx;
110       GNUNET_assert (publish == event->value.publish.pc);
111 #if VERBOSE
112       printf ("Publish is progressing (%llu/%llu at level %u off %llu)...\n",
113               (unsigned long long) event->value.publish.completed,
114               (unsigned long long) event->value.publish.size,
115               event->value.publish.specifics.progress.depth,
116               (unsigned long long) event->value.publish.specifics.progress.offset);
117 #endif
118       break;
119     case GNUNET_FS_STATUS_PUBLISH_ERROR:
120       ret = event->value.publish.cctx;
121       fprintf (stderr,
122                "Error publishing file: %s\n",
123                event->value.publish.specifics.error.message);
124       err = 1;
125       if (0 == strcmp ("publish-context-dir", 
126                        event->value.publish.cctx))              
127         {
128           fprintf (stderr, "Scheduling abort task for error on `%s'\n",
129                    (const char*) event->value.publish.cctx);
130           GNUNET_SCHEDULER_add_continuation (&abort_publish_task,
131                                              NULL,
132                                              GNUNET_SCHEDULER_REASON_PREREQ_DONE);
133         }
134       break;
135     case GNUNET_FS_STATUS_PUBLISH_START:
136       ret = event->value.publish.cctx;
137       if (0 == strcmp ("publish-context1", 
138                        event->value.publish.cctx))
139         {
140           GNUNET_assert (0 == strcmp ("publish-context-dir", 
141                                       event->value.publish.pctx));
142           GNUNET_assert (FILESIZE == event->value.publish.size);
143           GNUNET_assert (0 == event->value.publish.completed);
144           GNUNET_assert (1 == event->value.publish.anonymity);
145         }
146       else if (0 == strcmp ("publish-context2", 
147                             event->value.publish.cctx))
148         {
149           GNUNET_assert (0 == strcmp ("publish-context-dir", 
150                                       event->value.publish.pctx));
151           GNUNET_assert (FILESIZE == event->value.publish.size);
152           GNUNET_assert (0 == event->value.publish.completed);
153           GNUNET_assert (2 == event->value.publish.anonymity);
154         }
155       else if (0 == strcmp ("publish-context-dir", 
156                             event->value.publish.cctx))
157         {
158           GNUNET_assert (0 == event->value.publish.completed);
159           GNUNET_assert (3 == event->value.publish.anonymity);
160         }
161       else
162         GNUNET_assert (0);
163       break;
164     case GNUNET_FS_STATUS_PUBLISH_STOPPED:
165       if (0 == strcmp ("publish-context-dir", 
166                        event->value.publish.cctx))      
167         GNUNET_assert (publish == event->value.publish.pc);     
168       break;
169     default:
170       printf ("Unexpected event: %d\n", 
171               event->status);
172       break;
173     }
174   return ret;
175 }
176
177
178 static void
179 setup_peer (struct PeerContext *p, const char *cfgname)
180 {
181   p->cfg = GNUNET_CONFIGURATION_create ();
182 #if START_ARM
183   p->arm_proc = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
184                                         "gnunet-service-arm",
185 #if VERBOSE
186                                         "-L", "DEBUG",
187 #endif
188                                         "-c", cfgname, NULL);
189 #endif
190   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
191 }
192
193
194 static void
195 stop_arm (struct PeerContext *p)
196 {
197 #if START_ARM
198   if (0 != GNUNET_OS_process_kill (p->arm_proc, SIGTERM))
199     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
200   if (GNUNET_OS_process_wait(p->arm_proc) != GNUNET_OK)
201     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "waitpid");
202   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
203               "ARM process %u stopped\n", GNUNET_OS_process_get_pid (p->arm_proc));
204   GNUNET_OS_process_close (p->arm_proc);
205   p->arm_proc = NULL;
206 #endif
207   GNUNET_CONFIGURATION_destroy (p->cfg);
208 }
209
210
211 static void
212 run (void *cls,
213      char *const *args,
214      const char *cfgfile,
215      const struct GNUNET_CONFIGURATION_Handle *cfg)
216 {
217   const char *keywords[] = {
218     "down_foo",
219     "down_bar",
220   };
221   char *buf;
222   struct GNUNET_CONTAINER_MetaData *meta;
223   struct GNUNET_FS_Uri *kuri;
224   struct GNUNET_FS_FileInformation *fi1;
225   struct GNUNET_FS_FileInformation *fi2;
226   struct GNUNET_FS_FileInformation *fidir;
227   size_t i;
228   struct GNUNET_FS_BlockOptions bo;
229
230   setup_peer (&p1, "test_fs_publish_data.conf");
231   fs = GNUNET_FS_start (cfg,
232                         "test-fs-publish",
233                         &progress_cb,
234                         NULL,
235                         GNUNET_FS_FLAGS_NONE,
236                         GNUNET_FS_OPTIONS_END);
237   GNUNET_assert (NULL != fs); 
238   fn1 = GNUNET_DISK_mktemp ("gnunet-publish-test-dst");
239   buf = GNUNET_malloc (FILESIZE);
240   for (i = 0; i < FILESIZE; i++)
241     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
242   GNUNET_assert (FILESIZE ==
243                  GNUNET_DISK_fn_write (fn1,
244                                        buf,
245                                        FILESIZE,
246                                        GNUNET_DISK_PERM_USER_READ | GNUNET_DISK_PERM_USER_WRITE));
247   GNUNET_free (buf);
248
249   fn2 = GNUNET_DISK_mktemp ("gnunet-publish-test-dst");
250   buf = GNUNET_malloc (FILESIZE);
251   for (i = 0; i < FILESIZE; i++)
252     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
253   GNUNET_assert (FILESIZE ==
254                  GNUNET_DISK_fn_write (fn2,
255                                        buf,
256                                        FILESIZE,
257                                        GNUNET_DISK_PERM_USER_READ | GNUNET_DISK_PERM_USER_WRITE));
258   GNUNET_free (buf);
259
260   meta = GNUNET_CONTAINER_meta_data_create ();
261   kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
262   bo.content_priority = 42;
263   bo.anonymity_level = 1;
264   bo.replication_level = 0;
265   bo.expiration_time = GNUNET_TIME_relative_to_absolute (LIFETIME);
266
267   fi1 = GNUNET_FS_file_information_create_from_file (fs,
268                                                      "publish-context1",
269                                                      fn1,
270                                                      kuri,
271                                                      meta,
272                                                      GNUNET_YES,
273                                                      &bo);
274                                                      
275   GNUNET_assert (NULL != fi1);
276   bo.anonymity_level = 2;
277   fi2 = GNUNET_FS_file_information_create_from_file (fs,
278                                                      "publish-context2",
279                                                      fn2,
280                                                      kuri,
281                                                      meta,
282                                                      GNUNET_YES,
283                                                      &bo);
284   GNUNET_assert (NULL != fi2);
285   bo.anonymity_level = 3;
286   fidir = GNUNET_FS_file_information_create_empty_directory (fs,
287                                                              "publish-context-dir",
288                                                              kuri,
289                                                              meta,
290                                                              &bo);
291   GNUNET_assert (GNUNET_OK == GNUNET_FS_file_information_add (fidir, fi1));
292   GNUNET_assert (GNUNET_OK == GNUNET_FS_file_information_add (fidir, fi2));
293   GNUNET_FS_uri_destroy (kuri);
294   GNUNET_CONTAINER_meta_data_destroy (meta);
295   GNUNET_assert (NULL != fidir);
296   start = GNUNET_TIME_absolute_get ();
297   publish = GNUNET_FS_publish_start (fs,
298                                      fidir,
299                                      NULL, NULL, NULL,
300                                      GNUNET_FS_PUBLISH_OPTION_NONE);
301   GNUNET_assert (publish != NULL);
302 }
303
304
305 int
306 main (int argc, char *argv[])
307 {
308   char *const argvx[] = { 
309     "test-fs-publish",
310     "-c",
311     "test_fs_publish_data.conf",
312 #if VERBOSE
313     "-L", "DEBUG",
314 #endif
315     NULL
316   };
317   struct GNUNET_GETOPT_CommandLineOption options[] = {
318     GNUNET_GETOPT_OPTION_END
319   };
320
321   GNUNET_log_setup ("test_fs_publish", 
322 #if VERBOSE
323                     "DEBUG",
324 #else
325                     "WARNING",
326 #endif
327                     NULL);
328   GNUNET_PROGRAM_run ((sizeof (argvx) / sizeof (char *)) - 1,
329                       argvx, "test-fs-publish",
330                       "nohelp", options, &run, NULL);
331   stop_arm (&p1);
332   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-publish/");
333   if (fn1 != NULL)
334     {
335       GNUNET_DISK_directory_remove (fn1);
336       GNUNET_free (fn1);
337     }
338   if (fn2 != NULL)
339     {
340       GNUNET_DISK_directory_remove (fn2);
341       GNUNET_free (fn2);
342     }
343   return err;
344 }
345
346 /* end of test_fs_publish.c */