-indentation
[oweals/gnunet.git] / src / nat / test_nat_test.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 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  * Testcase for the NAT testing code.
23  *
24  * @file nat/test_nat_test.c
25  * @brief Testcase for NAT testing functions
26  * @author Christian Grothoff
27  */
28 #include "platform.h"
29 #include "gnunet_util_lib.h"
30 #include "gnunet_nat_lib.h"
31
32 /**
33  * Time to wait before stopping NAT test, in seconds
34  */
35 #define TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 15)
36
37
38 static int ret = 1;
39
40 static struct GNUNET_NAT_Test *tst;
41
42 static void
43 report_result (void *cls,
44                 enum GNUNET_NAT_FailureCode aret)
45 {
46   if (GNUNET_NAT_ERROR_TIMEOUT == aret)
47     fprintf (stderr,
48              "NAT test timed out\n");
49   else if (GNUNET_NAT_ERROR_SUCCESS != aret)
50     fprintf (stderr,
51              "NAT test reported error %d\n", aret);
52   else
53     ret = 0;
54 }
55
56
57 /**
58  * Main function run with scheduler.
59  */
60 static void
61 run (void *cls, char *const *args, const char *cfgfile,
62      const struct GNUNET_CONFIGURATION_Handle *cfg)
63 {
64   tst =
65       GNUNET_NAT_test_start (cfg, GNUNET_YES, 1285, 1285, TIMEOUT,
66                              &report_result,
67                              NULL);
68 }
69
70
71 int
72 main (int argc, char *const argv[])
73 {
74   struct GNUNET_GETOPT_CommandLineOption options[] = {
75     GNUNET_GETOPT_OPTION_END
76   };
77   struct GNUNET_OS_Process *gns;
78   int nat_res;
79   char *const argv_prog[] = {
80     "test-nat-test",
81     "-c",
82     "test_nat_test_data.conf",
83     NULL
84   };
85
86   GNUNET_log_setup ("test-nat-test",
87                     "WARNING",
88                     NULL);
89
90   nat_res = GNUNET_OS_check_helper_binary ("gnunet-nat-server", GNUNET_NO, NULL);
91   if (GNUNET_SYSERR == nat_res)
92   {
93     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
94                 "Cannot run NAT test: `%s' file not found\n",
95                 "gnunet-nat-server");
96     return 0;
97   }
98
99   gns = GNUNET_OS_start_process (GNUNET_YES,
100                                  GNUNET_OS_INHERIT_STD_OUT_AND_ERR,
101                                  NULL, NULL, NULL,
102                                  "gnunet-nat-server",
103                                  "gnunet-nat-server",
104                                  "-c", "test_nat_test_data.conf",
105                                  "12345", NULL);
106   GNUNET_assert (NULL != gns);
107   GNUNET_PROGRAM_run (3, argv_prog, "test-nat-test", "nohelp", options, &run,
108                       NULL);
109   GNUNET_break (0 == GNUNET_OS_process_kill (gns, GNUNET_TERM_SIG));
110   GNUNET_break (GNUNET_OK == GNUNET_OS_process_wait (gns));
111   GNUNET_OS_process_destroy (gns);
112   if (0 != ret)
113     fprintf (stderr,
114              "NAT test failed to report success\n");
115   return ret;
116 }
117
118 /* end of test_nat_test.c */