-follow naming and coding style conventions
[oweals/gnunet.git] / src / regex / test_regex_graph_api.c
index 303a0ce07d564e845fa456164bc31c2bbca03cdf..cc4370c851f6562d1f18f2da2a3c76b0cf6e1728 100644 (file)
@@ -26,6 +26,7 @@
 #include <time.h>
 #include "platform.h"
 #include "regex_internal_lib.h"
+#include "regex_test_lib.h"
 #include "regex_internal.h"
 
 #define KEEP_FILES 1
@@ -73,7 +74,7 @@ int
 main (int argc, char *argv[])
 {
   int error;
-  struct REGEX_ITERNAL_Automaton *a;
+  struct REGEX_INTERNAL_Automaton *a;
   unsigned int i;
   const char *filename = "test_graph.dot";
 
@@ -97,58 +98,58 @@ main (int argc, char *argv[])
   for (i = 0; i < 12; i++)
   {
     /* Check NFA graph creation */
-    a = REGEX_ITERNAL_construct_nfa (regex[i], strlen (regex[i]));
-    REGEX_ITERNAL_automaton_save_graph (a, filename, REGEX_ITERNAL_GRAPH_DEFAULT);
-    REGEX_ITERNAL_automaton_destroy (a);
+    a = REGEX_INTERNAL_construct_nfa (regex[i], strlen (regex[i]));
+    REGEX_TEST_automaton_save_graph (a, filename, REGEX_TEST_GRAPH_DEFAULT);
+    REGEX_INTERNAL_automaton_destroy (a);
     error += filecheck (filename);
 
-    a = REGEX_ITERNAL_construct_nfa (regex[i], strlen (regex[i]));
-    REGEX_ITERNAL_automaton_save_graph (a, filename,
-                                       REGEX_ITERNAL_GRAPH_DEFAULT |
-                                       REGEX_ITERNAL_GRAPH_VERBOSE);
-    REGEX_ITERNAL_automaton_destroy (a);
+    a = REGEX_INTERNAL_construct_nfa (regex[i], strlen (regex[i]));
+    REGEX_TEST_automaton_save_graph (a, filename,
+                                       REGEX_TEST_GRAPH_DEFAULT |
+                                       REGEX_TEST_GRAPH_VERBOSE);
+    REGEX_INTERNAL_automaton_destroy (a);
     error += filecheck (filename);
 
-    a = REGEX_ITERNAL_construct_nfa (regex[i], strlen (regex[i]));
-    REGEX_ITERNAL_automaton_save_graph (a, filename,
-                                       REGEX_ITERNAL_GRAPH_DEFAULT |
-                                       REGEX_ITERNAL_GRAPH_COLORING);
-    REGEX_ITERNAL_automaton_destroy (a);
+    a = REGEX_INTERNAL_construct_nfa (regex[i], strlen (regex[i]));
+    REGEX_TEST_automaton_save_graph (a, filename,
+                                       REGEX_TEST_GRAPH_DEFAULT |
+                                       REGEX_TEST_GRAPH_COLORING);
+    REGEX_INTERNAL_automaton_destroy (a);
     error += filecheck (filename);
 
-    a = REGEX_ITERNAL_construct_nfa (regex[i], strlen (regex[i]));
-    REGEX_ITERNAL_automaton_save_graph (a, filename,
-                                       REGEX_ITERNAL_GRAPH_DEFAULT |
-                                       REGEX_ITERNAL_GRAPH_VERBOSE |
-                                       REGEX_ITERNAL_GRAPH_COLORING);
-    REGEX_ITERNAL_automaton_destroy (a);
+    a = REGEX_INTERNAL_construct_nfa (regex[i], strlen (regex[i]));
+    REGEX_TEST_automaton_save_graph (a, filename,
+                                       REGEX_TEST_GRAPH_DEFAULT |
+                                       REGEX_TEST_GRAPH_VERBOSE |
+                                       REGEX_TEST_GRAPH_COLORING);
+    REGEX_INTERNAL_automaton_destroy (a);
     error += filecheck (filename);
 
 
     /* Check DFA graph creation */
-    a = REGEX_ITERNAL_construct_dfa (regex[i], strlen (regex[i]), 0);
-    REGEX_ITERNAL_automaton_save_graph (a, filename, REGEX_ITERNAL_GRAPH_DEFAULT);
-    REGEX_ITERNAL_automaton_destroy (a);
+    a = REGEX_INTERNAL_construct_dfa (regex[i], strlen (regex[i]), 0);
+    REGEX_TEST_automaton_save_graph (a, filename, REGEX_TEST_GRAPH_DEFAULT);
+    REGEX_INTERNAL_automaton_destroy (a);
     error += filecheck (filename);
 
-    a = REGEX_ITERNAL_construct_dfa (regex[i], strlen (regex[i]), 0);
-    REGEX_ITERNAL_automaton_save_graph (a, filename,
-                                       REGEX_ITERNAL_GRAPH_DEFAULT |
-                                       REGEX_ITERNAL_GRAPH_VERBOSE);
-    REGEX_ITERNAL_automaton_destroy (a);
+    a = REGEX_INTERNAL_construct_dfa (regex[i], strlen (regex[i]), 0);
+    REGEX_TEST_automaton_save_graph (a, filename,
+                                       REGEX_TEST_GRAPH_DEFAULT |
+                                       REGEX_TEST_GRAPH_VERBOSE);
+    REGEX_INTERNAL_automaton_destroy (a);
     error += filecheck (filename);
 
-    a = REGEX_ITERNAL_construct_dfa (regex[i], strlen (regex[i]), 0);
-    REGEX_ITERNAL_automaton_save_graph (a, filename,
-                                       REGEX_ITERNAL_GRAPH_DEFAULT |
-                                       REGEX_ITERNAL_GRAPH_COLORING);
-    REGEX_ITERNAL_automaton_destroy (a);
+    a = REGEX_INTERNAL_construct_dfa (regex[i], strlen (regex[i]), 0);
+    REGEX_TEST_automaton_save_graph (a, filename,
+                                       REGEX_TEST_GRAPH_DEFAULT |
+                                       REGEX_TEST_GRAPH_COLORING);
+    REGEX_INTERNAL_automaton_destroy (a);
     error += filecheck (filename);
 
 
-    a = REGEX_ITERNAL_construct_dfa (regex[i], strlen (regex[i]), 4);
-    REGEX_ITERNAL_automaton_save_graph (a, filename, REGEX_ITERNAL_GRAPH_DEFAULT);
-    REGEX_ITERNAL_automaton_destroy (a);
+    a = REGEX_INTERNAL_construct_dfa (regex[i], strlen (regex[i]), 4);
+    REGEX_TEST_automaton_save_graph (a, filename, REGEX_TEST_GRAPH_DEFAULT);
+    REGEX_INTERNAL_automaton_destroy (a);
     error += filecheck (filename);
 
   }