plane hacking
[oweals/gnunet.git] / src / block / test_block.c
1 /*
2      This file is part of GNUnet
3      (C) 2010 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 block/test_block.c
22  * @brief test for block.c
23  * @author Christian Grothoff
24  */
25 #include "platform.h"
26 #include "gnunet_block_lib.h"
27
28 #define DEBUG GNUNET_NO
29
30 #define VERBOSE GNUNET_NO
31
32 static int
33 test_fs (struct GNUNET_BLOCK_Context *ctx)
34 {
35   GNUNET_HashCode key;
36   char block[4];
37
38   memset (block, 1, sizeof (block));
39   if (GNUNET_OK !=
40       GNUNET_BLOCK_get_key (ctx,
41                             GNUNET_BLOCK_TYPE_FS_DBLOCK,
42                             block,
43                             sizeof (block),
44                             &key))
45     return 1;
46   if (GNUNET_BLOCK_EVALUATION_OK_LAST !=
47       GNUNET_BLOCK_evaluate (ctx,
48                              GNUNET_BLOCK_TYPE_FS_DBLOCK,
49                              &key,
50                              NULL, 0,
51                              NULL, 0,
52                              block, sizeof (block)))
53     return 2;
54   if (GNUNET_BLOCK_EVALUATION_REQUEST_VALID !=
55       GNUNET_BLOCK_evaluate (ctx,
56                              GNUNET_BLOCK_TYPE_FS_DBLOCK,
57                              &key,
58                              NULL, 0,
59                              NULL, 0,
60                              NULL, 0))
61     return 4;
62   GNUNET_log_skip (1, GNUNET_NO);
63   if (GNUNET_BLOCK_EVALUATION_REQUEST_INVALID  !=
64       GNUNET_BLOCK_evaluate (ctx,
65                              GNUNET_BLOCK_TYPE_FS_DBLOCK,
66                              &key,
67                              NULL, 0,
68                              "bogus", 5,
69                              NULL, 0))
70     return 8;
71   GNUNET_log_skip (0, GNUNET_YES);
72   return 0;
73 }
74
75 int
76 main (int argc, char *argv[])
77 {
78   int ret;
79   struct GNUNET_BLOCK_Context *ctx;
80   struct GNUNET_CONFIGURATION_Handle *cfg;
81
82   GNUNET_log_setup ("test-block", "WARNING", NULL);
83   cfg = GNUNET_CONFIGURATION_create ();
84   GNUNET_CONFIGURATION_set_value_string (cfg,
85                                          "block",
86                                          "PLUGINS",
87                                          "fs");
88   ctx = GNUNET_BLOCK_context_create (cfg);
89   ret = test_fs (ctx);
90   GNUNET_BLOCK_context_destroy (ctx);
91   GNUNET_CONFIGURATION_destroy (cfg);
92   if (ret != 0)
93     fprintf (stderr, "Tests failed: %d\n", ret);
94   return ret;
95 }