paragraph for gnunet devs that don't know how to use the web
[oweals/gnunet.git] / src / fs / test_fs_search.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2004-2013 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_search.c
20  * @brief simple testcase for simple publish + search operation
21  * @author Christian Grothoff
22  */
23 #include "platform.h"
24 #include "gnunet_util_lib.h"
25 #include "gnunet_testing_lib.h"
26 #include "gnunet_fs_service.h"
27
28
29 /**
30  * File-size we use for testing.
31  */
32 #define FILESIZE 1024
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_SearchContext *search;
50
51 static struct GNUNET_FS_PublishContext *publish;
52
53 static struct GNUNET_SCHEDULER_Task * timeout_task;
54
55 static int err;
56
57
58 static void
59 abort_publish_task (void *cls)
60 {
61   if (NULL != publish)
62   {
63     GNUNET_FS_publish_stop (publish);
64     publish = NULL;
65   }
66   if (NULL != timeout_task)
67   {
68     GNUNET_SCHEDULER_cancel (timeout_task);
69     timeout_task = NULL;
70   }
71 }
72
73
74 static void
75 abort_error (void *cls)
76 {
77   fprintf (stderr,
78            "Timeout\n");
79   timeout_task = NULL;
80   if (NULL != search)
81   {
82     GNUNET_FS_search_stop (search);
83     search = NULL;
84   }
85   if (NULL != publish)
86   {
87     GNUNET_FS_publish_stop (publish);
88     publish = NULL;
89   }
90   err = 1;
91 }
92
93
94 static void
95 abort_search_task (void *cls)
96 {
97   if (NULL != search)
98   {
99     GNUNET_FS_search_stop (search);
100     search = NULL;
101   }
102 }
103
104
105 static void *
106 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *event)
107 {
108   const char *keywords[] = {
109     "down_foo"
110   };
111   struct GNUNET_FS_Uri *kuri;
112
113   switch (event->status)
114   {
115   case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
116     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
117                 "Publish is progressing (%llu/%llu at level %u off %llu)...\n",
118                 (unsigned long long) event->value.publish.completed,
119                 (unsigned long long) event->value.publish.size,
120                 event->value.publish.specifics.progress.depth,
121                 (unsigned long long) event->value.publish.specifics.
122                 progress.offset);
123     break;
124   case GNUNET_FS_STATUS_PUBLISH_PROGRESS_DIRECTORY:
125     break;
126   case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
127     kuri = GNUNET_FS_uri_ksk_create_from_args (1, keywords);
128     start = GNUNET_TIME_absolute_get ();
129     search =
130         GNUNET_FS_search_start (fs, kuri, 1, GNUNET_FS_SEARCH_OPTION_NONE,
131                                 "search");
132     GNUNET_FS_uri_destroy (kuri);
133     GNUNET_assert (search != NULL);
134     break;
135   case GNUNET_FS_STATUS_SEARCH_RESULT:
136     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
137                 "Search complete.\n");
138     GNUNET_SCHEDULER_add_now (&abort_search_task, NULL);
139     break;
140   case GNUNET_FS_STATUS_PUBLISH_ERROR:
141     FPRINTF (stderr, "Error publishing file: %s\n",
142              event->value.publish.specifics.error.message);
143     GNUNET_break (0);
144     GNUNET_SCHEDULER_add_now (&abort_publish_task, NULL);
145     break;
146   case GNUNET_FS_STATUS_SEARCH_ERROR:
147     FPRINTF (stderr, "Error searching file: %s\n",
148              event->value.search.specifics.error.message);
149     GNUNET_SCHEDULER_add_now (&abort_search_task, NULL);
150     break;
151   case GNUNET_FS_STATUS_PUBLISH_START:
152     GNUNET_assert (0 == strcmp ("publish-context", event->value.publish.cctx));
153     GNUNET_assert (NULL == event->value.publish.pctx);
154     GNUNET_assert (FILESIZE == event->value.publish.size);
155     GNUNET_assert (0 == event->value.publish.completed);
156     GNUNET_assert (1 == event->value.publish.anonymity);
157     break;
158   case GNUNET_FS_STATUS_PUBLISH_STOPPED:
159     GNUNET_assert (publish == event->value.publish.pc);
160     GNUNET_assert (FILESIZE == event->value.publish.size);
161     GNUNET_assert (1 == event->value.publish.anonymity);
162     GNUNET_FS_stop (fs);
163     fs = NULL;
164     break;
165   case GNUNET_FS_STATUS_SEARCH_START:
166     GNUNET_assert (search == NULL);
167     GNUNET_assert (0 == strcmp ("search", event->value.search.cctx));
168     GNUNET_assert (1 == event->value.search.anonymity);
169     break;
170   case GNUNET_FS_STATUS_SEARCH_RESULT_STOPPED:
171     break;
172   case GNUNET_FS_STATUS_SEARCH_STOPPED:
173     GNUNET_assert (search == event->value.search.sc);
174     GNUNET_SCHEDULER_add_now (&abort_publish_task, NULL);
175     break;
176   default:
177     FPRINTF (stderr, "Unexpected event: %d\n", event->status);
178     break;
179   }
180   return NULL;
181 }
182
183
184 static void
185 run (void *cls,
186      const struct GNUNET_CONFIGURATION_Handle *cfg,
187      struct GNUNET_TESTING_Peer *peer)
188 {
189   const char *keywords[] = {
190     "down_foo",
191     "down_bar"
192   };
193   char *buf;
194   struct GNUNET_CONTAINER_MetaData *meta;
195   struct GNUNET_FS_Uri *kuri;
196   struct GNUNET_FS_BlockOptions bo;
197   struct GNUNET_FS_FileInformation *fi;
198   size_t i;
199
200   fs = GNUNET_FS_start (cfg, "test-fs-search", &progress_cb, NULL,
201                         GNUNET_FS_FLAGS_NONE, GNUNET_FS_OPTIONS_END);
202   GNUNET_assert (NULL != fs);
203   buf = GNUNET_malloc (FILESIZE);
204   for (i = 0; i < FILESIZE; i++)
205     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
206   meta = GNUNET_CONTAINER_meta_data_create ();
207   kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
208   bo.content_priority = 42;
209   bo.anonymity_level = 1;
210   bo.replication_level = 0;
211   bo.expiration_time = GNUNET_TIME_relative_to_absolute (LIFETIME);
212   fi = GNUNET_FS_file_information_create_from_data (fs, "publish-context",
213                                                     FILESIZE, buf, kuri, meta,
214                                                     GNUNET_NO, &bo);
215   GNUNET_FS_uri_destroy (kuri);
216   GNUNET_CONTAINER_meta_data_destroy (meta);
217   GNUNET_assert (NULL != fi);
218   start = GNUNET_TIME_absolute_get ();
219   publish =
220       GNUNET_FS_publish_start (fs, fi, NULL, NULL, NULL,
221                                GNUNET_FS_PUBLISH_OPTION_NONE);
222   GNUNET_assert (publish != NULL);
223   timeout_task = GNUNET_SCHEDULER_add_delayed (LIFETIME,
224                                                &abort_error, NULL);
225 }
226
227
228 int
229 main (int argc, char *argv[])
230 {
231   if (0 != GNUNET_TESTING_peer_run ("test-fs-search",
232                                     "test_fs_search_data.conf",
233                                     &run, NULL))
234     return 1;
235   return err;
236 }
237
238 /* end of test_fs_search.c */