handling replies continuously from server
[oweals/gnunet.git] / src / include / gnunet_testing_lib-new.h
1 /*
2       This file is part of GNUnet
3       (C) 2008, 2009, 2012 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 include/gnunet_testing_lib-new.h
23  * @brief convenience API for writing testcases for GNUnet;
24  *        can start/stop one or more peers on a system;
25  *        testing is responsible for managing private keys,
26  *        ports and paths; it is a low-level library that
27  *        does not support higher-level functions such as
28  *        P2P connection, topology management or distributed
29  *        testbed maintenance (those are in gnunet_testbed_service.h)
30  * @author Christian Grothoff
31  */
32
33 #ifndef GNUNET_TESTING_LIB_NEW_H
34 #define GNUNET_TESTING_LIB_NEW_H
35
36 #include "gnunet_util_lib.h"
37 #include "gnunet_statistics_service.h"
38
39 #ifdef __cplusplus
40 extern "C"
41 {
42 #if 0                           /* keep Emacsens' auto-indent happy */
43 }
44 #endif
45 #endif
46
47
48 /**
49  * Handle for a system on which GNUnet peers are executed;
50  * a system is used for reserving unique paths and ports.
51  */
52 struct GNUNET_TESTING_System;
53
54
55 /**
56  * Handle for a GNUnet peer controlled by testing.
57  */
58 struct GNUNET_TESTING_Peer;
59
60
61 /**
62  * Create a system handle.  There must only be one system
63  * handle per operating system.
64  *
65  * @param tmppath prefix path to use for all service homes
66  * @param controller hostname of the controlling host, 
67  *        service configurations are modified to allow 
68  *        control connections from this host; can be NULL
69  * @return handle to this system, NULL on error
70  */
71 struct GNUNET_TESTING_System *
72 GNUNET_TESTING_system_create (const char *tmppath,
73                               const char *controller);
74
75
76 /**
77  * Free system resources.
78  *
79  * @param system system to be freed
80  * @param remove_paths should the 'tmppath' and all subdirectories
81  *        be removed (clean up on shutdown)?
82  */
83 void
84 GNUNET_TESTING_system_destroy (struct GNUNET_TESTING_System *system,
85                                int remove_paths);
86
87
88 /**
89  * Testing includes a number of pre-created hostkeys for
90  * faster peer startup.  This function can be used to
91  * access the n-th key of those pre-created hostkeys; note
92  * that these keys are ONLY useful for testing and not
93  * secure as the private keys are part of the public 
94  * GNUnet source code.
95  *
96  * This is primarily a helper function used internally
97  * by 'GNUNET_TESTING_peer_configure'.
98  *
99  * @param key_number desired pre-created hostkey to obtain
100  * @param filename where to store the hostkey (file will
101  *        be created, or overwritten if it already exists)
102  * @param id set to the peer's identity (hash of the public
103  *        key; can be NULL
104  * @return GNUNET_SYSERR on error (not enough keys)
105  */
106 int
107 GNUNET_TESTING_hostkey_get (uint32_t key_number,
108                             const char *filename,
109                             struct GNUNET_PeerIdentity *id);
110
111
112
113 /**
114  * Create a new configuration using the given configuration
115  * as a template; ports and paths will be modified to select
116  * available ports on the local system.  If we run
117  * out of "*port" numbers, return SYSERR.
118  *
119  * This is primarily a helper function used internally
120  * by 'GNUNET_TESTING_peer_configure'.
121  *
122  * @param system system to use to coordinate resource usage
123  * @param cfg template configuration to update
124  * @return GNUNET_OK on success, GNUNET_SYSERR on error
125  */
126 int
127 GNUNET_TESTING_configuration_create (struct GNUNET_TESTING_System *system,
128                                      struct GNUNET_CONFIGURATION_Handle *cfg);
129 // FIXME: add dual to 'release' ports again...
130
131
132 /**
133  * Configure a GNUnet peer.  GNUnet must be installed on the local
134  * system and available in the PATH. 
135  *
136  * @param system system to use to coordinate resource usage
137  * @param cfg configuration to use; will be UPDATED (to reflect needed
138  *            changes in port numbers and paths)
139  * @param key_number number of the hostkey to use for the peer
140  * @param id identifier for the daemon, will be set, can be NULL
141  * @param emsg set to error message (set to NULL on success), can be NULL
142  * @return handle to the peer, NULL on error
143  */
144 struct GNUNET_TESTING_Peer *
145 GNUNET_TESTING_peer_configure (struct GNUNET_TESTING_System *system,
146                                struct GNUNET_CONFIGURATION_Handle *cfg,
147                                uint32_t key_number,
148                                struct GNUNET_PeerIdentity *id,
149                                char **emsg);
150
151
152 /**
153  * Start the peer. 
154  *
155  * @param peer peer to start
156  * @return GNUNET_OK on success, GNUNET_SYSERR on error (i.e. peer already running)
157  */
158 int
159 GNUNET_TESTING_peer_start (struct GNUNET_TESTING_Peer *peer);
160
161
162 /**
163  * Stop the peer. 
164  *
165  * @param peer peer to stop
166  * @return GNUNET_OK on success, GNUNET_SYSERR on error (i.e. peer not running)
167  */
168 int
169 GNUNET_TESTING_peer_stop (struct GNUNET_TESTING_Peer *peer);
170
171
172 /**
173  * Destroy the peer.  Releases resources locked during peer configuration.
174  * If the peer is still running, it will be stopped AND a warning will be
175  * printed (users of the API should stop the peer explicitly first).
176  *
177  * @param peer peer to destroy
178  */
179 void
180 GNUNET_TESTING_peer_destroy (struct GNUNET_TESTING_Peer *peer);
181
182
183 /**
184  * Signature of the 'main' function for a (single-peer) testcase that
185  * is run using 'GNUNET_TESTING_peer_run'.
186  * 
187  * @param cls closure
188  * @param cfg configuration of the peer that was started
189  */
190 typedef void (*GNUNET_TESTING_TestMain)(void *cls,
191                                         const struct GNUNET_CONFIGURATION_Handle *cfg);
192
193
194 /**
195  * Start a single peer and run a test using the testing library.
196  * Starts a peer using the given configuration and then invokes the
197  * given callback.  This function ALSO initializes the scheduler loop
198  * and should thus be called directly from "main".  The testcase
199  * should self-terminate by invoking 'GNUNET_SCHEDULER_shutdown'.
200  *
201  * @param tmppath path for storing temporary data for the test
202  * @param cfgfilename name of the configuration file to use;
203  *         use NULL to only run with defaults
204  * @param tm main function of the testcase
205  * @param tm_cls closure for 'tm'
206  * @return 0 on success, 1 on error
207  */
208 int
209 GNUNET_TESTING_peer_run (const char *tmppath,
210                          const char *cfgfilename,
211                          GNUNET_TESTING_TestMain tm,
212                          void *tm_cls);
213
214
215
216 /**
217  * Start a single service (no ARM, except of course if the given
218  * service name is 'arm') and run a test using the testing library.
219  * Starts a service using the given configuration and then invokes the
220  * given callback.  This function ALSO initializes the scheduler loop
221  * and should thus be called directly from "main".  The testcase
222  * should self-terminate by invoking 'GNUNET_SCHEDULER_shutdown'.
223  *
224  * This function is useful if the testcase is for a single service
225  * and if that service doesn't itself depend on other services.
226  *
227  * @param tmppath path for storing temporary data for the test
228  * @param service_name name of the service to run
229  * @param cfgfilename name of the configuration file to use;
230  *         use NULL to only run with defaults
231  * @param tm main function of the testcase
232  * @param tm_cls closure for 'tm'
233  * @return 0 on success, 1 on error
234  */
235 int
236 GNUNET_TESTING_service_run (const char *tmppath,
237                             const char *service_name,
238                             const char *cfgfilename,
239                             GNUNET_TESTING_TestMain tm,
240                             void *tm_cls);
241
242
243
244 #if 0                           /* keep Emacsens' auto-indent happy */
245 {
246 #endif
247 #ifdef __cplusplus
248 }
249 #endif
250
251 #endif