Added path testcase
[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 /**
38  * Convert an integer int oa peer identity
39  */
40 static struct GNUNET_PeerIdentity *
41 get_pi (uint32_t id)
42 {
43   struct GNUNET_PeerIdentity *pi;
44
45   pi = GNUNET_malloc(sizeof(struct GNUNET_PeerIdentity));
46   pi->hashPubKey.bits[0] = id;
47   return pi;
48 }
49
50 int
51 main (int argc, char *argv[])
52 {
53   struct GNUNET_PeerIdentity* pi;
54 //   struct MeshTunnel *t;
55   int result;
56
57   GNUNET_log_setup ("test_mesh_api_path",
58 #if VERBOSE
59                     "DEBUG",
60 #else
61                     "WARNING",
62 #endif
63                     NULL);
64   pi = get_pi(1);
65   GNUNET_log(GNUNET_ERROR_TYPE_INFO, "Peer 1: %s\n", GNUNET_h2s(&pi->hashPubKey));
66
67   result = GNUNET_OK;
68
69   if (GNUNET_SYSERR == result)
70   {
71     GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "test failed\n");
72     return 1;
73   }
74   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "test ok\n");
75   return 0;
76 }