aboutsummaryrefslogtreecommitdiff
path: root/src/identity/test_identity.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-07-16 15:09:28 +0000
committerChristian Grothoff <christian@grothoff.org>2013-07-16 15:09:28 +0000
commit4064deedf4ee722ba8adab7fd3030cea3e20297e (patch)
treedc4cd66e55a48966b9ff5cab80fb18af10293caf /src/identity/test_identity.c
parent40d01d900dd900d3cb8f902d6895e43ee74d6bb9 (diff)
downloadgnunet-4064deedf4ee722ba8adab7fd3030cea3e20297e.tar.gz
gnunet-4064deedf4ee722ba8adab7fd3030cea3e20297e.zip
-towards testing identity service
Diffstat (limited to 'src/identity/test_identity.c')
-rw-r--r--src/identity/test_identity.c203
1 files changed, 203 insertions, 0 deletions
diff --git a/src/identity/test_identity.c b/src/identity/test_identity.c
new file mode 100644
index 000000000..3712da3bd
--- /dev/null
+++ b/src/identity/test_identity.c
@@ -0,0 +1,203 @@
1/*
2 This file is part of GNUnet.
3 (C) 2013 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 identity/test_identity.c
23 * @brief testcase for identity service
24 * @author Christian Grothoff
25 */
26#include "platform.h"
27#include "gnunet_common.h"
28#include "gnunet_util_lib.h"
29#include "gnunet_identity_service.h"
30#include "gnunet_testing_lib.h"
31
32
33#define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
34
35
36/**
37 * Return value from 'main'.
38 */
39static int res;
40
41/**
42 * Handle to identity service.
43 */
44static struct GNUNET_IDENTITY_Handle *h;
45
46/**
47 * Handle to identity operation.
48 */
49static struct GNUNET_IDENTITY_Operation *op;
50
51/**
52 * Handle for task for timeout termination.
53 */
54static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
55
56
57/**
58 * Clean up all resources used.
59 */
60static void
61cleanup ()
62{
63 if (NULL != h)
64 {
65 GNUNET_IDENTITY_disconnect (h);
66 h = NULL;
67 }
68 if (NULL != op)
69 {
70 GNUNET_IDENTITY_cancel (op);
71 op = NULL;
72 }
73 GNUNET_SCHEDULER_shutdown ();
74}
75
76
77/**
78 * Termiante the testcase (failure).
79 *
80 * @param cls NULL
81 * @param tc scheduler context
82 */
83static void
84endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
85{
86 cleanup ();
87 res = 1;
88}
89
90
91/**
92 * Termiante the testcase (success).
93 *
94 * @param cls NULL
95 * @param tc scheduler context
96 */
97static void
98end_normally (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
99{
100 cleanup ();
101 res = 0;
102}
103
104
105/**
106 * Finish the testcase (successfully).
107 */
108static void
109end ()
110{
111 if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
112 {
113 GNUNET_SCHEDULER_cancel (endbadly_task);
114 endbadly_task = GNUNET_SCHEDULER_NO_TASK;
115 }
116 GNUNET_SCHEDULER_add_now (&end, NULL);
117}
118
119
120/**
121 * Called with events about egos.
122 *
123 * @param cls NULL
124 * @param ego ego handle
125 * @param ego_ctx context for application to store data for this ego
126 * (during the lifetime of this process, initially NULL)
127 * @param identifier identifier assigned by the user for this ego,
128 * NULL if the user just deleted the ego and it
129 * must thus no longer be used
130 */
131static void
132notification_cb (void *cls,
133 struct GNUNET_IDENTITY_Ego *ego,
134 void **ctx,
135 const char *identifier)
136{
137}
138
139
140/**
141 * Called with events about created ego.
142 *
143 * @param cls NULL
144 * @param ego ego handle
145 * @param ego_ctx context for application to store data for this ego
146 * (during the lifetime of this process, initially NULL)
147 * @param identifier identifier assigned by the user for this ego,
148 * NULL if the user just deleted the ego and it
149 * must thus no longer be used
150 */
151static void
152create_cb (void *cls,
153 struct GNUNET_IDENTITY_Ego *ego,
154 void **ctx,
155 const char *identifier)
156{
157 op = NULL;
158 end (); /* yepee */
159}
160
161
162
163/**
164 * Main function of the test, run from scheduler.
165 *
166 * @param cls NULL
167 * @param cfg configuration we use (also to connect to identity service)
168 * @param peer handle to access more of the peer (not used)
169 */
170static void
171run (void *cls,
172 const struct GNUNET_CONFIGURATION_Handle *cfg,
173 struct GNUNET_TESTING_Peer *peer)
174{
175 endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
176 &endbadly, NULL);
177 h = GNUNET_IDENTITY_connect (cfg, &notification_cb, NULL);
178 op = GNUNET_IDENTITY_create (h,
179 "test-id",
180 &create_cb,
181 NULL);
182
183}
184
185
186
187
188int
189main (int argc, char *argv[])
190{
191 res = 1;
192 if (0 !=
193 GNUNET_TESTING_service_run ("test-identity",
194 "identity",
195 "test_identity.conf",
196 &run,
197 NULL))
198 return 1;
199 return res;
200}
201
202
203/* end of test_identity.c */