-fix typos
[oweals/gnunet.git] / src / identity / test_identity.c
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  */
39 static int res;
40
41 /**
42  * Handle to identity service.
43  */
44 static struct GNUNET_IDENTITY_Handle *h;
45
46 /**
47  * Handle to identity operation.
48  */
49 static struct GNUNET_IDENTITY_Operation *op;
50
51 /**
52  * Handle for task for timeout termination.
53  */ 
54 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
55
56
57 /**
58  * Clean up all resources used.
59  */
60 static void
61 cleanup ()
62 {
63   if (NULL != op)
64   {
65     GNUNET_IDENTITY_cancel (op);
66     op = NULL;
67   }
68   if (NULL != h)
69   {
70     GNUNET_IDENTITY_disconnect (h);
71     h = 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  */
83 static void
84 endbadly (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  */
97 static void
98 end_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  */
108 static void 
109 end ()
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_normally, 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  */
131 static void
132 notification_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  */
151 static void
152 create_cb (void *cls,
153            struct GNUNET_IDENTITY_Ego *ego,
154            void **ctx,
155            const char *identifier)
156 {
157   op = NULL;
158   fprintf (stderr, "HERE!\n");
159   end (); /* yepee */
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  */
170 static void
171 run (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   GNUNET_assert (NULL != h);
179   op = GNUNET_IDENTITY_create (h,
180                                "test-id",
181                                &create_cb,
182                                NULL);
183   
184 }
185
186
187 int
188 main (int argc, char *argv[])
189 {
190   res = 1;
191   if (0 != 
192       GNUNET_TESTING_service_run ("test-identity",
193                                   "identity",
194                                   "test_identity.conf",
195                                   &run,
196                                   NULL))
197     return 1;
198   return res;
199 }
200
201
202 /* end of test_identity.c */