aboutsummaryrefslogtreecommitdiff
path: root/src/dht/test_dhtlog.c
blob: 5c6d5c57861538dfd2e1b5b17f184725b74a623d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
/*
     This file is part of GNUnet.
     (C) 2006, 2009 Christian Grothoff (and other contributing authors)

     GNUnet is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published
     by the Free Software Foundation; either version 2, or (at your
     option) any later version.

     GNUnet is distributed in the hope that it will be useful, but
     WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with GNUnet; see the file COPYING.  If not, write to the
     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
     Boston, MA 02111-1307, USA.
*/
/*
 * @file src/dht/test_dhtlog.c
 * @brief Test of the dhtlog service
 * @author Nathan Evans
 */

#include "platform.h"
#include "gnunet_util_lib.h"
#include "gnunet_protocols.h"
#include "dhtlog.h"

#define VERBOSE GNUNET_NO

static int ok;

#define CHECK(a) if (a != GNUNET_OK) return a
/**
 * Actual test of the service operations
 */
static int
test (struct GNUNET_DHTLOG_Handle * api)
{
  struct GNUNET_PeerIdentity p1;
  struct GNUNET_PeerIdentity p2;
  struct GNUNET_PeerIdentity p3;
  struct GNUNET_PeerIdentity p4;
  struct GNUNET_DHTLOG_TrialInfo trial_info;
  GNUNET_HashCode k1;
  GNUNET_HashCode k2;
  int ret;
  unsigned int i = 42;
  unsigned long long sqlqueryuid;
  unsigned long long sqlrouteuid = 0;
  unsigned long long nodeuid = 0;
  unsigned long long internaluid = 1010223344LL;
  unsigned long long dhtkeyuid = 0;
  memset (&p1.hashPubKey, 3, sizeof (GNUNET_HashCode));
  memset (&p2.hashPubKey, 4, sizeof (GNUNET_HashCode));
  memset (&p3.hashPubKey, 5, sizeof (GNUNET_HashCode));
  memset (&p4.hashPubKey, 6, sizeof (GNUNET_HashCode));

  memset (&k1, 0, sizeof (GNUNET_HashCode));
  memset (&k2, 1, sizeof (GNUNET_HashCode));
  memset(&trial_info, 0, sizeof(struct GNUNET_DHTLOG_TrialInfo));
  trial_info.other_identifier = 777;
  trial_info.num_nodes = i;
  trial_info.topology = 5;
  trial_info.blacklist_topology = 4;
  trial_info.connect_topology = 3;
  trial_info.connect_topology_option = 2;
  trial_info.connect_topology_option_modifier = .75;
  trial_info.topology_percentage = .25;
  trial_info.topology_probability = .5;
  trial_info.puts = 42;
  trial_info.gets = 14;
  trial_info.concurrent = 5;
  trial_info.settle_time = 1;
  trial_info.num_rounds = 12;
  trial_info.malicious_getters = 0;
  trial_info.malicious_putters = 0;
  trial_info.malicious_droppers = 0;
  trial_info.malicious_get_frequency = 1;
  trial_info.malicious_put_frequency = 0;
  trial_info.stop_closest = 1;
  trial_info.stop_found = 0;
  trial_info.strict_kademlia = 1;
  trial_info.message = GNUNET_strdup("TEST INSERT_TRIAL");
  ret =
    api->insert_trial (&trial_info);
  GNUNET_free(trial_info.message);
  CHECK(ret);
#if VERBOSE
  fprintf(stderr, "Insert trial succeeded!\n");
#endif
  ret = api->insert_topology(500);
  CHECK(ret);
#if VERBOSE
  fprintf(stderr, "Insert topology succeeded!\n");
#endif
  ret = api->insert_node (&nodeuid, &p1);
  CHECK(ret);
  ret = api->insert_node (&nodeuid, &p2);
  CHECK(ret);
  ret = api->insert_node (&nodeuid, &p3);
  CHECK(ret);
  ret = api->insert_node (&nodeuid, &p4);
  CHECK(ret);
#if VERBOSE
  fprintf(stderr, "Insert node succeeded!\n");
#endif
  ret = api->set_malicious(&p1);
  CHECK(ret);
#if VERBOSE
  fprintf(stderr, "Set malicious succeeded!\n");
#endif
  ret = api->insert_topology(0);
  CHECK(ret);
#if VERBOSE
  fprintf(stderr, "Insert topology succeeded!\n");
#endif
  ret = api->insert_extended_topology(&p1, &p2);
  CHECK(ret);
  ret = api->insert_extended_topology(&p3, &p4);
  CHECK(ret);
#if VERBOSE
  fprintf(stderr, "Insert extended topology succeeded!\n");
#endif
  ret = api->update_topology(101);
  CHECK(ret);
#if VERBOSE
  fprintf(stderr, "Update topology succeeded!\n");
#endif
  ret = api->insert_dhtkey (&dhtkeyuid, &k1);
  CHECK(ret);
  ret = api->insert_dhtkey (&dhtkeyuid, &k2);
  CHECK(ret);
#if VERBOSE
  fprintf(stderr, "Insert dhtkey succeeded!\n");
#endif
  ret = api->insert_query (&sqlqueryuid, internaluid, 2, 4, 0, &p2, &k1);
  CHECK(ret);
#if VERBOSE
  fprintf(stderr, "Insert query succeeded!\n");
#endif
  ret =
    api->insert_route (&sqlrouteuid, sqlqueryuid, 1, 1, DHTLOG_GET, &p1, &k2,
                       &p4, &p3);
  CHECK(ret);
  ret =
    api->insert_route (&sqlrouteuid, sqlqueryuid, 2, 0, DHTLOG_PUT, &p3, &k1,
                       &p4, &p2);
  CHECK(ret);
  ret =
    api->insert_route (&sqlrouteuid, sqlqueryuid, 3, 1, DHTLOG_ROUTE, &p3, &k2,
                       &p2, NULL);
  CHECK(ret);
  ret =
    api->insert_route (&sqlrouteuid, sqlqueryuid, 4, 7, DHTLOG_ROUTE, &p3, &k2,
                       NULL, NULL);
  CHECK(ret);
#if VERBOSE
  fprintf(stderr, "Insert route succeeded!\n");
#endif
  sleep (1);
  ret = api->insert_stat(&p1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17);
  CHECK(ret);
  ret = api->insert_stat(&p2, 12, 23, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27);
  CHECK(ret);
#if VERBOSE
  fprintf(stderr, "Insert stat succeeded!\n");
#endif
  ret = api->update_trial (787);
  CHECK(ret);
#if VERBOSE
  fprintf(stderr, "Update trial succeeded!\n");
#endif
  ret = api->add_generic_stat (&p2, "nonsense", "section", 77765);
  CHECK(ret);
#if VERBOSE
  fprintf(stderr, "Insert generic stat succeeded!\n");
#endif
  ret = api->insert_round(401, 507);
  CHECK(ret);
  ret = api->insert_round_details(402, 507, 1123, 985);
  CHECK(ret);
#if VERBOSE
  fprintf(stderr, "Insert round succeeded!\n");
#endif
  return 0;
}



static void
run (void *cls,
     char *const *args,
     const char *cfgfile,
     const struct GNUNET_CONFIGURATION_Handle *cfg)
{
  struct GNUNET_DHTLOG_Handle *api;
  ok = 0;
  api = GNUNET_DHTLOG_connect (cfg);

  if (api == NULL)
    {
      ok = 1;
      return;
    }
  ok = test(api);

  GNUNET_DHTLOG_disconnect(api);
}


static int
check ()
{
  char *const argv[] = { "test-dhtlog-api",
    "-c",
    "test_dhtlog_data.conf",
#if VERBOSE
    "-L", "DEBUG",
#endif
    NULL
  };
  struct GNUNET_GETOPT_CommandLineOption options[] = {
    GNUNET_GETOPT_OPTION_END
  };
  GNUNET_PROGRAM_run ((sizeof (argv) / sizeof (char *)) - 1,
                      argv, "test-dhtlog-api", "nohelp",
                      options, &run, NULL);
  if (ok != 0)
    fprintf (stderr, "Test failed with error code: %d\n", ok);
  return ok;
}


int
main (int argc, char *argv[])
{
  int ret;

  GNUNET_log_setup ("test-datacache-api",
#if VERBOSE
                    "DEBUG",
#else
                    "WARNING",
#endif
                    NULL);
  ret = check ();

  return ret;
}

/* end of test_dhtlog.c */