Tests for module 'regex-quote'.
[gnulib.git] / tests / test-regex-quote.c
1 /* Test of constructing a regular expression from a literal string.
2    Copyright (C) 2010 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Bruno Haible <bruno@clisp.org>, 2010.  */
18
19 #include <config.h>
20
21 #include "regex-quote.h"
22
23 #include <string.h>
24
25 #include "regex.h"
26 #include "xalloc.h"
27 #include "macros.h"
28
29 static void
30 check (const char *literal, int cflags, const char *expected)
31 {
32   char *result;
33   size_t length;
34
35   result = regex_quote (literal, cflags);
36   ASSERT (strcmp (result, expected) == 0);
37   length = regex_quote_length (literal, cflags);
38   ASSERT (length == strlen (result));
39   free (result);
40
41   result = (char *) xmalloc (1 + length + 1 + 1);
42   result[0] = '^';
43   strcpy (regex_quote_copy (result + 1, literal, cflags), "$");
44   {
45     regex_t regex;
46     regmatch_t match[1];
47
48     ASSERT (regcomp (&regex, result, cflags) == 0);
49
50     ASSERT (regexec (&regex, literal, 1, match, 0) == 0);
51     ASSERT (match[0].rm_so == 0);
52     ASSERT (match[0].rm_eo == strlen (literal));
53     regfree (&regex);
54   }
55   free (result);
56 }
57
58 static void
59 test_bre (void)
60 {
61   check ("aBc", 0, "aBc");
62   check ("(foo[$HOME])", 0, "(foo\\[\\$HOME\\])");
63 }
64
65 static void
66 test_ere (void)
67 {
68   check ("aBc", REG_EXTENDED, "aBc");
69   check ("(foo[$HOME])", REG_EXTENDED, "\\(foo\\[\\$HOME\\]\\)");
70 }
71
72 int
73 main ()
74 {
75   test_bre ();
76   test_ere ();
77   return 0;
78 }