started implementing consensus api and service
[oweals/gnunet.git] / src / consensus / test_consensus_api.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 consensus/test_consensus_api.c
22  * @brief testcase for consensus_api.c
23  */
24 #include "platform.h"
25 #include "gnunet_util_lib.h"
26 #include "gnunet_consensus_service.h"
27 #include "gnunet_testing_lib-new.h"
28
29
30 static struct GNUNET_CONSENSUS_Handle *consensus;
31
32 static struct GNUNET_HashCode session_id;
33
34
35 void
36 on_new_element (void *cls,
37                 struct GNUNET_CONSENSUS_Element *element)
38 {
39   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "received new element\n");
40 }
41
42
43 static void
44 run (void *cls, 
45      const struct GNUNET_CONFIGURATION_Handle *cfg,
46      struct GNUNET_TESTING_Peer *peer)
47 {
48   char *str = "foo";
49
50   GNUNET_CRYPTO_hash (str, strlen (str), &session_id);
51   consensus = GNUNET_CONSENSUS_create (cfg, 0, NULL, &session_id, on_new_element, cls);
52   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connecting to consensus service.\n");
53   GNUNET_assert (consensus != NULL);
54 }
55
56
57 int
58 main (int argc, char **argv)
59 {
60   int ret;
61
62   GNUNET_log_setup ("test_consensus_api",
63                     "DEBUG",
64                     NULL);
65
66   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "testing consensus api\n");
67
68   ret = GNUNET_TESTING_peer_run ("test_consensus_api",
69                                  "test_consensus.conf",
70                                  &run, NULL);
71   return ret;
72 }
73