some fixes to the pt/vpn testcase.
[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   fprintf (stderr,
65            "Timeout\n");
66   if (NULL != publish)
67   {
68     GNUNET_FS_publish_stop (publish);
69     publish = NULL;
70   }
71   if (NULL != search)
72   {
73     GNUNET_FS_search_stop (search);
74     search = NULL;
75   }
76   err = 1;
77 }
78
79
80 static void
81 abort_publish_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
82 {
83   GNUNET_FS_publish_stop (publish);
84   publish = NULL;
85 }
86
87
88 static void
89 abort_search_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
90 {
91   if (search != NULL)
92     GNUNET_FS_search_stop (search);
93   search = NULL;
94 }
95
96
97 static void *
98 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *event)
99 {
100   const char *keywords[] = {
101     "down_foo"
102   };
103   struct GNUNET_FS_Uri *kuri;
104
105   switch (event->status)
106   {
107   case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
108     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
109                 "Publish is progressing (%llu/%llu at level %u off %llu)...\n",
110                 (unsigned long long) event->value.publish.completed,
111                 (unsigned long long) event->value.publish.size,
112                 event->value.publish.specifics.progress.depth,
113                 (unsigned long long) event->value.publish.specifics.
114                 progress.offset);
115     break;
116   case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
117     kuri = GNUNET_FS_uri_ksk_create_from_args (1, keywords);
118     start = GNUNET_TIME_absolute_get ();
119     search =
120         GNUNET_FS_search_start (fs, kuri, 1, GNUNET_FS_SEARCH_OPTION_NONE,
121                                 "search");
122     GNUNET_FS_uri_destroy (kuri);
123     GNUNET_assert (search != NULL);
124     break;
125   case GNUNET_FS_STATUS_SEARCH_RESULT:
126     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Search complete.\n");
127     break;
128   case GNUNET_FS_STATUS_PUBLISH_ERROR:
129     FPRINTF (stderr, "Error publishing file: %s\n",
130              event->value.publish.specifics.error.message);
131     GNUNET_break (0);
132     GNUNET_SCHEDULER_add_continuation (&abort_publish_task, NULL,
133                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
134     break;
135   case GNUNET_FS_STATUS_SEARCH_ERROR:
136     FPRINTF (stderr, "Error searching file: %s\n",
137              event->value.search.specifics.error.message);
138     GNUNET_SCHEDULER_add_continuation (&abort_search_task, NULL,
139                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
140     break;
141   case GNUNET_FS_STATUS_PUBLISH_START:
142     GNUNET_assert (0 == strcmp ("publish-context", event->value.publish.cctx));
143     GNUNET_assert (NULL == event->value.publish.pctx);
144     GNUNET_assert (FILESIZE == event->value.publish.size);
145     GNUNET_assert (0 == event->value.publish.completed);
146     GNUNET_assert (1 == event->value.publish.anonymity);
147     break;
148   case GNUNET_FS_STATUS_PUBLISH_STOPPED:
149     GNUNET_assert (publish == event->value.publish.pc);
150     GNUNET_assert (FILESIZE == event->value.publish.size);
151     GNUNET_assert (1 == event->value.publish.anonymity);
152     GNUNET_FS_stop (fs);
153     fs = NULL;
154     break;
155   case GNUNET_FS_STATUS_SEARCH_UPDATE:
156     if ( (0 < event->value.search.specifics.update.availability_rank) &&
157          (0 < event->value.search.specifics.update.availability_certainty) )
158       GNUNET_SCHEDULER_add_now (&abort_search_task, NULL);
159     break;
160   case GNUNET_FS_STATUS_SEARCH_START:
161     GNUNET_assert (search == NULL);
162     GNUNET_assert (0 == strcmp ("search", event->value.search.cctx));
163     GNUNET_assert (1 == event->value.search.anonymity);
164     break;
165   case GNUNET_FS_STATUS_SEARCH_RESULT_STOPPED:
166     break;
167   case GNUNET_FS_STATUS_SEARCH_STOPPED:
168     GNUNET_assert (search == event->value.search.sc);
169     GNUNET_SCHEDULER_add_continuation (&abort_publish_task, NULL,
170                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
171     break;
172   default:
173     FPRINTF (stderr, "Unexpected event: %d\n", event->status);
174     break;
175   }
176   return NULL;
177 }
178
179
180 static void
181 run (void *cls,
182      const struct GNUNET_CONFIGURATION_Handle *cfg,
183      struct GNUNET_TESTING_Peer *peer)
184 {
185   const char *keywords[] = {
186     "down_foo",
187     "down_bar"
188   };
189   char *buf;
190   struct GNUNET_CONTAINER_MetaData *meta;
191   struct GNUNET_FS_Uri *kuri;
192   struct GNUNET_FS_BlockOptions bo;
193   struct GNUNET_FS_FileInformation *fi;
194   size_t i;
195
196   fs = GNUNET_FS_start (cfg, "test-fs-search", &progress_cb, NULL,
197                         GNUNET_FS_FLAGS_DO_PROBES, 
198                         GNUNET_FS_OPTIONS_END);
199   GNUNET_assert (NULL != fs);
200   buf = GNUNET_malloc (FILESIZE);
201   for (i = 0; i < FILESIZE; i++)
202     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
203   meta = GNUNET_CONTAINER_meta_data_create ();
204   kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
205   bo.content_priority = 42;
206   bo.anonymity_level = 1;
207   bo.replication_level = 0;
208   bo.expiration_time = GNUNET_TIME_relative_to_absolute (LIFETIME);
209   fi = GNUNET_FS_file_information_create_from_data (fs, "publish-context",
210                                                     FILESIZE, buf, kuri, meta,
211                                                     GNUNET_NO, &bo);
212   GNUNET_FS_uri_destroy (kuri);
213   GNUNET_CONTAINER_meta_data_destroy (meta);
214   GNUNET_assert (NULL != fi);
215   start = GNUNET_TIME_absolute_get ();
216   publish =
217       GNUNET_FS_publish_start (fs, fi, NULL, NULL, NULL,
218                                GNUNET_FS_PUBLISH_OPTION_NONE);
219   GNUNET_assert (publish != NULL);
220   timeout_task = GNUNET_SCHEDULER_add_delayed (LIFETIME,
221                                                &abort_error, NULL);
222 }
223
224
225 int
226 main (int argc, char *argv[])
227 {
228   if (0 != GNUNET_TESTING_peer_run ("test-fs-search-probes",
229                                     "test_fs_search_data.conf",
230                                     &run, NULL))
231     return 1;
232   return err;
233 }
234
235 /* end of test_fs_search_probes.c */