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