7310946b1932472e6400a9a4be8516b04dd73457
[oweals/gnunet.git] / src / namestore / test_namestore_api_put.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 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  * @file namestore/test_namestore_api.c
22  * @brief testcase for namestore_api.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_namestore_service.h"
27
28 #define VERBOSE GNUNET_NO
29
30 #define RECORDS 5
31 #define TEST_RECORD_TYPE 1234
32 #define TEST_RECORD_DATALEN 123
33 #define TEST_RECORD_DATA 'a'
34
35 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
36
37 static struct GNUNET_NAMESTORE_Handle * nsh;
38
39 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
40 static struct GNUNET_OS_Process *arm;
41
42 static struct GNUNET_CRYPTO_RsaPrivateKey * privkey;
43 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pubkey;
44
45 struct GNUNET_NAMESTORE_RecordData *rd;
46
47 static int res;
48
49 static void
50 start_arm (const char *cfgname)
51 {
52   arm = GNUNET_OS_start_process (GNUNET_YES, NULL, NULL, "gnunet-service-arm",
53                                "gnunet-service-arm", "-c", cfgname,
54 #if VERBOSE_PEERS
55                                "-L", "DEBUG",
56 #else
57                                "-L", "ERROR",
58 #endif
59                                NULL);
60 }
61
62 static void
63 stop_arm ()
64 {
65   if (NULL != arm)
66   {
67     if (0 != GNUNET_OS_process_kill (arm, SIGTERM))
68       GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
69     GNUNET_OS_process_wait (arm);
70     GNUNET_OS_process_close (arm);
71     arm = NULL;
72   }
73 }
74
75 /**
76  * Re-establish the connection to the service.
77  *
78  * @param cls handle to use to re-connect.
79  * @param tc scheduler context
80  */
81 static void
82 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
83 {
84   if (nsh != NULL)
85     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
86   nsh = NULL;
87
88   if (privkey != NULL)
89     GNUNET_CRYPTO_rsa_key_free (privkey);
90   privkey = NULL;
91
92   if (NULL != arm)
93     stop_arm();
94
95   res = 1;
96 }
97
98
99 static void
100 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
101 {
102   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
103   {
104     GNUNET_SCHEDULER_cancel (endbadly_task);
105     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
106   }
107
108   if (privkey != NULL)
109     GNUNET_CRYPTO_rsa_key_free (privkey);
110   privkey = NULL;
111
112   if (nsh != NULL)
113     GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
114   nsh = NULL;
115
116   if (NULL != arm)
117     stop_arm();
118 }
119
120 void
121 put_cont (void *cls, int32_t success, const char *emsg)
122 {
123   char * name = cls;
124
125   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Name store added record for `%s': %s\n", name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
126   if (success == GNUNET_OK)
127     res = 0;
128   else
129     res = 1;
130
131   GNUNET_SCHEDULER_add_now(&end, NULL);
132 }
133
134 static struct GNUNET_NAMESTORE_RecordData *
135 create_record (int count)
136 {
137   int c;
138   struct GNUNET_NAMESTORE_RecordData * rd;
139   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
140
141   for (c = 0; c < RECORDS; c++)
142   {
143   rd[c].expiration = GNUNET_TIME_absolute_get();
144   rd[c].record_type = TEST_RECORD_TYPE;
145   rd[c].data_size = TEST_RECORD_DATALEN;
146   rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
147   memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
148   }
149
150   return rd;
151 }
152
153 static void
154 run (void *cls, char *const *args, const char *cfgfile,
155      const struct GNUNET_CONFIGURATION_Handle *cfg)
156 {
157   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
158
159   /* load privat key */
160   privkey = GNUNET_CRYPTO_rsa_key_create_from_file("hostkey");
161   GNUNET_assert (privkey != NULL);
162   /* get public key */
163   GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
164
165   struct GNUNET_CRYPTO_RsaSignature signature;
166
167   start_arm (cfgfile);
168   GNUNET_assert (arm != NULL);
169
170   nsh = GNUNET_NAMESTORE_connect (cfg);
171   GNUNET_break (NULL != nsh);
172
173   /* create record */
174   char * name = "dummy.dummy.gnunet";
175   rd = create_record (RECORDS);
176
177   GNUNET_break (rd != NULL);
178   GNUNET_break (name != NULL);
179
180   GNUNET_NAMESTORE_record_put (nsh, &pubkey, name,
181                               GNUNET_TIME_absolute_get_forever(),
182                               RECORDS, rd, &signature, put_cont, name);
183
184   int c;
185   for (c = 0; c < RECORDS; c++)
186     GNUNET_free_non_null((void *) rd[c].data);
187   GNUNET_free (rd);
188
189 }
190
191 static int
192 check ()
193 {
194   static char *const argv[] = { "test-namestore-api",
195     "-c",
196     "test_namestore_api.conf",
197 #if VERBOSE
198     "-L", "DEBUG",
199 #endif
200     NULL
201   };
202   static struct GNUNET_GETOPT_CommandLineOption options[] = {
203     GNUNET_GETOPT_OPTION_END
204   };
205
206   res = 1;
207   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, "test-namestore-api",
208                       "nohelp", options, &run, &res);
209   return res;
210 }
211
212 int
213 main (int argc, char *argv[])
214 {
215   int ret;
216
217   ret = check ();
218
219   return ret;
220 }
221
222 /* end of test_namestore_api.c */