fixing common off-by-one error with respect to maximum message size
[oweals/gnunet.git] / src / fs / test_fs_search.c
1 /*
2      This file is part of GNUnet.
3      (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 2, 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.c
23  * @brief simple testcase for simple publish + search operation
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_arm_service.h"
30 #include "gnunet_fs_service.h"
31
32 #define VERBOSE GNUNET_NO
33
34 #define START_ARM GNUNET_YES
35
36 /**
37  * File-size we use for testing.
38  */
39 #define FILESIZE 1024
40
41 /**
42  * How long until we give up on transmitting the message?
43  */
44 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
45
46 /**
47  * How long should our test-content live?
48  */ 
49 #define LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
50
51 struct PeerContext
52 {
53   struct GNUNET_CONFIGURATION_Handle *cfg;
54   struct GNUNET_PeerIdentity id;   
55 #if START_ARM
56   pid_t arm_pid;
57 #endif
58 };
59
60 static struct PeerContext p1;
61
62 static struct GNUNET_TIME_Absolute start;
63
64 static struct GNUNET_SCHEDULER_Handle *sched;
65
66 static struct GNUNET_FS_Handle *fs;
67
68 static struct GNUNET_FS_SearchContext *search;
69
70 static struct GNUNET_FS_PublishContext *publish;
71
72
73 static void
74 abort_publish_task (void *cls,
75                      const struct GNUNET_SCHEDULER_TaskContext *tc)
76 {
77   GNUNET_FS_publish_stop (publish);
78   publish = NULL;
79 }
80
81
82 static void
83 abort_search_task (void *cls,
84                      const struct GNUNET_SCHEDULER_TaskContext *tc)
85 {
86   if (search != NULL)
87     GNUNET_FS_search_stop (search);
88   search = NULL;
89 }
90
91
92 static void *
93 progress_cb (void *cls, 
94              const struct GNUNET_FS_ProgressInfo *event)
95 {  
96   const char *keywords[] = {
97     "down_foo"
98   };
99   struct GNUNET_FS_Uri *kuri;
100
101   switch (event->status)
102     {
103     case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
104 #if VERBOSE
105       printf ("Publish is progressing (%llu/%llu at level %u off %llu)...\n",
106               (unsigned long long) event->value.publish.completed,
107               (unsigned long long) event->value.publish.size,
108               event->value.publish.specifics.progress.depth,
109               (unsigned long long) event->value.publish.specifics.progress.offset);
110 #endif      
111       break;
112     case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
113       kuri = GNUNET_FS_uri_ksk_create_from_args (1, keywords);
114       start = GNUNET_TIME_absolute_get ();
115       search = GNUNET_FS_search_start (fs,
116                                        kuri,
117                                        1,
118                                        GNUNET_FS_SEARCH_OPTION_NONE,
119                                        "search");
120       GNUNET_FS_uri_destroy (kuri);
121       GNUNET_assert (search != NULL);
122       break;
123     case GNUNET_FS_STATUS_SEARCH_RESULT:
124 #if VERBOSE
125       printf ("Search complete.\n");
126 #endif
127       GNUNET_SCHEDULER_add_continuation (sched,
128                                          &abort_search_task,
129                                          NULL,
130                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
131       break;
132     case GNUNET_FS_STATUS_PUBLISH_ERROR:
133       fprintf (stderr,
134                "Error publishing file: %s\n",
135                event->value.publish.specifics.error.message);
136       GNUNET_break (0);
137       GNUNET_SCHEDULER_add_continuation (sched,
138                                          &abort_publish_task,
139                                          NULL,
140                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
141       break;
142     case GNUNET_FS_STATUS_SEARCH_ERROR:
143       fprintf (stderr,
144                "Error searching file: %s\n",
145                event->value.search.specifics.error.message);
146       GNUNET_SCHEDULER_add_continuation (sched,
147                                          &abort_search_task,
148                                          NULL,
149                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
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_continuation (sched,
175                                          &abort_publish_task,
176                                          NULL,
177                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
178       break;
179     default:
180       fprintf (stderr,
181                "Unexpected event: %d\n", 
182                event->status);
183       break;
184     }
185   return NULL;
186 }
187
188
189 static void
190 setup_peer (struct PeerContext *p, const char *cfgname)
191 {
192   p->cfg = GNUNET_CONFIGURATION_create ();
193 #if START_ARM
194   p->arm_pid = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
195                                         "gnunet-service-arm",
196 #if VERBOSE
197                                         "-L", "DEBUG",
198 #endif
199                                         "-c", cfgname, NULL);
200 #endif
201   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
202 }
203
204
205 static void
206 stop_arm (struct PeerContext *p)
207 {
208 #if START_ARM
209   if (0 != PLIBC_KILL (p->arm_pid, SIGTERM))
210     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
211   if (GNUNET_OS_process_wait(p->arm_pid) != GNUNET_OK)
212     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "waitpid");
213   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
214               "ARM process %u stopped\n", p->arm_pid);
215 #endif
216   GNUNET_CONFIGURATION_destroy (p->cfg);
217 }
218
219
220 static void
221 run (void *cls,
222      struct GNUNET_SCHEDULER_Handle *s,
223      char *const *args,
224      const char *cfgfile,
225      const struct GNUNET_CONFIGURATION_Handle *cfg)
226 {
227   const char *keywords[] = {
228     "down_foo",
229     "down_bar"
230   };
231   char *buf;
232   struct GNUNET_CONTAINER_MetaData *meta;
233   struct GNUNET_FS_Uri *kuri;
234   struct GNUNET_FS_FileInformation *fi;
235   size_t i;
236
237   sched = s;
238   setup_peer (&p1, "test_fs_search_data.conf");
239   fs = GNUNET_FS_start (sched,
240                         cfg,
241                         "test-fs-search",
242                         &progress_cb,
243                         NULL,
244                         GNUNET_FS_FLAGS_NONE,
245                         GNUNET_FS_OPTIONS_END);
246   GNUNET_assert (NULL != fs); 
247   buf = GNUNET_malloc (FILESIZE);
248   for (i = 0; i < FILESIZE; i++)
249     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
250   meta = GNUNET_CONTAINER_meta_data_create ();
251   kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
252   fi = GNUNET_FS_file_information_create_from_data (fs,
253                                                     "publish-context",
254                                                     FILESIZE,
255                                                     buf,
256                                                     kuri,
257                                                     meta,
258                                                     GNUNET_NO,
259                                                     1,
260                                                     42,
261                                                     GNUNET_TIME_relative_to_absolute (LIFETIME)); 
262   GNUNET_FS_uri_destroy (kuri);
263   GNUNET_CONTAINER_meta_data_destroy (meta);
264   GNUNET_assert (NULL != fi);
265   start = GNUNET_TIME_absolute_get ();
266   publish = GNUNET_FS_publish_start (fs,
267                                     fi,
268                                     NULL, NULL, NULL,
269                                     GNUNET_FS_PUBLISH_OPTION_NONE);
270   GNUNET_assert (publish != NULL);
271 }
272
273
274 int
275 main (int argc, char *argv[])
276 {
277   char *const argvx[] = { 
278     "test-fs-search",
279     "-c",
280     "test_fs_search_data.conf",
281 #if VERBOSE
282     "-L", "DEBUG",
283 #endif
284     NULL
285   };
286   struct GNUNET_GETOPT_CommandLineOption options[] = {
287     GNUNET_GETOPT_OPTION_END
288   };
289
290   GNUNET_log_setup ("test_fs_search", 
291 #if VERBOSE
292                     "DEBUG",
293 #else
294                     "WARNING",
295 #endif
296                     NULL);
297   GNUNET_PROGRAM_run ((sizeof (argvx) / sizeof (char *)) - 1,
298                       argvx, "test-fs-search",
299                       "nohelp", options, &run, NULL);
300   stop_arm (&p1);
301   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-search/");
302   return 0;
303 }
304
305 /* end of test_fs_search.c */