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