check for NULL
[oweals/gnunet.git] / src / fs / test_fs_namespace.c
1 /*
2      This file is part of GNUnet.
3      (C) 2005, 2006, 2008, 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 2, 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 fs/test_fs_namespace.c
23  * @brief Test for fs_namespace.c
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "gnunet_util_lib.h"
29 #include "gnunet_arm_service.h"
30 #include "gnunet_fs_service.h"
31
32 #define START_ARM GNUNET_YES
33
34 static struct GNUNET_SCHEDULER_Handle *sched;
35
36 static struct PeerContext p1;
37
38 static struct GNUNET_FS_Handle *fs;
39
40
41 struct PeerContext
42 {
43   struct GNUNET_CONFIGURATION_Handle *cfg;
44 #if START_ARM
45   pid_t arm_pid;
46 #endif
47 };
48
49
50 static void *
51 progress_cb (void *cls, 
52              const struct GNUNET_FS_ProgressInfo *event)
53 {
54   return NULL;
55 }
56
57
58 static void
59 setup_peer (struct PeerContext *p, const char *cfgname)
60 {
61   p->cfg = GNUNET_CONFIGURATION_create ();
62 #if START_ARM
63   p->arm_pid = GNUNET_OS_start_process (NULL, NULL, "gnunet-service-arm",
64                                         "gnunet-service-arm",
65 #if VERBOSE
66                                         "-L", "DEBUG",
67 #endif
68                                         "-c", cfgname, NULL);
69 #endif
70   GNUNET_assert (GNUNET_OK == GNUNET_CONFIGURATION_load (p->cfg, cfgname));
71   GNUNET_ARM_start_services (p->cfg, sched, "core", NULL);
72 }
73
74
75 static void
76 stop_arm (struct PeerContext *p)
77 {
78 #if START_ARM
79   if (0 != PLIBC_KILL (p->arm_pid, SIGTERM))
80     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "kill");
81   if (GNUNET_OS_process_wait(p->arm_pid) != GNUNET_OK)
82     GNUNET_log_strerror (GNUNET_ERROR_TYPE_WARNING, "waitpid");
83   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
84               "ARM process %u stopped\n", p->arm_pid);
85 #endif
86   GNUNET_CONFIGURATION_destroy (p->cfg);
87 }
88
89
90 #if 0
91 static void
92 spcb (void *cls,
93       const char *name,
94       const GNUNET_HashCode * key)
95 {
96 }
97 #endif
98
99
100 static void
101 publish_cont (void *cls,
102               const struct GNUNET_FS_Uri *uri,
103               const char *emsg)
104 {
105   struct GNUNET_FS_SearchContext *search;
106
107   GNUNET_assert (NULL == emsg);
108   fprintf (stderr, "Starting namespace search...\n");
109   search = GNUNET_FS_search_start (fs, uri, 1, "ns-search");
110 }
111
112 static void
113 adv_cont (void *cls,
114               const struct GNUNET_FS_Uri *uri,
115               const char *emsg)
116 {
117   struct GNUNET_FS_SearchContext *search;
118   struct GNUNET_CONTAINER_MetaData *meta;
119   struct GNUNET_FS_Namespace *ns;
120   struct GNUNET_TIME_Absolute expiration;
121
122   expiration = GNUNET_TIME_relative_to_absolute (GNUNET_TIME_UNIT_MINUTES);
123   ns = GNUNET_FS_namespace_create (fs,
124                                    "testNamespace");
125   meta = GNUNET_CONTAINER_meta_data_create ();
126   GNUNET_assert (NULL == emsg);
127   fprintf (stderr, "Starting namespace search...\n");
128   search = GNUNET_FS_search_start (fs, uri, 1, "ns-search");
129   GNUNET_FS_publish_sks (fs,
130                          ns,
131                          "this",
132                          "next",
133                          meta,
134                          uri,
135                          expiration,
136                          1, 1,
137                          GNUNET_FS_PUBLISH_OPTION_NONE,
138                          &publish_cont,
139                          NULL);
140   GNUNET_CONTAINER_meta_data_destroy (meta);
141   GNUNET_FS_namespace_delete (ns, GNUNET_NO);
142 }
143
144
145 static void
146 testNamespace ()
147 {
148   struct GNUNET_FS_Namespace *ns;
149   struct GNUNET_TIME_Absolute expiration;
150   struct GNUNET_CONTAINER_MetaData *meta;
151
152   expiration = GNUNET_TIME_relative_to_absolute (GNUNET_TIME_UNIT_MINUTES);
153   meta = GNUNET_CONTAINER_meta_data_create ();
154   ns = GNUNET_FS_namespace_create (fs,
155                                    "testNamespace");
156   GNUNET_FS_namespace_advertise (fs,
157                                  ns,
158                                  meta,
159                                  1, 1,
160                                  expiration,                                       
161                                  "root",
162                                  &adv_cont, NULL);
163   GNUNET_FS_namespace_delete (ns, GNUNET_NO);
164   GNUNET_CONTAINER_meta_data_destroy (meta);
165 }
166
167 #if 0
168   fprintf (stderr, "Completed namespace search...\n");
169   GNUNET_assert (GNUNET_OK == GNUNET_FS_namespace_delete (NULL, cfg, &pid));
170   GNUNET_assert (GNUNET_SYSERR == GNUNET_FS_namespace_delete (NULL, cfg, &pid));
171   GNUNET_FS_uri_destroy (rootURI);
172   GNUNET_FS_uri_destroy (advURI);
173   GNUNET_assert (match == 1);
174   return 0;
175 }
176 #endif
177
178
179 static void
180 run (void *cls,
181      struct GNUNET_SCHEDULER_Handle *s,
182      char *const *args,
183      const char *cfgfile,
184      const struct GNUNET_CONFIGURATION_Handle *cfg)
185 {
186   sched = s;
187   setup_peer (&p1, "test_fs_download_data.conf");
188   fs = GNUNET_FS_start (sched,
189                         cfg,
190                         "test-fs-namespace",
191                         &progress_cb,
192                         NULL,
193                         GNUNET_FS_FLAGS_NONE,
194                         GNUNET_FS_OPTIONS_END);
195   testNamespace ();
196 }
197
198
199 int
200 main (int argc, char *argv[])
201 {
202   char *const argvx[] = { 
203     "test-fs-namespace",
204     "-c",
205     "test_fs_namespace_data.conf",
206 #if VERBOSE
207     "-L", "DEBUG",
208 #endif
209     NULL
210   };
211   struct GNUNET_GETOPT_CommandLineOption options[] = {
212     GNUNET_GETOPT_OPTION_END
213   };
214
215   GNUNET_log_setup ("test_fs_namespace", 
216 #if VERBOSE
217                     "DEBUG",
218 #else
219                     "WARNING",
220 #endif
221                     NULL);
222   GNUNET_PROGRAM_run ((sizeof (argvx) / sizeof (char *)) - 1,
223                       argvx, "test-fs-namespace",
224                       "nohelp", options, &run, NULL);
225   stop_arm (&p1);
226   GNUNET_DISK_directory_remove ("/tmp/gnunet-test-fs-namespace/");
227   return 0;
228 }
229
230
231
232 /* end of test_fs_namespace.c */