Fixed double chaining on note reattachment
[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: 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;
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 = 0;
112   tree->me = tree->root;
113   path = GNUNET_malloc(sizeof(struct MeshPeerPath));
114   path->peers = GNUNET_malloc(sizeof(GNUNET_PEER_Id) * 4);
115   path->peers[0] = 0;
116   path->peers[1] = 1;
117   path->peers[2] = 2;
118   path->peers[3] = 3;
119   path->length = 4;
120
121   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "test: Adding first path: 0 1 2 3\n");
122   tree_add_path(tree, path, &cb);
123   path1 = tree_get_path_to_peer(tree, 3);
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, 3);
132   if (node->peer != 3)
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, 3)) != 1)
143   {
144     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Wrong first hop!\n");
145     failed++;
146   }
147
148   node = tree_find_peer(tree->root, 2);
149   if (node->peer != 2)
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->nchildren != 1)
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)) != 1)
165   {
166     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Wrong first hop!\n");
167     failed++;
168   }
169
170   node = tree_find_peer(tree->root, 1);
171   if (node->peer != 1)
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->nchildren != 1)
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: 0 1 2\n");
188   path->length--;
189   tree_add_path(tree, path, &cb);
190   
191   node = tree_find_peer(tree->root, 2);
192   if (node->peer != 2)
193   {
194     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
195     failed++;
196   }
197   if (node->status != MESH_PEER_SEARCHING)
198   {
199     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong status!\n");
200     failed++;
201   }
202   if (node->nchildren != 1)
203   {
204     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong nchildren!\n");
205     failed++;
206   }
207   if (GNUNET_PEER_search(path_get_first_hop(tree, 3)) != 1)
208   {
209     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Wrong first hop!\n");
210     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "3 GOT: %u\n", GNUNET_PEER_search(path_get_first_hop(tree, 3)));
211     failed++;
212   }
213   if (GNUNET_PEER_search(path_get_first_hop(tree, 2)) != 1)
214   {
215     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Wrong first hop!\n");
216     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "2 GOT: %u\n", GNUNET_PEER_search(path_get_first_hop(tree, 2)));
217     failed++;
218   }
219
220   node = tree_find_peer(tree->root, 1);
221   if (node->peer != 1)
222   {
223     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
224     failed++;
225   }
226   if (node->status != MESH_PEER_RELAY)
227   {
228     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong status!\n");
229     failed++;
230   }
231   if (node->nchildren != 1)
232   {
233     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong nchildren!\n");
234     failed++;
235   }
236   path->length++;
237   path_destroy(path);
238   finish();
239
240   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "test: Adding third path...\n");
241   path->length++;
242   path->peers[3] = 4;
243   tree_add_path(tree, path, &cb);
244
245   node = tree_find_peer(tree->root, 2);
246   if (node->peer != 2)
247   {
248     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
249     failed++;
250   }
251   if (node->status != MESH_PEER_SEARCHING)
252   {
253     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong status!\n");
254     failed++;
255   }
256   if (node->nchildren != 2)
257   {
258     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong nchildren!\n");
259     failed++;
260   }
261   if (GNUNET_PEER_search(path_get_first_hop(tree, 3)) != 1)
262   {
263     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Wrong first hop!\n");
264     failed++;
265   }
266   if (GNUNET_PEER_search(path_get_first_hop(tree, 4)) != 1)
267   {
268     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Wrong first hop!\n");
269     failed++;
270   }
271
272   node = tree_find_peer(tree->root, 1);
273   if (node->peer != 1)
274   {
275     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
276     failed++;
277   }
278   if (node->status != MESH_PEER_RELAY)
279   {
280     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong status!\n");
281     failed++;
282   }
283   if (node->nchildren != 1)
284   {
285     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong nchildren!\n");
286     failed++;
287   }
288
289   node = tree_find_peer(tree->root, 4);
290   if (node->peer != 4)
291   {
292     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
293     failed++;
294   }
295   
296   GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "test: Deleting third path...\n");
297   node->status = MESH_PEER_READY;
298   cb_call = 1;
299   node2 = tree_del_path(tree, 4, &cb);
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 != 4)
306   {
307     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
308     failed++;
309   }
310   
311   node = tree_find_peer(tree->root, 2);
312   if (node->peer != 2)
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->nchildren != 1)
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   tree_node_destroy(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_add_path(tree, path, cb);
336   if (cb_call != 0)
337   {
338     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "%u callbacks missed!\n", cb_call);
339     failed++;
340   }
341   node = tree_find_peer(tree->root, 2);
342   if (node->peer != 2)
343   {
344     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
345     failed++;
346   }
347   if (node->status != MESH_PEER_SEARCHING)
348   {
349     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong status!\n");
350     failed++;
351   }
352   if (node->nchildren != 0)
353   {
354     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong nchildren!\n");
355     failed++;
356   }
357   node = tree_find_peer(tree->root, 3);
358   if (node->peer != 3)
359   {
360     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer != original\n");
361     failed++;
362   }
363   if (node->status != MESH_PEER_SEARCHING)
364   {
365     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong status!\n");
366     failed++;
367   }
368   if (node->nchildren != 0)
369   {
370     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Retrieved peer wrong nchildren!\n");
371     failed++;
372   }
373   if (GNUNET_PEER_search(path_get_first_hop(tree, 2)) != 1)
374   {
375     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Wrong first hop!\n");
376     failed++;
377   }
378   if (GNUNET_PEER_search(path_get_first_hop(tree, 3)) != 3)
379   {
380     GNUNET_log(GNUNET_ERROR_TYPE_WARNING, "Wrong first hop!\n");
381     failed++;
382   }
383
384
385   if (failed > 0)
386   {
387     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "%u tests failed\n", failed);
388     return 1;
389   }
390   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test ok\n");
391   return 0;
392 }