- use constants for delays
[oweals/gnunet.git] / src / regex / test_regex_eval_api.c
1 /*
2      This file is part of GNUnet
3      (C) 2012 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_eval_api.c
22  * @brief test for regex.c
23  * @author Maximilian Szengel
24  */
25 #include <regex.h>
26 #include <time.h>
27 #include "platform.h"
28 #include "gnunet_regex_lib.h"
29 #include "regex_internal.h"
30
31 enum Match_Result
32 {
33   match = 0,
34   nomatch = 1
35 };
36
37 struct Regex_String_Pair
38 {
39   char *regex;
40   int string_count;
41   char *strings[20];
42   enum Match_Result expected_results[20];
43 };
44
45
46 /**
47  * Random regex test. Generate a random regex as well as 'str_count' strings to
48  * match it against. Will match using GNUNET_REGEX implementation and compare
49  * the result to glibc regex result. 'rx_length' has to be smaller then
50  * 'max_str_len'.
51  *
52  * @param rx_length length of the regular expression.
53  * @param max_str_len maximum length of the random strings.
54  * @param str_count number of generated random strings.
55  *
56  * @return 0 on success, non 0 otherwise.
57  */
58 int
59 test_random (unsigned int rx_length, unsigned int max_str_len,
60              unsigned int str_count)
61 {
62   unsigned int i;
63   char *rand_rx;
64   char *matching_str;
65   int eval;
66   int eval_check;
67   int eval_canonical;
68   int eval_canonical_check;
69   struct GNUNET_REGEX_Automaton *dfa;
70   regex_t rx;
71   regmatch_t matchptr[1];
72   char error[200];
73   int result;
74   char *canonical_regex = NULL;
75
76   /* At least one string is needed for matching */
77   GNUNET_assert (str_count > 0);
78   /* The string should be at least as long as the regex itself */
79   GNUNET_assert (max_str_len >= rx_length);
80
81   /* Generate random regex and a string that matches the regex */
82   matching_str = GNUNET_malloc (rx_length + 1);
83   rand_rx = GNUNET_REGEX_generate_random_regex (rx_length, matching_str);
84
85   /* Now match */
86   result = 0;
87   for (i = 0; i < str_count; i++)
88   {
89     if (0 < i)
90     {
91       matching_str = GNUNET_REGEX_generate_random_string (max_str_len);
92     }
93
94     /* Match string using DFA */
95     dfa = GNUNET_REGEX_construct_dfa (rand_rx, strlen (rand_rx), 0);
96     if (NULL == dfa)
97     {
98       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Constructing DFA failed\n");
99       goto error;
100     }
101
102     eval = GNUNET_REGEX_eval (dfa, matching_str);
103     /* save the canonical regex for later comparison */
104     canonical_regex = GNUNET_strdup (GNUNET_REGEX_get_canonical_regex (dfa));
105     GNUNET_REGEX_automaton_destroy (dfa);
106
107     /* Match string using glibc regex */
108     if (0 != regcomp (&rx, rand_rx, REG_EXTENDED))
109     {
110       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
111                   "Could not compile regex using regcomp: %s\n", rand_rx);
112       goto error;
113     }
114
115     eval_check = regexec (&rx, matching_str, 1, matchptr, 0);
116     regfree (&rx);
117
118     /* We only want to match the whole string, because that's what our DFA does,
119      * too. */
120     if (eval_check == 0 &&
121         (matchptr[0].rm_so != 0 || matchptr[0].rm_eo != strlen (matching_str)))
122       eval_check = 1;
123
124     /* Match canonical regex */
125     dfa =
126         GNUNET_REGEX_construct_dfa (canonical_regex, strlen (canonical_regex),
127                                     0);
128     if (NULL == dfa)
129     {
130       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Constructing DFA failed\n");
131       goto error;
132     }
133
134     eval_canonical = GNUNET_REGEX_eval (dfa, matching_str);
135     GNUNET_REGEX_automaton_destroy (dfa);
136
137     if (0 != regcomp (&rx, canonical_regex, REG_EXTENDED))
138     {
139       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
140                   "Could not compile regex using regcomp: %s\n",
141                   canonical_regex);
142       goto error;
143     }
144
145     eval_canonical_check = regexec (&rx, matching_str, 1, matchptr, 0);
146     regfree (&rx);
147
148     /* We only want to match the whole string, because that's what our DFA does,
149      * too. */
150     if (eval_canonical_check == 0 &&
151         (matchptr[0].rm_so != 0 || matchptr[0].rm_eo != strlen (matching_str)))
152       eval_canonical_check = 1;
153
154     /* compare results */
155     if (eval_check != eval || eval_canonical != eval_canonical_check)
156     {
157       regerror (eval_check, &rx, error, sizeof error);
158       GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Unexpected result:\nregex: %s\ncanonical_regex: %s\n\
159                    string: %s\ngnunet regex: %i\nglibc regex: %i\n\
160                    canonical regex: %i\ncanonical regex glibc: %i\n\
161                    glibc error: %s\n\n", rand_rx, canonical_regex, matching_str,
162                   eval, eval_check, eval_canonical, eval_canonical_check, error);
163       result += 1;
164     }
165     GNUNET_free (canonical_regex);
166     GNUNET_free (matching_str);
167     canonical_regex = NULL;
168     matching_str = NULL;
169   }
170
171   GNUNET_free (rand_rx);
172
173   return result;
174
175 error:
176   GNUNET_free_non_null (matching_str);
177   GNUNET_free_non_null (rand_rx);
178   GNUNET_free_non_null (canonical_regex);
179   return -1;
180 }
181
182 /**
183  * Automaton test that compares the result of matching regular expression 'rx'
184  * with the strings and expected results in 'rxstr' with the result of matching
185  * the same strings with glibc regex.
186  *
187  * @param a automaton.
188  * @param rx compiled glibc regex.
189  * @param rxstr regular expression and strings with expected results to
190  *              match against.
191  *
192  * @return 0 on successfull, non 0 otherwise
193  */
194 int
195 test_automaton (struct GNUNET_REGEX_Automaton *a, regex_t * rx,
196                 struct Regex_String_Pair *rxstr)
197 {
198   int result;
199   int eval;
200   int eval_check;
201   char error[200];
202   regmatch_t matchptr[1];
203   int i;
204
205   if (NULL == a)
206   {
207     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Automaton was NULL\n");
208     return 1;
209   }
210
211   result = 0;
212
213   for (i = 0; i < rxstr->string_count; i++)
214   {
215     eval = GNUNET_REGEX_eval (a, rxstr->strings[i]);
216     eval_check = regexec (rx, rxstr->strings[i], 1, matchptr, 0);
217
218     /* We only want to match the whole string, because that's what our DFA does,
219      * too. */
220     if (eval_check == 0 &&
221         (matchptr[0].rm_so != 0 ||
222          matchptr[0].rm_eo != strlen (rxstr->strings[i])))
223       eval_check = 1;
224
225     if ((rxstr->expected_results[i] == match && (0 != eval || 0 != eval_check))
226         || (rxstr->expected_results[i] == nomatch &&
227             (0 == eval || 0 == eval_check)))
228     {
229       result = 1;
230       regerror (eval_check, rx, error, sizeof error);
231       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
232                   "Unexpected result:\nregex: %s\ncanonical_regex: %s\n"
233                   "string: %s\nexpected result: %i\n"
234                   "gnunet regex: %i\nglibc regex: %i\nglibc error: %s\n"
235                   "rm_so: %i\nrm_eo: %i\n\n", rxstr->regex,
236                   GNUNET_REGEX_get_canonical_regex (a), rxstr->strings[i],
237                   rxstr->expected_results[i], eval, eval_check, error,
238                   matchptr[0].rm_so, matchptr[0].rm_eo);
239     }
240   }
241   return result;
242 }
243
244 int
245 main (int argc, char *argv[])
246 {
247   GNUNET_log_setup ("test-regex", "WARNING", NULL);
248
249   struct GNUNET_REGEX_Automaton *a;
250   regex_t rx;
251   int i;
252   int check_nfa;
253   int check_dfa;
254   int check_rand;
255   char *check_proof;
256
257   struct Regex_String_Pair rxstr[19] = {
258     {"ab?(abcd)?", 5,
259      {"ababcd", "abab", "aabcd", "a", "abb"},
260      {match, nomatch, match, match, nomatch}},
261     {"ab(c|d)+c*(a(b|c)d)+", 5,
262      {"abcdcdcdcdddddabd", "abcd",
263       "abcddddddccccccccccccccccccccccccabdacdabd",
264       "abccccca", "abcdcdcdccdabdabd"},
265      {match, nomatch, match, nomatch, match}},
266     {"ab+c*(a(bx|c)d)+", 5,
267      {"abcdcdcdcdddddabd", "abcd",
268       "abcddddddccccccccccccccccccccccccabdacdabd",
269       "abccccca", "abcdcdcdccdabdabd"},
270      {nomatch, nomatch, nomatch, nomatch, nomatch}},
271     {"a+X*y+c|p|R|Z*K*y*R+w|Y*6+n+h*k*w+V*F|W*B*e*", 1,
272      {"kaXycQepRZKyRwY6nhkwVFWBegNVtLPj39XhJJ6bEifRSZRYZg"},
273      {nomatch}},
274     {"k|a+X*y+c|Q*e|p|R|Z*K*y*R+w|Y*6+n+h*k*w+V*F|W*B*e*g|N+V|t+L|P*j*3*9+X*h*J|J*6|b|E*i*f*R+S|Z|R|Y*Z|g*", 1,
275      {"kaXycQepRZKyRwY6nhkwVFWBegNVtLPj39XhJJ6bEifRSZRYZg"},
276      {nomatch}},
277     {"F?W+m+2*6*c*s|P?U?a|B|y*i+t+A|V|6*C*7*e?Z*n*i|J?5+g?W*V?7*j?p?1|r?B?C+E+3+6*i+W*P?K?0|D+7?y*m+3?g?K?", 1,
278      {"osfjsodfonONONOnosndfsdnfsd"},
279      {nomatch}},
280     {"V|M*o?x*p*d+h+b|E*m?h?Y*E*O?W*W*P+o?Z+H*M|I*q+C*a+5?5*9|b?z|G*y*k?R|p+u|8*h?B+l*H|e|L*O|1|F?v*0?5|C+", 1,
281      {"VMoxpdhbEmhYEOWWPoZHMIqCa559bzGykRpu8hBlHeLO1Fv05C"},
282      {nomatch}},
283     {"(bla)*", 8,
284      {"", "bla", "blabla", "bl", "la", "b", "l", "a"},
285      {match, match, match, nomatch, nomatch, nomatch, nomatch, nomatch}},
286     {"ab(c|d)+c*(a(b|c)+d)+(bla)(bla)*", 8,
287      {"ab", "abcabdbla", "abdcccccccccccabcbccdblablabla", "bl", "la", "b",
288       "l",
289       "a"},
290      {nomatch, match, match, nomatch, nomatch, nomatch, nomatch, nomatch}},
291     {"a|aa*a", 6,
292      {"", "a", "aa", "aaa", "aaaa", "aaaaa"},
293      {nomatch, match, match, match, match, match}},
294     {"ab(c|d)+c*(a(b|c)+d)+(bla)+", 1,
295      {"abcabdblaacdbla"},
296      {nomatch}},
297     {"(ac|b)+", 8,
298      {"b", "bb", "ac", "", "acb", "bacbacac", "acacac", "abc"},
299      {match, match, match, nomatch, match, match, match, nomatch}},
300     {"(ab|c)+", 7,
301      {"", "ab", "c", "abc", "ababcc", "acc", "abac"},
302      {nomatch, match, match, match, match, nomatch, nomatch}},
303     {"((j|2j)K|(j|2j)AK|(j|2j)(D|e|(j|2j)A(D|e))D*K)", 1,
304      {"", "2j2jADK", "j2jADK"},
305      {nomatch, match, match}},
306     {"((j|2j)K|(j|2j)(D|e|((j|2j)j|(j|2j)2j)A(D|e))D*K|(j|2j)AK)", 2,
307      {"", "2j2jjADK", "j2jADK"},
308      {nomatch, match, match}},
309     {"ab(c|d)+c*(a(b|c)d)+", 1,
310      {"abacd"},
311      {nomatch}},
312     {"d|5kl", 1,
313      {"d5kl"},
314      {nomatch}},
315     {"a()b", 1,
316      {"ab"},
317      {match}},
318     {"GNVPN-0001-PAD(001110101001001010(0|1)*|001110101001001010000(0|1)*|001110101001001010001(0|1)*|001110101001001010010(0|1)*|001110101001001010011(0|1)*|001110101001001010100(0|1)*|001110101001001010101(0|1)*|001110101001001010110(0|1)*|001110101001001010111(0|1)*|0011101010110110(0|1)*|001110101011011000000(0|1)*|001110101011011000001(0|1)*|001110101011011000010(0|1)*|001110101011011000011(0|1)*|001110101011011000100(0|1)*|001110101011011000101(0|1)*|001110101011011000110(0|1)*|001110101011011000111(0|1)*|001110101011011001000(0|1)*|001110101011011001001(0|1)*|001110101011011001010(0|1)*|001110101011011001011(0|1)*|001110101011011001100(0|1)*|001110101011011001101(0|1)*|001110101011011001110(0|1)*|001110101011011001111(0|1)*|001110101011011010000(0|1)*|001110101011011010001(0|1)*|001110101011011010010(0|1)*|001110101011011010011(0|1)*|001110101011011010100(0|1)*|001110101011011010101(0|1)*|001110101011011010110(0|1)*|001110101011011010111(0|1)*|001110101011011011000(0|1)*|001110101011011011001(0|1)*|001110101011011011010(0|1)*|001110101011011011011(0|1)*|001110101011011011100(0|1)*|001110101011011011101(0|1)*|001110101011011011110(0|1)*|001110101011011011111(0|1)*|0011101110111101(0|1)*|001110111011110100000(0|1)*|001110111011110100001(0|1)*|001110111011110100010(0|1)*|001110111011110100011(0|1)*|001110111011110100100(0|1)*|001110111011110100101(0|1)*|001110111011110100110(0|1)*|001110111011110100111(0|1)*|001110111011110101000(0|1)*|001110111011110101001(0|1)*|001110111011110101010(0|1)*|001110111011110101011(0|1)*|001110111011110101100(0|1)*|001110111011110101101(0|1)*|001110111011110101110(0|1)*|001110111011110101111(0|1)*|001110111011110110000(0|1)*|001110111011110110001(0|1)*|001110111011110110010(0|1)*|001110111011110110011(0|1)*|001110111011110110100(0|1)*|001110111011110110101(0|1)*|001110111011110110110(0|1)*|001110111011110110111(0|1)*|001110111011110111000(0|1)*|001110111011110111001(0|1)*|001110111011110111010(0|1)*|001110111011110111011(0|1)*|001110111011110111100(0|1)*|001110111011110111101(0|1)*|001110111011110111110(0|1)*|0111010001010110(0|1)*|011101000101011000000(0|1)*|011101000101011000001(0|1)*|011101000101011000010(0|1)*|011101000101011000011(0|1)*|011101000101011000100(0|1)*|011101000101011000101(0|1)*|011101000101011000110(0|1)*|011101000101011000111(0|1)*|011101000101011001000(0|1)*|011101000101011001001(0|1)*|011101000101011001010(0|1)*|011101000101011001011(0|1)*|011101000101011001100(0|1)*|011101000101011001101(0|1)*|011101000101011001110(0|1)*|011101000101011001111(0|1)*|011101000101011010000(0|1)*|011101000101011010001(0|1)*|011101000101011010010(0|1)*|011101000101011010011(0|1)*|011101000101011010100(0|1)*|011101000101011010101(0|1)*|011101000101011010110(0|1)*|011101000101011010111(0|1)*|011101000101011011000(0|1)*|011101000101011011001(0|1)*|011101000101011011010(0|1)*|011101000101011011011(0|1)*|011101000101011011100(0|1)*|011101000101011011101(0|1)*|011101000101011011110(0|1)*|011101000101011011111(0|1)*|0111010001010111(0|1)*|011101000101011100000(0|1)*|011101000101011100001(0|1)*|011101000101011100010(0|1)*|011101000101011100011(0|1)*|011101000101011100100(0|1)*|011101000101011100101(0|1)*|011101000101011100110(0|1)*|011101000101011100111(0|1)*|011101000101011101000(0|1)*|011101000101011101001(0|1)*|011101000101011101010(0|1)*|011101000101011101011(0|1)*|011101000101011101100(0|1)*|011101000101011101101(0|1)*|011101000101011101110(0|1)*|011101000101011101111(0|1)*|011101000101011110000(0|1)*|011101000101011110001(0|1)*|011101000101011110010(0|1)*|011101000101011110011(0|1)*|011101000101011110100(0|1)*|011101000101011110101(0|1)*|011101000101011110110(0|1)*|011101000101011110111(0|1)*|011101000101011111000(0|1)*|011101000101011111001(0|1)*|011101000101011111010(0|1)*|011101000101011111011(0|1)*|011101000101011111100(0|1)*|011101000101011111101(0|1)*|011101000101011111110(0|1)*|011101000101011111111(0|1)*|0111010001011000(0|1)*|011101000101100000000(0|1)*|011101000101100000001(0|1)*|011101000101100000010(0|1)*|011101000101100000011(0|1)*|011101000101100000100(0|1)*|011101000101100000101(0|1)*|011101000101100000110(0|1)*|011101000101100000111(0|1)*|011101000101100001000(0|1)*|011101000101100001001(0|1)*|011101000101100001010(0|1)*|011101000101100001011(0|1)*|011101000101100001100(0|1)*|011101000101100001101(0|1)*|011101000101100001110(0|1)*|011101000101100001111(0|1)*|011101000101100010000(0|1)*|011101000101100010001(0|1)*|011101000101100010010(0|1)*|011101000101100010011(0|1)*|011101000101100010100(0|1)*|011101000101100010101(0|1)*|011101000101100010110(0|1)*|011101000101100010111(0|1)*|011101000101100011000(0|1)*|011101000101100011001(0|1)*|011101000101100011010(0|1)*|011101000101100011011(0|1)*|011101000101100011100(0|1)*|011101000101100011101(0|1)*|011101000101100011110(0|1)*|011101000101100011111(0|1)*|01110100010110010(0|1)*|011101000101100100000(0|1)*|011101000101100100001(0|1)*|011101000101100100010(0|1)*|011101000101100100011(0|1)*|011101000101100100100(0|1)*|011101000101100100101(0|1)*|011101000101100100110(0|1)*|011101000101100100111(0|1)*|011101000101100101000(0|1)*|011101000101100101001(0|1)*|011101000101100101010(0|1)*|011101000101100101011(0|1)*|011101000101100101100(0|1)*|011101000101100101101(0|1)*|011101000101100101110(0|1)*|011101000101100101111(0|1)*|011101000101100101111000(0|1)*|1100101010011100(0|1)*|110010101001110000000(0|1)*|110010101001110000000001(0|1)*|110010101001110000000010(0|1)*|110010101001110000000110(0|1)*|110010101001110000001(0|1)*|110010101001110000001000(0|1)*|110010101001110000001001(0|1)*|110010101001110000001010(0|1)*|110010101001110000001011(0|1)*|110010101001110000001101(0|1)*|110010101001110000001110(0|1)*|110010101001110000010(0|1)*|110010101001110000011(0|1)*|110010101001110000100(0|1)*|110010101001110000101(0|1)*|110010101001110000110(0|1)*|110010101001110000111(0|1)*|110010101001110001000(0|1)*|110010101001110001001(0|1)*|110010101001110001010(0|1)*|110010101001110001011(0|1)*|110010101001110001100(0|1)*|110010101001110001101(0|1)*|110010101001110001110(0|1)*|110010101001110001111(0|1)*|110010101001110010000(0|1)*|110010101001110010001(0|1)*|110010101001110010010(0|1)*|110010101001110010011(0|1)*|110010101001110010100(0|1)*|110010101001110010101(0|1)*|110010101001110010110(0|1)*|110010101001110010111(0|1)*|110010101001110011000(0|1)*|110010101001110011001(0|1)*|110010101001110011010(0|1)*|110010101001110011011(0|1)*|110010101001110011100(0|1)*|110010101001110011101(0|1)*|110010101001110011110(0|1)*|110010101001110011111(0|1)*|1101101010111010(0|1)*|110110101011101000000(0|1)*|110110101011101000000001(0|1)*|110110101011101000001000(0|1)*|110110101011101000001001(0|1)*|110110101011101000001010(0|1)*|110110101011101000001011(0|1)*|110110101011101000001100(0|1)*|110110101011101000001110(0|1)*|110110101011101000001111(0|1)*|110110101011101000010(0|1)*|110110101011101000010000(0|1)*|110110101011101000010001(0|1)*|110110101011101000010010(0|1)*|110110101011101000010011(0|1)*|110110101011101000011(0|1)*|110110101011101000100(0|1)*|110110101011101000101(0|1)*|110110101011101000110(0|1)*|110110101011101000111(0|1)*|110110101011101001000(0|1)*|110110101011101001001(0|1)*|110110101011101001010(0|1)*|110110101011101001011(0|1)*|110110101011101001100(0|1)*|110110101011101001101(0|1)*|110110101011101001110(0|1)*|110110101011101001111(0|1)*|110110101011101010000(0|1)*|110110101011101010001(0|1)*|110110101011101010010(0|1)*|110110101011101010011(0|1)*|110110101011101010100(0|1)*|110110101011101010101(0|1)*|110110101011101010110(0|1)*|110110101011101010111(0|1)*|110110101011101011000(0|1)*|110110101011101011001(0|1)*|110110101011101011010(0|1)*|110110101011101011011(0|1)*|110110101011101011100(0|1)*|110110101011101011101(0|1)*|110110101011101011110(0|1)*|110110101011101011111(0|1)*|1101101011010100(0|1)*|110110101101010000000(0|1)*|110110101101010000001(0|1)*|110110101101010000010(0|1)*|110110101101010000011(0|1)*|110110101101010000100(0|1)*|110110101101010000101(0|1)*|110110101101010000110(0|1)*|110110101101010000111(0|1)*|110110101101010001000(0|1)*|110110101101010001001(0|1)*|110110101101010001010(0|1)*|110110101101010001011(0|1)*|110110101101010001100(0|1)*|110110101101010001101(0|1)*|110110101101010001110(0|1)*|110110101101010001111(0|1)*|110110101101010010000(0|1)*|110110101101010010001(0|1)*|110110101101010010010(0|1)*|110110101101010010011(0|1)*|110110101101010010100(0|1)*|1101101011010100101000(0|1)*|110110101101010010101(0|1)*|110110101101010010110(0|1)*|110110101101010010111(0|1)*|110110101101010011000(0|1)*|110110101101010011010(0|1)*|110110101101010011011(0|1)*|110110101101010011100(0|1)*|110110101101010011101(0|1)*|110110101101010011110(0|1)*|110110101101010011111(0|1)*|1101111010100100(0|1)*|110111101010010000000(0|1)*|110111101010010000001(0|1)*|110111101010010000010(0|1)*|110111101010010000011(0|1)*|110111101010010000100(0|1)*|110111101010010000101(0|1)*|110111101010010000110(0|1)*|110111101010010000111(0|1)*|110111101010010001000(0|1)*|110111101010010001001(0|1)*|110111101010010001010(0|1)*|110111101010010001011(0|1)*|110111101010010001100(0|1)*|110111101010010001101(0|1)*|110111101010010001110(0|1)*|110111101010010001111(0|1)*|110111101010010010000(0|1)*|110111101010010010001(0|1)*|110111101010010010010(0|1)*|110111101010010010011(0|1)*|110111101010010010100(0|1)*|110111101010010010101(0|1)*|110111101010010010110(0|1)*|110111101010010010111(0|1)*|110111101010010011000(0|1)*|110111101010010011001(0|1)*|110111101010010011010(0|1)*|110111101010010011011(0|1)*|110111101010010011100(0|1)*|110111101010010011101(0|1)*|110111101010010011110(0|1)*|110111101010010011111(0|1)*|11011110101001010(0|1)*|110111101010010100000(0|1)*|110111101010010100001(0|1)*|110111101010010100010(0|1)*|110111101010010100011(0|1)*|110111101010010100100(0|1)*|110111101010010100101(0|1)*|110111101010010100110(0|1)*|110111101010010100111(0|1)*|110111101010010101000(0|1)*|110111101010010101001(0|1)*|110111101010010101010(0|1)*|110111101010010101011(0|1)*|110111101010010101100(0|1)*|110111101010010101101(0|1)*|110111101010010101110(0|1)*|110111101010010101111(0|1)*)",
319      2,
320      {"GNVPN-0001-PAD1101111010100101011101010101010101",
321       "GNVPN-0001-PAD11001010100111000101101010101"},
322      {match, match}}
323   };
324
325   check_nfa = 0;
326   check_dfa = 0;
327   check_rand = 0;
328
329   for (i = 0; i < 19; i++)
330   {
331     if (0 != regcomp (&rx, rxstr[i].regex, REG_EXTENDED))
332     {
333       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
334                   "Could not compile regex using regcomp()\n");
335       return 1;
336     }
337
338     /* NFA test */
339     a = GNUNET_REGEX_construct_nfa (rxstr[i].regex, strlen (rxstr[i].regex));
340     check_nfa += test_automaton (a, &rx, &rxstr[i]);
341     GNUNET_REGEX_automaton_destroy (a);
342
343     /* DFA test */
344     a = GNUNET_REGEX_construct_dfa (rxstr[i].regex, strlen (rxstr[i].regex), 0);
345     check_dfa += test_automaton (a, &rx, &rxstr[i]);
346     check_proof = GNUNET_strdup (GNUNET_REGEX_get_canonical_regex (a));
347     GNUNET_REGEX_automaton_destroy (a);
348
349     a = GNUNET_REGEX_construct_dfa (check_proof, strlen (check_proof), 0);
350     check_dfa += test_automaton (a, &rx, &rxstr[i]);
351     GNUNET_REGEX_automaton_destroy (a);
352     if (0 != check_dfa)
353       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "check_proof: %s\n", check_proof);
354     GNUNET_free_non_null (check_proof);
355
356     regfree (&rx);
357   }
358
359   /* Random tests */
360   srand (time (NULL));
361   for (i = 0; i < 20; i++)
362     check_rand += test_random (50, 60, 10);
363
364   return check_nfa + check_dfa + check_rand;
365 }