Merge branch 'master' of gnunet.org:gnunet
[oweals/gnunet.git] / src / fs / test_fs_publish.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2004, 2005, 2006, 2008, 2009 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_publish.c
20  * @brief simple testcase for publish operation (indexing, listing
21  *        indexed, directory structure)
22  * @author Christian Grothoff
23  */
24 #include "platform.h"
25 #include "gnunet_util_lib.h"
26 #include "gnunet_testing_lib.h"
27 #include "gnunet_fs_service.h"
28
29 /**
30  * File-size we use for testing.
31  */
32 #define FILESIZE (1024 * 1024 * 2)
33
34 /**
35  * How long until we give up on transmitting the message?
36  */
37 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
38
39 /**
40  * How long should our test-content live?
41  */
42 #define LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
43
44
45 static struct GNUNET_TIME_Absolute start;
46
47 static struct GNUNET_FS_Handle *fs;
48
49 static struct GNUNET_FS_PublishContext *publish;
50
51 static char *fn1;
52
53 static char *fn2;
54
55 static int err;
56
57
58 static void
59 abort_publish_task (void *cls)
60 {
61   GNUNET_FS_publish_stop (publish);
62   publish = NULL;
63   GNUNET_DISK_directory_remove (fn1);
64   GNUNET_free (fn1);
65   fn1 = NULL;
66   GNUNET_DISK_directory_remove (fn2);
67   GNUNET_free (fn2);
68   fn2 = NULL;
69 }
70
71
72 static void *
73 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *event)
74 {
75   void *ret;
76
77   ret = NULL;
78   switch (event->status)
79   {
80   case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
81     ret = event->value.publish.cctx;
82     printf ("Publish complete,  %llu kbps.\n",
83             (unsigned long long) (FILESIZE * 1000000LL /
84                                   (1 +
85                                    GNUNET_TIME_absolute_get_duration
86                                    (start).rel_value_us) / 1024));
87     if (0 == strcmp ("publish-context-dir", event->value.publish.cctx))
88       GNUNET_SCHEDULER_add_now (&abort_publish_task, NULL);
89     break;
90   case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
91     ret = event->value.publish.cctx;
92     GNUNET_assert (publish == event->value.publish.pc);
93     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
94                 "Publish is progressing (%llu/%llu at level %u off %llu)...\n",
95                 (unsigned long long) event->value.publish.completed,
96                 (unsigned long long) event->value.publish.size,
97                 event->value.publish.specifics.progress.depth,
98                 (unsigned long long) event->value.publish.specifics.
99                 progress.offset);
100     break;
101   case GNUNET_FS_STATUS_PUBLISH_PROGRESS_DIRECTORY:
102     ret = event->value.publish.cctx;
103     break;
104   case GNUNET_FS_STATUS_PUBLISH_ERROR:
105     ret = event->value.publish.cctx;
106     FPRINTF (stderr, "Error publishing file: %s\n",
107              event->value.publish.specifics.error.message);
108     err = 1;
109     if (0 == strcmp ("publish-context-dir", event->value.publish.cctx))
110     {
111       FPRINTF (stderr, "Scheduling abort task for error on `%s'\n",
112                (const char *) event->value.publish.cctx);
113       GNUNET_SCHEDULER_add_now (&abort_publish_task, NULL);
114     }
115     break;
116   case GNUNET_FS_STATUS_PUBLISH_START:
117     ret = event->value.publish.cctx;
118     if (0 == strcmp ("publish-context1", event->value.publish.cctx))
119     {
120       GNUNET_assert (0 ==
121                      strcmp ("publish-context-dir", event->value.publish.pctx));
122       GNUNET_assert (FILESIZE == event->value.publish.size);
123       GNUNET_assert (0 == event->value.publish.completed);
124       GNUNET_assert (1 == event->value.publish.anonymity);
125     }
126     else if (0 == strcmp ("publish-context2", event->value.publish.cctx))
127     {
128       GNUNET_assert (0 ==
129                      strcmp ("publish-context-dir", event->value.publish.pctx));
130       GNUNET_assert (FILESIZE == event->value.publish.size);
131       GNUNET_assert (0 == event->value.publish.completed);
132       GNUNET_assert (2 == event->value.publish.anonymity);
133     }
134     else if (0 == strcmp ("publish-context-dir", event->value.publish.cctx))
135     {
136       GNUNET_assert (0 == event->value.publish.completed);
137       GNUNET_assert (3 == event->value.publish.anonymity);
138     }
139     else
140       GNUNET_assert (0);
141     break;
142   case GNUNET_FS_STATUS_PUBLISH_STOPPED:
143     if (0 == strcmp ("publish-context-dir", event->value.publish.cctx))
144       GNUNET_assert (publish == event->value.publish.pc);
145     break;
146   default:
147     printf ("Unexpected event: %d\n", event->status);
148     break;
149   }
150   return ret;
151 }
152
153
154 static void
155 run (void *cls,
156      const struct GNUNET_CONFIGURATION_Handle *cfg,
157      struct GNUNET_TESTING_Peer *peer)
158 {
159   const char *keywords[] = {
160     "down_foo",
161     "down_bar",
162   };
163   char *buf;
164   struct GNUNET_CONTAINER_MetaData *meta;
165   struct GNUNET_FS_Uri *kuri;
166   struct GNUNET_FS_FileInformation *fi1;
167   struct GNUNET_FS_FileInformation *fi2;
168   struct GNUNET_FS_FileInformation *fidir;
169   size_t i;
170   struct GNUNET_FS_BlockOptions bo;
171
172   fs = GNUNET_FS_start (cfg, "test-fs-publish", &progress_cb, NULL,
173                         GNUNET_FS_FLAGS_NONE, GNUNET_FS_OPTIONS_END);
174   GNUNET_assert (NULL != fs);
175   fn1 = GNUNET_DISK_mktemp ("gnunet-publish-test-dst");
176   buf = GNUNET_malloc (FILESIZE);
177   for (i = 0; i < FILESIZE; i++)
178     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
179   GNUNET_assert (FILESIZE ==
180                  GNUNET_DISK_fn_write (fn1, buf, FILESIZE,
181                                        GNUNET_DISK_PERM_USER_READ |
182                                        GNUNET_DISK_PERM_USER_WRITE));
183   GNUNET_free (buf);
184
185   fn2 = GNUNET_DISK_mktemp ("gnunet-publish-test-dst");
186   buf = GNUNET_malloc (FILESIZE);
187   for (i = 0; i < FILESIZE; i++)
188     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
189   GNUNET_assert (FILESIZE ==
190                  GNUNET_DISK_fn_write (fn2, buf, FILESIZE,
191                                        GNUNET_DISK_PERM_USER_READ |
192                                        GNUNET_DISK_PERM_USER_WRITE));
193   GNUNET_free (buf);
194
195   meta = GNUNET_CONTAINER_meta_data_create ();
196   kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
197   bo.content_priority = 42;
198   bo.anonymity_level = 1;
199   bo.replication_level = 0;
200   bo.expiration_time = GNUNET_TIME_relative_to_absolute (LIFETIME);
201
202   fi1 =
203       GNUNET_FS_file_information_create_from_file (fs, "publish-context1", fn1,
204                                                    kuri, meta, GNUNET_YES, &bo);
205
206   GNUNET_assert (NULL != fi1);
207   bo.anonymity_level = 2;
208   fi2 =
209       GNUNET_FS_file_information_create_from_file (fs, "publish-context2", fn2,
210                                                    kuri, meta, GNUNET_YES, &bo);
211   GNUNET_assert (NULL != fi2);
212   bo.anonymity_level = 3;
213   fidir =
214       GNUNET_FS_file_information_create_empty_directory (fs,
215                                                          "publish-context-dir",
216                                                          kuri, meta, &bo, NULL);
217   GNUNET_assert (GNUNET_OK == GNUNET_FS_file_information_add (fidir, fi1));
218   GNUNET_assert (GNUNET_OK == GNUNET_FS_file_information_add (fidir, fi2));
219   GNUNET_FS_uri_destroy (kuri);
220   GNUNET_CONTAINER_meta_data_destroy (meta);
221   GNUNET_assert (NULL != fidir);
222   start = GNUNET_TIME_absolute_get ();
223   publish =
224       GNUNET_FS_publish_start (fs, fidir, NULL, NULL, NULL,
225                                GNUNET_FS_PUBLISH_OPTION_NONE);
226   GNUNET_assert (publish != NULL);
227 }
228
229
230 int
231 main (int argc, char *argv[])
232 {
233   if (0 != GNUNET_TESTING_peer_run ("test-fs-publish",
234                                     "test_fs_publish_data.conf",
235                                     &run, NULL))
236     return 1;
237   return err;
238 }
239
240 /* end of test_fs_publish.c */