Convert c-strcasestr to be more efficient.
[gnulib.git] / tests / test-c-strcasestr.c
1 /* Test of case-insensitive searching in a string.
2    Copyright (C) 2007, 2008 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>, 2007.  */
18
19 #include <config.h>
20
21 #include "c-strcasestr.h"
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26
27 #define ASSERT(expr) \
28   do                                                                         \
29     {                                                                        \
30       if (!(expr))                                                           \
31         {                                                                    \
32           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
33           abort ();                                                          \
34         }                                                                    \
35     }                                                                        \
36   while (0)
37
38 int
39 main ()
40 {
41   {
42     const char input[] = "foo";
43     const char *result = c_strcasestr (input, "");
44     ASSERT (result == input);
45   }
46
47   {
48     const char input[] = "foo";
49     const char *result = c_strcasestr (input, "O");
50     ASSERT (result == input + 1);
51   }
52
53   {
54     const char input[] = "ABC ABCDAB ABCDABCDABDE";
55     const char *result = c_strcasestr (input, "ABCDaBD");
56     ASSERT (result == input + 15);
57   }
58
59   {
60     const char input[] = "ABC ABCDAB ABCDABCDABDE";
61     const char *result = c_strcasestr (input, "ABCDaBE");
62     ASSERT (result == NULL);
63   }
64
65   {
66     const char input[] = "ABC ABCDAB ABCDABCDABDE";
67     const char *result = c_strcasestr (input, "ABCDaBCD");
68     ASSERT (result == input + 11);
69   }
70
71   /* Check that a very long haystack is handled quickly if the needle is
72      short and occurs near the beginning.  */
73   {
74     size_t repeat = 10000;
75     size_t m = 1000000;
76     char *needle =
77       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
78       "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAaaaaaaAAAAaaaaaaa"
79       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
80     char *haystack = (char *) malloc (m + 1);
81     if (haystack != NULL)
82       {
83         memset (haystack, 'A', m);
84         haystack[0] = 'B';
85         haystack[m] = '\0';
86
87         for (; repeat > 0; repeat--)
88           {
89             ASSERT (c_strcasestr (haystack, needle) == haystack + 1);
90           }
91
92         free (haystack);
93       }
94   }
95
96   /* Check that a very long needle is discarded quickly if the haystack is
97      short.  */
98   {
99     size_t repeat = 10000;
100     size_t m = 1000000;
101     char *haystack =
102       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
103       "ABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABAB";
104     char *needle = (char *) malloc (m + 1);
105     if (needle != NULL)
106       {
107         memset (needle, 'A', m);
108         needle[m] = '\0';
109
110         for (; repeat > 0; repeat--)
111           {
112             ASSERT (c_strcasestr (haystack, needle) == NULL);
113           }
114
115         free (needle);
116       }
117   }
118
119   /* Check that the asymptotic worst-case complexity is not quadratic.  */
120   {
121     size_t m = 1000000;
122     char *haystack = (char *) malloc (2 * m + 2);
123     char *needle = (char *) malloc (m + 2);
124     if (haystack != NULL && needle != NULL)
125       {
126         const char *result;
127
128         memset (haystack, 'A', 2 * m);
129         haystack[2 * m] = 'B';
130         haystack[2 * m + 1] = '\0';
131
132         memset (needle, 'a', m);
133         needle[m] = 'B';
134         needle[m + 1] = '\0';
135
136         result = c_strcasestr (haystack, needle);
137         ASSERT (result == haystack + m);
138       }
139     if (needle != NULL)
140       free (needle);
141     if (haystack != NULL)
142       free (haystack);
143   }
144
145   return 0;
146 }