aboutsummaryrefslogtreecommitdiff
path: root/src/mesh/test_mesh_path_api.c
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2011-09-20 12:09:08 +0000
committerBart Polot <bart@net.in.tum.de>2011-09-20 12:09:08 +0000
commit73e047c74d351257f8b6cf0815a56ff650520cc1 (patch)
tree6a0404a888520ae756a2da2259498fc19b5751c4 /src/mesh/test_mesh_path_api.c
parentdd6f8f750c62c0680528ae4a0744403aa80074be (diff)
downloadgnunet-73e047c74d351257f8b6cf0815a56ff650520cc1.tar.gz
gnunet-73e047c74d351257f8b6cf0815a56ff650520cc1.zip
Added path testcase
Diffstat (limited to 'src/mesh/test_mesh_path_api.c')
-rw-r--r--src/mesh/test_mesh_path_api.c76
1 files changed, 76 insertions, 0 deletions
diff --git a/src/mesh/test_mesh_path_api.c b/src/mesh/test_mesh_path_api.c
new file mode 100644
index 000000000..d14d15958
--- /dev/null
+++ b/src/mesh/test_mesh_path_api.c
@@ -0,0 +1,76 @@
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 */
40static struct GNUNET_PeerIdentity *
41get_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
50int
51main (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}