(no commit message)
[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 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.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   struct GNUNET_OS_Process *arm_proc;
57 #endif
58 };
59
60 static struct PeerContext p1;
61
62 static struct GNUNET_TIME_Absolute start;
63
64 static struct GNUNET_FS_Handle *fs;
65
66 static struct GNUNET_FS_SearchContext *search;
67
68 static struct GNUNET_FS_PublishContext *publish;
69
70
71 static void
72 abort_publish_task (void *cls,
73                      const struct GNUNET_SCHEDULER_TaskContext *tc)
74 {
75   GNUNET_FS_publish_stop (publish);
76   publish = NULL;
77 }
78
79
80 static void
81 abort_search_task (void *cls,
82                      const struct GNUNET_SCHEDULER_TaskContext *tc)
83 {
84   if (search != NULL)
85     GNUNET_FS_search_stop (search);
86   search = NULL;
87 }
88
89
90 static void *
91 progress_cb (void *cls, 
92              const struct GNUNET_FS_ProgressInfo *event)
93 {  
94   const char *keywords[] = {
95     "down_foo"
96   };
97   struct GNUNET_FS_Uri *kuri;
98
99   switch (event->status)
100     {
101     case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
102 #if VERBOSE
103       printf ("Publish is progressing (%llu/%llu at level %u off %llu)...\n",
104               (unsigned long long) event->abs_value.publish.completed,
105               (unsigned long long) event->abs_value.publish.size,
106               event->abs_value.publish.specifics.progress.depth,
107               (unsigned long long) event->abs_value.publish.specifics.progress.offset);
108 #endif      
109       break;
110     case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
111       kuri = GNUNET_FS_uri_ksk_create_from_args (1, keywords);
112       start = GNUNET_TIME_absolute_get ();
113       search = GNUNET_FS_search_start (fs,
114                                        kuri,
115                                        1,
116                                        GNUNET_FS_SEARCH_OPTION_NONE,
117                                        "search");
118       GNUNET_FS_uri_destroy (kuri);
119       GNUNET_assert (search != NULL);
120       break;
121     case GNUNET_FS_STATUS_SEARCH_RESULT:
122 #if VERBOSE
123       printf ("Search complete.\n");
124 #endif
125       GNUNET_SCHEDULER_add_continuation (&abort_search_task,
126                                          NULL,
127                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
128       break;
129     case GNUNET_FS_STATUS_PUBLISH_ERROR:
130       fprintf (stderr,
131                "Error publishing file: %s\n",
132                event->value.publish.specifics.error.message);
133       GNUNET_break (0);
134       GNUNET_SCHEDULER_add_continuation (&abort_publish_task,
135                                          NULL,
136                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
137       break;
138     case GNUNET_FS_STATUS_SEARCH_ERROR:
139       fprintf (stderr,
140                "Error searching file: %s\n",
141                event->value.search.specifics.error.message);
142       GNUNET_SCHEDULER_add_continuation (&abort_search_task,
143                                          NULL,
144                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
145       break;
146     case GNUNET_FS_STATUS_PUBLISH_START:
147       GNUNET_assert (0 == strcmp ("publish-context", event->value.publish.cctx));
148       GNUNET_assert (NULL == event->value.publish.pctx);
149       GNUNET_assert (FILESIZE == event->value.publish.size);
150       GNUNET_assert (0 == event->value.publish.completed);
151       GNUNET_assert (1 == event->value.publish.anonymity);
152       break;
153     case GNUNET_FS_STATUS_PUBLISH_STOPPED:
154       GNUNET_assert (publish == event->value.publish.pc);
155       GNUNET_assert (FILESIZE == event->value.publish.size);
156       GNUNET_assert (1 == event->value.publish.anonymity);
157       GNUNET_FS_stop (fs);
158       fs = 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,
170                                          NULL,
171                                          GNUNET_SCHEDULER_REASON_PREREQ_DONE);
172       break;
173     default:
174       fprintf (stderr,
175                "Unexpected event: %d\n", 
176                event->status);
177       break;
178     }
179   return NULL;
180 }
181
182
183 static void
184 setup_peer (struct PeerContext *p, const char *cfgname)
185 {
186   p->cfg = GNUNET_CONFIGURATION_create ();
187 #if START_ARM
188   p->arm_proc = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
189                                         "gnunet-service-arm",
190 #if VERBOSE
191                                         "-L", "DEBUG",
192 #endif
193                                         "-c", cfgname, NULL);
194 #endif
195   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
196 }
197
198
199 static void
200 stop_arm (struct PeerContext *p)
201 {
202 #if START_ARM
203   if (0 != GNUNET_OS_process_kill (p->arm_proc, SIGTERM))
204     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
205   if (GNUNET_OS_process_wait(p->arm_proc) != GNUNET_OK)
206     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "waitpid");
207   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
208               "ARM process %u stopped\n", GNUNET_OS_process_get_pid (p->arm_proc));
209   GNUNET_OS_process_close (p->arm_proc);
210   p->arm_proc = NULL;
211 #endif
212   GNUNET_CONFIGURATION_destroy (p->cfg);
213 }
214
215
216 static void
217 run (void *cls,
218      char *const *args,
219      const char *cfgfile,
220      const struct GNUNET_CONFIGURATION_Handle *cfg)
221 {
222   const char *keywords[] = {
223     "down_foo",
224     "down_bar"
225   };
226   char *buf;
227   struct GNUNET_CONTAINER_MetaData *meta;
228   struct GNUNET_FS_Uri *kuri;
229   struct GNUNET_FS_FileInformation *fi;
230   size_t i;
231
232   setup_peer (&p1, "test_fs_search_data.conf");
233   fs = GNUNET_FS_start (cfg,
234                         "test-fs-search",
235                         &progress_cb,
236                         NULL,
237                         GNUNET_FS_FLAGS_NONE,
238                         GNUNET_FS_OPTIONS_END);
239   GNUNET_assert (NULL != fs); 
240   buf = GNUNET_malloc (FILESIZE);
241   for (i = 0; i < FILESIZE; i++)
242     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
243   meta = GNUNET_CONTAINER_meta_data_create ();
244   kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
245   fi = GNUNET_FS_file_information_create_from_data (fs,
246                                                     "publish-context",
247                                                     FILESIZE,
248                                                     buf,
249                                                     kuri,
250                                                     meta,
251                                                     GNUNET_NO,
252                                                     1,
253                                                     42,
254                                                     GNUNET_TIME_relative_to_absolute (LIFETIME)); 
255   GNUNET_FS_uri_destroy (kuri);
256   GNUNET_CONTAINER_meta_data_destroy (meta);
257   GNUNET_assert (NULL != fi);
258   start = GNUNET_TIME_absolute_get ();
259   publish = GNUNET_FS_publish_start (fs,
260                                     fi,
261                                     NULL, NULL, NULL,
262                                     GNUNET_FS_PUBLISH_OPTION_NONE);
263   GNUNET_assert (publish != NULL);
264 }
265
266
267 int
268 main (int argc, char *argv[])
269 {
270   char *const argvx[] = { 
271     "test-fs-search",
272     "-c",
273     "test_fs_search_data.conf",
274 #if VERBOSE
275     "-L", "DEBUG",
276 #endif
277     NULL
278   };
279   struct GNUNET_GETOPT_CommandLineOption options[] = {
280     GNUNET_GETOPT_OPTION_END
281   };
282
283   GNUNET_log_setup ("test_fs_search", 
284 #if VERBOSE
285                     "DEBUG",
286 #else
287                     "WARNING",
288 #endif
289                     NULL);
290   GNUNET_PROGRAM_run ((sizeof (argvx) / sizeof (char *)) - 1,
291                       argvx, "test-fs-search",
292                       "nohelp", options, &run, NULL);
293   stop_arm (&p1);
294   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-search/");
295   return 0;
296 }
297
298 /* end of test_fs_search.c */