-test
[oweals/gnunet.git] / src / regex / test_regex_graph_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_graph_api.c
22  * @brief test for regex_graph.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
30 #define KEEP_FILES 0
31
32 /**
33  * Check if 'filename' exists and is not empty.
34  *
35  * @param filename name of the file that should be checked
36  *
37  * @return 0 if ok, non 0 on error.
38  */
39 int
40 filecheck (const char *filename)
41 {
42   int error = 0;
43   FILE *fp = NULL;
44
45   // Check if file was created and delete it again
46   fp = fopen (filename, "r");
47
48   if (NULL == fp)
49   {
50     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "Could not find graph %s\n", filename);
51     error++;
52   }
53
54   fseek (fp, 0L, SEEK_END);
55   if (1 > ftell (fp))
56   {
57     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
58                 "Graph writing failed, got empty file (%s)!\n", filename);
59     error++;
60   }
61
62   error += fclose (fp);
63
64   if (!KEEP_FILES)
65     unlink (filename);
66
67   return error;
68 }
69
70 int
71 main (int argc, char *argv[])
72 {
73   GNUNET_log_setup ("test-regex",
74 #if VERBOSE
75                     "DEBUG",
76 #else
77                     "WARNING",
78 #endif
79                     NULL);
80
81   int error;
82   struct GNUNET_REGEX_Automaton *a;
83   unsigned int i;
84   const char *filename = "test_graph.dot";
85
86   error = 0;
87
88   const char *regex[10] = {
89     "ab(c|d)+c*(a(b|c)+d)+(bla)+",
90     "(bla)*",
91     "b(lab)*la",
92     "(ab)*",
93     "ab(c|d)+c*(a(b|c)+d)+(bla)(bla)*",
94     "z(abc|def)?xyz",
95     "1*0(0|1)*",
96     "a*b*",
97     "a+X*y+c|p|R|Z*K*y*R+w|Y*6+n+h*k*w+V*F|W*B*e*",
98     "a"
99   };
100
101   for (i = 0; i < 10; i++)
102   {
103     // Check NFA graph creation
104     a = GNUNET_REGEX_construct_nfa (regex[i], strlen (regex[i]));
105     GNUNET_REGEX_automaton_save_graph (a, filename, GNUNET_REGEX_GRAPH_DEFAULT);
106     GNUNET_REGEX_automaton_destroy (a);
107     error += filecheck (filename);
108
109     a = GNUNET_REGEX_construct_nfa (regex[i], strlen (regex[i]));
110     GNUNET_REGEX_automaton_save_graph (a, filename,
111                                        GNUNET_REGEX_GRAPH_DEFAULT |
112                                        GNUNET_REGEX_GRAPH_VERBOSE);
113     GNUNET_REGEX_automaton_destroy (a);
114     error += filecheck (filename);
115
116     a = GNUNET_REGEX_construct_nfa (regex[i], strlen (regex[i]));
117     GNUNET_REGEX_automaton_save_graph (a, filename,
118                                        GNUNET_REGEX_GRAPH_DEFAULT |
119                                        GNUNET_REGEX_GRAPH_COLORING);
120     GNUNET_REGEX_automaton_destroy (a);
121     error += filecheck (filename);
122
123     a = GNUNET_REGEX_construct_nfa (regex[i], strlen (regex[i]));
124     GNUNET_REGEX_automaton_save_graph (a, filename,
125                                        GNUNET_REGEX_GRAPH_DEFAULT |
126                                        GNUNET_REGEX_GRAPH_VERBOSE |
127                                        GNUNET_REGEX_GRAPH_COLORING);
128     GNUNET_REGEX_automaton_destroy (a);
129     error += filecheck (filename);
130
131
132     // Check DFA graph creation
133     a = GNUNET_REGEX_construct_dfa (regex[i], strlen (regex[i]));
134     GNUNET_REGEX_automaton_save_graph (a, filename, GNUNET_REGEX_GRAPH_DEFAULT);
135     GNUNET_REGEX_automaton_destroy (a);
136     error += filecheck (filename);
137
138     a = GNUNET_REGEX_construct_dfa (regex[i], strlen (regex[i]));
139     GNUNET_REGEX_automaton_save_graph (a, filename,
140                                        GNUNET_REGEX_GRAPH_DEFAULT |
141                                        GNUNET_REGEX_GRAPH_VERBOSE);
142     GNUNET_REGEX_automaton_destroy (a);
143     error += filecheck (filename);
144
145     a = GNUNET_REGEX_construct_dfa (regex[i], strlen (regex[i]));
146     GNUNET_REGEX_automaton_save_graph (a, filename,
147                                        GNUNET_REGEX_GRAPH_DEFAULT |
148                                        GNUNET_REGEX_GRAPH_COLORING);
149     GNUNET_REGEX_automaton_destroy (a);
150     error += filecheck (filename);
151
152
153     a = GNUNET_REGEX_construct_dfa (regex[i], strlen (regex[i]));
154     GNUNET_REGEX_automaton_save_graph (a, filename,
155                                        GNUNET_REGEX_GRAPH_DEFAULT |
156                                        GNUNET_REGEX_GRAPH_VERBOSE |
157                                        GNUNET_REGEX_GRAPH_COLORING);
158     GNUNET_REGEX_automaton_destroy (a);
159     error += filecheck (filename);
160
161   }
162
163   return error;
164 }