-fixed memory leak
[oweals/gnunet.git] / src / lockmanager / test_lockmanager_api.c
1 /*
2      This file is part of GNUnet.
3      (C) 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 2, 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 lockmanager/test_lockmanager_api.c
23  * @brief Test cases for lockmanager_api.c
24  * @author Sree Harsha Totakura
25  */
26
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_lockmanager_service.h"
30
31 #define VERBOSE 1
32
33 #define VERBOSE_ARM 1
34
35 #define LOG(kind,...) \
36   GNUNET_log_from (kind, "test-lockmanager-api",__VA_ARGS__)
37
38 #define TIME_REL_SECONDS(min) \
39   GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, min)
40
41 /**
42  * The testing result
43  */
44 static int result;
45
46 /**
47  * The process id of the GNUNET ARM process
48  */
49 static struct GNUNET_OS_Process *arm_pid = NULL;
50
51 /**
52  * Configuration Handle
53  */
54 static struct GNUNET_CONFIGURATION_Handle *config;
55
56 /**
57  * The handle to the lockmanager service
58  */
59 static struct GNUNET_LOCKMANAGER_Handle *handle;
60
61 /**
62  * The locking request
63  */
64 static struct GNUNET_LOCKMANAGER_LockingRequest *request;
65
66 /**
67  * Abort task identifier
68  */
69 static GNUNET_SCHEDULER_TaskIdentifier abort_task_id;
70
71 /**
72  * Shutdown nicely
73  *
74  * @param cls
75  * @param tc the task context
76  */
77 static void
78 do_shutdown (void *cls, const const struct GNUNET_SCHEDULER_TaskContext *tc)
79 {
80   if (GNUNET_SCHEDULER_NO_TASK != abort_task_id)
81     {
82       GNUNET_SCHEDULER_cancel (abort_task_id);
83       abort_task_id = GNUNET_SCHEDULER_NO_TASK;
84     }
85   
86   GNUNET_LOCKMANAGER_disconnect (handle);
87   if (0 != GNUNET_OS_process_kill (arm_pid, SIGTERM))
88     {
89       LOG (GNUNET_ERROR_TYPE_DEBUG,
90            "Kill gnunet-service-arm manually\n");
91     }
92   GNUNET_OS_process_wait (arm_pid);
93   GNUNET_OS_process_close (arm_pid);
94
95   if (NULL != config)
96     GNUNET_CONFIGURATION_destroy (config);
97
98   if (GNUNET_SYSERR != result)
99     result = GNUNET_OK;
100 }
101
102
103 /**
104  * Shutdown nicely
105  *
106  * @param cls
107  * @param tc the task context
108  */
109 static void
110 do_abort (void *cls, const const struct GNUNET_SCHEDULER_TaskContext *tc)
111 {
112   abort_task_id = GNUNET_SCHEDULER_NO_TASK;
113   result = GNUNET_SYSERR;
114   do_shutdown (cls, tc);
115 }
116
117 /**
118  * Callback for lock status changes
119  *
120  * @param cls the closure from GNUNET_LOCKMANAGER_lock call
121  *
122  * @param domain_name the locking domain of the lock 
123  *
124  * @param lock the lock for which this status is relevant
125  *
126  * @param status GNUNET_LOCKMANAGER_SUCCESS if the lock has been successfully
127  *          acquired; GNUNET_LOCKMANAGER_RELEASE when the acquired lock is lost
128  */
129 static void 
130 status_cb (void *cls,
131            const char *domain_name,
132            uint32_t lock,
133            enum GNUNET_LOCKMANAGER_Status status)
134 {
135   if (NULL != request)
136     {
137       GNUNET_LOCKMANAGER_cancel_request (request);
138       request = NULL;
139     }
140   GNUNET_SCHEDULER_add_delayed (TIME_REL_SECONDS (1),
141                                 &do_shutdown,
142                                 NULL);
143 }
144
145
146 /**
147  * Testing function
148  *
149  * @param cls NULL
150  * @param tc the task context
151  */
152 static void
153 test (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
154 {  
155   handle = GNUNET_LOCKMANAGER_connect (config);
156   GNUNET_assert (NULL != handle);
157   
158   request = GNUNET_LOCKMANAGER_acquire_lock (handle,
159                                              "GNUNET_LOCKMANAGER_TESTING",
160                                              99,
161                                              &status_cb,
162                                              NULL);
163   abort_task_id = GNUNET_SCHEDULER_add_delayed (TIME_REL_SECONDS (10),
164                                                 &do_abort,
165                                                 NULL);
166 }
167
168
169 /**
170  * Main point of test execution
171  */
172 static void
173 run (void *cls, char *const *args, const char *cfgfile,
174      const struct GNUNET_CONFIGURATION_Handle *cfg)
175 {
176   config = GNUNET_CONFIGURATION_dup (cfg);
177   arm_pid = 
178     GNUNET_OS_start_process (GNUNET_YES, NULL, NULL, "gnunet-service-arm",
179                              "gnunet-service-arm",
180 #if VERBOSE_ARM
181                              "-L", "DEBUG",
182 #endif
183                              "-c", "test_lockmanager_api.conf", NULL);
184
185   GNUNET_assert (NULL != arm_pid);
186   GNUNET_SCHEDULER_add_delayed (TIME_REL_SECONDS (1),
187                                 &test,
188                                 NULL);
189 }
190
191
192 /**
193  * Main function
194  */
195 int main (int argc, char **argv)
196 {
197   int ret;
198
199   char *const argv2[] = { "test-lockmanager-api",
200                           "-c", "test_lockmanager_api.conf",
201 #if VERBOSE
202                           "-L", "DEBUG",
203 #endif
204                           NULL
205   };
206   
207   struct GNUNET_GETOPT_CommandLineOption options[] = {
208     GNUNET_GETOPT_OPTION_END
209   };
210
211   ret =
212     GNUNET_PROGRAM_run ((sizeof (argv2) / sizeof (char *)) - 1, argv2,
213                         "test-lockmanager-api", "nohelp", options, &run, NULL);
214
215   if (GNUNET_OK != ret)
216   {
217     LOG (GNUNET_ERROR_TYPE_WARNING, "run failed with error code %d\n",
218          ret);
219     return 1;
220   }
221   if (GNUNET_SYSERR == result)
222   {
223     LOG (GNUNET_ERROR_TYPE_WARNING, "test failed\n");
224     return 1;
225   }
226   LOG (GNUNET_ERROR_TYPE_INFO, "test ok\n");
227   return 0;
228 }