error handling
[oweals/gnunet.git] / src / fs / test_fs_search_probes.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2012 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      SPDX-License-Identifier: AGPL3.0-or-later
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 struct GNUNET_SCHEDULER_Task *timeout_task;
57
58 static int err;
59
60
61 static void
62 abort_error (void *cls)
63 {
64   timeout_task = NULL;
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)
83 {
84   if (NULL != publish)
85   {
86     GNUNET_FS_publish_stop (publish);
87     publish = NULL;
88   }
89   if (NULL != timeout_task)
90   {
91     GNUNET_SCHEDULER_cancel (timeout_task);
92     timeout_task = NULL;
93   }
94 }
95
96
97 static void
98 abort_search_task (void *cls)
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
126   case GNUNET_FS_STATUS_PUBLISH_PROGRESS_DIRECTORY:
127     break;
128
129   case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
130     kuri = GNUNET_FS_uri_ksk_create_from_args (1, keywords);
131     start = GNUNET_TIME_absolute_get ();
132     search =
133       GNUNET_FS_search_start (fs, kuri, 1, GNUNET_FS_SEARCH_OPTION_NONE,
134                               "search");
135     GNUNET_FS_uri_destroy (kuri);
136     GNUNET_assert (search != NULL);
137     break;
138
139   case GNUNET_FS_STATUS_SEARCH_RESULT:
140     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Search complete.\n");
141     break;
142
143   case GNUNET_FS_STATUS_PUBLISH_ERROR:
144     fprintf (stderr, "Error publishing file: %s\n",
145              event->value.publish.specifics.error.message);
146     GNUNET_break (0);
147     GNUNET_SCHEDULER_add_now (&abort_publish_task, NULL);
148     break;
149
150   case GNUNET_FS_STATUS_SEARCH_ERROR:
151     fprintf (stderr, "Error searching file: %s\n",
152              event->value.search.specifics.error.message);
153     GNUNET_SCHEDULER_add_now (&abort_search_task, NULL);
154     break;
155
156   case GNUNET_FS_STATUS_PUBLISH_START:
157     GNUNET_assert (0 == strcmp ("publish-context", event->value.publish.cctx));
158     GNUNET_assert (NULL == event->value.publish.pctx);
159     GNUNET_assert (FILESIZE == event->value.publish.size);
160     GNUNET_assert (0 == event->value.publish.completed);
161     GNUNET_assert (1 == event->value.publish.anonymity);
162     break;
163
164   case GNUNET_FS_STATUS_PUBLISH_STOPPED:
165     GNUNET_assert (publish == event->value.publish.pc);
166     GNUNET_assert (FILESIZE == event->value.publish.size);
167     GNUNET_assert (1 == event->value.publish.anonymity);
168     GNUNET_FS_stop (fs);
169     fs = NULL;
170     break;
171
172   case GNUNET_FS_STATUS_SEARCH_UPDATE:
173     if ((0 < event->value.search.specifics.update.availability_rank) &&
174         (0 < event->value.search.specifics.update.availability_certainty))
175       GNUNET_SCHEDULER_add_now (&abort_search_task, NULL);
176     break;
177
178   case GNUNET_FS_STATUS_SEARCH_START:
179     GNUNET_assert (search == NULL);
180     GNUNET_assert (0 == strcmp ("search", event->value.search.cctx));
181     GNUNET_assert (1 == event->value.search.anonymity);
182     break;
183
184   case GNUNET_FS_STATUS_SEARCH_RESULT_STOPPED:
185     break;
186
187   case GNUNET_FS_STATUS_SEARCH_STOPPED:
188     GNUNET_assert (search == event->value.search.sc);
189     GNUNET_SCHEDULER_add_now (&abort_publish_task, NULL);
190     break;
191
192   default:
193     fprintf (stderr,
194              "Unexpected event: %d\n",
195              event->status);
196     break;
197   }
198   return NULL;
199 }
200
201
202 static void
203 run (void *cls,
204      const struct GNUNET_CONFIGURATION_Handle *cfg,
205      struct GNUNET_TESTING_Peer *peer)
206 {
207   const char *keywords[] = {
208     "down_foo",
209     "down_bar"
210   };
211   char *buf;
212   struct GNUNET_CONTAINER_MetaData *meta;
213   struct GNUNET_FS_Uri *kuri;
214   struct GNUNET_FS_BlockOptions bo;
215   struct GNUNET_FS_FileInformation *fi;
216   size_t i;
217
218   fs = GNUNET_FS_start (cfg, "test-fs-search", &progress_cb, NULL,
219                         GNUNET_FS_FLAGS_DO_PROBES,
220                         GNUNET_FS_OPTIONS_END);
221   GNUNET_assert (NULL != fs);
222   buf = GNUNET_malloc (FILESIZE);
223   for (i = 0; i < FILESIZE; i++)
224     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
225   meta = GNUNET_CONTAINER_meta_data_create ();
226   kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
227   bo.content_priority = 42;
228   bo.anonymity_level = 1;
229   bo.replication_level = 0;
230   bo.expiration_time = GNUNET_TIME_relative_to_absolute (LIFETIME);
231   fi = GNUNET_FS_file_information_create_from_data (fs, "publish-context",
232                                                     FILESIZE, buf, kuri, meta,
233                                                     GNUNET_NO, &bo);
234   GNUNET_FS_uri_destroy (kuri);
235   GNUNET_CONTAINER_meta_data_destroy (meta);
236   GNUNET_assert (NULL != fi);
237   start = GNUNET_TIME_absolute_get ();
238   publish =
239     GNUNET_FS_publish_start (fs, fi, NULL, NULL, NULL,
240                              GNUNET_FS_PUBLISH_OPTION_NONE);
241   GNUNET_assert (publish != NULL);
242   timeout_task = GNUNET_SCHEDULER_add_delayed (LIFETIME,
243                                                &abort_error, NULL);
244 }
245
246
247 int
248 main (int argc, char *argv[])
249 {
250   if (0 != GNUNET_TESTING_peer_run ("test-fs-search-probes",
251                                     "test_fs_search_data.conf",
252                                     &run, NULL))
253     return 1;
254   return err;
255 }
256
257
258 /* end of test_fs_search_probes.c */