-fixing main FS build, updating man page of gnunet-pseudonym
[oweals/gnunet.git] / src / fs / test_fs_search_probes.c
1 /*
2      This file is part of GNUnet.
3      (C) 2012 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_probes.c
23  * @brief simple testcase for publish + search operation with probes
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 /**
33  * File-size we use for testing.
34  */
35 #define FILESIZE 1024
36
37 /**
38  * How long until we give up on transmitting the message?
39  */
40 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
41
42 /**
43  * How long should our test-content live?
44  */
45 #define LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
46
47
48 static struct GNUNET_TIME_Absolute start;
49
50 static struct GNUNET_FS_Handle *fs;
51
52 static struct GNUNET_FS_SearchContext *search;
53
54 static struct GNUNET_FS_PublishContext *publish;
55
56 static GNUNET_SCHEDULER_TaskIdentifier timeout_task;
57
58 static int err;
59
60
61 static void
62 abort_error (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
63 {
64   timeout_task = GNUNET_SCHEDULER_NO_TASK;
65   fprintf (stderr,
66            "Timeout\n");
67   if (NULL != search)
68   {
69     GNUNET_FS_search_stop (search);
70     search = NULL;
71   }
72   if (NULL != publish)
73   {
74     GNUNET_FS_publish_stop (publish);
75     publish = NULL;
76   }
77   err = 1;
78 }
79
80
81 static void
82 abort_publish_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
83 {
84   if (NULL != publish)
85   {
86     GNUNET_FS_publish_stop (publish);
87     publish = NULL;
88   }
89   if (GNUNET_SCHEDULER_NO_TASK != timeout_task)
90   {
91     GNUNET_SCHEDULER_cancel (timeout_task);
92     timeout_task = GNUNET_SCHEDULER_NO_TASK;
93   }
94 }
95
96
97 static void
98 abort_search_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
99 {
100   if (search != NULL)
101     GNUNET_FS_search_stop (search);
102   search = NULL;
103 }
104
105
106 static void *
107 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *event)
108 {
109   const char *keywords[] = {
110     "down_foo"
111   };
112   struct GNUNET_FS_Uri *kuri;
113
114   switch (event->status)
115   {
116   case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
117     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
118                 "Publish is progressing (%llu/%llu at level %u off %llu)...\n",
119                 (unsigned long long) event->value.publish.completed,
120                 (unsigned long long) event->value.publish.size,
121                 event->value.publish.specifics.progress.depth,
122                 (unsigned long long) event->value.publish.specifics.
123                 progress.offset);
124     break;
125   case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
126     kuri = GNUNET_FS_uri_ksk_create_from_args (1, keywords);
127     start = GNUNET_TIME_absolute_get ();
128     search =
129         GNUNET_FS_search_start (fs, kuri, 1, GNUNET_FS_SEARCH_OPTION_NONE,
130                                 "search");
131     GNUNET_FS_uri_destroy (kuri);
132     GNUNET_assert (search != NULL);
133     break;
134   case GNUNET_FS_STATUS_SEARCH_RESULT:
135     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Search complete.\n");
136     break;
137   case GNUNET_FS_STATUS_PUBLISH_ERROR:
138     FPRINTF (stderr, "Error publishing file: %s\n",
139              event->value.publish.specifics.error.message);
140     GNUNET_break (0);
141     GNUNET_SCHEDULER_add_continuation (&abort_publish_task, NULL,
142                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
143     break;
144   case GNUNET_FS_STATUS_SEARCH_ERROR:
145     FPRINTF (stderr, "Error searching file: %s\n",
146              event->value.search.specifics.error.message);
147     GNUNET_SCHEDULER_add_continuation (&abort_search_task, NULL,
148                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
149     break;
150   case GNUNET_FS_STATUS_PUBLISH_START:
151     GNUNET_assert (0 == strcmp ("publish-context", event->value.publish.cctx));
152     GNUNET_assert (NULL == event->value.publish.pctx);
153     GNUNET_assert (FILESIZE == event->value.publish.size);
154     GNUNET_assert (0 == event->value.publish.completed);
155     GNUNET_assert (1 == event->value.publish.anonymity);
156     break;
157   case GNUNET_FS_STATUS_PUBLISH_STOPPED:
158     GNUNET_assert (publish == event->value.publish.pc);
159     GNUNET_assert (FILESIZE == event->value.publish.size);
160     GNUNET_assert (1 == event->value.publish.anonymity);
161     GNUNET_FS_stop (fs);
162     fs = NULL;
163     break;
164   case GNUNET_FS_STATUS_SEARCH_UPDATE:
165     if ( (0 < event->value.search.specifics.update.availability_rank) &&
166          (0 < event->value.search.specifics.update.availability_certainty) )
167       GNUNET_SCHEDULER_add_now (&abort_search_task, NULL);
168     break;
169   case GNUNET_FS_STATUS_SEARCH_START:
170     GNUNET_assert (search == NULL);
171     GNUNET_assert (0 == strcmp ("search", event->value.search.cctx));
172     GNUNET_assert (1 == event->value.search.anonymity);
173     break;
174   case GNUNET_FS_STATUS_SEARCH_RESULT_STOPPED:
175     break;
176   case GNUNET_FS_STATUS_SEARCH_STOPPED:
177     GNUNET_assert (search == event->value.search.sc);
178     GNUNET_SCHEDULER_add_continuation (&abort_publish_task, NULL,
179                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
180     break;
181   default:
182     FPRINTF (stderr, "Unexpected event: %d\n", event->status);
183     break;
184   }
185   return NULL;
186 }
187
188
189 static void
190 run (void *cls,
191      const struct GNUNET_CONFIGURATION_Handle *cfg,
192      struct GNUNET_TESTING_Peer *peer)
193 {
194   const char *keywords[] = {
195     "down_foo",
196     "down_bar"
197   };
198   char *buf;
199   struct GNUNET_CONTAINER_MetaData *meta;
200   struct GNUNET_FS_Uri *kuri;
201   struct GNUNET_FS_BlockOptions bo;
202   struct GNUNET_FS_FileInformation *fi;
203   size_t i;
204
205   fs = GNUNET_FS_start (cfg, "test-fs-search", &progress_cb, NULL,
206                         GNUNET_FS_FLAGS_DO_PROBES, 
207                         GNUNET_FS_OPTIONS_END);
208   GNUNET_assert (NULL != fs);
209   buf = GNUNET_malloc (FILESIZE);
210   for (i = 0; i < FILESIZE; i++)
211     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
212   meta = GNUNET_CONTAINER_meta_data_create ();
213   kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
214   bo.content_priority = 42;
215   bo.anonymity_level = 1;
216   bo.replication_level = 0;
217   bo.expiration_time = GNUNET_TIME_relative_to_absolute (LIFETIME);
218   fi = GNUNET_FS_file_information_create_from_data (fs, "publish-context",
219                                                     FILESIZE, buf, kuri, meta,
220                                                     GNUNET_NO, &bo);
221   GNUNET_FS_uri_destroy (kuri);
222   GNUNET_CONTAINER_meta_data_destroy (meta);
223   GNUNET_assert (NULL != fi);
224   start = GNUNET_TIME_absolute_get ();
225   publish =
226       GNUNET_FS_publish_start (fs, fi, NULL, NULL, NULL,
227                                GNUNET_FS_PUBLISH_OPTION_NONE);
228   GNUNET_assert (publish != NULL);
229   timeout_task = GNUNET_SCHEDULER_add_delayed (LIFETIME,
230                                                &abort_error, NULL);
231 }
232
233
234 int
235 main (int argc, char *argv[])
236 {
237   if (0 != GNUNET_TESTING_peer_run ("test-fs-search-probes",
238                                     "test_fs_search_data.conf",
239                                     &run, NULL))
240     return 1;
241   return err;
242 }
243
244 /* end of test_fs_search_probes.c */