-rasp pi redefines slow
[oweals/gnunet.git] / src / namestore / test_namestore_api_put.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 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 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 #include "gnunet_testing_lib-new.h"
28 #include "namestore.h"
29
30 #define RECORDS 5
31
32 #define TEST_RECORD_TYPE 1234
33
34 #define TEST_RECORD_DATALEN 123
35
36 #define TEST_RECORD_DATA 'a'
37
38 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
39
40
41 static struct GNUNET_NAMESTORE_Handle * nsh;
42
43 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
44
45 static struct GNUNET_CRYPTO_RsaPrivateKey * privkey;
46
47 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pubkey;
48
49 static struct GNUNET_NAMESTORE_RecordData *s_rd;
50
51 static int res;
52
53
54 /**
55  * Re-establish the connection to the service.
56  *
57  * @param cls handle to use to re-connect.
58  * @param tc scheduler context
59  */
60 static void
61 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
62 {
63   if (nsh != NULL)
64     GNUNET_NAMESTORE_disconnect (nsh);
65   nsh = NULL;
66
67   if (privkey != NULL)
68   {
69     GNUNET_CRYPTO_rsa_key_free (privkey);
70     privkey = NULL;
71   }
72   GNUNET_SCHEDULER_shutdown ();
73   res = 1;
74 }
75
76
77 static void
78 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
79 {
80   if (endbadly_task != GNUNET_SCHEDULER_NO_TASK)
81   {
82     GNUNET_SCHEDULER_cancel (endbadly_task);
83     endbadly_task = GNUNET_SCHEDULER_NO_TASK;
84   }
85
86   if (privkey != NULL)
87   {
88     GNUNET_CRYPTO_rsa_key_free (privkey);
89     privkey = NULL;
90   }
91   if (nsh != NULL)
92   {
93     GNUNET_NAMESTORE_disconnect (nsh);
94     nsh = NULL;
95   }
96 }
97
98
99 static void
100 put_cont (void *cls, int32_t success, const char *emsg)
101 {
102   const char * name = cls;
103
104   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
105               "Name store added record for `%s': %s\n", 
106               name, (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
107   if (success == GNUNET_OK)
108     res = 0;
109   else
110     res = 1;
111   GNUNET_SCHEDULER_add_now (&end, NULL);
112 }
113
114
115 static struct GNUNET_NAMESTORE_RecordData *
116 create_record (unsigned int count)
117 {
118   unsigned int c;
119   struct GNUNET_NAMESTORE_RecordData * rd;
120
121   rd = GNUNET_malloc (count * sizeof (struct GNUNET_NAMESTORE_RecordData));
122   for (c = 0; c < count; c++)
123   {
124     rd[c].expiration_time = GNUNET_TIME_absolute_get().abs_value;
125     rd[c].record_type = TEST_RECORD_TYPE;
126     rd[c].data_size = TEST_RECORD_DATALEN;
127     rd[c].data = GNUNET_malloc(TEST_RECORD_DATALEN);
128     memset ((char *) rd[c].data, TEST_RECORD_DATA, TEST_RECORD_DATALEN);
129   }
130   return rd;
131 }
132
133
134 static void
135 run (void *cls, 
136      const struct GNUNET_CONFIGURATION_Handle *cfg,
137      struct GNUNET_TESTING_Peer *peer)
138 {
139   struct GNUNET_CRYPTO_RsaSignature *signature;
140   const char * s_name = "dummy.dummy.gnunet";
141   int c;
142   char *hostkey_file;
143   struct GNUNET_TIME_Absolute et;
144
145   endbadly_task = GNUNET_SCHEDULER_add_delayed(TIMEOUT,endbadly, NULL);
146   /* load privat key */
147   GNUNET_asprintf(&hostkey_file,"zonefiles%s%s",DIR_SEPARATOR_STR,
148       "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
149   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
150   privkey = GNUNET_CRYPTO_rsa_key_create_from_file(hostkey_file);
151   GNUNET_assert (privkey != NULL);
152   GNUNET_free (hostkey_file);
153   /* get public key */
154   GNUNET_CRYPTO_rsa_key_get_public(privkey, &pubkey);
155   nsh = GNUNET_NAMESTORE_connect (cfg);
156   GNUNET_break (NULL != nsh);
157   /* create record */
158   s_rd = create_record (RECORDS);
159   et.abs_value = s_rd[0].expiration_time;
160   signature = GNUNET_NAMESTORE_create_signature(privkey, et, s_name, s_rd, RECORDS);
161   GNUNET_break (s_rd != NULL);
162   GNUNET_break (s_name != NULL);
163   GNUNET_NAMESTORE_record_put (nsh, &pubkey, s_name,
164                                GNUNET_TIME_UNIT_FOREVER_ABS,
165                                RECORDS, s_rd, signature, &put_cont, (void*)  s_name);
166   GNUNET_free (signature);
167   for (c = 0; c < RECORDS; c++)
168     GNUNET_free_non_null((void *) s_rd[c].data);
169   GNUNET_free (s_rd);
170 }
171
172
173 int
174 main (int argc, char *argv[])
175 {
176   res = 1;
177   if (0 != GNUNET_TESTING_service_run ("test-namestore-api-put",
178                                        "namestore",
179                                        "test_namestore_api.conf",
180                                        &run,
181                                        NULL))
182     return 1;
183   return res;
184 }
185
186 /* end of test_namestore_api_put.c */