WiP
[oweals/gnunet.git] / src / mesh / test_mesh_path_api.c
1 /*
2      This file is part of GNUnet.
3      (C) 2011 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 /**
22  * @file mesh/test_mesh_path.c
23  * @brief test mesh path: test of path management api
24  * @author Bartlomiej Polot
25  */
26
27 #include "platform.h"
28 #include "gnunet_common.h"
29 #include "gnunet_util_lib.h"
30 #include "gnunet_dht_service.h"
31 #include "gnunet_mesh_service_new.h"
32 #include "mesh.h"
33 #include "mesh_tunnel_tree.h"
34
35 #define VERBOSE 1
36
37 int failed;
38 int cb_call;
39 struct GNUNET_PeerIdentity* pi[10];
40 struct MeshTunnelTree *tree;
41
42 void
43 cb (const struct MeshTunnelTreeNode *n)
44 {
45   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "test: CB: Disconnected %u\n", n->peer);
46   if(0 == cb_call)
47   {
48     GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "test:      and it shouldn't!\n");
49     failed++;
50   }
51   cb_call--;
52 }
53
54
55 void
56 finish(void)
57 {
58   unsigned int i;
59
60   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "test: Finishing...\n");
61   for (i = 0; i < 10; i++)
62   {
63     GNUNET_free(pi[i]);
64   }
65   tree_destroy(tree);
66   exit(0);
67 }
68
69 /**
70  * Convert an integer int to a peer identity
71  */
72 static struct GNUNET_PeerIdentity *
73 get_pi (uint32_t id)
74 {
75   struct GNUNET_PeerIdentity *pi;
76
77   pi = GNUNET_malloc(sizeof(struct GNUNET_PeerIdentity));
78   pi->hashPubKey.bits[0] = id + 1;
79   return pi;
80 }
81
82
83 int
84 main (int argc, char *argv[])
85 {
86   struct MeshTunnelTreeNode *node;
87   struct MeshTunnelTreeNode *node2;
88   struct MeshPeerPath *path;
89   struct MeshPeerPath *path1;
90   unsigned int i;
91
92   failed = 0;
93   cb_call = 0;
94   GNUNET_log_setup ("test_mesh_api_path",
95 #if VERBOSE
96                     "DEBUG",
97 #else
98                     "WARNING",
99 #endif
100                     NULL);
101   for (i = 0; i < 10; i++)
102   {
103       pi[i] = get_pi(i);
104       GNUNET_break (i != GNUNET_PEER_intern(pi[i]));
105       GNUNET_log(GNUNET_ERROR_TYPE_INFO, "Peer %u: %s\n", i,
106                  GNUNET_h2s(&pi[i]->hashPubKey));
107   }
108   tree = GNUNET_malloc(sizeof(struct MeshTunnelTree));
109   tree->first_hops = GNUNET_CONTAINER_multihashmap_create(32);
110   tree->root = GNUNET_malloc(sizeof(struct MeshTunnelTreeNode));
111   tree->root->peer = 1;
112   tree->me = tree->root;
113   path = path_new (4);
114   path->peers[0] = 1;
115   path->peers[1] = 2;
116   path->peers[2] = 3;
117   path->peers[3] = 4;
118   path->length = 4;
119
120   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "test: Adding first path: 1 2 3 4\n");
121   tree_add_path(tree, path, &cb);
122   tree_debug(tree);
123   path1 = tree_get_path_to_peer(tree, 4);
124   if (path->length != path1->length ||
125       memcmp(path->peers, path1->peers, path->length) != 0)
126   {
127     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved path != original\n");
128     failed++;
129   }
130   path_destroy(path1);
131   node = tree_find_peer(tree->root, 4);
132   if (node->peer != 4)
133   {
134     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
135     failed++;
136   }
137   if (node->status != MESH_PEER_SEARCHING)
138   {
139     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong status!\n");
140     failed++;
141   }
142   if (GNUNET_PEER_search(path_get_first_hop(tree, 4)) != 2)
143   {
144     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Wrong first hop!\n");
145     failed++;
146   }
147
148   node = tree_find_peer(tree->root, 3);
149   if (node->peer != 3)
150   {
151     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
152     failed++;
153   }
154   if (node->status != MESH_PEER_RELAY)
155   {
156     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong status!\n");
157     failed++;
158   }
159   if (node->children_head != node->children_tail)
160   {
161     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong nchildren!\n");
162     failed++;
163   }
164   if (GNUNET_PEER_search(path_get_first_hop(tree, 3)) != 2)
165   {
166     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Wrong first hop!\n");
167     failed++;
168   }
169
170   node = tree_find_peer(tree->root, 2);
171   if (node->peer != 2)
172   {
173     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
174     failed++;
175   }
176   if (node->status != MESH_PEER_RELAY)
177   {
178     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong status!\n");
179     failed++;
180   }
181   if (node->children_head != node->children_tail)
182   {
183     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong nchildren!\n");
184     failed++;
185   }
186
187   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "test: Adding second path: 1 2 3\n");
188   path->length--;
189   tree_add_path(tree, path, &cb);
190   tree_debug(tree);
191
192   node = tree_find_peer(tree->root, 4);
193   if (node->peer != 4)
194   {
195     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
196     failed++;
197   }
198   if (node->status != MESH_PEER_SEARCHING)
199   {
200     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong status!\n");
201     failed++;
202   }
203   if (node->children_head != node->children_tail)
204   {
205     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong nchildren!\n");
206     failed++;
207   }
208   if (GNUNET_PEER_search(path_get_first_hop(tree, 4)) != 2)
209   {
210     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Wrong first hop!\n");
211     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "4 GOT: %u\n", GNUNET_PEER_search(path_get_first_hop(tree, 4)));
212     failed++;
213   }
214   if (GNUNET_PEER_search(path_get_first_hop(tree, 3)) != 2)
215   {
216     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Wrong first hop!\n");
217     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "3 GOT: %u\n", GNUNET_PEER_search(path_get_first_hop(tree, 3)));
218     failed++;
219   }
220
221   node = tree_find_peer(tree->root, 2);
222   if (node->peer != 2)
223   {
224     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
225     failed++;
226   }
227   if (node->status != MESH_PEER_RELAY)
228   {
229     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong status!\n");
230     failed++;
231   }
232   if (node->children_head != node->children_tail)
233   {
234     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong nchildren!\n");
235     failed++;
236   }
237
238   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "test: Adding third path...\n");
239   path->length++;
240   path->peers[3] = 5;
241   tree_add_path(tree, path, &cb);
242   tree_debug(tree);
243
244   node = tree_find_peer(tree->root, 3);
245   if (node->peer != 3)
246   {
247     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
248     failed++;
249   }
250   if (node->status != MESH_PEER_SEARCHING)
251   {
252     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong status!\n");
253     failed++;
254   }
255   if (node->children_head->next != node->children_tail)
256   {
257     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong nchildren!\n");
258     failed++;
259   }
260   if (GNUNET_PEER_search(path_get_first_hop(tree, 3)) != 2)
261   {
262     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Wrong first hop!\n");
263     failed++;
264   }
265   if (GNUNET_PEER_search(path_get_first_hop(tree, 4)) != 2)
266   {
267     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Wrong first hop!\n");
268     failed++;
269   }
270
271   node = tree_find_peer(tree->root, 2);
272   if (node->peer != 2)
273   {
274     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
275     failed++;
276   }
277   if (node->status != MESH_PEER_RELAY)
278   {
279     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong status!\n");
280     failed++;
281   }
282   if (node->children_head != node->children_tail)
283   {
284     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong nchildren!\n");
285     failed++;
286   }
287
288   node = tree_find_peer(tree->root, 5);
289   if (node->peer != 5)
290   {
291     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
292     failed++;
293   }
294
295   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "test: Deleting third path...\n");
296   node->status = MESH_PEER_READY;
297   cb_call = 1;
298   node2 = tree_del_path(tree, 5, &cb);
299   tree_debug(tree);
300   if (cb_call != 0)
301   {
302     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "%u callbacks missed!\n", cb_call);
303     failed++;
304   }
305   if (node2->peer != 5)
306   {
307     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
308     failed++;
309   }
310   
311   node = tree_find_peer(tree->root, 3);
312   if (node->peer != 3)
313   {
314     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
315     failed++;
316   }
317   if (node->status != MESH_PEER_SEARCHING)
318   {
319     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong status!\n");
320     failed++;
321   }
322   if (node->children_head != node->children_tail)
323   {
324     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong nchildren!\n");
325     failed++;
326   }
327
328   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "test: Destroying node copy...\n");
329   GNUNET_free (node2);
330
331   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "test: Adding new shorter first path...\n");
332   path->length = 2;
333   path->peers[1] = 3;
334   cb_call = 1;
335   tree_find_peer(tree->root, 3)->status = MESH_PEER_READY;
336   tree_add_path(tree, path, cb);
337   tree_debug(tree);
338   if (cb_call != 0)
339   {
340     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "%u callbacks missed!\n", cb_call);
341     failed++;
342   }  
343   node = tree_find_peer(tree->root, 2);
344   if (node->peer != 2)
345   {
346     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
347     failed++;
348   }
349   if (node->status != MESH_PEER_SEARCHING)
350   {
351     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong status!\n");
352     failed++;
353   }
354   if (node->children_head != NULL)
355   {
356     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong nchildren!\n");
357     failed++;
358   }
359   node = tree_find_peer(tree->root, 3);
360   if (node->peer != 3)
361   {
362     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
363     failed++;
364   }
365   if (node->status != MESH_PEER_SEARCHING)
366   {
367     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong status!\n");
368     failed++;
369   }
370   if (node->children_head != NULL)
371   {
372     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong nchildren!\n");
373     failed++;
374   }
375   if (GNUNET_PEER_search(path_get_first_hop(tree, 2)) != 1)
376   {
377     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Wrong first hop!\n");
378     failed++;
379   }
380   if (GNUNET_PEER_search(path_get_first_hop(tree, 3)) != 3)
381   {
382     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Wrong first hop!\n");
383     failed++;
384   }
385
386
387   if (failed > 0)
388   {
389     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "%u tests failed\n", failed);
390     return 1;
391   }
392   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test: OK\n");
393   path_destroy(path);
394   finish();
395
396   return 0;
397 }