-fix #2598
[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  * @file fs/test_fs_search.c
22  * @brief simple testcase for simple publish + search operation
23  * @author Christian Grothoff
24  */
25 #include "platform.h"
26 #include "gnunet_util_lib.h"
27 #include "gnunet_testing_lib-new.h"
28 #include "gnunet_fs_service.h"
29
30
31 /**
32  * File-size we use for testing.
33  */
34 #define FILESIZE 1024
35
36 /**
37  * How long until we give up on transmitting the message?
38  */
39 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 60)
40
41 /**
42  * How long should our test-content live?
43  */
44 #define LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
45
46
47 static struct GNUNET_TIME_Absolute start;
48
49 static struct GNUNET_FS_Handle *fs;
50
51 static struct GNUNET_FS_SearchContext *search;
52
53 static struct GNUNET_FS_PublishContext *publish;
54
55
56 static void
57 abort_publish_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
58 {
59   GNUNET_FS_publish_stop (publish);
60   publish = NULL;
61 }
62
63
64 static void
65 abort_search_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
66 {
67   if (search != NULL)
68     GNUNET_FS_search_stop (search);
69   search = NULL;
70 }
71
72
73 static void *
74 progress_cb (void *cls, const struct GNUNET_FS_ProgressInfo *event)
75 {
76   const char *keywords[] = {
77     "down_foo"
78   };
79   struct GNUNET_FS_Uri *kuri;
80
81   switch (event->status)
82   {
83   case GNUNET_FS_STATUS_PUBLISH_PROGRESS:
84     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
85                 "Publish is progressing (%llu/%llu at level %u off %llu)...\n",
86                 (unsigned long long) event->value.publish.completed,
87                 (unsigned long long) event->value.publish.size,
88                 event->value.publish.specifics.progress.depth,
89                 (unsigned long long) event->value.publish.specifics.
90                 progress.offset);
91     break;
92   case GNUNET_FS_STATUS_PUBLISH_COMPLETED:
93     kuri = GNUNET_FS_uri_ksk_create_from_args (1, keywords);
94     start = GNUNET_TIME_absolute_get ();
95     search =
96         GNUNET_FS_search_start (fs, kuri, 1, GNUNET_FS_SEARCH_OPTION_NONE,
97                                 "search");
98     GNUNET_FS_uri_destroy (kuri);
99     GNUNET_assert (search != NULL);
100     break;
101   case GNUNET_FS_STATUS_SEARCH_RESULT:
102     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
103                 "Search complete.\n");
104     GNUNET_SCHEDULER_add_continuation (&abort_search_task, NULL,
105                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
106     break;
107   case GNUNET_FS_STATUS_PUBLISH_ERROR:
108     FPRINTF (stderr, "Error publishing file: %s\n",
109              event->value.publish.specifics.error.message);
110     GNUNET_break (0);
111     GNUNET_SCHEDULER_add_continuation (&abort_publish_task, NULL,
112                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
113     break;
114   case GNUNET_FS_STATUS_SEARCH_ERROR:
115     FPRINTF (stderr, "Error searching file: %s\n",
116              event->value.search.specifics.error.message);
117     GNUNET_SCHEDULER_add_continuation (&abort_search_task, NULL,
118                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
119     break;
120   case GNUNET_FS_STATUS_PUBLISH_START:
121     GNUNET_assert (0 == strcmp ("publish-context", event->value.publish.cctx));
122     GNUNET_assert (NULL == event->value.publish.pctx);
123     GNUNET_assert (FILESIZE == event->value.publish.size);
124     GNUNET_assert (0 == event->value.publish.completed);
125     GNUNET_assert (1 == event->value.publish.anonymity);
126     break;
127   case GNUNET_FS_STATUS_PUBLISH_STOPPED:
128     GNUNET_assert (publish == event->value.publish.pc);
129     GNUNET_assert (FILESIZE == event->value.publish.size);
130     GNUNET_assert (1 == event->value.publish.anonymity);
131     GNUNET_FS_stop (fs);
132     fs = NULL;
133     break;
134   case GNUNET_FS_STATUS_SEARCH_START:
135     GNUNET_assert (search == NULL);
136     GNUNET_assert (0 == strcmp ("search", event->value.search.cctx));
137     GNUNET_assert (1 == event->value.search.anonymity);
138     break;
139   case GNUNET_FS_STATUS_SEARCH_RESULT_STOPPED:
140     break;
141   case GNUNET_FS_STATUS_SEARCH_STOPPED:
142     GNUNET_assert (search == event->value.search.sc);
143     GNUNET_SCHEDULER_add_continuation (&abort_publish_task, NULL,
144                                        GNUNET_SCHEDULER_REASON_PREREQ_DONE);
145     break;
146   default:
147     FPRINTF (stderr, "Unexpected event: %d\n", event->status);
148     break;
149   }
150   return NULL;
151 }
152
153
154 static void
155 run (void *cls,
156      const struct GNUNET_CONFIGURATION_Handle *cfg,
157      struct GNUNET_TESTING_Peer *peer)
158 {
159   const char *keywords[] = {
160     "down_foo",
161     "down_bar"
162   };
163   char *buf;
164   struct GNUNET_CONTAINER_MetaData *meta;
165   struct GNUNET_FS_Uri *kuri;
166   struct GNUNET_FS_BlockOptions bo;
167   struct GNUNET_FS_FileInformation *fi;
168   size_t i;
169
170   fs = GNUNET_FS_start (cfg, "test-fs-search", &progress_cb, NULL,
171                         GNUNET_FS_FLAGS_NONE, GNUNET_FS_OPTIONS_END);
172   GNUNET_assert (NULL != fs);
173   buf = GNUNET_malloc (FILESIZE);
174   for (i = 0; i < FILESIZE; i++)
175     buf[i] = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 256);
176   meta = GNUNET_CONTAINER_meta_data_create ();
177   kuri = GNUNET_FS_uri_ksk_create_from_args (2, keywords);
178   bo.content_priority = 42;
179   bo.anonymity_level = 1;
180   bo.replication_level = 0;
181   bo.expiration_time = GNUNET_TIME_relative_to_absolute (LIFETIME);
182   fi = GNUNET_FS_file_information_create_from_data (fs, "publish-context",
183                                                     FILESIZE, buf, kuri, meta,
184                                                     GNUNET_NO, &bo);
185   GNUNET_FS_uri_destroy (kuri);
186   GNUNET_CONTAINER_meta_data_destroy (meta);
187   GNUNET_assert (NULL != fi);
188   start = GNUNET_TIME_absolute_get ();
189   publish =
190       GNUNET_FS_publish_start (fs, fi, NULL, NULL, NULL,
191                                GNUNET_FS_PUBLISH_OPTION_NONE);
192   GNUNET_assert (publish != NULL);
193 }
194
195
196 int
197 main (int argc, char *argv[])
198 {
199   if (0 != GNUNET_TESTING_peer_run ("test-fs-search",
200                                     "test_fs_search_data.conf",
201                                     &run, NULL))
202     return 1;
203   return 0;
204 }
205
206 /* end of test_fs_search.c */