aboutsummaryrefslogtreecommitdiff
path: root/src/lockmanager/test_lockmanager_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lockmanager/test_lockmanager_api.c')
-rw-r--r--src/lockmanager/test_lockmanager_api.c141
1 files changed, 141 insertions, 0 deletions
diff --git a/src/lockmanager/test_lockmanager_api.c b/src/lockmanager/test_lockmanager_api.c
new file mode 100644
index 000000000..144f7b43c
--- /dev/null
+++ b/src/lockmanager/test_lockmanager_api.c
@@ -0,0 +1,141 @@
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 */
44static int result;
45
46/**
47 * The process id of the GNUNET ARM process
48 */
49static struct GNUNET_OS_Process *arm_pid = NULL;
50
51/**
52 * Configuration Handle
53 */
54struct GNUNET_CONFIGURATION_Handle *config;
55
56/**
57 * Testing function
58 *
59 * @param cls NULL
60 * @param tc the task context
61 */
62static void
63test (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
64{
65 struct GNUNET_LOCKMANAGER_Handle *handle;
66
67 handle = GNUNET_LOCKMANAGER_connect (config);
68 GNUNET_assert (NULL != handle);
69
70 GNUNET_LOCKMANAGER_disconnect (handle);
71 if (0 != GNUNET_OS_process_kill (arm_pid, SIGTERM))
72 {
73 LOG (GNUNET_ERROR_TYPE_DEBUG,
74 "Kill gnunet-service-arm manually\n");
75 }
76 GNUNET_OS_process_wait (arm_pid);
77 GNUNET_OS_process_close (arm_pid);
78 result = GNUNET_OK;
79}
80
81
82/**
83 * Main point of test execution
84 */
85static void
86run (void *cls, char *const *args, const char *cfgfile,
87 const struct GNUNET_CONFIGURATION_Handle *cfg)
88{
89 config = GNUNET_CONFIGURATION_dup (cfg);
90 arm_pid =
91 GNUNET_OS_start_process (GNUNET_YES, NULL, NULL, "gnunet-service-arm",
92 "gnunet-service-arm",
93#if VERBOSE_ARM
94 "-L", "DEBUG",
95#endif
96 "-c", "test_lockmanager_api.conf", NULL);
97
98 GNUNET_assert (NULL != arm_pid);
99 GNUNET_SCHEDULER_add_delayed (TIME_REL_SECONDS (1),
100 &test,
101 NULL);
102}
103
104
105/**
106 * Main function
107 */
108int main (int argc, char **argv)
109{
110 int ret;
111
112 char *const argv2[] = { "test-lockmanager-api",
113 "-c", "test_lockmanager_api.conf",
114#if VERBOSE
115 "-L", "DEBUG",
116#endif
117 NULL
118 };
119
120 struct GNUNET_GETOPT_CommandLineOption options[] = {
121 GNUNET_GETOPT_OPTION_END
122 };
123
124 ret =
125 GNUNET_PROGRAM_run ((sizeof (argv2) / sizeof (char *)) - 1, argv2,
126 "test-lockmanager-api", "nohelp", options, &run, NULL);
127
128 if (GNUNET_OK != ret)
129 {
130 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "run failed with error code %d\n",
131 ret);
132 return 1;
133 }
134 if (GNUNET_SYSERR == result)
135 {
136 GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "test failed\n");
137 return 1;
138 }
139 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "test ok\n");
140 return 0;
141}