- some func
[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
28 #define VERBOSE GNUNET_EXTRA_LOGGING
29
30 static struct GNUNET_NAMESTORE_Handle * nsh;
31
32 static int res;
33
34 static void
35 run (void *cls, char *const *args, const char *cfgfile,
36      const struct GNUNET_CONFIGURATION_Handle *cfg)
37 {
38   nsh = GNUNET_NAMESTORE_connect (cfg);
39   GNUNET_break (NULL != nsh);
40   GNUNET_NAMESTORE_disconnect (nsh, GNUNET_YES);
41   res = 0;
42 }
43
44 static int
45 check ()
46 {
47   static char *const argv[] = { "test-namestore-api",
48     "-c",
49     "test_namestore_api.conf",
50 #if VERBOSE
51     "-L", "DEBUG",
52 #endif
53     NULL
54   };
55   static struct GNUNET_GETOPT_CommandLineOption options[] = {
56     GNUNET_GETOPT_OPTION_END
57   };
58
59   res = 1;
60   GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, "test-namestore-api",
61                       "nohelp", options, &run, &res);
62   return res;
63 }
64
65 int
66 main (int argc, char *argv[])
67 {
68   int ret;
69
70
71   ret = check ();
72
73   return ret;
74 }
75
76 /* end of test_namestore_api.c */