aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/test_namestore_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/namestore/test_namestore_api.c')
-rw-r--r--src/namestore/test_namestore_api.c72
1 files changed, 72 insertions, 0 deletions
diff --git a/src/namestore/test_namestore_api.c b/src/namestore/test_namestore_api.c
new file mode 100644
index 000000000..c15a4e7d1
--- /dev/null
+++ b/src/namestore/test_namestore_api.c
@@ -0,0 +1,72 @@
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
30static int res;
31
32static void
33run (void *cls, char *const *args, const char *cfgfile,
34 const struct GNUNET_CONFIGURATION_Handle *cfg)
35{
36
37 res = 0;
38}
39
40static int
41check ()
42{
43 static char *const argv[] = { "test-namestore-api",
44 "-c",
45 "test_namestore_api.conf",
46#if VERBOSE
47 "-L", "DEBUG",
48#endif
49 NULL
50 };
51 static struct GNUNET_GETOPT_CommandLineOption options[] = {
52 GNUNET_GETOPT_OPTION_END
53 };
54
55 res = 1;
56 GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1, argv, "test-namestore-api",
57 "nohelp", options, &run, &res);
58 return res;
59}
60
61int
62main (int argc, char *argv[])
63{
64 int ret;
65
66
67 ret = check ();
68
69 return ret;
70}
71
72/* end of test_namestore_api.c */