-disable NSE POW during cadet tests
[oweals/gnunet.git] / src / peerstore / test_peerstore_api_sync.c
1 /*
2      This file is part of GNUnet.
3      (C)
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 peerstore/test_peerstore_api_sync.c
22  * @brief testcase for peerstore sync before disconnect feature
23  */
24 #include "platform.h"
25 #include "gnunet_util_lib.h"
26 #include "gnunet_testing_lib.h"
27 #include "gnunet_peerstore_service.h"
28
29 int ok = 1;
30
31 const struct GNUNET_CONFIGURATION_Handle *cfg;
32
33 static struct GNUNET_PEERSTORE_Handle *h;
34
35 static char *subsystem = "test_peerstore_api_sync";
36 static struct GNUNET_PeerIdentity pid;
37 static char *key = "test_peerstore_api_store_key";
38 static char *val = "test_peerstore_api_store_val";
39
40 int
41 iterate_cb (void *cls, struct GNUNET_PEERSTORE_Record *record, char *emsg)
42 {
43   const char *rec_val;
44
45   GNUNET_break (NULL == emsg);
46   if (NULL == record)
47   {
48     GNUNET_PEERSTORE_disconnect (h, GNUNET_NO);
49     GNUNET_SCHEDULER_shutdown ();
50     return GNUNET_YES;
51   }
52   rec_val = record->value;
53   GNUNET_break (0 == strcmp (rec_val, val));
54   ok = 0;
55   return GNUNET_YES;
56 }
57
58
59 static void
60 test1 ()
61 {
62   GNUNET_PEERSTORE_store (h, subsystem, &pid, key, val, strlen (val) + 1,
63                           GNUNET_TIME_UNIT_FOREVER_ABS,
64                           GNUNET_PEERSTORE_STOREOPTION_REPLACE, NULL, NULL);
65   GNUNET_PEERSTORE_disconnect (h, GNUNET_YES);
66   h = GNUNET_PEERSTORE_connect (cfg);
67   GNUNET_PEERSTORE_iterate (h, subsystem, &pid, key,
68                             GNUNET_TIME_UNIT_FOREVER_REL, &iterate_cb, NULL);
69 }
70
71
72 static void
73 run (void *cls, const struct GNUNET_CONFIGURATION_Handle *c,
74      struct GNUNET_TESTING_Peer *peer)
75 {
76   cfg = c;
77   h = GNUNET_PEERSTORE_connect (cfg);
78   GNUNET_assert (NULL != h);
79   memset (&pid, 1, sizeof (pid));
80   test1 ();
81 }
82
83
84 int
85 main (int argc, char *argv[])
86 {
87   if (0 !=
88       GNUNET_TESTING_service_run ("test-gnunet-peerstore", "peerstore",
89                                   "test_peerstore_api_data.conf", &run, NULL))
90     return 1;
91   return ok;
92 }
93
94 /* end of test_peerstore_api_store.c */