0ca36921f100bc299b99a0a8725e89ae144cf5a1
[gnulib.git] / tests / test-strcasestr.c
1 /* Test of case-insensitive searching in a string.
2    Copyright (C) 2007-2013 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 <string.h>
22
23 #include "signature.h"
24 SIGNATURE_CHECK (strcasestr, char *, (char const *, char const *));
25
26 #include <signal.h>
27 #include <stdlib.h>
28 #include <unistd.h>
29
30 #include "macros.h"
31
32 int
33 main ()
34 {
35 #if HAVE_DECL_ALARM
36   /* Declare failure if test takes too long, by using default abort
37      caused by SIGALRM.  All known platforms that lack alarm also lack
38      strcasestr, and the replacement strcasestr is known to not take too
39      long.  */
40   signal (SIGALRM, SIG_DFL);
41   alarm (50);
42 #endif
43
44   {
45     const char input[] = "foo";
46     const char *result = strcasestr (input, "");
47     ASSERT (result == input);
48   }
49
50   {
51     const char input[] = "foo";
52     const char *result = strcasestr (input, "O");
53     ASSERT (result == input + 1);
54   }
55
56   {
57     const char input[] = "ABC ABCDAB ABCDABCDABDE";
58     const char *result = strcasestr (input, "ABCDaBD");
59     ASSERT (result == input + 15);
60   }
61
62   {
63     const char input[] = "ABC ABCDAB ABCDABCDABDE";
64     const char *result = strcasestr (input, "ABCDaBE");
65     ASSERT (result == NULL);
66   }
67
68   {
69     const char input[] = "ABC ABCDAB ABCDABCDABDE";
70     const char *result = strcasestr (input, "ABCDaBCD");
71     ASSERT (result == input + 11);
72   }
73
74   /* Check that a long periodic needle does not cause false positives.  */
75   {
76     const char input[] = ("F_BD_CE_BD_EF_BF_BD_EF_BF_BD_EF_BF_BD_EF_BF_BD"
77                           "_C3_88_20_EF_BF_BD_EF_BF_BD_EF_BF_BD"
78                           "_C3_A7_20_EF_BF_BD");
79     const char need[] = "_EF_BF_BD_EF_BF_BD_EF_BF_BD_EF_BF_BD_EF_BF_BD";
80     const char *result = strcasestr (input, need);
81     ASSERT (result == NULL);
82   }
83   {
84     const char input[] = ("F_BD_CE_BD_EF_BF_BD_EF_BF_BD_EF_BF_BD_EF_BF_BD"
85                           "_C3_88_20_EF_BF_BD_EF_BF_BD_EF_BF_BD"
86                           "_C3_A7_20_EF_BF_BD_DA_B5_C2_A6_20"
87                           "_EF_BF_BD_EF_BF_BD_EF_BF_BD_EF_BF_BD_EF_BF_BD");
88     const char need[] = "_EF_BF_BD_EF_BF_BD_EF_BF_BD_EF_BF_BD_EF_BF_BD";
89     const char *result = strcasestr (input, need);
90     ASSERT (result == input + 115);
91   }
92
93   /* Check that a very long haystack is handled quickly if the needle is
94      short and occurs near the beginning.  */
95   {
96     size_t repeat = 10000;
97     size_t m = 1000000;
98     const char *needle =
99       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
100       "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaAaaaaaaAAAAaaaaaaa"
101       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA";
102     char *haystack = (char *) malloc (m + 1);
103     if (haystack != NULL)
104       {
105         memset (haystack, 'A', m);
106         haystack[0] = 'B';
107         haystack[m] = '\0';
108
109         for (; repeat > 0; repeat--)
110           {
111             ASSERT (strcasestr (haystack, needle) == haystack + 1);
112           }
113
114         free (haystack);
115       }
116   }
117
118   /* Check that a very long needle is discarded quickly if the haystack is
119      short.  */
120   {
121     size_t repeat = 10000;
122     size_t m = 1000000;
123     const char *haystack =
124       "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"
125       "ABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABABAB";
126     char *needle = (char *) malloc (m + 1);
127     if (needle != NULL)
128       {
129         memset (needle, 'A', m);
130         needle[m] = '\0';
131
132         for (; repeat > 0; repeat--)
133           {
134             ASSERT (strcasestr (haystack, needle) == NULL);
135           }
136
137         free (needle);
138       }
139   }
140
141   /* Check that the asymptotic worst-case complexity is not quadratic.  */
142   {
143     size_t m = 1000000;
144     char *haystack = (char *) malloc (2 * m + 2);
145     char *needle = (char *) malloc (m + 2);
146     if (haystack != NULL && needle != NULL)
147       {
148         const char *result;
149
150         memset (haystack, 'A', 2 * m);
151         haystack[2 * m] = 'B';
152         haystack[2 * m + 1] = '\0';
153
154         memset (needle, 'a', m);
155         needle[m] = 'B';
156         needle[m + 1] = '\0';
157
158         result = strcasestr (haystack, needle);
159         ASSERT (result == haystack + m);
160       }
161     free (needle);
162     free (haystack);
163   }
164
165   {
166     /* Ensure that with a barely periodic "short" needle, strcasestr's
167        search does not mistakenly skip just past the match point.
168        This use of strcasestr would mistakenly return NULL before
169        gnulib v0.0-4927.  */
170     const char *haystack =
171       "\n"
172       "with_build_libsubdir\n"
173       "with_local_prefix\n"
174       "with_gxx_include_dir\n"
175       "with_cpp_install_dir\n"
176       "enable_generated_files_in_srcdir\n"
177       "with_gnu_ld\n"
178       "with_ld\n"
179       "with_demangler_in_ld\n"
180       "with_gnu_as\n"
181       "with_as\n"
182       "enable_largefile\n"
183       "enable_werror_always\n"
184       "enable_checking\n"
185       "enable_coverage\n"
186       "enable_gather_detailed_mem_stats\n"
187       "enable_build_with_cxx\n"
188       "with_stabs\n"
189       "enable_multilib\n"
190       "enable___cxa_atexit\n"
191       "enable_decimal_float\n"
192       "enable_fixed_point\n"
193       "enable_threads\n"
194       "enable_tls\n"
195       "enable_objc_gc\n"
196       "with_dwarf2\n"
197       "enable_shared\n"
198       "with_build_sysroot\n"
199       "with_sysroot\n"
200       "with_specs\n"
201       "with_pkgversion\n"
202       "with_bugurl\n"
203       "enable_languages\n"
204       "with_multilib_list\n";
205     const char *needle = "\n"
206       "with_GNU_ld\n";
207     const char* p = strcasestr (haystack, needle);
208     ASSERT (p - haystack == 114);
209   }
210
211   {
212     /* Same bug, shorter trigger.  */
213     const char *haystack = "..wi.D.";
214     const char *needle = ".d.";
215     const char* p = strcasestr (haystack, needle);
216     ASSERT (p - haystack == 4);
217   }
218
219   {
220     /* Like the above, but trigger the flaw in two_way_long_needle
221        by using a needle of length LONG_NEEDLE_THRESHOLD (32) or greater.
222        Rather than trying to find the right alignment manually, I've
223        arbitrarily chosen the following needle and template for the
224        haystack, and ensure that for each placement of the needle in
225        that haystack, strcasestr finds it.  */
226     const char *needle = "\nwith_gnu_ld-extend-to-len-32-b\n";
227     const char *h =
228       "\n"
229       "with_build_libsubdir\n"
230       "with_local_prefix\n"
231       "with_gxx_include_dir\n"
232       "with_cpp_install_dir\n"
233       "with_e_\n"
234       "..............................\n"
235       "with_FGHIJKLMNOPQRSTUVWXYZ\n"
236       "with_567890123456789\n"
237       "with_multilib_list\n";
238     size_t h_len = strlen (h);
239     char *haystack = malloc (h_len + 1);
240     size_t i;
241     ASSERT (haystack);
242     for (i = 0; i < h_len - strlen (needle); i++)
243       {
244         const char *p;
245         memcpy (haystack, h, h_len + 1);
246         memcpy (haystack + i, needle, strlen (needle) + 1);
247         p = strcasestr (haystack, needle);
248         ASSERT (p);
249         ASSERT (p - haystack == i);
250       }
251   }
252
253   return 0;
254 }