adding man page for gnunet-auto-share, updating man page for gnunet-publish
[oweals/gnunet.git] / src / fs / fs_test_lib.h
1 /*
2      This file is part of GNUnet.
3      (C) 2010 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/fs_test_lib.h
23  * @brief library routines for testing FS publishing and downloading
24  *        with multiple peers; this code is limited to flat files
25  *        and no keywords (those functions can be tested with
26  *        single-peer setups; this is for testing routing).
27  * @author Christian Grothoff
28  */
29 #ifndef FS_TEST_LIB_H
30 #define FS_TEST_LIB_H
31
32 #include "gnunet_util_lib.h"
33 #include "gnunet_fs_service.h"
34
35 /**
36  * Handle for a daemon started for testing FS.
37  */
38 struct GNUNET_FS_TestDaemon;
39
40
41 /**
42  * Start daemons for testing.
43  *
44  * @param template_cfg_file configuration template to use
45  * @param timeout if this operation cannot be completed within the
46  *                given period, call the continuation with an error code
47  * @param total number of daemons to start
48  * @param daemons array of 'total' entries to be initialized
49  *                (array must already be allocated, will be filled)
50  * @param cont function to call when done; note that if 'cont'
51  *             is called with reason "TIMEOUT", then starting the
52  *             daemons has failed and the client MUST NOT call
53  *             'GNUNET_FS_TEST_daemons_stop'!
54  * @param cont_cls closure for cont
55  */
56 void
57 GNUNET_FS_TEST_daemons_start (const char *template_cfg_file,
58                               struct GNUNET_TIME_Relative timeout,
59                               unsigned int total,
60                               struct GNUNET_FS_TestDaemon **daemons,
61                               GNUNET_SCHEDULER_Task cont, void *cont_cls);
62
63
64 struct GNUNET_FS_TEST_ConnectContext;
65
66
67 /**
68  * Connect two daemons for testing.
69  *
70  * @param daemon1 first daemon to connect
71  * @param daemon2 second first daemon to connect
72  * @param timeout if this operation cannot be completed within the
73  *                given period, call the continuation with an error code
74  * @param cont function to call when done
75  * @param cont_cls closure for cont
76  */
77 struct GNUNET_FS_TEST_ConnectContext *
78 GNUNET_FS_TEST_daemons_connect (struct GNUNET_FS_TestDaemon *daemon1,
79                                 struct GNUNET_FS_TestDaemon *daemon2,
80                                 struct GNUNET_TIME_Relative timeout,
81                                 GNUNET_SCHEDULER_Task cont, void *cont_cls);
82
83
84 /**
85  * Cancel connect operation.
86  *
87  * @param cc operation to cancel
88  */
89 void
90 GNUNET_FS_TEST_daemons_connect_cancel (struct GNUNET_FS_TEST_ConnectContext
91                                        *cc);
92
93
94 /**
95  * Obtain peer group used for testing.
96  *
97  * @param daemons array with the daemons (must contain at least one)
98  * @return peer group
99  */
100 struct GNUNET_TESTING_PeerGroup *
101 GNUNET_FS_TEST_get_group (struct GNUNET_FS_TestDaemon **daemons);
102
103
104
105 /**
106  * Obtain peer configuration used for testing.
107  *
108  * @param daemons array with the daemons
109  * @param off which configuration to get
110  * @return peer configuration
111  */
112 const struct GNUNET_CONFIGURATION_Handle *
113 GNUNET_FS_TEST_get_configuration (struct GNUNET_FS_TestDaemon **daemons,
114                                   unsigned int off);
115
116 /**
117  * Stop daemons used for testing.
118  *
119  * @param total number of daemons to stop
120  * @param daemons array with the daemons (values will be clobbered)
121  */
122 void
123 GNUNET_FS_TEST_daemons_stop (unsigned int total,
124                              struct GNUNET_FS_TestDaemon **daemons);
125
126
127 /**
128  * Function signature.
129  *
130  * @param cls closure (user defined)
131  * @param uri a URI, NULL for errors
132  */
133 typedef void (*GNUNET_FS_TEST_UriContinuation) (void *cls,
134                                                 const struct GNUNET_FS_Uri *
135                                                 uri);
136
137
138 /**
139  * Publish a file at the given daemon.
140  *
141  * @param daemon where to publish
142  * @param timeout if this operation cannot be completed within the
143  *                given period, call the continuation with an error code
144  * @param anonymity option for publication
145  * @param do_index GNUNET_YES for index, GNUNET_NO for insertion,
146  *                GNUNET_SYSERR for simulation
147  * @param size size of the file to publish
148  * @param seed seed to use for file generation
149  * @param verbose how verbose to be in reporting
150  * @param cont function to call when done
151  * @param cont_cls closure for cont
152  */
153 void
154 GNUNET_FS_TEST_publish (struct GNUNET_FS_TestDaemon *daemon,
155                         struct GNUNET_TIME_Relative timeout, uint32_t anonymity,
156                         int do_index, uint64_t size, uint32_t seed,
157                         unsigned int verbose,
158                         GNUNET_FS_TEST_UriContinuation cont, void *cont_cls);
159
160
161 /**
162  * Perform test download.
163  *
164  * @param daemon which peer to download from
165  * @param timeout if this operation cannot be completed within the
166  *                given period, call the continuation with an error code
167  * @param anonymity option for download
168  * @param seed used for file validation
169  * @param uri URI of file to download (CHK/LOC only)
170  * @param verbose how verbose to be in reporting
171  * @param cont function to call when done
172  * @param cont_cls closure for cont
173  */
174 void
175 GNUNET_FS_TEST_download (struct GNUNET_FS_TestDaemon *daemon,
176                          struct GNUNET_TIME_Relative timeout,
177                          uint32_t anonymity, uint32_t seed,
178                          const struct GNUNET_FS_Uri *uri, unsigned int verbose,
179                          GNUNET_SCHEDULER_Task cont, void *cont_cls);
180
181
182
183 #endif