-options to play with
[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 *consensus1;
31 static struct GNUNET_CONSENSUS_Handle *consensus2;
32
33 static int concluded1;
34 static int concluded2;
35
36 static int insert1;
37 static int insert2;
38
39 static struct GNUNET_HashCode session_id;
40
41
42 static void conclude_done (void *cls, 
43                            unsigned int num_peers_in_consensus,
44                            const struct GNUNET_PeerIdentity *peers_in_consensus)
45 {
46   struct GNUNET_CONSENSUS_Handle *consensus;
47   consensus = (struct GNUNET_CONSENSUS_Handle *) cls;
48   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "concluded\n");
49 }
50
51 static void
52 on_new_element (void *cls,
53                 struct GNUNET_CONSENSUS_Element *element)
54 {
55   struct GNUNET_CONSENSUS_Handle *consensus;
56
57   GNUNET_assert (NULL != element);
58
59   consensus = *(struct GNUNET_CONSENSUS_Handle **) cls;
60
61   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "received new element\n");
62
63   GNUNET_CONSENSUS_conclude (consensus, GNUNET_TIME_UNIT_FOREVER_REL, &conclude_done, consensus);
64
65 }
66
67 static void
68 insert_done (void *cls, int success)
69 {
70   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "insert done\n");
71 }
72
73
74
75 static void
76 run (void *cls, 
77      const struct GNUNET_CONFIGURATION_Handle *cfg,
78      struct GNUNET_TESTING_Peer *peer)
79 {
80   char *str = "foo";
81
82   struct GNUNET_CONSENSUS_Element el1 = {"foo", 4, 0};
83   struct GNUNET_CONSENSUS_Element el2 = {"bar", 4, 0};
84
85   GNUNET_log_setup ("test_consensus_api",
86                     "DEBUG",
87                     NULL);
88
89   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "testing consensus api\n");
90
91   GNUNET_CRYPTO_hash (str, strlen (str), &session_id);
92   consensus1 = GNUNET_CONSENSUS_create (cfg, 0, NULL, &session_id, on_new_element, &consensus1);
93   /*
94   consensus2 = GNUNET_CONSENSUS_create (cfg, 0, NULL, &session_id, on_new_element, &consensus2);
95   GNUNET_assert (consensus1 != NULL);
96   GNUNET_assert (consensus2 != NULL);
97   GNUNET_CONSENSUS_insert (consensus1, &el1, &insert_done, &consensus1);
98   GNUNET_CONSENSUS_insert (consensus2, &el2, &insert_done, &consensus2);
99   */
100 }
101
102
103 int
104 main (int argc, char **argv)
105 {
106   int ret;
107
108   ret = GNUNET_TESTING_peer_run ("test_consensus_api",
109                                  "test_consensus.conf",
110                                  &run, NULL);
111   return ret;
112 }
113