uncrustify as demanded.
[oweals/gnunet.git] / src / regex / test_regex_api.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2013 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 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 struct GNUNET_SCHEDULER_Task *die_task;
49
50
51 static void
52 end(void *cls)
53 {
54   die_task = NULL;
55   GNUNET_REGEX_announce_cancel(a);
56   a = NULL;
57   GNUNET_REGEX_search_cancel(s);
58   s = NULL;
59   ok = 0;
60 }
61
62
63 static void
64 end_badly()
65 {
66   die_task = NULL;
67   fprintf(stderr, "%s", "Testcase failed (timeout).\n");
68   GNUNET_REGEX_announce_cancel(a);
69   a = NULL;
70   GNUNET_REGEX_search_cancel(s);
71   s = NULL;
72   ok = 1;
73 }
74
75
76 /**
77  * Search callback function, invoked for every result that was found.
78  *
79  * @param cls Closure provided in GNUNET_REGEX_search.
80  * @param id Peer providing a regex that matches the string.
81  * @param get_path Path of the get request.
82  * @param get_path_length Lenght of get_path.
83  * @param put_path Path of the put request.
84  * @param put_path_length Length of the put_path.
85  */
86 static void
87 found_cb(void *cls,
88          const struct GNUNET_PeerIdentity *id,
89          const struct GNUNET_PeerIdentity *get_path,
90          unsigned int get_path_length,
91          const struct GNUNET_PeerIdentity *put_path,
92          unsigned int put_path_length)
93 {
94   GNUNET_SCHEDULER_cancel(die_task);
95   die_task =
96     GNUNET_SCHEDULER_add_now(&end, NULL);
97 }
98
99
100 static void
101 run(void *cls,
102     const struct GNUNET_CONFIGURATION_Handle *cfg,
103     struct GNUNET_TESTING_Peer *peer)
104 {
105   die_task =
106     GNUNET_SCHEDULER_add_delayed(TOTAL_TIMEOUT,
107                                  &end_badly, NULL);
108   a = GNUNET_REGEX_announce(cfg,
109                             "my long prefix - hello world(0|1)*",
110                             GNUNET_TIME_relative_multiply(GNUNET_TIME_UNIT_SECONDS,
111                                                           5),
112                             1);
113   s = GNUNET_REGEX_search(cfg,
114                           "my long prefix - hello world0101",
115                           &found_cb, NULL);
116 }
117
118
119 int
120 main(int argc, char *argv[])
121 {
122   if (0 != GNUNET_TESTING_peer_run("test-regex-api",
123                                    "test_regex_api_data.conf",
124                                    &run, NULL))
125     return 1;
126   return ok;
127 }
128
129 /* end of test_regex_api.c */