rename, fix
[oweals/gnunet.git] / src / secretsharing / test_secretsharing_api.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2014 GNUnet e.V.
4
5      GNUnet is free software: you can redistribute it and/or modify it
6      under the terms of the GNU Affero General Public License as published
7      by the Free Software Foundation, either version 3 of the License,
8      or (at your 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      Affero General Public License for more details.
14
15      You should have received a copy of the GNU Affero General Public License
16      along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18      SPDX-License-Identifier: AGPL3.0-or-later
19  */
20
21 /**
22  * @file secretsharing/test_secretsharing_api.c
23  * @brief testcase for the secretsharing api
24  */
25 #include "platform.h"
26 #include "gnunet_util_lib.h"
27 #include "gnunet_testing_lib.h"
28 #include "gnunet_secretsharing_service.h"
29
30
31 static int success;
32
33 static struct GNUNET_SECRETSHARING_Session *keygen;
34
35
36 static void
37 secret_ready_cb (void *cls,
38                  struct GNUNET_SECRETSHARING_Share *my_share,
39                  struct GNUNET_SECRETSHARING_PublicKey *public_key,
40                  unsigned int num_ready_peers,
41                  const struct GNUNET_PeerIdentity *ready_peers)
42 {
43   keygen = NULL;
44   if (num_ready_peers == 1)
45     success = 1;
46   // FIXME: check that our share is valid, which we can do as there's only
47   // one peer.
48   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "secret ready, shutting down\n");
49   GNUNET_SCHEDULER_shutdown ();
50 }
51
52
53 static void
54 handle_shutdown (void *cls)
55 {
56   if (NULL != keygen)
57   {
58     GNUNET_SECRETSHARING_session_destroy (keygen);
59     keygen = NULL;
60   }
61 }
62
63
64 static void
65 run (void *cls,
66      const struct GNUNET_CONFIGURATION_Handle *cfg,
67      struct GNUNET_TESTING_Peer *peer)
68 {
69   struct GNUNET_HashCode session_id;
70   struct GNUNET_TIME_Absolute start;
71   struct GNUNET_TIME_Absolute deadline;
72
73   GNUNET_SCHEDULER_add_shutdown (&handle_shutdown, NULL);
74
75   GNUNET_log (GNUNET_ERROR_TYPE_INFO, "testing secretsharing api\n");
76
77   GNUNET_CRYPTO_hash_create_random (GNUNET_CRYPTO_QUALITY_WEAK, &session_id);
78
79   start = GNUNET_TIME_absolute_get ();
80   deadline = GNUNET_TIME_absolute_add (start, GNUNET_TIME_UNIT_SECONDS);
81
82   keygen = GNUNET_SECRETSHARING_create_session (cfg,
83                                                 0, NULL, /* only the local peer */
84                                                 &session_id,
85                                                 start, deadline,
86                                                 1,
87                                                 secret_ready_cb, NULL);
88 }
89
90
91 int
92 main (int argc, char **argv)
93 {
94   int ret;
95
96   ret = GNUNET_TESTING_peer_run ("test_secretsharing_api",
97                                  "test_secretsharing.conf",
98                                  &run, NULL);
99   if (0 != ret)
100     return ret;
101   return (GNUNET_YES == success) ? 0 : 1;
102 }