Merge branch 'master' of git+ssh://gnunet.org/gnunet
[oweals/gnunet.git] / src / transport / test_transport_api.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2009, 2010, 2016 GNUnet e.V.
4
5      GNUnet is free software: you can redistribute it and/or modify it
6      under the terms of the GNU Affero General Public License as published
7      by the Free Software Foundation, either version 3 of the License,
8      or (at your 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      Affero General Public License for more details.
14
15      You should have received a copy of the GNU Affero General Public License
16      along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18      SPDX-License-Identifier: AGPL3.0-or-later
19  */
20 /**
21  * @file transport/test_transport_api.c
22  * @brief base test case for transport implementations
23  * @author Christian Grothoff
24  *
25  * This test case serves as a base for tcp, udp, and udp-nat
26  * transport test cases.  Based on the executable being run
27  * the correct test case will be performed.  Conservation of
28  * C code apparently.
29  */
30 #include "platform.h"
31 #include "gnunet_transport_service.h"
32 #include "transport-testing.h"
33
34 /**
35  * How long until we give up on transmitting the message?
36  */
37 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 30)
38
39 static struct GNUNET_TRANSPORT_TESTING_ConnectCheckContext *ccc;
40
41
42 static void
43 notify_receive (void *cls,
44                 struct GNUNET_TRANSPORT_TESTING_PeerContext *receiver,
45                 const struct GNUNET_PeerIdentity *sender,
46                 const struct GNUNET_TRANSPORT_TESTING_TestMessage *message)
47 {
48   {
49     char *ps = GNUNET_strdup (GNUNET_i2s (&receiver->id));
50
51     GNUNET_log (GNUNET_ERROR_TYPE_INFO,
52                 "Peer %u (`%s') received message of type %d and size %u size from peer %s!\n",
53                 receiver->no,
54                 ps,
55                 ntohs (message->header.type),
56                 ntohs (message->header.size),
57                 GNUNET_i2s (sender));
58     GNUNET_free (ps);
59   }
60
61   if ((GNUNET_TRANSPORT_TESTING_SIMPLE_MTYPE == ntohs (message->header.type)) &&
62       (GNUNET_TRANSPORT_TESTING_LARGE_MESSAGE_SIZE == ntohs (
63          message->header.size)))
64   {
65     ccc->global_ret = GNUNET_OK;
66     GNUNET_SCHEDULER_shutdown ();
67   }
68   else
69   {
70     GNUNET_break (0);
71     ccc->global_ret = GNUNET_SYSERR;
72     GNUNET_SCHEDULER_shutdown ();
73   }
74 }
75
76
77 /**
78  * Runs the test.
79  *
80  * @param argv the argv argument from main()
81  * @param bi_directional should we try to establish connections
82  *        in both directions simultaneously?
83  */
84 static int
85 test (char *argv[],
86       int bi_directional)
87 {
88   struct GNUNET_TRANSPORT_TESTING_SendClosure sc = {
89     .num_messages = 1
90   };
91   struct GNUNET_TRANSPORT_TESTING_ConnectCheckContext my_ccc = {
92     .connect_continuation = &GNUNET_TRANSPORT_TESTING_large_send,
93     .connect_continuation_cls = &sc,
94     .config_file = "test_transport_api_data.conf",
95     .rec = &notify_receive,
96     .nc = &GNUNET_TRANSPORT_TESTING_log_connect,
97     .nd = &GNUNET_TRANSPORT_TESTING_log_disconnect,
98     .timeout = TIMEOUT,
99     .bi_directional = bi_directional
100   };
101
102   ccc = &my_ccc;
103   sc.ccc = ccc;
104   if (GNUNET_OK !=
105       GNUNET_TRANSPORT_TESTING_main (2,
106                                      &GNUNET_TRANSPORT_TESTING_connect_check,
107                                      ccc))
108     return 1;
109   return 0;
110 }
111
112
113 int
114 main (int argc,
115       char *argv[])
116 {
117   if ((0 != test (argv,
118                   GNUNET_NO)) ||
119       (0 != test (argv,
120                   GNUNET_YES)))
121     return 1;
122   return 0;
123 }
124
125
126 /* end of test_transport_api.c */