- Tests did not clean up: TEST_HOME with namestore db was not removed after test
[oweals/gnunet.git] / src / namestore / test_namestore_api_store.c
1 /*
2      This file is part of GNUnet.
3      (C) 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_store.c
22  * @brief testcase for namestore_api.c: store a record
23  */
24 #include "platform.h"
25 #include "gnunet_namestore_service.h"
26 #include "gnunet_testing_lib.h"
27
28 #define TEST_RECORD_TYPE 1234
29
30 #define TEST_RECORD_DATALEN 123
31
32 #define TEST_RECORD_DATA 'a'
33
34 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
35
36
37 static struct GNUNET_NAMESTORE_Handle *nsh;
38
39 static GNUNET_SCHEDULER_TaskIdentifier endbadly_task;
40
41 static struct GNUNET_CRYPTO_EcdsaPrivateKey *privkey;
42
43 static struct GNUNET_CRYPTO_EcdsaPublicKey pubkey;
44
45 static int res;
46
47 static struct GNUNET_NAMESTORE_QueueEntry *nsqe;
48
49 static char *directory;
50
51 static void
52 cleanup ()
53 {
54   if (NULL != nsh)
55   {
56     GNUNET_NAMESTORE_disconnect (nsh);
57     nsh = NULL;
58   }
59   if (NULL != privkey)
60   {
61     GNUNET_free (privkey);
62     privkey = NULL;
63   }
64   if (NULL != directory)
65   {
66       GNUNET_DISK_directory_remove (directory);
67       GNUNET_free (directory);
68   }
69   GNUNET_SCHEDULER_shutdown ();
70 }
71
72
73 /**
74  * Re-establish the connection to the service.
75  *
76  * @param cls handle to use to re-connect.
77  * @param tc scheduler context
78  */
79 static void
80 endbadly (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
81 {
82   if (NULL != nsqe)
83   {
84     GNUNET_NAMESTORE_cancel (nsqe);
85     nsqe = NULL;
86   }
87   cleanup ();
88   res = 1;
89 }
90
91
92 static void
93 end (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
94 {
95   cleanup ();
96   res = 0;
97 }
98
99
100 static void
101 put_cont (void *cls, int32_t success, const char *emsg)
102 {
103   const char *name = cls;
104
105   nsqe = NULL;
106   GNUNET_assert (NULL != cls);
107   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
108               "Name store added record for `%s': %s\n",
109               name,
110               (success == GNUNET_OK) ? "SUCCESS" : "FAIL");
111   GNUNET_SCHEDULER_cancel (endbadly_task);
112   endbadly_task = GNUNET_SCHEDULER_NO_TASK;
113   GNUNET_SCHEDULER_add_now (&end, NULL);
114 }
115
116
117 static void
118 run (void *cls,
119      const struct GNUNET_CONFIGURATION_Handle *cfg,
120      struct GNUNET_TESTING_Peer *peer)
121 {
122   struct GNUNET_GNSRECORD_Data rd;
123   char *hostkey_file;
124   const char * name = "dummy.dummy.gnunet";
125
126   directory = NULL;
127   GNUNET_CONFIGURATION_get_value_string(cfg, "PATHS", "GNUNET_TEST_HOME", &directory);
128
129   endbadly_task = GNUNET_SCHEDULER_add_delayed (TIMEOUT,
130                                                 &endbadly, NULL);
131   GNUNET_asprintf (&hostkey_file,
132                    "zonefiles%s%s",
133                    DIR_SEPARATOR_STR,
134                    "N0UJMP015AFUNR2BTNM3FKPBLG38913BL8IDMCO2H0A1LIB81960.zkey");
135   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Using zonekey file `%s' \n", hostkey_file);
136   privkey = GNUNET_CRYPTO_ecdsa_key_create_from_file (hostkey_file);
137   GNUNET_free (hostkey_file);
138   GNUNET_assert (privkey != NULL);
139   GNUNET_CRYPTO_ecdsa_key_get_public (privkey, &pubkey);
140
141
142   rd.expiration_time = GNUNET_TIME_absolute_get().abs_value_us;
143   rd.record_type = TEST_RECORD_TYPE;
144   rd.data_size = TEST_RECORD_DATALEN;
145   rd.data = GNUNET_malloc (TEST_RECORD_DATALEN);
146   rd.flags = 0;
147   memset ((char *) rd.data, 'a', TEST_RECORD_DATALEN);
148
149   nsh = GNUNET_NAMESTORE_connect (cfg);
150   GNUNET_break (NULL != nsh);
151   nsqe = GNUNET_NAMESTORE_records_store (nsh, privkey, name,
152                                       1, &rd, &put_cont, (void *) name);
153   if (NULL == nsqe)
154   {
155     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
156               _("Namestore cannot store no block\n"));
157   }
158
159   GNUNET_free ((void *)rd.data);
160 }
161
162
163 int
164 main (int argc, char *argv[])
165 {
166   res = 1;
167   if (0 !=
168       GNUNET_TESTING_peer_run ("test-namestore-api",
169                                "test_namestore_api.conf",
170                                &run,
171                                NULL))
172     return 1;
173   return res;
174 }
175
176
177 /* end of test_namestore_api_store.c */