fixing parallel build, getting rid of useless _DEPENDENCIES declarations
[oweals/gnunet.git] / src / regex / test_regex_api.c
1 /*
2      This file is part of GNUnet.
3      (C) 2013 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 regex/test_regex_api.c
22  * @brief base test case for regex api (and DHT functions)
23  * @author Christian Grothoff
24  */
25 #include "platform.h"
26 #include "gnunet_util_lib.h"
27 #include "gnunet_testing_lib.h"
28 #include "gnunet_regex_service.h"
29
30
31 /**
32  * How long until we really give up on a particular testcase portion?
33  */
34 #define TOTAL_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 600)
35
36 /**
37  * How long until we give up on any particular operation (and retry)?
38  */
39 #define BASE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 3)
40
41
42 static struct GNUNET_REGEX_Announcement *a;
43
44 static struct GNUNET_REGEX_Search *s;
45
46 static int ok = 1;
47
48 static GNUNET_SCHEDULER_TaskIdentifier die_task;
49
50
51 static void
52 end (void *cls,
53      const struct GNUNET_SCHEDULER_TaskContext *tc)
54 {
55   die_task = GNUNET_SCHEDULER_NO_TASK;
56   GNUNET_REGEX_announce_cancel (a);
57   a = NULL;
58   GNUNET_REGEX_search_cancel (s);
59   s = NULL;
60   ok = 0;
61 }
62
63
64 static void
65 end_badly ()
66 {
67   die_task = GNUNET_SCHEDULER_NO_TASK;
68   FPRINTF (stderr, "%s",  "Testcase failed (timeout).\n");
69   GNUNET_REGEX_announce_cancel (a);
70   a = NULL;
71   GNUNET_REGEX_search_cancel (s);
72   s = NULL;
73   ok = 1;
74 }
75
76
77 /**
78  * Search callback function, invoked for every result that was found.
79  *
80  * @param cls Closure provided in GNUNET_REGEX_search.
81  * @param id Peer providing a regex that matches the string.
82  * @param get_path Path of the get request.
83  * @param get_path_length Lenght of get_path.
84  * @param put_path Path of the put request.
85  * @param put_path_length Length of the put_path.
86  */
87 static void
88 found_cb (void *cls,
89           const struct GNUNET_PeerIdentity *id,
90           const struct GNUNET_PeerIdentity *get_path,
91           unsigned int get_path_length,
92           const struct GNUNET_PeerIdentity *put_path,
93           unsigned int put_path_length)
94 {
95   GNUNET_SCHEDULER_cancel (die_task);
96   die_task =
97     GNUNET_SCHEDULER_add_now (&end, NULL);
98 }
99
100
101 static void
102 run (void *cls,
103      const struct GNUNET_CONFIGURATION_Handle *cfg,
104      struct GNUNET_TESTING_Peer *peer)
105 {
106   die_task =
107     GNUNET_SCHEDULER_add_delayed (TOTAL_TIMEOUT,
108                                   &end_badly, NULL);
109   a = GNUNET_REGEX_announce (cfg,
110                              "my long prefix - hello world(0|1)*",
111                              GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS,
112                                                             5),
113                              1);
114   s = GNUNET_REGEX_search (cfg,
115                            "my long prefix - hello world0101",
116                            &found_cb, NULL);
117 }
118
119
120 int
121 main (int argc, char *argv[])
122 {
123   if (0 != GNUNET_TESTING_peer_run ("test-regex-api",
124                                     "test_regex_api_data.conf",
125                                     &run, NULL))
126     return 1;
127   return ok;
128 }
129
130 /* end of test_regex_api.c */