LRN: Fix automake deps to allow -j* builds again
[oweals/gnunet.git] / src / util / test_connection_transmit_cancel.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009 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  * @file util/test_connection_transmit_cancel.c
22  * @brief tests for connection.c
23  */
24 #include "platform.h"
25 #include "gnunet_common.h"
26 #include "gnunet_connection_lib.h"
27 #include "gnunet_scheduler_lib.h"
28 #include "gnunet_time_lib.h"
29
30 #define VERBOSE GNUNET_NO
31
32 #define PORT 12435
33
34 static struct GNUNET_CONFIGURATION_Handle *cfg;
35
36
37 static size_t
38 not_run (void *cls, size_t size, void *buf)
39 {
40   GNUNET_assert (0);
41   return 0;
42 }
43
44
45 static void
46 task_transmit_cancel (void *cls,
47                       const struct GNUNET_SCHEDULER_TaskContext *tc)
48 {
49   int *ok = cls;
50   struct GNUNET_CONNECTION_TransmitHandle *th;
51   struct GNUNET_CONNECTION_Handle *csock;
52
53   csock = GNUNET_CONNECTION_create_from_connect (cfg,
54                                                  "localhost", PORT);
55   GNUNET_assert (csock != NULL);
56   th = GNUNET_CONNECTION_notify_transmit_ready (csock,
57                                                 12,
58                                                 GNUNET_TIME_UNIT_MINUTES,
59                                                 &not_run, cls);
60   GNUNET_assert (NULL != th);
61   GNUNET_CONNECTION_notify_transmit_ready_cancel (th);
62   GNUNET_CONNECTION_destroy (csock, GNUNET_YES);
63   *ok = 0;
64 }
65
66
67
68
69 /**
70  * Main method, starts scheduler with task_timeout.
71  */
72 static int
73 check_transmit_cancel ()
74 {
75   int ok;
76
77   ok = 1;
78   cfg = GNUNET_CONFIGURATION_create ();
79   GNUNET_CONFIGURATION_set_value_string (cfg,
80                                          "resolver", "HOSTNAME", "localhost");
81   GNUNET_SCHEDULER_run (&task_transmit_cancel, &ok);
82   GNUNET_CONFIGURATION_destroy (cfg);
83   return ok;
84 }
85
86
87 int
88 main (int argc, char *argv[])
89 {
90   int ret = 0;
91
92   GNUNET_log_setup ("test_connection_transmit_cancel",
93 #if VERBOSE
94                     "DEBUG",
95 #else
96                     "WARNING",
97 #endif
98                     NULL);
99   ret += check_transmit_cancel ();
100
101   return ret;
102 }
103
104 /* end of test_connection_transmit_cancel.c */