- Clarify doxygen
[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
130
131 /**
132  * Configure a GNUnet peer.  GNUnet must be installed on the local
133  * system and available in the PATH. 
134  *
135  * @param system system to use to coordinate resource usage
136  * @param cfg configuration to use; will be UPDATED (to reflect needed
137  *            changes in port numbers and paths)
138  * @param key_number number of the hostkey to use for the peer
139  * @param id identifier for the daemon, will be set, can be NULL
140  * @param emsg set to error message (set to NULL on success), can be NULL
141  * @return handle to the peer, NULL on error
142  */
143 struct GNUNET_TESTING_Peer *
144 GNUNET_TESTING_peer_configure (struct GNUNET_TESTING_System *system,
145                                struct GNUNET_CONFIGURATION_Handle *cfg,
146                                uint32_t key_number,
147                                struct GNUNET_PeerIdentity *id,
148                                char **emsg);
149
150
151 /**
152  * Start the peer. 
153  *
154  * @param peer peer to start
155  * @return GNUNET_OK on success, GNUNET_SYSERR on error (i.e. peer already running)
156  */
157 int
158 GNUNET_TESTING_peer_start (struct GNUNET_TESTING_Peer *peer);
159
160
161 /**
162  * Stop the peer. 
163  *
164  * @param peer peer to stop
165  * @return GNUNET_OK on success, GNUNET_SYSERR on error (i.e. peer not running)
166  */
167 int
168 GNUNET_TESTING_peer_stop (struct GNUNET_TESTING_Peer *peer);
169
170
171 /**
172  * Destroy the peer.  Releases resources locked during peer configuration.
173  * If the peer is still running, it will be stopped AND a warning will be
174  * printed (users of the API should stop the peer explicitly first).
175  *
176  * @param peer peer to destroy
177  */
178 void
179 GNUNET_TESTING_peer_destroy (struct GNUNET_TESTING_Peer *peer);
180
181
182 /**
183  * Signature of the 'main' function for a (single-peer) testcase that
184  * is run using 'GNUNET_TESTING_peer_run'.
185  * 
186  * @param cls closure
187  * @param cfg configuration of the peer that was started
188  */
189 typedef void (*GNUNET_TESTING_TestMain)(void *cls,
190                                         const struct GNUNET_CONFIGURATION_Handle *cfg);
191
192
193 /**
194  * Start a single peer and run a test using the testing library.
195  * Starts a peer using the given configuration and then invokes the
196  * given callback.  This function ALSO initializes the scheduler loop
197  * and should thus be called directly from "main".  The testcase
198  * should self-terminate by invoking 'GNUNET_SCHEDULER_shutdown'.
199  *
200  * @param tmppath path for storing temporary data for the test
201  * @param cfgfilename name of the configuration file to use;
202  *         use NULL to only run with defaults
203  * @param tm main function of the testcase
204  * @param tm_cls closure for 'tm'
205  * @return 0 on success, 1 on error
206  */
207 int
208 GNUNET_TESTING_peer_run (const char *tmppath,
209                          const char *cfgfilename,
210                          GNUNET_TESTING_TestMain tm,
211                          void *tm_cls);
212
213
214
215 /**
216  * Start a single service (no ARM, except of course if the given
217  * service name is 'arm') and run a test using the testing library.
218  * Starts a service using the given configuration and then invokes the
219  * given callback.  This function ALSO initializes the scheduler loop
220  * and should thus be called directly from "main".  The testcase
221  * should self-terminate by invoking 'GNUNET_SCHEDULER_shutdown'.
222  *
223  * This function is useful if the testcase is for a single service
224  * and if that service doesn't itself depend on other services.
225  *
226  * @param tmppath path for storing temporary data for the test
227  * @param service_name name of the service to run
228  * @param cfgfilename name of the configuration file to use;
229  *         use NULL to only run with defaults
230  * @param tm main function of the testcase
231  * @param tm_cls closure for 'tm'
232  * @return 0 on success, 1 on error
233  */
234 int
235 GNUNET_TESTING_service_run (const char *tmppath,
236                             const char *service_name,
237                             const char *cfgfilename,
238                             GNUNET_TESTING_TestMain tm,
239                             void *tm_cls);
240
241
242
243 #if 0                           /* keep Emacsens' auto-indent happy */
244 {
245 #endif
246 #ifdef __cplusplus
247 }
248 #endif
249
250 #endif